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
+8
Original file line number
Diff line number
Diff line change
@@ -247,12 +247,14 @@ const searchDoc = {
247
247
"<svelte:head>",
248
248
"svelte:head",
249
249
],["This makes it possible to insert elements into document.head. As with <svelte:window> and <svelte:body>, it may only appear at the top level of your component. 'Svelte head' syntax: <svelte:head>...</svelte:head>"]],
250
+
250
251
"template-syntax-svelte-options": [[
251
252
"<svelte options>",
252
253
"svelte options",
253
254
"<svelte:options>",
254
255
"svelte:options",
255
256
],["This provides a place to specify per-component compiler options, which are detailed in the compiler section. 'Svelte options' syntax: <svelte:options option={value}/>"]],
257
+
256
258
"template-syntax-svelte-fragment": [[
257
259
"<svelte fragment>",
258
260
"svelte fragment",
@@ -267,6 +269,7 @@ const searchDoc = {
267
269
"before update",
268
270
"beforeUpdate",
269
271
],["beforeUpdate schedules a callback to run immediately before the component is updated after any state change. 'beforeUpdate' syntax: beforeUpdate(callback: () => void)"]],
272
+
270
273
"run-time-svelte-afterupdate": [[
271
274
"afterupdate",
272
275
"after update",
@@ -283,6 +286,7 @@ const searchDoc = {
283
286
"getallcontext",
284
287
"getallcontexts",
285
288
],["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()"]],
289
+
286
290
"run-time-svelte-createeventdispatcher": [[
287
291
"create event dispatcher",
288
292
"event dispatcher",
@@ -323,6 +327,7 @@ const searchDoc = {
323
327
"transition",
324
328
"svelte transition",
325
329
],["The svelte/transition module exports seven functions: fade, blur, fly, slide, scale, draw and crossfade. They are for use with Svelte transitions."]],
330
+
326
331
"run-time-svelte-transition-fade": [[
327
332
"fade transition",
328
333
"transition fade",
@@ -371,18 +376,21 @@ const searchDoc = {
371
376
"svelte animate",
372
377
"run time svelte animate",
373
378
],["The svelte/animate module exports one function for use with Svelte animations. 'Animate' syntax: animate:flip={params}"]],
379
+
374
380
"run-time-svelte-animate-flip": [[
375
381
"animate flip",
376
382
"run time animate flip",
377
383
"svelte animate flip",
378
384
"run time svelte animate flip",
379
385
"flip",
380
386
],[]],
387
+
381
388
"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
389
"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
390
"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
391
"run-time-client-side-component-api-creating-a-component": [["create api component","api component","creating api component","creating an api component"],[]],
385
392
"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