Skip to content

Commit 26dde83

Browse files
committed
forgot to save one thing
1 parent 1ded96b commit 26dde83

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/SearchProgram.js

+13-13
Original file line numberDiff line numberDiff line change
@@ -271,18 +271,18 @@ const searchDoc = {
271271
"afterupdate",
272272
"after update",
273273
"afterUpdate",
274-
], ["afterUpdate Schedules a callback to run immediately after the component has been updated. 'afterUpdat' syntax: afterUpdate(callback: () => void)"]],
275-
"run-time-svelte-ondestroy": [["onDestroy", "on destroy", "ondestroy"], []],
276-
"run-time-svelte-tick": [["tick", "svelte tick"], []],
277-
"run-time-svelte-setcontext": [["set context", "setcontext", "setContext"], []],
278-
"run-time-svelte-getcontext": [["get context", "getcontext", "getContext"], []],
279-
"run-time-svelte-hascontext": [["has context", "hascontext", "hasContext"], []],
274+
], ["afterUpdate schedules a callback to run immediately after the component has been updated. 'afterUpdat' syntax: afterUpdate(callback: () => void)"]],
275+
"run-time-svelte-ondestroy": [["onDestroy", "on destroy", "ondestroy"], ["onDestroy schedules a callback to run immediately before the component is unmounted. 'onDestroy' syntax: onDestroy(callback: () => void)"]],
276+
"run-time-svelte-tick": [["tick", "svelte tick"], ["Returns a promise that resolves once any pending state changes have been applied, or in the next microtask if there are none. 'tick' syntax: promise: Promise = tick()"]],
277+
"run-time-svelte-setcontext": [["set context", "setcontext", "setContext"], ["Associates an arbitrary context object with the current component and the specified key and returns that object. The context is then available to children of the component with getContext. 'setContext' syntax: setContext(key: any, context: any)"]],
278+
"run-time-svelte-getcontext": [["get context", "getcontext", "getContext"], ["Retrieves the context that belongs to the closest parent component with the specified key. Must be called during component initialisation. 'getContext' syntax: context: any = getContext(key: any)"]],
279+
"run-time-svelte-hascontext": [["has context", "hascontext", "hasContext"], ["Checks whether a given key has been set in the context of a parent component. Must be called during component initialisation. 'hasContext' syntax: hasContext: boolean = hasContext(key: any)"]],
280280
"run-time-svelte-getallcontexts": [[
281281
"get all contexts",
282282
"get all context",
283283
"getallcontext",
284284
"getallcontexts",
285-
], []],
285+
], ["Retrieves the whole context map that belongs to the closest parent component. Must be called during component initialisation.'getAllContexts' syntax: contexts: Map<any, any> = getAllContexts()"]],
286286
"run-time-svelte-createeventdispatcher": [[
287287
"create event dispatcher",
288288
"event dispatcher",
@@ -322,7 +322,7 @@ const searchDoc = {
322322
"run time transition",
323323
"transition",
324324
"svelte transition",
325-
], []],
325+
], ["The svelte/transition module exports seven functions: fade, blur, fly, slide, scale, draw and crossfade. They are for use with Svelte transitions."]],
326326
"run-time-svelte-transition-fade": [[
327327
"fade transition",
328328
"transition fade",
@@ -370,19 +370,19 @@ const searchDoc = {
370370
"run time animate",
371371
"svelte animate",
372372
"run time svelte animate",
373-
], []],
373+
], ["The svelte/animate module exports one function for use with Svelte animations. 'Animate' syntax: animate:flip={params}"]],
374374
"run-time-svelte-animate-flip": [[
375375
"animate flip",
376376
"run time animate flip",
377377
"svelte animate flip",
378378
"run time svelte animate flip",
379379
"flip",
380380
], []],
381-
"run-time-svelte-easing": [["easing", "run time easing", "svelte easing"], []],
382-
"run-time-svelte-register": [["register", "run time register", "svelte register"], []],
383-
"run-time-client-side-component-api": [["component api", "api", "client side api", "client side", "client side component", "client side component api"], []],
381+
"run-time-svelte-easing": [["easing", "run time easing", "svelte easing"], ["Easing functions specify the rate of change over time and are useful when working with Svelte's built-in transitions and animations as well as the tweened and spring utilities."]],
382+
"run-time-svelte-register": [["register", "run time register", "svelte register"], ["To render Svelte components in Node.js without bundling, use require('svelte/register'). After that, you can use require to include any .svelte file."]],
383+
"run-time-client-side-component-api": [["component api", "api", "client side api", "client side", "client side component", "client side component api"], ["A client-side component — that is, a component compiled with generate: 'dom' (or the generate option left unspecified) is a JavaScript class."]],
384384
"run-time-client-side-component-api-creating-a-component": [["create api component", "api component", "creating api component", "creating an api component"], []],
385-
"run-time-client-side-component-api-$set": [["$set", "api $set"], []],
385+
"run-time-client-side-component-api-$set": [["$set", "api $set"], ["Programmatically sets props on an instance. component.$set({ x: 1 }) is equivalent to x = 1 inside the component's <script> block. '$set' syntax: component.$set(props)"]],
386386
"run-time-client-side-component-api-$on": [["$on", "api $on"], []],
387387
"run-time-client-side-component-api-$destroy": [["$destroy", "api $destroy"], []],
388388
"run-time-client-side-component-api-component-props": [["api component props", "api props"], []],

0 commit comments

Comments
 (0)