You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/SearchProgram.js
+13-13
Original file line number
Diff line number
Diff line change
@@ -271,18 +271,18 @@ const searchDoc = {
271
271
"afterupdate",
272
272
"after update",
273
273
"afterUpdate",
274
-
],["afterUpdate Schedules a callback to run immediately after the component has been updated. 'afterUpdat' syntax: afterUpdate(callback: () => void)"]],
],["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)"]],
280
280
"run-time-svelte-getallcontexts": [[
281
281
"get all contexts",
282
282
"get all context",
283
283
"getallcontext",
284
284
"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()"]],
286
286
"run-time-svelte-createeventdispatcher": [[
287
287
"create event dispatcher",
288
288
"event dispatcher",
@@ -322,7 +322,7 @@ const searchDoc = {
322
322
"run time transition",
323
323
"transition",
324
324
"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."]],
326
326
"run-time-svelte-transition-fade": [[
327
327
"fade transition",
328
328
"transition fade",
@@ -370,19 +370,19 @@ const searchDoc = {
370
370
"run time animate",
371
371
"svelte animate",
372
372
"run time svelte animate",
373
-
],[]],
373
+
],["The svelte/animate module exports one function for use with Svelte animations. 'Animate' syntax: animate:flip={params}"]],
374
374
"run-time-svelte-animate-flip": [[
375
375
"animate flip",
376
376
"run time animate flip",
377
377
"svelte animate flip",
378
378
"run time svelte animate flip",
379
379
"flip",
380
380
],[]],
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."]],
384
384
"run-time-client-side-component-api-creating-a-component": [["create api component","api component","creating api component","creating an api component"],[]],
"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)"]],
0 commit comments