@ulu/frontend-vue 0.6.13 → 0.6.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/frontend-vue.css +1 -1
- package/dist/index.js +36 -34
- package/dist/mcp-data.json +562 -562
- package/dist/plugins/index.d.ts +1 -1
- package/dist/plugins/toast/UluToastDisplay.vue.js +7 -8
- package/dist/plugins/toast/index.d.ts +2 -0
- package/dist/plugins/toast/index.d.ts.map +1 -1
- package/dist/plugins/toast/useToast.js +10 -0
- package/lib/plugins/index.js +1 -1
- package/lib/plugins/toast/UluToastDisplay.vue +1 -18
- package/lib/plugins/toast/_toast.scss +7 -7
- package/lib/plugins/toast/index.js +5 -2
- package/package.json +1 -1
package/dist/mcp-data.json
CHANGED
|
@@ -20,6 +20,62 @@
|
|
|
20
20
|
}
|
|
21
21
|
],
|
|
22
22
|
"useDocumentTitle": [],
|
|
23
|
+
"toast": [
|
|
24
|
+
{
|
|
25
|
+
"title": "Default",
|
|
26
|
+
"description": "Default variation",
|
|
27
|
+
"code": "<toast>Content</toast>"
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"useTooltipFollow": [
|
|
31
|
+
{
|
|
32
|
+
"title": "Default",
|
|
33
|
+
"description": "Default variation",
|
|
34
|
+
"code": "<useTooltipFollow>Content</useTooltipFollow>"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"useTooltip": [],
|
|
38
|
+
"tooltip": [
|
|
39
|
+
{
|
|
40
|
+
"title": "Basic",
|
|
41
|
+
"description": "Basic variation",
|
|
42
|
+
"code": "<tooltip>This is a basic tooltip!</tooltip>"
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"UluPopover": [],
|
|
46
|
+
"useModals": [],
|
|
47
|
+
"modals": [
|
|
48
|
+
{
|
|
49
|
+
"title": "GlobalApiTest",
|
|
50
|
+
"description": "GlobalApiTest variation",
|
|
51
|
+
"code": "<modals>Content</modals>"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"title": "modals Example 1",
|
|
55
|
+
"description": "Code example extracted from markdown.",
|
|
56
|
+
"code": "<template>\n <UluModal>\n User setting modal…\n </UluModal>\n</template>"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"title": "modals Example 2",
|
|
60
|
+
"description": "Code example extracted from markdown.",
|
|
61
|
+
"code": "import { defineAsyncComponent } from \"vue\";\n\nexport default [\n {\n name: \"settings\",\n component: defineAsyncComponent(() => import('./components/modals/UserSettingsModal.vue')),\n }\n]"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"title": "modals Example 3",
|
|
65
|
+
"description": "Code example extracted from markdown.",
|
|
66
|
+
"code": "import UluModals from \"@ulu/frontend-vue/plugins/modals/index.js\";\nimport modals from \"./src/modals.js\";\n\n//...\n\napp.use(UluModals, { modals });"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"title": "modals Example 4",
|
|
70
|
+
"description": "Code example extracted from markdown.",
|
|
71
|
+
"code": "// Open a app-wide modal\nthis.$uluModals.open({ exampleProp: value });\n\n// Close app-wide modal \nthis.$uluModals.close();\n\n// Add modals after post-install\nthis.$uluModals.add({\n name: \"settings\",\n component: defineAsyncComponent(() => import('./components/modals/UserSettingsModal.vue')),\n});\n\n// Remove a modal from the registry\nthis.$uluModals.remove(\"settings\");\n\n// Get Modal from registry (not usually needed)\nconst settingsModal = this.$uluModals.get(\"settings\");\n// console.log(settingsModal.name) ==> \"settings\""
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"title": "modals Example 5",
|
|
75
|
+
"description": "Code example extracted from markdown.",
|
|
76
|
+
"code": "<template>\n <button @click=\"showSettingsModal\">My Settings</button>\n</template>\n\n<script setup>\n import { useModals } from \"./useModals\";\n\n const modals = useModals();\n const showSettingsModal = () => {\n console.log(\"This is opening via uluModals composable\");\n modals.open(\"settings\");\n };\n</script>"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
23
79
|
"UluProgressCircle": [],
|
|
24
80
|
"UluProgressBar": [],
|
|
25
81
|
"UluAnimateNumber": [],
|
|
@@ -63,10 +119,98 @@
|
|
|
63
119
|
"code": "<UluAction href=\"{...}\" download>Content</UluAction>"
|
|
64
120
|
}
|
|
65
121
|
],
|
|
122
|
+
"UluSkipLink": [
|
|
123
|
+
{
|
|
124
|
+
"title": "Default",
|
|
125
|
+
"description": "Default variation",
|
|
126
|
+
"code": "<UluSkipLink>Content</UluSkipLink>"
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"UluPager": [
|
|
130
|
+
{
|
|
131
|
+
"title": "Default",
|
|
132
|
+
"description": "Default variation",
|
|
133
|
+
"code": "<UluPager :current=\"5\" ellipses=\"{...}\">Content</UluPager>"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"title": "FirstPage",
|
|
137
|
+
"description": "FirstPage variation",
|
|
138
|
+
"code": "<UluPager :current=\"1\" items=\"{...}\" ellipses=\"{...}\">Content</UluPager>"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"title": "LastPage",
|
|
142
|
+
"description": "LastPage variation",
|
|
143
|
+
"code": "<UluPager :current=\"10\" items=\"{...}\" ellipses=\"{...}\">Content</UluPager>"
|
|
144
|
+
}
|
|
145
|
+
],
|
|
146
|
+
"UluNavStrip": [
|
|
147
|
+
{
|
|
148
|
+
"title": "Default",
|
|
149
|
+
"description": "Default variation",
|
|
150
|
+
"code": "<UluNavStrip items=\"{...}\">Content</UluNavStrip>"
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"UluMenuStack": [
|
|
154
|
+
{
|
|
155
|
+
"title": "Default",
|
|
156
|
+
"description": "Default variation",
|
|
157
|
+
"code": "<UluMenuStack items=\"{...}\">Content</UluMenuStack>"
|
|
158
|
+
}
|
|
159
|
+
],
|
|
160
|
+
"UluMenu": [
|
|
161
|
+
{
|
|
162
|
+
"title": "Default",
|
|
163
|
+
"description": "Default variation",
|
|
164
|
+
"code": "<UluMenu classes=\"{...}\" items=\"{...}\">Content</UluMenu>"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"title": "Slots",
|
|
168
|
+
"description": "Slots variation",
|
|
169
|
+
"code": "<UluMenu items=\"{...}\">Content</UluMenu>"
|
|
170
|
+
}
|
|
171
|
+
],
|
|
172
|
+
"UluBreadcrumb": [
|
|
173
|
+
{
|
|
174
|
+
"title": "Default",
|
|
175
|
+
"description": "Default variation",
|
|
176
|
+
"code": "<UluBreadcrumb items=\"{...}\">Content</UluBreadcrumb>"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"title": "CustomSeparator",
|
|
180
|
+
"description": "CustomSeparator variation",
|
|
181
|
+
"code": "<UluBreadcrumb separatorIcon=\"fas fa-arrow-right\">Content</UluBreadcrumb>"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"title": "CustomSeparatorSlot",
|
|
185
|
+
"description": "CustomSeparatorSlot variation",
|
|
186
|
+
"code": "<UluBreadcrumb>Content</UluBreadcrumb>"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"title": "PerItemClasses",
|
|
190
|
+
"description": "PerItemClasses variation",
|
|
191
|
+
"code": "<UluBreadcrumb items=\"{...}\">Content</UluBreadcrumb>"
|
|
192
|
+
}
|
|
193
|
+
],
|
|
66
194
|
"UluWhenBreakpoint": [],
|
|
67
195
|
"UluTitleRail": [],
|
|
68
196
|
"UluDataGrid": [],
|
|
69
197
|
"UluAdaptiveLayout": [],
|
|
198
|
+
"UluSelectableMenu": [],
|
|
199
|
+
"UluSearchForm": [],
|
|
200
|
+
"UluFormTextarea": [],
|
|
201
|
+
"UluFormText": [],
|
|
202
|
+
"UluFormSelect": [],
|
|
203
|
+
"UluFormRequiredChar": [],
|
|
204
|
+
"UluFormRadio": [],
|
|
205
|
+
"UluFormLabel": [],
|
|
206
|
+
"UluFormItemsInline": [],
|
|
207
|
+
"UluFormItem": [],
|
|
208
|
+
"UluFormFile": [],
|
|
209
|
+
"UluFormFieldset": [],
|
|
210
|
+
"UluFormCheckbox": [],
|
|
211
|
+
"UluFormActions": [],
|
|
212
|
+
"UluForm": [],
|
|
213
|
+
"UluFileDisplay": [],
|
|
70
214
|
"UluTabGroup": [
|
|
71
215
|
{
|
|
72
216
|
"title": "Default",
|
|
@@ -95,22 +239,6 @@
|
|
|
95
239
|
"UluCollapsible": [],
|
|
96
240
|
"UluAccordionGroup": [],
|
|
97
241
|
"UluAccordion": [],
|
|
98
|
-
"UluSelectableMenu": [],
|
|
99
|
-
"UluSearchForm": [],
|
|
100
|
-
"UluFormTextarea": [],
|
|
101
|
-
"UluFormText": [],
|
|
102
|
-
"UluFormSelect": [],
|
|
103
|
-
"UluFormRequiredChar": [],
|
|
104
|
-
"UluFormRadio": [],
|
|
105
|
-
"UluFormLabel": [],
|
|
106
|
-
"UluFormItemsInline": [],
|
|
107
|
-
"UluFormItem": [],
|
|
108
|
-
"UluFormFile": [],
|
|
109
|
-
"UluFormFieldset": [],
|
|
110
|
-
"UluFormCheckbox": [],
|
|
111
|
-
"UluFormActions": [],
|
|
112
|
-
"UluForm": [],
|
|
113
|
-
"UluFileDisplay": [],
|
|
114
242
|
"UluTag": [],
|
|
115
243
|
"UluTable": [
|
|
116
244
|
{
|
|
@@ -334,132 +462,11 @@
|
|
|
334
462
|
}
|
|
335
463
|
],
|
|
336
464
|
"UluAlert": [],
|
|
337
|
-
"
|
|
338
|
-
{
|
|
339
|
-
"title": "Default",
|
|
340
|
-
"description": "Default variation",
|
|
341
|
-
"code": "<UluSkipLink>Content</UluSkipLink>"
|
|
342
|
-
}
|
|
343
|
-
],
|
|
344
|
-
"UluPager": [
|
|
345
|
-
{
|
|
346
|
-
"title": "Default",
|
|
347
|
-
"description": "Default variation",
|
|
348
|
-
"code": "<UluPager :current=\"5\" ellipses=\"{...}\">Content</UluPager>"
|
|
349
|
-
},
|
|
350
|
-
{
|
|
351
|
-
"title": "FirstPage",
|
|
352
|
-
"description": "FirstPage variation",
|
|
353
|
-
"code": "<UluPager :current=\"1\" items=\"{...}\" ellipses=\"{...}\">Content</UluPager>"
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
"title": "LastPage",
|
|
357
|
-
"description": "LastPage variation",
|
|
358
|
-
"code": "<UluPager :current=\"10\" items=\"{...}\" ellipses=\"{...}\">Content</UluPager>"
|
|
359
|
-
}
|
|
360
|
-
],
|
|
361
|
-
"UluNavStrip": [
|
|
362
|
-
{
|
|
363
|
-
"title": "Default",
|
|
364
|
-
"description": "Default variation",
|
|
365
|
-
"code": "<UluNavStrip items=\"{...}\">Content</UluNavStrip>"
|
|
366
|
-
}
|
|
367
|
-
],
|
|
368
|
-
"UluMenuStack": [
|
|
369
|
-
{
|
|
370
|
-
"title": "Default",
|
|
371
|
-
"description": "Default variation",
|
|
372
|
-
"code": "<UluMenuStack items=\"{...}\">Content</UluMenuStack>"
|
|
373
|
-
}
|
|
374
|
-
],
|
|
375
|
-
"UluMenu": [
|
|
376
|
-
{
|
|
377
|
-
"title": "Default",
|
|
378
|
-
"description": "Default variation",
|
|
379
|
-
"code": "<UluMenu classes=\"{...}\" items=\"{...}\">Content</UluMenu>"
|
|
380
|
-
},
|
|
381
|
-
{
|
|
382
|
-
"title": "Slots",
|
|
383
|
-
"description": "Slots variation",
|
|
384
|
-
"code": "<UluMenu items=\"{...}\">Content</UluMenu>"
|
|
385
|
-
}
|
|
386
|
-
],
|
|
387
|
-
"UluBreadcrumb": [
|
|
388
|
-
{
|
|
389
|
-
"title": "Default",
|
|
390
|
-
"description": "Default variation",
|
|
391
|
-
"code": "<UluBreadcrumb items=\"{...}\">Content</UluBreadcrumb>"
|
|
392
|
-
},
|
|
393
|
-
{
|
|
394
|
-
"title": "CustomSeparator",
|
|
395
|
-
"description": "CustomSeparator variation",
|
|
396
|
-
"code": "<UluBreadcrumb separatorIcon=\"fas fa-arrow-right\">Content</UluBreadcrumb>"
|
|
397
|
-
},
|
|
398
|
-
{
|
|
399
|
-
"title": "CustomSeparatorSlot",
|
|
400
|
-
"description": "CustomSeparatorSlot variation",
|
|
401
|
-
"code": "<UluBreadcrumb>Content</UluBreadcrumb>"
|
|
402
|
-
},
|
|
403
|
-
{
|
|
404
|
-
"title": "PerItemClasses",
|
|
405
|
-
"description": "PerItemClasses variation",
|
|
406
|
-
"code": "<UluBreadcrumb items=\"{...}\">Content</UluBreadcrumb>"
|
|
407
|
-
}
|
|
408
|
-
],
|
|
409
|
-
"toast": [
|
|
410
|
-
{
|
|
411
|
-
"title": "Default",
|
|
412
|
-
"description": "Default variation",
|
|
413
|
-
"code": "<toast>Content</toast>"
|
|
414
|
-
}
|
|
415
|
-
],
|
|
416
|
-
"useTooltipFollow": [
|
|
465
|
+
"UluTableSticky": [
|
|
417
466
|
{
|
|
418
467
|
"title": "Default",
|
|
419
468
|
"description": "Default variation",
|
|
420
|
-
"code": "<
|
|
421
|
-
}
|
|
422
|
-
],
|
|
423
|
-
"useTooltip": [],
|
|
424
|
-
"tooltip": [
|
|
425
|
-
{
|
|
426
|
-
"title": "Basic",
|
|
427
|
-
"description": "Basic variation",
|
|
428
|
-
"code": "<tooltip>This is a basic tooltip!</tooltip>"
|
|
429
|
-
}
|
|
430
|
-
],
|
|
431
|
-
"UluPopover": [],
|
|
432
|
-
"useModals": [],
|
|
433
|
-
"modals": [
|
|
434
|
-
{
|
|
435
|
-
"title": "GlobalApiTest",
|
|
436
|
-
"description": "GlobalApiTest variation",
|
|
437
|
-
"code": "<modals>Content</modals>"
|
|
438
|
-
},
|
|
439
|
-
{
|
|
440
|
-
"title": "modals Example 1",
|
|
441
|
-
"description": "Code example extracted from markdown.",
|
|
442
|
-
"code": "<template>\n <UluModal>\n User setting modal…\n </UluModal>\n</template>"
|
|
443
|
-
},
|
|
444
|
-
{
|
|
445
|
-
"title": "modals Example 2",
|
|
446
|
-
"description": "Code example extracted from markdown.",
|
|
447
|
-
"code": "import { defineAsyncComponent } from \"vue\";\n\nexport default [\n {\n name: \"settings\",\n component: defineAsyncComponent(() => import('./components/modals/UserSettingsModal.vue')),\n }\n]"
|
|
448
|
-
},
|
|
449
|
-
{
|
|
450
|
-
"title": "modals Example 3",
|
|
451
|
-
"description": "Code example extracted from markdown.",
|
|
452
|
-
"code": "import UluModals from \"@ulu/frontend-vue/plugins/modals/index.js\";\nimport modals from \"./src/modals.js\";\n\n//...\n\napp.use(UluModals, { modals });"
|
|
453
|
-
},
|
|
454
|
-
{
|
|
455
|
-
"title": "modals Example 4",
|
|
456
|
-
"description": "Code example extracted from markdown.",
|
|
457
|
-
"code": "// Open a app-wide modal\nthis.$uluModals.open({ exampleProp: value });\n\n// Close app-wide modal \nthis.$uluModals.close();\n\n// Add modals after post-install\nthis.$uluModals.add({\n name: \"settings\",\n component: defineAsyncComponent(() => import('./components/modals/UserSettingsModal.vue')),\n});\n\n// Remove a modal from the registry\nthis.$uluModals.remove(\"settings\");\n\n// Get Modal from registry (not usually needed)\nconst settingsModal = this.$uluModals.get(\"settings\");\n// console.log(settingsModal.name) ==> \"settings\""
|
|
458
|
-
},
|
|
459
|
-
{
|
|
460
|
-
"title": "modals Example 5",
|
|
461
|
-
"description": "Code example extracted from markdown.",
|
|
462
|
-
"code": "<template>\n <button @click=\"showSettingsModal\">My Settings</button>\n</template>\n\n<script setup>\n import { useModals } from \"./useModals\";\n\n const modals = useModals();\n const showSettingsModal = () => {\n console.log(\"This is opening via uluModals composable\");\n modals.open(\"settings\");\n };\n</script>"
|
|
469
|
+
"code": "<UluTableSticky columns=\"{...}\" rows=\"{...}\" caption=\"Example Sticky Table\" scrollControls>Content</UluTableSticky>"
|
|
463
470
|
}
|
|
464
471
|
],
|
|
465
472
|
"UluSkeletonText": [],
|
|
@@ -473,13 +480,6 @@
|
|
|
473
480
|
"code": "<CardExample horizontal>Content</CardExample>"
|
|
474
481
|
}
|
|
475
482
|
],
|
|
476
|
-
"UluTableSticky": [
|
|
477
|
-
{
|
|
478
|
-
"title": "Default",
|
|
479
|
-
"description": "Default variation",
|
|
480
|
-
"code": "<UluTableSticky columns=\"{...}\" rows=\"{...}\" caption=\"Example Sticky Table\" scrollControls>Content</UluTableSticky>"
|
|
481
|
-
}
|
|
482
|
-
],
|
|
483
483
|
"UluScrollAnchorsNavAnimated": [],
|
|
484
484
|
"UluScrollAnchorsNav": [],
|
|
485
485
|
"UluScrollAnchorsHeadlessSection": [],
|
|
@@ -620,7 +620,6 @@
|
|
|
620
620
|
"code": "<script setup>\n import { ref, computed, provide } from \"vue\";\n import { useBreakpointManager } from \"./useBreakpointManager.js\";\n\n const isMobile = ref(false);\n\n // Example using the onReady callback to set reactive value isMobile\n // - In this situation isMobile is being used as a primary change in \n // the applications layout \n const options = { \n onReady(manager) {\n manager.at(\"small\").max(() => isMobile.value = true);\n manager.at(\"large\").min(() => isMobile.value = false);\n }\n };\n\n // Composable returns the following\n const { \n /**\n * Reference to underlying BreakpointManager class\n */\n breakpointManager, \n /**\n * Active breakpoint name\n */\n breakpointActive, \n /**\n * Current resizeDirection (\"up\"|\"down\"|null)\n */\n breakpointDirection \n } = useBreakpointManager(options);\n\n\n // Allowing all components to access these values\n provide(\"uluBreakpointActive\", computed(() => breakpointActive));\n provide(\"uluBreakpointDirection\", computed(() => breakpointDirection));\n provide(\"uluBreakpointManager\", computed(() => breakpointManager));\n provide(\"uluIsMobile\", computed(() => isMobile));\n\n</script>"
|
|
621
621
|
}
|
|
622
622
|
],
|
|
623
|
-
"forms": [],
|
|
624
623
|
"core": [
|
|
625
624
|
{
|
|
626
625
|
"title": "core Example 1",
|
|
@@ -645,6 +644,7 @@
|
|
|
645
644
|
"code": "<script>\nexport default {\n inject: ['uluIsMobile', 'uluBreakpointActive'],\n mounted() {\n console.log('Is mobile?', this.uluIsMobile);\n }\n}\n</script>"
|
|
646
645
|
}
|
|
647
646
|
],
|
|
647
|
+
"forms": [],
|
|
648
648
|
"useScrollAnchors": [
|
|
649
649
|
{
|
|
650
650
|
"title": "useScrollAnchors Example 1",
|
|
@@ -4192,6 +4192,64 @@
|
|
|
4192
4192
|
}
|
|
4193
4193
|
]
|
|
4194
4194
|
},
|
|
4195
|
+
"UluSkeletonText": {
|
|
4196
|
+
"description": "Vue Component Props, Emits, and Slots for UluSkeletonText",
|
|
4197
|
+
"properties": [
|
|
4198
|
+
{
|
|
4199
|
+
"name": "inline",
|
|
4200
|
+
"type": "boolean",
|
|
4201
|
+
"description": "Inline modifier"
|
|
4202
|
+
},
|
|
4203
|
+
{
|
|
4204
|
+
"name": "alt",
|
|
4205
|
+
"type": "boolean",
|
|
4206
|
+
"description": "Use alternate background color"
|
|
4207
|
+
},
|
|
4208
|
+
{
|
|
4209
|
+
"name": "width",
|
|
4210
|
+
"type": "string",
|
|
4211
|
+
"description": "Optional size (width) - should correspond with width setup in scss component"
|
|
4212
|
+
}
|
|
4213
|
+
],
|
|
4214
|
+
"events": [],
|
|
4215
|
+
"slots": []
|
|
4216
|
+
},
|
|
4217
|
+
"UluSkeletonMedia": {
|
|
4218
|
+
"description": "Vue Component Props, Emits, and Slots for UluSkeletonMedia",
|
|
4219
|
+
"properties": [],
|
|
4220
|
+
"events": [],
|
|
4221
|
+
"slots": []
|
|
4222
|
+
},
|
|
4223
|
+
"UluSkeletonContent": {
|
|
4224
|
+
"description": "Vue Component Props, Emits, and Slots for UluSkeletonContent",
|
|
4225
|
+
"properties": [
|
|
4226
|
+
{
|
|
4227
|
+
"name": "lines",
|
|
4228
|
+
"type": "number",
|
|
4229
|
+
"default": "6",
|
|
4230
|
+
"description": "Amount of lines to generate"
|
|
4231
|
+
}
|
|
4232
|
+
],
|
|
4233
|
+
"events": [],
|
|
4234
|
+
"slots": []
|
|
4235
|
+
},
|
|
4236
|
+
"UluShowSkeleton": {
|
|
4237
|
+
"description": "Vue Component Props, Emits, and Slots for UluShowSkeleton",
|
|
4238
|
+
"properties": [
|
|
4239
|
+
{
|
|
4240
|
+
"name": "when",
|
|
4241
|
+
"type": "boolean",
|
|
4242
|
+
"description": "If true will show whatever is passed to slot, else skeleton text"
|
|
4243
|
+
}
|
|
4244
|
+
],
|
|
4245
|
+
"events": [],
|
|
4246
|
+
"slots": [
|
|
4247
|
+
{
|
|
4248
|
+
"name": "default",
|
|
4249
|
+
"description": ""
|
|
4250
|
+
}
|
|
4251
|
+
]
|
|
4252
|
+
},
|
|
4195
4253
|
"UluScrollAnchorsSection": {
|
|
4196
4254
|
"description": "Vue Component Props, Emits, and Slots for UluScrollAnchorsSection",
|
|
4197
4255
|
"properties": [
|
|
@@ -4404,64 +4462,6 @@
|
|
|
4404
4462
|
}
|
|
4405
4463
|
]
|
|
4406
4464
|
},
|
|
4407
|
-
"UluSkeletonText": {
|
|
4408
|
-
"description": "Vue Component Props, Emits, and Slots for UluSkeletonText",
|
|
4409
|
-
"properties": [
|
|
4410
|
-
{
|
|
4411
|
-
"name": "inline",
|
|
4412
|
-
"type": "boolean",
|
|
4413
|
-
"description": "Inline modifier"
|
|
4414
|
-
},
|
|
4415
|
-
{
|
|
4416
|
-
"name": "alt",
|
|
4417
|
-
"type": "boolean",
|
|
4418
|
-
"description": "Use alternate background color"
|
|
4419
|
-
},
|
|
4420
|
-
{
|
|
4421
|
-
"name": "width",
|
|
4422
|
-
"type": "string",
|
|
4423
|
-
"description": "Optional size (width) - should correspond with width setup in scss component"
|
|
4424
|
-
}
|
|
4425
|
-
],
|
|
4426
|
-
"events": [],
|
|
4427
|
-
"slots": []
|
|
4428
|
-
},
|
|
4429
|
-
"UluSkeletonMedia": {
|
|
4430
|
-
"description": "Vue Component Props, Emits, and Slots for UluSkeletonMedia",
|
|
4431
|
-
"properties": [],
|
|
4432
|
-
"events": [],
|
|
4433
|
-
"slots": []
|
|
4434
|
-
},
|
|
4435
|
-
"UluSkeletonContent": {
|
|
4436
|
-
"description": "Vue Component Props, Emits, and Slots for UluSkeletonContent",
|
|
4437
|
-
"properties": [
|
|
4438
|
-
{
|
|
4439
|
-
"name": "lines",
|
|
4440
|
-
"type": "number",
|
|
4441
|
-
"default": "6",
|
|
4442
|
-
"description": "Amount of lines to generate"
|
|
4443
|
-
}
|
|
4444
|
-
],
|
|
4445
|
-
"events": [],
|
|
4446
|
-
"slots": []
|
|
4447
|
-
},
|
|
4448
|
-
"UluShowSkeleton": {
|
|
4449
|
-
"description": "Vue Component Props, Emits, and Slots for UluShowSkeleton",
|
|
4450
|
-
"properties": [
|
|
4451
|
-
{
|
|
4452
|
-
"name": "when",
|
|
4453
|
-
"type": "boolean",
|
|
4454
|
-
"description": "If true will show whatever is passed to slot, else skeleton text"
|
|
4455
|
-
}
|
|
4456
|
-
],
|
|
4457
|
-
"events": [],
|
|
4458
|
-
"slots": [
|
|
4459
|
-
{
|
|
4460
|
-
"name": "default",
|
|
4461
|
-
"description": ""
|
|
4462
|
-
}
|
|
4463
|
-
]
|
|
4464
|
-
},
|
|
4465
4465
|
"UluFacetsSort": {
|
|
4466
4466
|
"description": "Vue Component Props, Emits, and Slots for UluFacetsSort",
|
|
4467
4467
|
"properties": [
|
|
@@ -10960,64 +10960,158 @@
|
|
|
10960
10960
|
}
|
|
10961
10961
|
},
|
|
10962
10962
|
{
|
|
10963
|
-
"name": "scrollControlAmount",
|
|
10964
|
-
"description": "Amount to scroll when user uses scroll controls (pixels)",
|
|
10963
|
+
"name": "scrollControlAmount",
|
|
10964
|
+
"description": "Amount to scroll when user uses scroll controls (pixels)",
|
|
10965
|
+
"type": {
|
|
10966
|
+
"name": "number"
|
|
10967
|
+
},
|
|
10968
|
+
"defaultValue": {
|
|
10969
|
+
"func": false,
|
|
10970
|
+
"value": "100"
|
|
10971
|
+
}
|
|
10972
|
+
}
|
|
10973
|
+
],
|
|
10974
|
+
"events": [
|
|
10975
|
+
{
|
|
10976
|
+
"name": "column-sort"
|
|
10977
|
+
}
|
|
10978
|
+
],
|
|
10979
|
+
"slots": [
|
|
10980
|
+
{
|
|
10981
|
+
"name": "name",
|
|
10982
|
+
"scoped": true,
|
|
10983
|
+
"bindings": [
|
|
10984
|
+
{
|
|
10985
|
+
"name": "name",
|
|
10986
|
+
"title": "binding"
|
|
10987
|
+
}
|
|
10988
|
+
]
|
|
10989
|
+
},
|
|
10990
|
+
{
|
|
10991
|
+
"name": "controls",
|
|
10992
|
+
"scoped": true,
|
|
10993
|
+
"bindings": [
|
|
10994
|
+
{
|
|
10995
|
+
"name": "scrollLeft",
|
|
10996
|
+
"title": "binding"
|
|
10997
|
+
},
|
|
10998
|
+
{
|
|
10999
|
+
"name": "scrollRight",
|
|
11000
|
+
"title": "binding"
|
|
11001
|
+
},
|
|
11002
|
+
{
|
|
11003
|
+
"name": "canScrollLeft",
|
|
11004
|
+
"title": "binding"
|
|
11005
|
+
},
|
|
11006
|
+
{
|
|
11007
|
+
"name": "canScrollRight",
|
|
11008
|
+
"title": "binding"
|
|
11009
|
+
}
|
|
11010
|
+
]
|
|
11011
|
+
},
|
|
11012
|
+
{
|
|
11013
|
+
"name": "controlLeft"
|
|
11014
|
+
},
|
|
11015
|
+
{
|
|
11016
|
+
"name": "controlRight"
|
|
11017
|
+
}
|
|
11018
|
+
],
|
|
11019
|
+
"sourceFiles": [
|
|
11020
|
+
"lib/components/systems/table-sticky/UluTableSticky.vue"
|
|
11021
|
+
]
|
|
11022
|
+
}
|
|
11023
|
+
},
|
|
11024
|
+
"UluSkeletonText": {
|
|
11025
|
+
"raw_ast_dump": {
|
|
11026
|
+
"exportName": "default",
|
|
11027
|
+
"displayName": "UluSkeletonText",
|
|
11028
|
+
"description": "",
|
|
11029
|
+
"tags": {},
|
|
11030
|
+
"props": [
|
|
11031
|
+
{
|
|
11032
|
+
"name": "inline",
|
|
11033
|
+
"description": "Inline modifier",
|
|
11034
|
+
"type": {
|
|
11035
|
+
"name": "boolean"
|
|
11036
|
+
}
|
|
11037
|
+
},
|
|
11038
|
+
{
|
|
11039
|
+
"name": "alt",
|
|
11040
|
+
"description": "Use alternate background color",
|
|
11041
|
+
"type": {
|
|
11042
|
+
"name": "boolean"
|
|
11043
|
+
}
|
|
11044
|
+
},
|
|
11045
|
+
{
|
|
11046
|
+
"name": "width",
|
|
11047
|
+
"description": "Optional size (width) - should correspond with width setup in scss component",
|
|
11048
|
+
"type": {
|
|
11049
|
+
"name": "string"
|
|
11050
|
+
}
|
|
11051
|
+
}
|
|
11052
|
+
],
|
|
11053
|
+
"sourceFiles": [
|
|
11054
|
+
"lib/components/systems/skeleton/UluSkeletonText.vue"
|
|
11055
|
+
]
|
|
11056
|
+
}
|
|
11057
|
+
},
|
|
11058
|
+
"UluSkeletonMedia": {
|
|
11059
|
+
"raw_ast_dump": {
|
|
11060
|
+
"exportName": "default",
|
|
11061
|
+
"displayName": "UluSkeletonMedia",
|
|
11062
|
+
"description": "",
|
|
11063
|
+
"tags": {},
|
|
11064
|
+
"sourceFiles": [
|
|
11065
|
+
"lib/components/systems/skeleton/UluSkeletonMedia.vue"
|
|
11066
|
+
]
|
|
11067
|
+
}
|
|
11068
|
+
},
|
|
11069
|
+
"UluSkeletonContent": {
|
|
11070
|
+
"raw_ast_dump": {
|
|
11071
|
+
"exportName": "default",
|
|
11072
|
+
"displayName": "UluSkeletonContent",
|
|
11073
|
+
"description": "",
|
|
11074
|
+
"tags": {},
|
|
11075
|
+
"props": [
|
|
11076
|
+
{
|
|
11077
|
+
"name": "lines",
|
|
11078
|
+
"description": "Amount of lines to generate",
|
|
10965
11079
|
"type": {
|
|
10966
11080
|
"name": "number"
|
|
10967
11081
|
},
|
|
10968
11082
|
"defaultValue": {
|
|
10969
11083
|
"func": false,
|
|
10970
|
-
"value": "
|
|
11084
|
+
"value": "6"
|
|
10971
11085
|
}
|
|
10972
11086
|
}
|
|
10973
11087
|
],
|
|
10974
|
-
"
|
|
11088
|
+
"sourceFiles": [
|
|
11089
|
+
"lib/components/systems/skeleton/UluSkeletonContent.vue"
|
|
11090
|
+
]
|
|
11091
|
+
}
|
|
11092
|
+
},
|
|
11093
|
+
"UluShowSkeleton": {
|
|
11094
|
+
"raw_ast_dump": {
|
|
11095
|
+
"exportName": "default",
|
|
11096
|
+
"displayName": "UluShowSkeleton",
|
|
11097
|
+
"description": "",
|
|
11098
|
+
"tags": {},
|
|
11099
|
+
"props": [
|
|
10975
11100
|
{
|
|
10976
|
-
"name": "
|
|
11101
|
+
"name": "when",
|
|
11102
|
+
"description": "If true will show whatever is passed to slot, else skeleton text",
|
|
11103
|
+
"type": {
|
|
11104
|
+
"name": "boolean"
|
|
11105
|
+
}
|
|
10977
11106
|
}
|
|
10978
11107
|
],
|
|
10979
11108
|
"slots": [
|
|
10980
11109
|
{
|
|
10981
|
-
"name": "
|
|
10982
|
-
"scoped": true,
|
|
10983
|
-
"bindings": [
|
|
10984
|
-
{
|
|
10985
|
-
"name": "name",
|
|
10986
|
-
"title": "binding"
|
|
10987
|
-
}
|
|
10988
|
-
]
|
|
10989
|
-
},
|
|
10990
|
-
{
|
|
10991
|
-
"name": "controls",
|
|
10992
|
-
"scoped": true,
|
|
10993
|
-
"bindings": [
|
|
10994
|
-
{
|
|
10995
|
-
"name": "scrollLeft",
|
|
10996
|
-
"title": "binding"
|
|
10997
|
-
},
|
|
10998
|
-
{
|
|
10999
|
-
"name": "scrollRight",
|
|
11000
|
-
"title": "binding"
|
|
11001
|
-
},
|
|
11002
|
-
{
|
|
11003
|
-
"name": "canScrollLeft",
|
|
11004
|
-
"title": "binding"
|
|
11005
|
-
},
|
|
11006
|
-
{
|
|
11007
|
-
"name": "canScrollRight",
|
|
11008
|
-
"title": "binding"
|
|
11009
|
-
}
|
|
11010
|
-
]
|
|
11011
|
-
},
|
|
11012
|
-
{
|
|
11013
|
-
"name": "controlLeft"
|
|
11014
|
-
},
|
|
11015
|
-
{
|
|
11016
|
-
"name": "controlRight"
|
|
11110
|
+
"name": "default"
|
|
11017
11111
|
}
|
|
11018
11112
|
],
|
|
11019
11113
|
"sourceFiles": [
|
|
11020
|
-
"lib/components/systems/
|
|
11114
|
+
"lib/components/systems/skeleton/UluShowSkeleton.vue"
|
|
11021
11115
|
]
|
|
11022
11116
|
}
|
|
11023
11117
|
},
|
|
@@ -11481,100 +11575,6 @@
|
|
|
11481
11575
|
]
|
|
11482
11576
|
}
|
|
11483
11577
|
},
|
|
11484
|
-
"UluSkeletonText": {
|
|
11485
|
-
"raw_ast_dump": {
|
|
11486
|
-
"exportName": "default",
|
|
11487
|
-
"displayName": "UluSkeletonText",
|
|
11488
|
-
"description": "",
|
|
11489
|
-
"tags": {},
|
|
11490
|
-
"props": [
|
|
11491
|
-
{
|
|
11492
|
-
"name": "inline",
|
|
11493
|
-
"description": "Inline modifier",
|
|
11494
|
-
"type": {
|
|
11495
|
-
"name": "boolean"
|
|
11496
|
-
}
|
|
11497
|
-
},
|
|
11498
|
-
{
|
|
11499
|
-
"name": "alt",
|
|
11500
|
-
"description": "Use alternate background color",
|
|
11501
|
-
"type": {
|
|
11502
|
-
"name": "boolean"
|
|
11503
|
-
}
|
|
11504
|
-
},
|
|
11505
|
-
{
|
|
11506
|
-
"name": "width",
|
|
11507
|
-
"description": "Optional size (width) - should correspond with width setup in scss component",
|
|
11508
|
-
"type": {
|
|
11509
|
-
"name": "string"
|
|
11510
|
-
}
|
|
11511
|
-
}
|
|
11512
|
-
],
|
|
11513
|
-
"sourceFiles": [
|
|
11514
|
-
"lib/components/systems/skeleton/UluSkeletonText.vue"
|
|
11515
|
-
]
|
|
11516
|
-
}
|
|
11517
|
-
},
|
|
11518
|
-
"UluSkeletonMedia": {
|
|
11519
|
-
"raw_ast_dump": {
|
|
11520
|
-
"exportName": "default",
|
|
11521
|
-
"displayName": "UluSkeletonMedia",
|
|
11522
|
-
"description": "",
|
|
11523
|
-
"tags": {},
|
|
11524
|
-
"sourceFiles": [
|
|
11525
|
-
"lib/components/systems/skeleton/UluSkeletonMedia.vue"
|
|
11526
|
-
]
|
|
11527
|
-
}
|
|
11528
|
-
},
|
|
11529
|
-
"UluSkeletonContent": {
|
|
11530
|
-
"raw_ast_dump": {
|
|
11531
|
-
"exportName": "default",
|
|
11532
|
-
"displayName": "UluSkeletonContent",
|
|
11533
|
-
"description": "",
|
|
11534
|
-
"tags": {},
|
|
11535
|
-
"props": [
|
|
11536
|
-
{
|
|
11537
|
-
"name": "lines",
|
|
11538
|
-
"description": "Amount of lines to generate",
|
|
11539
|
-
"type": {
|
|
11540
|
-
"name": "number"
|
|
11541
|
-
},
|
|
11542
|
-
"defaultValue": {
|
|
11543
|
-
"func": false,
|
|
11544
|
-
"value": "6"
|
|
11545
|
-
}
|
|
11546
|
-
}
|
|
11547
|
-
],
|
|
11548
|
-
"sourceFiles": [
|
|
11549
|
-
"lib/components/systems/skeleton/UluSkeletonContent.vue"
|
|
11550
|
-
]
|
|
11551
|
-
}
|
|
11552
|
-
},
|
|
11553
|
-
"UluShowSkeleton": {
|
|
11554
|
-
"raw_ast_dump": {
|
|
11555
|
-
"exportName": "default",
|
|
11556
|
-
"displayName": "UluShowSkeleton",
|
|
11557
|
-
"description": "",
|
|
11558
|
-
"tags": {},
|
|
11559
|
-
"props": [
|
|
11560
|
-
{
|
|
11561
|
-
"name": "when",
|
|
11562
|
-
"description": "If true will show whatever is passed to slot, else skeleton text",
|
|
11563
|
-
"type": {
|
|
11564
|
-
"name": "boolean"
|
|
11565
|
-
}
|
|
11566
|
-
}
|
|
11567
|
-
],
|
|
11568
|
-
"slots": [
|
|
11569
|
-
{
|
|
11570
|
-
"name": "default"
|
|
11571
|
-
}
|
|
11572
|
-
],
|
|
11573
|
-
"sourceFiles": [
|
|
11574
|
-
"lib/components/systems/skeleton/UluShowSkeleton.vue"
|
|
11575
|
-
]
|
|
11576
|
-
}
|
|
11577
|
-
},
|
|
11578
11578
|
"UluFacetsSort": {
|
|
11579
11579
|
"raw_ast_dump": {
|
|
11580
11580
|
"exportName": "default",
|
|
@@ -12239,7 +12239,7 @@
|
|
|
12239
12239
|
"raw_markdown": "\nimport { Meta, Story, Canvas } from '@storybook/addon-docs/blocks';\nimport { version } from '../package.json';\nimport * as ButtonStories from './components/elements/UluButton.stories.js';\nimport * as CardStories from './components/elements/UluCard.stories.js';\n\n<Meta title=\"Overview/Introduction\" />\n\n# Ulu Frontend Vue\n\nWelcome to the living style guide for the Ulu Vue component library. This library provides a comprehensive set of accessible, reusable, and composable Vue 3 components, composables, and plugins to build modern web applications.\n\nThis documentation provides interactive examples and detailed API documentation for each part of the library.\n\n---\n\n## Core Concepts\n\nThe Ulu ecosystem is built on two main packages:\n\n- **`@ulu/frontend`**: The framework-agnostic core. It contains the foundational SCSS for styling, vanilla JavaScript utilities, and base components. It knows nothing about Vue. \n- **`@ulu/frontend-vue`** (This Library): The Vue 3 implementation. It provides wrapper components, composables, and plugins that build upon and integrate seamlessly with the `@ulu/frontend` core.\n\nThis separation allows for a consistent design system that can be applied to any web technology, while providing a rich, idiomatic experience for Vue developers.\n\n**Note:** For `@ulu/frontend` (components) that you are using from this Vue library. You need to output the component stylesheets like you would normally (create global stylesheet). The components in this library do not at the frontend scss modules. While they could be included in each component this would make it so that you can't build your own implementations (local app component / etc) with the class structures since the styles would only be available if that component is used. \n\nExample global stylesheet outputting all \"included\" components and base styles. Note you can configure whats output with ulu.component-set-includes for example. Note there are many ways to assemble the stylesheet (manual per component mixins, etc), this example shows the convenience modules which output each modules stylesheet based on includes/excludes.\n\n```sass\n@use \"config\"; // Your config changes for example\n@use \"@ulu/frontend/scss/stylesheets/base-styles.scss\"; // Outputs base styles that are included\n@use \"@ulu/frontend/scss/stylesheets/component-styles.scss\"; // Outputs component styles that are included\n@use \"@ulu/frontend/scss/stylesheets/helper-styles.scss\"; // Outputs helper styles that are included\n```\n\n*Please see `@ulu/frontend` library for full documentation of configuring and outputting stylesheet*\n\n---\n\n## Installation\n\nTo get started, add the library to your project.\n\n```bash\nnpm install @ulu/frontend-vue\n```\n\nNext, you must register the required plugins in your main application entry point (`main.js`). The `corePlugin` is essential, and other plugins like `breakpointsPlugin`, `popoverPlugin` are optional. Some components require plugins. If a required plugin is missing, an error is thrown.\n\n**`src/main.js`**\n```javascript\nimport { createApp } from 'vue';\nimport App from './App.vue';\nimport { \n corePlugin, \n breakpointsPlugin, \n toastPlugin, \n modalsPlugin, \n popoversPlugin \n} from '@ulu/frontend-vue';\nimport router from './router'; // Your vue-router instance\n\n// Import the main SCSS entry point\nimport '@ulu/frontend-vue/lib/_index.scss';\n\nconst app = createApp(App);\n\napp.use(router);\n\n// Register Ulu plugins\napp.use(corePlugin, {\n // Optional: override default icons\n iconsByType: {\n danger: 'fas fa-exclamation-triangle',\n close: 'fas fa-times'\n }\n});\napp.use(breakpointsPlugin);\napp.use(toastPlugin);\napp.use(modalsPlugin, { \n modals: [\n /* your global modals */\n ] \n});\napp.use(popoversPlugin);\n\n\napp.mount('#app');\n```\n\nFinally, you need to add the display components for plugins like `toast` and `modals` to your root `App.vue` file.\n\n**`src/App.vue`**\n```html\n<template>\n <!-- Your App Layout -->\n <router-view />\n\n <!-- Ulu Plugin Display Components -->\n <UluToastDisplay />\n <UluModalsDisplay />\n <UluTooltipDisplay />\n</template>\n```\n\n---\n\n## What's Inside?\n\nThe library is organized into several key areas:\n\n### Components\n\nThese are the reusable building blocks of your UI. They are organized by function into categories like `elements`, `collapsible`, `forms`, `layout`, `navigation`, and `systems`.\n\n**Simple Component Example: `UluButton`**\n\n<Canvas of={ButtonStories.Primary} />\n\n**Complex Component Example: `UluCard`**\n\n<Canvas of={CardStories.Default} />\n\n### Composables\n\nReusable, stateful logic that can be shared across components.\n\n- `useFacets`: A powerful composable for client-side filtering, searching, and sorting of data.\n- `usePagination`: Handles all the logic for paginating a list of items, including integration with Vue Router.\n- `useBreakpointManager`: A reactive interface to CSS breakpoints.\n- `useModifiers`: A utility for creating BEM-style modifier classes.\n- `useWindowResize`: A debounced window resize event listener.\n- `useRequiredInject`: A utility to ensure required dependencies are injected from plugins.\n\n### Plugins\n\nPlugins provide global functionality and APIs that can be accessed from anywhere in your application.\n\n- **`corePlugin` (Required)**: Manages global settings, primarily for the icon system.\n- **`breakpointsPlugin`**: Provides reactive information about the current CSS breakpoint (`uluIsMobile`, `uluBreakpointActive`).\n- **`modalsPlugin`**: A system for registering and triggering global modals (e.g., for settings or confirmation dialogs).\n- **`toastPlugin`**: A global API (`$uluToast`) for showing toast notifications.\n- **`popoversPlugin`**: Enables a simple `v-ulu-tooltip` directive for tooltips and provides the `UluPopover` component.\n\n**Example: Triggering a Toast Notification**\n```javascript\nimport { useToast } from '@ulu/frontend-vue';\n\nconst toast = useToast();\n\ntoast.add({\n title: 'Success!',\n description: 'Your profile has been updated.',\n class: 'is-success'\n});\n```\n\n### Component Systems\n\nSystems are complex, multi-component features that solve a specific problem.\n\n- **Facets**: A complete system for faceted search, built around the `useFacets` composable. Includes components for search, sort, filters, and results display.\n- **Scroll Anchors**: A system for creating navigations that track the user's scroll position within a page.\n- **Skeleton**: A set of components for creating beautiful and effective loading states.\n- **Table Sticky**: A powerful table component with sticky headers and columns.\n- **Slider**: A flexible slideshow/carousel component.\n\n### Resolver\n\nResolver for [`unplugin-vue-components`](https://github.com/unplugin/unplugin-vue-components/tree/main]) is available to use like:\n\n```js\n// vite.config.js\n\nimport { defineConfig } from \"vite\";\nimport Components from \"unplugin-vue-components/vite\";\nimport { UluUnpluginResolver } from \"@ulu/frontend-vue/resolver\";\n\nexport default defineConfig({\n plugins: [\n // ...\n Components({ \n resolvers: [\n UluUnpluginResolver()\n ]\n }),\n // ...\n ],\n // ...\n});\n```\n\n### Vite Asset URLs\n\nWhen using components like `UluImage` and `UluImageSource`, you may want to pass relative asset paths directly as props (e.g. `<UluImage src=\"./assets/img.png\" />`) instead of manually importing them in your setup script. \n\nTo enable Vite to automatically resolve these paths, you can add our custom transform rules to the Vue plugin in your `vite.config.js`:\n\n*Note: this includes the defaults (img, source, video, ...) in addition to the Ulu specific components, since configuring this clears the defaults (it's not merged).*\n\n```js\n// vite.config.js\n\nimport { defineConfig } from \"vite\";\nimport vue from \"@vitejs/plugin-vue\";\nimport { uluTransformAssetUrls } from \"@ulu/frontend-vue/vite.js\";\n\nexport default defineConfig({\n plugins: [\n vue({\n template: {\n transformAssetUrls: {\n // \n ...uluTransformAssetUrls\n }\n }\n }),\n // ...\n ],\n // ...\n});\n```"
|
|
12240
12240
|
},
|
|
12241
12241
|
"ExportsMap": {
|
|
12242
|
-
"raw_markdown": "\nimport { Meta } from '@storybook/addon-docs/blocks';\n\n<Meta title=\"Overview/API Reference\" />\n\n# API Reference\n\nThis page provides a comprehensive map of all named exports from the `@ulu/frontend-vue` library. Use this as a quick reference to discover available components, composables, plugins, and utilities.\n\n## Components\n\nThese are the building blocks for your UI. They are imported as named exports.\n\n* `UluAccordion`\n* `UluAccordionGroup`\n* `UluAction`\n* `UluAdaptiveLayout`\n* `UluAlert`\n* `UluAnimateNumber`\n* `UluBadge`\n* `UluBadgeStack`\n* `UluBreadcrumb`\n* `UluButton`\n* `UluButtonVerbose`\n* `UluCallout`\n* `UluCard`\n* `UluCollapsible`\n* `UluConditionalText`\n* `UluConditionalWrapper`\n* `UluDataGrid`\n* `UluDataTable`\n* `UluDefinitionList`\n* `UluDefinitionListItem`\n* `UluDropdown`\n* `UluEmpty`\n* `UluEmptyView`\n* `UluExternalLink`\n* `UluFacetsActiveFilters`\n* `UluFacetsFilterAccordions`\n* `UluFacetsFilterLists`\n* `UluFacetsFilterPopovers`\n* `UluFacetsFilterSelects`\n* `UluFacetsHeaderLayout`\n* `UluFacetsList`\n* `UluFacetsResults`\n* `UluFacetsSearch`\n* `UluFacetsSidebarLayout`\n* `UluFacetsSort`\n* `UluFileDisplay`\n* `UluForm`\n* `UluFormActions`\n* `UluFormCheckbox`\n* `UluFormFieldset`\n* `UluFormFile`\n* `UluFormItem`\n* `UluFormItemsInline`\n* `UluFormLabel`\n* `UluFormMessage`\n* `UluFormRadio`\n* `UluFormRequiredChar`\n* `UluFormSelect`\n* `UluFormText`\n* `UluFormTextarea`\n* `UluIcon`\n* `UluImage`\n* `UluImageSource`\n* In Progress - `UluImageSlider`\n* `UluList`\n* `UluListItem`\n* `UluCounterList`\n* `UluMain`\n* `UluMenu`\n* `UluMenuStack`\n* `UluModal`\n* `UluNavStrip`\n* `UluOverflowPopover`\n* `UluPager`\n* `UluPlaceholderImage`\n* `UluPlaceholderText`\n* `UluProgressBar`\n* `UluProgressCircle`\n* `UluRouteAnnouncer`\n* `UluRule`\n* `UluSanityRichText`\n* `UluScrollAnchors`\n* `UluScrollAnchorsHeadlessSection`\n* `UluScrollAnchorsNav`\n* `UluScrollAnchorsNavAnimated`\n* `UluScrollAnchorsSection`\n* `UluScrollSlider`\n* `UluSearchForm`\n* `UluSelectableMenu`\n* `UluShowSkeleton`\n* `UluSkeletonContent`\n* `UluSkeletonMedia`\n* `UluSkeletonText`\n* `UluSkipLink`\n* `UluSlider`\n* `UluSpokeSpinner`\n* `UluTab`\n* `UluTabGroup`\n* `UluTabList`\n* `UluTabPanel`\n* `UluTabPanels`\n* `UluTable`\n* `UluTableSticky`\n* `UluTableStickyRows`\n* `UluTableStickyTable`\n* `UluTag`\n* `UluTitleRail`\n\n---\n\n## Composables\n\nReusable, stateful logic that can be shared across components.\n\n* `useBreakpointManager`\n* `useDocumentTitle`\n* `useFacets`\n* `useIcon`\n* `useModifiers`\n* `usePagination`\n* `useRequiredInject`\n* `useScrollAnchorSection`\n* `useScrollAnchorSections`\n* `useScrollAnchors`\n* `useTableData`\n* `useTooltip`\n* `useTooltipFollow`\n* `useUluFloating`\n* `useWindowResize`\n\n---\n\n## Plugins\n\nPlugins provide global functionality and APIs.\n\n* `breakpointsPlugin`\n* `corePlugin`\n* `modalsPlugin`\n* `popoversPlugin`\n* `toastPlugin`\n\n\n\n---\n\n## Utilities\n\nThe `utils` export is a namespace containing helper functions.\n\n* `utils.dom`\n* `utils.router`\n\n`\n* `utils.router`\n"
|
|
12242
|
+
"raw_markdown": "\nimport { Meta } from '@storybook/addon-docs/blocks';\n\n<Meta title=\"Overview/API Reference\" />\n\n# API Reference\n\nThis page provides a comprehensive map of all named exports from the `@ulu/frontend-vue` library. Use this as a quick reference to discover available components, composables, plugins, and utilities.\n\n## Components\n\nThese are the building blocks for your UI. They are imported as named exports.\n\n* `UluAccordion`\n* `UluAccordionGroup`\n* `UluAction`\n* `UluAdaptiveLayout`\n* `UluAlert`\n* `UluAnimateNumber`\n* `UluBadge`\n* `UluBadgeStack`\n* `UluBreadcrumb`\n* `UluButton`\n* `UluButtonVerbose`\n* `UluCallout`\n* `UluCard`\n* `UluCollapsible`\n* `UluConditionalText`\n* `UluConditionalWrapper`\n* `UluDataGrid`\n* `UluDataTable`\n* `UluDefinitionList`\n* `UluDefinitionListItem`\n* `UluDropdown`\n* `UluEmpty`\n* `UluEmptyView`\n* `UluExternalLink`\n* `UluFacetsActiveFilters`\n* `UluFacetsFilterAccordions`\n* `UluFacetsFilterLists`\n* `UluFacetsFilterPopovers`\n* `UluFacetsFilterSelects`\n* `UluFacetsHeaderLayout`\n* `UluFacetsList`\n* `UluFacetsResults`\n* `UluFacetsSearch`\n* `UluFacetsSidebarLayout`\n* `UluFacetsSort`\n* `UluFileDisplay`\n* `UluForm`\n* `UluFormActions`\n* `UluFormCheckbox`\n* `UluFormFieldset`\n* `UluFormFile`\n* `UluFormItem`\n* `UluFormItemsInline`\n* `UluFormLabel`\n* `UluFormMessage`\n* `UluFormRadio`\n* `UluFormRequiredChar`\n* `UluFormSelect`\n* `UluFormText`\n* `UluFormTextarea`\n* `UluIcon`\n* `UluImage`\n* `UluImageSource`\n* In Progress - `UluImageSlider`\n* `UluList`\n* `UluListItem`\n* `UluCounterList`\n* `UluMain`\n* `UluMenu`\n* `UluMenuStack`\n* `UluModal`\n* `UluNavStrip`\n* `UluOverflowPopover`\n* `UluPager`\n* `UluPlaceholderImage`\n* `UluPlaceholderText`\n* `UluProgressBar`\n* `UluProgressCircle`\n* `UluRouteAnnouncer`\n* `UluRule`\n* `UluSanityRichText`\n* `UluScrollAnchors`\n* `UluScrollAnchorsHeadlessSection`\n* `UluScrollAnchorsNav`\n* `UluScrollAnchorsNavAnimated`\n* `UluScrollAnchorsSection`\n* `UluScrollSlider`\n* `UluSearchForm`\n* `UluSelectableMenu`\n* `UluShowSkeleton`\n* `UluSkeletonContent`\n* `UluSkeletonMedia`\n* `UluSkeletonText`\n* `UluSkipLink`\n* `UluSlider`\n* `UluSpokeSpinner`\n* `UluTab`\n* `UluTabGroup`\n* `UluTabList`\n* `UluTabPanel`\n* `UluTabPanels`\n* `UluTable`\n* `UluTableSticky`\n* `UluTableStickyRows`\n* `UluTableStickyTable`\n* `UluTag`\n* `UluTitleRail`\n\n---\n\n## Composables\n\nReusable, stateful logic that can be shared across components.\n\n* `useBreakpointManager`\n* `useDocumentTitle`\n* `useFacets`\n* `useIcon`\n* `useModifiers`\n* `usePagination`\n* `useRequiredInject`\n* `useScrollAnchorSection`\n* `useScrollAnchorSections`\n* `useScrollAnchors`\n* `useTableData`\n* `useToast`\n* `useTooltip`\n* `useTooltipFollow`\n* `useUluFloating`\n* `useWindowResize`\n\n---\n\n## Plugins\n\nPlugins provide global functionality and APIs.\n\n* `breakpointsPlugin`\n* `corePlugin`\n* `modalsPlugin`\n* `popoversPlugin`\n* `toastPlugin`\n\n\n\n---\n\n## Utilities\n\nThe `utils` export is a namespace containing helper functions.\n\n* `utils.dom`\n* `utils.router`\n\n`\n* `utils.router`\n"
|
|
12243
12243
|
},
|
|
12244
12244
|
"ChangeLog": {
|
|
12245
12245
|
"raw_markdown": "import { Meta, Markdown } from '@storybook/addon-docs/blocks';\nimport CHANGELOG from '../CHANGELOG.md?raw';\n\n<Meta title=\"Overview/Change Log\" />\n\n<Markdown>\n{CHANGELOG}\n</Markdown>"
|
|
@@ -12262,18 +12262,18 @@
|
|
|
12262
12262
|
"useBreakpointManager": {
|
|
12263
12263
|
"raw_markdown": "# useBreakpointManager\n\nComposable for adding breakpoint manager and related breakpoint info (via breakpoint manager from `@ulu/frontend/js/ui/breakpoints.js > BreakpointManager`).\n\n**Note:** Using the composable is only necessary for unique situations. For basic breakpoint setup use the `breakpointsPlugin`. Which uses this composable.\n\n## Options for this composable\n\n```js\nconst defaults = {\n /**\n * Set an initial value (value in mounted, SSR)\n */\n initialValue: null,\n /**\n * Function called after init (passed manager)\n */\n onReady: null,\n /**\n * Options sent to CssBreakpoints library (ulu/frontend/js/breakpoints <BreakpointManager>)\n */\n plugin: {\n customProperty: \"--breakpoint\"\n }\n}\n```\n\n## Example Usage\n\n```html\n<script setup>\n import { ref, computed, provide } from \"vue\";\n import { useBreakpointManager } from \"./useBreakpointManager.js\";\n\n const isMobile = ref(false);\n\n // Example using the onReady callback to set reactive value isMobile\n // - In this situation isMobile is being used as a primary change in \n // the applications layout \n const options = { \n onReady(manager) {\n manager.at(\"small\").max(() => isMobile.value = true);\n manager.at(\"large\").min(() => isMobile.value = false);\n }\n };\n\n // Composable returns the following\n const { \n /**\n * Reference to underlying BreakpointManager class\n */\n breakpointManager, \n /**\n * Active breakpoint name\n */\n breakpointActive, \n /**\n * Current resizeDirection (\"up\"|\"down\"|null)\n */\n breakpointDirection \n } = useBreakpointManager(options);\n\n\n // Allowing all components to access these values\n provide(\"uluBreakpointActive\", computed(() => breakpointActive));\n provide(\"uluBreakpointDirection\", computed(() => breakpointDirection));\n provide(\"uluBreakpointManager\", computed(() => breakpointManager));\n provide(\"uluIsMobile\", computed(() => isMobile));\n\n</script>\n```"
|
|
12264
12264
|
},
|
|
12265
|
-
"
|
|
12266
|
-
"raw_markdown": "
|
|
12265
|
+
"core": {
|
|
12266
|
+
"raw_markdown": "# Core Plugin\n\n## Purpose\n\nThe Core Plugin is the central, **required** plugin for the `@ulu/frontend-vue` library. Its primary purpose is to establish a single, reactive source of truth for configuration settings that are shared across multiple components. \n\nBy using Vue's `provide`/`inject` system, this plugin ensures that all components within your application access the same configuration, preventing inconsistencies that can arise from separate module imports.\n\n## Installation\n\nTo use this library, you must register the `corePlugin` on your Vue app instance. You can also pass an options object to override the default settings.\n\n```javascript\n// src/main.js\nimport { createApp } from 'vue';\nimport App from './App.vue';\nimport { corePlugin } from '@ulu/frontend-vue';\n\nconst app = createApp(App);\n\n// Register the core plugin\napp.use(corePlugin, {\n // Optional: override general settings\n fontAwesomeStatic: true,\n\n // Optional: override specific icons safely\n iconsByType: {\n danger: 'my-custom-danger-icon',\n close: 'my-custom-close-icon'\n }\n});\n\napp.mount('#app');\n```\n\n## API Reference\n\nThe plugin provides its API to your application in two ways:\n\n- **Composition API:** `inject('uluCore')`\n- **Options API:** `this.$uluCore`\n\nThe API object contains the following methods:\n\n- `getSettings()`: Returns the full reactive settings object.\n- `getSetting(key)`: Retrieves a single setting by its key (e.g., `'fontAwesomeStatic'`).\n- `updateSetting(key, value)`: Updates a single setting.\n- `updateSettings(changes)`: Merges an object of changes into the settings.\n- `getDefaultSettings()`: Returns a non-reactive copy of the original default settings.\n- `getIcon(type)`: Retrieves a specific icon class string by its semantic type (e.g., `'danger'`, `'close'`).\n- `setIcon(type, definition)`: Safely sets or overrides a single icon definition.\n\n### Example Usage\n\n**Composition API (`<script setup>`)**\n```vue\n<script setup>\nimport { inject, onMounted } from 'vue';\n\nconst uluCore = inject('uluCore');\n\nonMounted(() => {\n const icons = uluCore.getSetting('iconsByType');\n console.log('Danger Icon:', icons.danger);\n\n // Example of updating a single icon dynamically\n uluCore.setIcon('success', 'my-awesome-success-icon');\n});\n</script>\n```\n\n**Options API**\n```vue\n<script>\nexport default {\n mounted() {\n const icons = this.$uluCore.getSetting('icons');\n console.log('Danger Icon:', icons.danger);\n }\n}\n</script>\n```\n\n"
|
|
12267
12267
|
},
|
|
12268
12268
|
"modals": {
|
|
12269
12269
|
"raw_markdown": "import { Canvas } from '@storybook/addon-docs/blocks';\nimport * as ModalStories from '../../components/collapsible/UluModal.stories.js';\n\n# Modals\n\nModals plugin allows configuring app-wide modals that are triggered by the global API. Register your modals when you install the plugin then interact with them using the global API.\n\n## Registering your app-wide modals\n\nCreate the modal component file like:\n\n```html\n<template>\n <UluModal>\n User setting modal…\n </UluModal>\n</template>\n```\n\n\nExample ./scr/modals.js\n\n```js\nimport { defineAsyncComponent } from \"vue\";\n\nexport default [\n {\n name: \"settings\",\n component: defineAsyncComponent(() => import('./components/modals/UserSettingsModal.vue')),\n }\n]\n```\n\n## Installing the plugin\n\nExample ./src/main.js\n\n```js\nimport UluModals from \"@ulu/frontend-vue/plugins/modals/index.js\";\nimport modals from \"./src/modals.js\";\n\n//...\n\napp.use(UluModals, { modals });\n\n```\n\n## Using Global API\n\n```js\n\n// Open a app-wide modal\nthis.$uluModals.open({ exampleProp: value });\n\n// Close app-wide modal \nthis.$uluModals.close();\n\n// Add modals after post-install\nthis.$uluModals.add({\n name: \"settings\",\n component: defineAsyncComponent(() => import('./components/modals/UserSettingsModal.vue')),\n});\n\n// Remove a modal from the registry\nthis.$uluModals.remove(\"settings\");\n\n// Get Modal from registry (not usually needed)\nconst settingsModal = this.$uluModals.get(\"settings\");\n// console.log(settingsModal.name) ==> \"settings\"\n```\n\n## Using Composition API (via composable)\n\nComposable is used get access to modals API (through inject)\n\n```html\n\n<template>\n <button @click=\"showSettingsModal\">My Settings</button>\n</template>\n\n<script setup>\n import { useModals } from \"./useModals\";\n\n const modals = useModals();\n const showSettingsModal = () => {\n console.log(\"This is opening via uluModals composable\");\n modals.open(\"settings\");\n };\n</script>\n\n```\n\n## Standalone Modal Component\n\nThe `UluModal` **component is independent of this plugin.** The plugin is simply a convenient way to manage global modals (for things like a settings dialog) that need to be opened from anywhere in your application.\n\nYou can use `UluModal` as the component that the plugin displays, or you can use it on its own for any case where you are managing the state locally within a component and don't need a global API.\n\nHere is a demonstration of the standalone `UluModal` component:\n\n<Canvas of={ModalStories.Default} />"
|
|
12270
12270
|
},
|
|
12271
|
-
"core": {
|
|
12272
|
-
"raw_markdown": "# Core Plugin\n\n## Purpose\n\nThe Core Plugin is the central, **required** plugin for the `@ulu/frontend-vue` library. Its primary purpose is to establish a single, reactive source of truth for configuration settings that are shared across multiple components. \n\nBy using Vue's `provide`/`inject` system, this plugin ensures that all components within your application access the same configuration, preventing inconsistencies that can arise from separate module imports.\n\n## Installation\n\nTo use this library, you must register the `corePlugin` on your Vue app instance. You can also pass an options object to override the default settings.\n\n```javascript\n// src/main.js\nimport { createApp } from 'vue';\nimport App from './App.vue';\nimport { corePlugin } from '@ulu/frontend-vue';\n\nconst app = createApp(App);\n\n// Register the core plugin\napp.use(corePlugin, {\n // Optional: override general settings\n fontAwesomeStatic: true,\n\n // Optional: override specific icons safely\n iconsByType: {\n danger: 'my-custom-danger-icon',\n close: 'my-custom-close-icon'\n }\n});\n\napp.mount('#app');\n```\n\n## API Reference\n\nThe plugin provides its API to your application in two ways:\n\n- **Composition API:** `inject('uluCore')`\n- **Options API:** `this.$uluCore`\n\nThe API object contains the following methods:\n\n- `getSettings()`: Returns the full reactive settings object.\n- `getSetting(key)`: Retrieves a single setting by its key (e.g., `'fontAwesomeStatic'`).\n- `updateSetting(key, value)`: Updates a single setting.\n- `updateSettings(changes)`: Merges an object of changes into the settings.\n- `getDefaultSettings()`: Returns a non-reactive copy of the original default settings.\n- `getIcon(type)`: Retrieves a specific icon class string by its semantic type (e.g., `'danger'`, `'close'`).\n- `setIcon(type, definition)`: Safely sets or overrides a single icon definition.\n\n### Example Usage\n\n**Composition API (`<script setup>`)**\n```vue\n<script setup>\nimport { inject, onMounted } from 'vue';\n\nconst uluCore = inject('uluCore');\n\nonMounted(() => {\n const icons = uluCore.getSetting('iconsByType');\n console.log('Danger Icon:', icons.danger);\n\n // Example of updating a single icon dynamically\n uluCore.setIcon('success', 'my-awesome-success-icon');\n});\n</script>\n```\n\n**Options API**\n```vue\n<script>\nexport default {\n mounted() {\n const icons = this.$uluCore.getSetting('icons');\n console.log('Danger Icon:', icons.danger);\n }\n}\n</script>\n```\n\n"
|
|
12273
|
-
},
|
|
12274
12271
|
"breakpoints": {
|
|
12275
12272
|
"raw_markdown": "# Breakpoints Plugin\n\n## Purpose\n\nThe Breakpoints Plugin provides app-wide, reactive breakpoint information to your Vue components. It is a lightweight wrapper around the `useBreakpointManager` composable, ensuring that resize events and active breakpoint states are tracked centrally and distributed efficiently via Vue's `provide`/`inject` system.\n\nBy installing this plugin, any component in your application can instantly know the current breakpoint, whether the device is considered \"mobile,\" and the direction the window was just resized.\n\n## Installation\n\nRegister the `breakpointsPlugin` on your Vue app instance.\n\n```javascript\n// src/main.js\nimport { createApp } from 'vue';\nimport App from './App.vue';\nimport { breakpointsPlugin } from '@ulu/frontend-vue';\n\nconst app = createApp(App);\n\n// Register the breakpoints plugin\napp.use(breakpointsPlugin, {\n // Optional: Change which breakpoint triggers the 'isMobile' flag (default is 'small')\n breakpointMobile: 'small',\n \n // Optional: Pass options directly to the underlying useBreakpointManager\n managerOptions: {\n // onReady(manager) { ... }\n }\n});\n\napp.mount('#app');\n```\n\n## Provided Injections\n\nThe plugin does not attach methods to the Vue instance. Instead, it provides reactive `computed` refs that you can inject into any component.\n\n- **`uluIsMobile`**: `ComputedRef<Boolean>` - True if the current active breakpoint is less than or equal to the configured `breakpointMobile` (defaults to `'small'`).\n- **`uluBreakpointActive`**: `ComputedRef<String>` - The name of the currently active breakpoint (e.g., `'small'`, `'medium'`, `'large'`).\n- **`uluBreakpointDirection`**: `ComputedRef<Number>` - Indicates the resize direction (`1` for growing larger, `-1` for shrinking smaller, `0` for initialization).\n- **`uluBreakpointManager`**: `ComputedRef<Object>` - The underlying vanilla JS BreakpointManager instance, allowing advanced programmatic subscriptions if needed.\n\n## Example Usage\n\n**Composition API (`<script setup>`)**\n```vue\n<script setup>\n import { inject } from 'vue';\n\n const isMobile = inject('uluIsMobile');\n const currentBreakpoint = inject('uluBreakpointActive');\n</script>\n\n<template>\n <div>\n <p v-if=\"isMobile\">You are on a mobile device!</p>\n <p>Current Breakpoint: {{ currentBreakpoint }}</p>\n </div>\n</template>\n```\n\n**Options API**\n```vue\n<script>\nexport default {\n inject: ['uluIsMobile', 'uluBreakpointActive'],\n mounted() {\n console.log('Is mobile?', this.uluIsMobile);\n }\n}\n</script>\n```\n\n## Why use the Plugin vs the Composable?\n\nWhile you can import and use `useBreakpointManager()` directly in individual components, registering the Breakpoints Plugin ensures that the vanilla JS `BreakpointManager` is only instantiated once. This centralizes the resize event listeners, significantly improving performance across large applications with many responsive components.\n"
|
|
12276
12273
|
},
|
|
12274
|
+
"forms": {
|
|
12275
|
+
"raw_markdown": "import { Meta, Canvas, Story } from '@storybook/addon-docs/blocks';\nimport * as FullFormDemoStories from './tests/FullFormDemo.stories.js';\n\n# Forms\n\nThis is a demonstration of a full form built with the `ulu-form` components.\n\n<Canvas of={FullFormDemoStories.Default} />\n"
|
|
12276
|
+
},
|
|
12277
12277
|
"useScrollAnchors": {
|
|
12278
12278
|
"raw_markdown": "# useScrollAnchors\n\nThe main composable that contains the core \"engine\" for the Scroll Anchors system.\nIt encapsulates the `IntersectionObserver` logic to track sections and manage their active state.\nThis is intended for advanced use cases where a developer needs to build a custom provider\ncomponent instead of using the default `UluScrollAnchors`.\n\n## Usage\n\nThis composable is used to power a custom provider component. You would use it to provide the context to child components via Vue's `provide` function, using string-based keys.\n\n```html\n<script setup>\n import { ref, computed, provide } from \"vue\";\n import { useScrollAnchors } from './useScrollAnchors.js';\n\n const props = defineProps({\n firstItemActive: Boolean,\n observerOptions: Object\n });\n const emit = defineEmits(['section-change']);\n const componentEl = ref(null);\n const sections = ref([]);\n\n // Use the composable to handle the core logic\n useScrollAnchors({ sections, props, emit, componentElRef: componentEl });\n\n // Provide the state and registration functions to children\n provide('uluScrollAnchorsSections', computed(() => sections.value));\n provide('uluScrollAnchorsRegister', (section) => sections.value.push(section));\n provide('uluScrollAnchorsUnregister', (sectionId) => {\n const index = sections.value.findIndex(r => r.id === sectionId);\n if (index > -1) sections.value.splice(index, 1);\n });\n</script>\n\n<template>\n <!-- Your custom wrapper, or no wrapper at all -->\n <div ref=\"componentEl\">\n <slot/>\n </div>\n</template>\n```\n\n## Parameters\n\nThe `useScrollAnchors` composable accepts a single object with the following properties:\n\n- `sections` (Ref): A `ref` to the array of section objects that will be tracked.\n- `props` (Object): A props object containing `observerOptions` and `firstItemActive`.\n- `emit` (Function): The `emit` function from the host component, used to emit the `section-change` event.\n- `componentElRef` (Ref): A `ref` to an element within the component, used to find the nearest scrollable ancestor. This is not needed if `observerOptions.root` is set.\n\n## Returns\n\nThis composable does not return any values. It manages the observer and mutates the `active` state on the items within the `sections` array directly.\n"
|
|
12279
12279
|
},
|
|
@@ -12405,6 +12405,32 @@
|
|
|
12405
12405
|
"order": 28,
|
|
12406
12406
|
"level": 0
|
|
12407
12407
|
},
|
|
12408
|
+
{
|
|
12409
|
+
"id": "module:components",
|
|
12410
|
+
"longname": "module:components",
|
|
12411
|
+
"name": "components",
|
|
12412
|
+
"kind": "module",
|
|
12413
|
+
"meta": {
|
|
12414
|
+
"lineno": 1,
|
|
12415
|
+
"filename": "index.js",
|
|
12416
|
+
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/components"
|
|
12417
|
+
},
|
|
12418
|
+
"order": 29,
|
|
12419
|
+
"level": 0
|
|
12420
|
+
},
|
|
12421
|
+
{
|
|
12422
|
+
"id": "components/index.js\nResponsible for exporting all components\n- Used in main plugin and bundle exportsmodule:",
|
|
12423
|
+
"longname": "components/index.js\nResponsible for exporting all components\n- Used in main plugin and bundle exportsmodule:",
|
|
12424
|
+
"name": "components/index.js\nResponsible for exporting all components\n- Used in main plugin and bundle exports",
|
|
12425
|
+
"kind": "module",
|
|
12426
|
+
"meta": {
|
|
12427
|
+
"lineno": 4,
|
|
12428
|
+
"filename": "index.js",
|
|
12429
|
+
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/components"
|
|
12430
|
+
},
|
|
12431
|
+
"order": 30,
|
|
12432
|
+
"level": 0
|
|
12433
|
+
},
|
|
12408
12434
|
{
|
|
12409
12435
|
"id": "module:useWindowResize",
|
|
12410
12436
|
"longname": "module:useWindowResize",
|
|
@@ -12415,7 +12441,7 @@
|
|
|
12415
12441
|
"filename": "useWindowResize.js",
|
|
12416
12442
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
12417
12443
|
},
|
|
12418
|
-
"order":
|
|
12444
|
+
"order": 31,
|
|
12419
12445
|
"level": 0
|
|
12420
12446
|
},
|
|
12421
12447
|
{
|
|
@@ -12428,7 +12454,7 @@
|
|
|
12428
12454
|
"filename": "useUluFloating.js",
|
|
12429
12455
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
12430
12456
|
},
|
|
12431
|
-
"order":
|
|
12457
|
+
"order": 34,
|
|
12432
12458
|
"level": 0
|
|
12433
12459
|
},
|
|
12434
12460
|
{
|
|
@@ -12441,7 +12467,7 @@
|
|
|
12441
12467
|
"filename": "useTableData.js",
|
|
12442
12468
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
12443
12469
|
},
|
|
12444
|
-
"order":
|
|
12470
|
+
"order": 38,
|
|
12445
12471
|
"level": 0
|
|
12446
12472
|
},
|
|
12447
12473
|
{
|
|
@@ -12454,7 +12480,7 @@
|
|
|
12454
12480
|
"filename": "useRequiredInject.js",
|
|
12455
12481
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
12456
12482
|
},
|
|
12457
|
-
"order":
|
|
12483
|
+
"order": 46,
|
|
12458
12484
|
"level": 0
|
|
12459
12485
|
},
|
|
12460
12486
|
{
|
|
@@ -12467,7 +12493,7 @@
|
|
|
12467
12493
|
"filename": "usePagination.js",
|
|
12468
12494
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
12469
12495
|
},
|
|
12470
|
-
"order":
|
|
12496
|
+
"order": 48,
|
|
12471
12497
|
"level": 0
|
|
12472
12498
|
},
|
|
12473
12499
|
{
|
|
@@ -12480,7 +12506,7 @@
|
|
|
12480
12506
|
"filename": "useModifiers.js",
|
|
12481
12507
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
12482
12508
|
},
|
|
12483
|
-
"order":
|
|
12509
|
+
"order": 50,
|
|
12484
12510
|
"level": 0
|
|
12485
12511
|
},
|
|
12486
12512
|
{
|
|
@@ -12493,7 +12519,7 @@
|
|
|
12493
12519
|
"filename": "useIcon.js",
|
|
12494
12520
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
12495
12521
|
},
|
|
12496
|
-
"order":
|
|
12522
|
+
"order": 52,
|
|
12497
12523
|
"level": 0
|
|
12498
12524
|
},
|
|
12499
12525
|
{
|
|
@@ -12506,7 +12532,7 @@
|
|
|
12506
12532
|
"filename": "useDocumentTitle.js",
|
|
12507
12533
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
12508
12534
|
},
|
|
12509
|
-
"order":
|
|
12535
|
+
"order": 55,
|
|
12510
12536
|
"level": 0
|
|
12511
12537
|
},
|
|
12512
12538
|
{
|
|
@@ -12519,7 +12545,7 @@
|
|
|
12519
12545
|
"filename": "useBreakpointManager.js",
|
|
12520
12546
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
12521
12547
|
},
|
|
12522
|
-
"order":
|
|
12548
|
+
"order": 57,
|
|
12523
12549
|
"level": 0
|
|
12524
12550
|
},
|
|
12525
12551
|
{
|
|
@@ -12532,32 +12558,6 @@
|
|
|
12532
12558
|
"filename": "index.js",
|
|
12533
12559
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
12534
12560
|
},
|
|
12535
|
-
"order": 60,
|
|
12536
|
-
"level": 0
|
|
12537
|
-
},
|
|
12538
|
-
{
|
|
12539
|
-
"id": "module:components",
|
|
12540
|
-
"longname": "module:components",
|
|
12541
|
-
"name": "components",
|
|
12542
|
-
"kind": "module",
|
|
12543
|
-
"meta": {
|
|
12544
|
-
"lineno": 1,
|
|
12545
|
-
"filename": "index.js",
|
|
12546
|
-
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/components"
|
|
12547
|
-
},
|
|
12548
|
-
"order": 61,
|
|
12549
|
-
"level": 0
|
|
12550
|
-
},
|
|
12551
|
-
{
|
|
12552
|
-
"id": "components/index.js\nResponsible for exporting all components\n- Used in main plugin and bundle exportsmodule:",
|
|
12553
|
-
"longname": "components/index.js\nResponsible for exporting all components\n- Used in main plugin and bundle exportsmodule:",
|
|
12554
|
-
"name": "components/index.js\nResponsible for exporting all components\n- Used in main plugin and bundle exports",
|
|
12555
|
-
"kind": "module",
|
|
12556
|
-
"meta": {
|
|
12557
|
-
"lineno": 4,
|
|
12558
|
-
"filename": "index.js",
|
|
12559
|
-
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/components"
|
|
12560
|
-
},
|
|
12561
12561
|
"order": 62,
|
|
12562
12562
|
"level": 0
|
|
12563
12563
|
},
|
|
@@ -12614,95 +12614,95 @@
|
|
|
12614
12614
|
"level": 0
|
|
12615
12615
|
},
|
|
12616
12616
|
{
|
|
12617
|
-
"id": "module:
|
|
12618
|
-
"longname": "module:
|
|
12619
|
-
"name": "
|
|
12617
|
+
"id": "module:useModals",
|
|
12618
|
+
"longname": "module:useModals",
|
|
12619
|
+
"name": "useModals",
|
|
12620
12620
|
"kind": "module",
|
|
12621
12621
|
"meta": {
|
|
12622
12622
|
"lineno": 1,
|
|
12623
|
-
"filename": "
|
|
12624
|
-
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/
|
|
12623
|
+
"filename": "useModals.js",
|
|
12624
|
+
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
|
|
12625
12625
|
},
|
|
12626
12626
|
"order": 80,
|
|
12627
12627
|
"level": 0
|
|
12628
12628
|
},
|
|
12629
12629
|
{
|
|
12630
|
-
"id": "module:
|
|
12631
|
-
"longname": "module:
|
|
12632
|
-
"name": "
|
|
12630
|
+
"id": "module:modalsPlugin",
|
|
12631
|
+
"longname": "module:modalsPlugin",
|
|
12632
|
+
"name": "modalsPlugin",
|
|
12633
12633
|
"kind": "module",
|
|
12634
|
+
"description": "Modals plugin (adds components, global registry, etc)\n- Updated version handles both independent and global registered/triggered modals",
|
|
12634
12635
|
"meta": {
|
|
12635
12636
|
"lineno": 1,
|
|
12636
|
-
"filename": "
|
|
12637
|
-
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/
|
|
12637
|
+
"filename": "index.js",
|
|
12638
|
+
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
|
|
12638
12639
|
},
|
|
12639
|
-
"order":
|
|
12640
|
+
"order": 82,
|
|
12640
12641
|
"level": 0
|
|
12641
12642
|
},
|
|
12642
12643
|
{
|
|
12643
|
-
"id": "module:
|
|
12644
|
-
"longname": "module:
|
|
12645
|
-
"name": "
|
|
12644
|
+
"id": "modals.module:api",
|
|
12645
|
+
"longname": "modals.module:api",
|
|
12646
|
+
"name": "api",
|
|
12646
12647
|
"kind": "module",
|
|
12647
12648
|
"meta": {
|
|
12648
12649
|
"lineno": 1,
|
|
12649
|
-
"filename": "
|
|
12650
|
-
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/
|
|
12650
|
+
"filename": "api.js",
|
|
12651
|
+
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
|
|
12651
12652
|
},
|
|
12652
|
-
"order":
|
|
12653
|
+
"order": 85,
|
|
12653
12654
|
"level": 0
|
|
12654
12655
|
},
|
|
12655
12656
|
{
|
|
12656
|
-
"id": "
|
|
12657
|
-
"longname": "
|
|
12658
|
-
"name": "
|
|
12657
|
+
"id": "module:useTooltipFollow",
|
|
12658
|
+
"longname": "module:useTooltipFollow",
|
|
12659
|
+
"name": "useTooltipFollow",
|
|
12659
12660
|
"kind": "module",
|
|
12660
12661
|
"meta": {
|
|
12661
12662
|
"lineno": 1,
|
|
12662
|
-
"filename": "
|
|
12663
|
+
"filename": "useTooltipFollow.js",
|
|
12663
12664
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
12664
12665
|
},
|
|
12665
|
-
"order":
|
|
12666
|
+
"order": 94,
|
|
12667
|
+
"level": 0
|
|
12666
12668
|
},
|
|
12667
12669
|
{
|
|
12668
|
-
"id": "module:
|
|
12669
|
-
"longname": "module:
|
|
12670
|
-
"name": "
|
|
12670
|
+
"id": "module:useTooltip",
|
|
12671
|
+
"longname": "module:useTooltip",
|
|
12672
|
+
"name": "useTooltip",
|
|
12671
12673
|
"kind": "module",
|
|
12672
12674
|
"meta": {
|
|
12673
12675
|
"lineno": 1,
|
|
12674
|
-
"filename": "
|
|
12675
|
-
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/
|
|
12676
|
+
"filename": "useTooltip.js",
|
|
12677
|
+
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
12676
12678
|
},
|
|
12677
|
-
"order":
|
|
12679
|
+
"order": 95,
|
|
12678
12680
|
"level": 0
|
|
12679
12681
|
},
|
|
12680
12682
|
{
|
|
12681
|
-
"id": "module:
|
|
12682
|
-
"longname": "module:
|
|
12683
|
-
"name": "
|
|
12683
|
+
"id": "module:popoversPlugin",
|
|
12684
|
+
"longname": "module:popoversPlugin",
|
|
12685
|
+
"name": "popoversPlugin",
|
|
12684
12686
|
"kind": "module",
|
|
12685
|
-
"description": "Modals plugin (adds components, global registry, etc)\n- Updated version handles both independent and global registered/triggered modals",
|
|
12686
12687
|
"meta": {
|
|
12687
12688
|
"lineno": 1,
|
|
12688
12689
|
"filename": "index.js",
|
|
12689
|
-
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/
|
|
12690
|
+
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
12690
12691
|
},
|
|
12691
|
-
"order":
|
|
12692
|
+
"order": 97,
|
|
12692
12693
|
"level": 0
|
|
12693
12694
|
},
|
|
12694
12695
|
{
|
|
12695
|
-
"id": "
|
|
12696
|
-
"longname": "
|
|
12697
|
-
"name": "
|
|
12696
|
+
"id": "popovers.module:defaults",
|
|
12697
|
+
"longname": "popovers.module:defaults",
|
|
12698
|
+
"name": "defaults",
|
|
12698
12699
|
"kind": "module",
|
|
12699
12700
|
"meta": {
|
|
12700
12701
|
"lineno": 1,
|
|
12701
|
-
"filename": "
|
|
12702
|
-
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/
|
|
12702
|
+
"filename": "defaults.js",
|
|
12703
|
+
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
12703
12704
|
},
|
|
12704
|
-
"order":
|
|
12705
|
-
"level": 0
|
|
12705
|
+
"order": 103
|
|
12706
12706
|
},
|
|
12707
12707
|
{
|
|
12708
12708
|
"id": "module:corePlugin",
|
|
@@ -12805,7 +12805,7 @@
|
|
|
12805
12805
|
"description": "Install plugin",
|
|
12806
12806
|
"memberof": "module:toastPlugin",
|
|
12807
12807
|
"meta": {
|
|
12808
|
-
"lineno":
|
|
12808
|
+
"lineno": 12,
|
|
12809
12809
|
"filename": "index.js",
|
|
12810
12810
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/toast"
|
|
12811
12811
|
},
|
|
@@ -12813,75 +12813,75 @@
|
|
|
12813
12813
|
"level": 0
|
|
12814
12814
|
},
|
|
12815
12815
|
{
|
|
12816
|
-
"id": "module:
|
|
12817
|
-
"longname": "module:
|
|
12816
|
+
"id": "module:modalsPlugin--module.exports",
|
|
12817
|
+
"longname": "module:modalsPlugin",
|
|
12818
12818
|
"name": "module.exports",
|
|
12819
12819
|
"kind": "function",
|
|
12820
12820
|
"isExported": true,
|
|
12821
|
-
"description": "
|
|
12822
|
-
"memberof": "module:
|
|
12821
|
+
"description": "Modals Vue Plugin",
|
|
12822
|
+
"memberof": "module:modalsPlugin",
|
|
12823
12823
|
"params": [
|
|
12824
12824
|
{
|
|
12825
12825
|
"type": {
|
|
12826
12826
|
"names": [
|
|
12827
|
-
"
|
|
12827
|
+
"Object"
|
|
12828
12828
|
]
|
|
12829
12829
|
},
|
|
12830
|
-
"description": "
|
|
12831
|
-
"name": "
|
|
12830
|
+
"description": "Vue app instance passed to plugin",
|
|
12831
|
+
"name": "App"
|
|
12832
12832
|
},
|
|
12833
12833
|
{
|
|
12834
12834
|
"type": {
|
|
12835
12835
|
"names": [
|
|
12836
|
-
"
|
|
12836
|
+
"module:modalsPlugin~UluModalsPluginOptions"
|
|
12837
12837
|
]
|
|
12838
12838
|
},
|
|
12839
|
-
"description": "
|
|
12839
|
+
"description": "Options to change (see defaults)",
|
|
12840
12840
|
"name": "userOptions"
|
|
12841
12841
|
}
|
|
12842
12842
|
],
|
|
12843
12843
|
"meta": {
|
|
12844
|
-
"lineno":
|
|
12844
|
+
"lineno": 28,
|
|
12845
12845
|
"filename": "index.js",
|
|
12846
|
-
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/
|
|
12846
|
+
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
|
|
12847
12847
|
},
|
|
12848
|
-
"order":
|
|
12848
|
+
"order": 84,
|
|
12849
12849
|
"level": 0
|
|
12850
12850
|
},
|
|
12851
12851
|
{
|
|
12852
|
-
"id": "module:
|
|
12853
|
-
"longname": "module:
|
|
12852
|
+
"id": "module:popoversPlugin--module.exports",
|
|
12853
|
+
"longname": "module:popoversPlugin",
|
|
12854
12854
|
"name": "module.exports",
|
|
12855
12855
|
"kind": "function",
|
|
12856
12856
|
"isExported": true,
|
|
12857
|
-
"description": "
|
|
12858
|
-
"memberof": "module:
|
|
12857
|
+
"description": "Install the UluPopovers plugin.",
|
|
12858
|
+
"memberof": "module:popoversPlugin",
|
|
12859
12859
|
"params": [
|
|
12860
12860
|
{
|
|
12861
12861
|
"type": {
|
|
12862
12862
|
"names": [
|
|
12863
|
-
"
|
|
12863
|
+
"object"
|
|
12864
12864
|
]
|
|
12865
12865
|
},
|
|
12866
|
-
"description": "Vue app instance
|
|
12867
|
-
"name": "
|
|
12866
|
+
"description": "The Vue app instance.",
|
|
12867
|
+
"name": "app"
|
|
12868
12868
|
},
|
|
12869
12869
|
{
|
|
12870
12870
|
"type": {
|
|
12871
12871
|
"names": [
|
|
12872
|
-
"
|
|
12872
|
+
"object"
|
|
12873
12873
|
]
|
|
12874
12874
|
},
|
|
12875
|
-
"description": "
|
|
12875
|
+
"description": "User-defined options to override defaults.",
|
|
12876
12876
|
"name": "userOptions"
|
|
12877
12877
|
}
|
|
12878
12878
|
],
|
|
12879
12879
|
"meta": {
|
|
12880
|
-
"lineno":
|
|
12880
|
+
"lineno": 58,
|
|
12881
12881
|
"filename": "index.js",
|
|
12882
|
-
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/
|
|
12882
|
+
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
12883
12883
|
},
|
|
12884
|
-
"order":
|
|
12884
|
+
"order": 102,
|
|
12885
12885
|
"level": 0
|
|
12886
12886
|
},
|
|
12887
12887
|
{
|
|
@@ -13031,7 +13031,7 @@
|
|
|
13031
13031
|
"filename": "useBreakpointManager.js",
|
|
13032
13032
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
13033
13033
|
},
|
|
13034
|
-
"order":
|
|
13034
|
+
"order": 58
|
|
13035
13035
|
},
|
|
13036
13036
|
{
|
|
13037
13037
|
"id": "module:useBreakpointManager~defaults.onReady",
|
|
@@ -13046,7 +13046,7 @@
|
|
|
13046
13046
|
"filename": "useBreakpointManager.js",
|
|
13047
13047
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
13048
13048
|
},
|
|
13049
|
-
"order":
|
|
13049
|
+
"order": 59
|
|
13050
13050
|
},
|
|
13051
13051
|
{
|
|
13052
13052
|
"id": "module:useBreakpointManager~defaults.plugin",
|
|
@@ -13061,7 +13061,7 @@
|
|
|
13061
13061
|
"filename": "useBreakpointManager.js",
|
|
13062
13062
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
13063
13063
|
},
|
|
13064
|
-
"order":
|
|
13064
|
+
"order": 60
|
|
13065
13065
|
},
|
|
13066
13066
|
{
|
|
13067
13067
|
"id": "toast.module:defaults--module.exports",
|
|
@@ -13158,7 +13158,7 @@
|
|
|
13158
13158
|
"filename": "defaults.js",
|
|
13159
13159
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13160
13160
|
},
|
|
13161
|
-
"order":
|
|
13161
|
+
"order": 104
|
|
13162
13162
|
},
|
|
13163
13163
|
{
|
|
13164
13164
|
"id": "popovers.module:defaults.plugin.directiveName",
|
|
@@ -13178,7 +13178,7 @@
|
|
|
13178
13178
|
"filename": "defaults.js",
|
|
13179
13179
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13180
13180
|
},
|
|
13181
|
-
"order":
|
|
13181
|
+
"order": 105
|
|
13182
13182
|
},
|
|
13183
13183
|
{
|
|
13184
13184
|
"id": "popovers.module:defaults.popover",
|
|
@@ -13193,7 +13193,7 @@
|
|
|
13193
13193
|
"filename": "defaults.js",
|
|
13194
13194
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13195
13195
|
},
|
|
13196
|
-
"order":
|
|
13196
|
+
"order": 106
|
|
13197
13197
|
},
|
|
13198
13198
|
{
|
|
13199
13199
|
"id": "popovers.module:defaults.popover.inline",
|
|
@@ -13213,7 +13213,7 @@
|
|
|
13213
13213
|
"filename": "defaults.js",
|
|
13214
13214
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13215
13215
|
},
|
|
13216
|
-
"order":
|
|
13216
|
+
"order": 107
|
|
13217
13217
|
},
|
|
13218
13218
|
{
|
|
13219
13219
|
"id": "popovers.module:defaults.popover.delay",
|
|
@@ -13233,7 +13233,7 @@
|
|
|
13233
13233
|
"filename": "defaults.js",
|
|
13234
13234
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13235
13235
|
},
|
|
13236
|
-
"order":
|
|
13236
|
+
"order": 108
|
|
13237
13237
|
},
|
|
13238
13238
|
{
|
|
13239
13239
|
"id": "popovers.module:defaults.popover.placement",
|
|
@@ -13253,7 +13253,7 @@
|
|
|
13253
13253
|
"filename": "defaults.js",
|
|
13254
13254
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13255
13255
|
},
|
|
13256
|
-
"order":
|
|
13256
|
+
"order": 109
|
|
13257
13257
|
},
|
|
13258
13258
|
{
|
|
13259
13259
|
"id": "popovers.module:defaults.popover.strategy",
|
|
@@ -13273,7 +13273,7 @@
|
|
|
13273
13273
|
"filename": "defaults.js",
|
|
13274
13274
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13275
13275
|
},
|
|
13276
|
-
"order":
|
|
13276
|
+
"order": 110
|
|
13277
13277
|
},
|
|
13278
13278
|
{
|
|
13279
13279
|
"id": "popovers.module:defaults.popover.offset",
|
|
@@ -13293,7 +13293,7 @@
|
|
|
13293
13293
|
"filename": "defaults.js",
|
|
13294
13294
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13295
13295
|
},
|
|
13296
|
-
"order":
|
|
13296
|
+
"order": 111
|
|
13297
13297
|
},
|
|
13298
13298
|
{
|
|
13299
13299
|
"id": "popovers.module:defaults.popover.arrow",
|
|
@@ -13313,7 +13313,7 @@
|
|
|
13313
13313
|
"filename": "defaults.js",
|
|
13314
13314
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13315
13315
|
},
|
|
13316
|
-
"order":
|
|
13316
|
+
"order": 112
|
|
13317
13317
|
},
|
|
13318
13318
|
{
|
|
13319
13319
|
"id": "popovers.module:defaults.tooltip",
|
|
@@ -13333,7 +13333,7 @@
|
|
|
13333
13333
|
"filename": "defaults.js",
|
|
13334
13334
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13335
13335
|
},
|
|
13336
|
-
"order":
|
|
13336
|
+
"order": 113
|
|
13337
13337
|
},
|
|
13338
13338
|
{
|
|
13339
13339
|
"id": "popovers.module:defaults.tooltip.teleportTo",
|
|
@@ -13353,7 +13353,7 @@
|
|
|
13353
13353
|
"filename": "defaults.js",
|
|
13354
13354
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13355
13355
|
},
|
|
13356
|
-
"order":
|
|
13356
|
+
"order": 114
|
|
13357
13357
|
},
|
|
13358
13358
|
{
|
|
13359
13359
|
"id": "popovers.module:defaults.tooltip.class",
|
|
@@ -13375,7 +13375,7 @@
|
|
|
13375
13375
|
"filename": "defaults.js",
|
|
13376
13376
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13377
13377
|
},
|
|
13378
|
-
"order":
|
|
13378
|
+
"order": 115
|
|
13379
13379
|
},
|
|
13380
13380
|
{
|
|
13381
13381
|
"id": "popovers.module:defaults.tooltip.showEvents",
|
|
@@ -13395,7 +13395,7 @@
|
|
|
13395
13395
|
"filename": "defaults.js",
|
|
13396
13396
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13397
13397
|
},
|
|
13398
|
-
"order":
|
|
13398
|
+
"order": 116
|
|
13399
13399
|
},
|
|
13400
13400
|
{
|
|
13401
13401
|
"id": "popovers.module:defaults.tooltip.hideEvents",
|
|
@@ -13415,7 +13415,7 @@
|
|
|
13415
13415
|
"filename": "defaults.js",
|
|
13416
13416
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13417
13417
|
},
|
|
13418
|
-
"order":
|
|
13418
|
+
"order": 117
|
|
13419
13419
|
},
|
|
13420
13420
|
{
|
|
13421
13421
|
"id": "popovers.module:defaults.tooltip.isHtml",
|
|
@@ -13435,7 +13435,7 @@
|
|
|
13435
13435
|
"filename": "defaults.js",
|
|
13436
13436
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13437
13437
|
},
|
|
13438
|
-
"order":
|
|
13438
|
+
"order": 118
|
|
13439
13439
|
},
|
|
13440
13440
|
{
|
|
13441
13441
|
"id": "popovers.module:defaults.tooltip.trigger",
|
|
@@ -13456,7 +13456,7 @@
|
|
|
13456
13456
|
"filename": "defaults.js",
|
|
13457
13457
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13458
13458
|
},
|
|
13459
|
-
"order":
|
|
13459
|
+
"order": 119
|
|
13460
13460
|
},
|
|
13461
13461
|
{
|
|
13462
13462
|
"id": "popovers.module:defaults.tooltip.content",
|
|
@@ -13477,7 +13477,7 @@
|
|
|
13477
13477
|
"filename": "defaults.js",
|
|
13478
13478
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13479
13479
|
},
|
|
13480
|
-
"order":
|
|
13480
|
+
"order": 120
|
|
13481
13481
|
},
|
|
13482
13482
|
{
|
|
13483
13483
|
"id": "popovers.module:defaults.tooltip.delay",
|
|
@@ -13497,7 +13497,7 @@
|
|
|
13497
13497
|
"filename": "defaults.js",
|
|
13498
13498
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13499
13499
|
},
|
|
13500
|
-
"order":
|
|
13500
|
+
"order": 121
|
|
13501
13501
|
},
|
|
13502
13502
|
{
|
|
13503
13503
|
"id": "popovers.module:defaults.tooltip.onReady",
|
|
@@ -13512,7 +13512,7 @@
|
|
|
13512
13512
|
"filename": "defaults.js",
|
|
13513
13513
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13514
13514
|
},
|
|
13515
|
-
"order":
|
|
13515
|
+
"order": 122
|
|
13516
13516
|
},
|
|
13517
13517
|
{
|
|
13518
13518
|
"id": "popovers.module:defaults.tooltip.component",
|
|
@@ -13527,7 +13527,7 @@
|
|
|
13527
13527
|
"filename": "defaults.js",
|
|
13528
13528
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13529
13529
|
},
|
|
13530
|
-
"order":
|
|
13530
|
+
"order": 123
|
|
13531
13531
|
},
|
|
13532
13532
|
{
|
|
13533
13533
|
"id": "popovers.module:defaults.tooltip.componentProps",
|
|
@@ -13542,7 +13542,7 @@
|
|
|
13542
13542
|
"filename": "defaults.js",
|
|
13543
13543
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13544
13544
|
},
|
|
13545
|
-
"order":
|
|
13545
|
+
"order": 124
|
|
13546
13546
|
},
|
|
13547
13547
|
{
|
|
13548
13548
|
"id": "module:breakpointsPlugin--module.exports~defaults.breakpointMobile",
|
|
@@ -13647,6 +13647,42 @@
|
|
|
13647
13647
|
"order": 68,
|
|
13648
13648
|
"level": 0
|
|
13649
13649
|
},
|
|
13650
|
+
{
|
|
13651
|
+
"id": "module:useModals.useModals",
|
|
13652
|
+
"longname": "module:useModals.useModals",
|
|
13653
|
+
"name": "useModals",
|
|
13654
|
+
"kind": "constant",
|
|
13655
|
+
"scope": "static",
|
|
13656
|
+
"description": "A composable to access the global modals API.\nThis is a simple wrapper around `inject('uluModals')` and throws an error if the plugin is not installed.",
|
|
13657
|
+
"memberof": "module:useModals",
|
|
13658
|
+
"returns": [
|
|
13659
|
+
{
|
|
13660
|
+
"type": {
|
|
13661
|
+
"names": [
|
|
13662
|
+
"object"
|
|
13663
|
+
]
|
|
13664
|
+
},
|
|
13665
|
+
"description": "The modals API with methods like `open`, `close`, `add`, `remove`, and `get`."
|
|
13666
|
+
}
|
|
13667
|
+
],
|
|
13668
|
+
"exceptions": [
|
|
13669
|
+
{
|
|
13670
|
+
"type": {
|
|
13671
|
+
"names": [
|
|
13672
|
+
"Error"
|
|
13673
|
+
]
|
|
13674
|
+
},
|
|
13675
|
+
"description": "If the modals plugin is not installed."
|
|
13676
|
+
}
|
|
13677
|
+
],
|
|
13678
|
+
"meta": {
|
|
13679
|
+
"lineno": 13,
|
|
13680
|
+
"filename": "useModals.js",
|
|
13681
|
+
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
|
|
13682
|
+
},
|
|
13683
|
+
"order": 81,
|
|
13684
|
+
"level": 0
|
|
13685
|
+
},
|
|
13650
13686
|
{
|
|
13651
13687
|
"id": "module:popoversPlugin--module.exports.POPOVER_OPTIONS_KEY",
|
|
13652
13688
|
"longname": "module:popoversPlugin.POPOVER_OPTIONS_KEY",
|
|
@@ -13660,7 +13696,7 @@
|
|
|
13660
13696
|
"filename": "index.js",
|
|
13661
13697
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13662
13698
|
},
|
|
13663
|
-
"order":
|
|
13699
|
+
"order": 98,
|
|
13664
13700
|
"level": 0
|
|
13665
13701
|
},
|
|
13666
13702
|
{
|
|
@@ -13676,7 +13712,7 @@
|
|
|
13676
13712
|
"filename": "index.js",
|
|
13677
13713
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13678
13714
|
},
|
|
13679
|
-
"order":
|
|
13715
|
+
"order": 99,
|
|
13680
13716
|
"level": 0
|
|
13681
13717
|
},
|
|
13682
13718
|
{
|
|
@@ -13692,7 +13728,7 @@
|
|
|
13692
13728
|
"filename": "index.js",
|
|
13693
13729
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13694
13730
|
},
|
|
13695
|
-
"order":
|
|
13731
|
+
"order": 100,
|
|
13696
13732
|
"level": 0
|
|
13697
13733
|
},
|
|
13698
13734
|
{
|
|
@@ -13739,43 +13775,7 @@
|
|
|
13739
13775
|
"filename": "index.js",
|
|
13740
13776
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
13741
13777
|
},
|
|
13742
|
-
"order":
|
|
13743
|
-
"level": 0
|
|
13744
|
-
},
|
|
13745
|
-
{
|
|
13746
|
-
"id": "module:useModals.useModals",
|
|
13747
|
-
"longname": "module:useModals.useModals",
|
|
13748
|
-
"name": "useModals",
|
|
13749
|
-
"kind": "constant",
|
|
13750
|
-
"scope": "static",
|
|
13751
|
-
"description": "A composable to access the global modals API.\nThis is a simple wrapper around `inject('uluModals')` and throws an error if the plugin is not installed.",
|
|
13752
|
-
"memberof": "module:useModals",
|
|
13753
|
-
"returns": [
|
|
13754
|
-
{
|
|
13755
|
-
"type": {
|
|
13756
|
-
"names": [
|
|
13757
|
-
"object"
|
|
13758
|
-
]
|
|
13759
|
-
},
|
|
13760
|
-
"description": "The modals API with methods like `open`, `close`, `add`, `remove`, and `get`."
|
|
13761
|
-
}
|
|
13762
|
-
],
|
|
13763
|
-
"exceptions": [
|
|
13764
|
-
{
|
|
13765
|
-
"type": {
|
|
13766
|
-
"names": [
|
|
13767
|
-
"Error"
|
|
13768
|
-
]
|
|
13769
|
-
},
|
|
13770
|
-
"description": "If the modals plugin is not installed."
|
|
13771
|
-
}
|
|
13772
|
-
],
|
|
13773
|
-
"meta": {
|
|
13774
|
-
"lineno": 13,
|
|
13775
|
-
"filename": "useModals.js",
|
|
13776
|
-
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
|
|
13777
|
-
},
|
|
13778
|
-
"order": 112,
|
|
13778
|
+
"order": 101,
|
|
13779
13779
|
"level": 0
|
|
13780
13780
|
},
|
|
13781
13781
|
{
|
|
@@ -14641,7 +14641,7 @@
|
|
|
14641
14641
|
"filename": "useWindowResize.js",
|
|
14642
14642
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
14643
14643
|
},
|
|
14644
|
-
"order":
|
|
14644
|
+
"order": 33,
|
|
14645
14645
|
"level": 0
|
|
14646
14646
|
},
|
|
14647
14647
|
{
|
|
@@ -14695,7 +14695,7 @@
|
|
|
14695
14695
|
"filename": "useUluFloating.js",
|
|
14696
14696
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
14697
14697
|
},
|
|
14698
|
-
"order":
|
|
14698
|
+
"order": 37,
|
|
14699
14699
|
"level": 0
|
|
14700
14700
|
},
|
|
14701
14701
|
{
|
|
@@ -14732,7 +14732,7 @@
|
|
|
14732
14732
|
"filename": "useTableData.js",
|
|
14733
14733
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
14734
14734
|
},
|
|
14735
|
-
"order":
|
|
14735
|
+
"order": 39,
|
|
14736
14736
|
"level": 0
|
|
14737
14737
|
},
|
|
14738
14738
|
{
|
|
@@ -14764,7 +14764,7 @@
|
|
|
14764
14764
|
"filename": "useRequiredInject.js",
|
|
14765
14765
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
14766
14766
|
},
|
|
14767
|
-
"order":
|
|
14767
|
+
"order": 47,
|
|
14768
14768
|
"level": 0
|
|
14769
14769
|
},
|
|
14770
14770
|
{
|
|
@@ -14810,7 +14810,7 @@
|
|
|
14810
14810
|
"filename": "usePagination.js",
|
|
14811
14811
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
14812
14812
|
},
|
|
14813
|
-
"order":
|
|
14813
|
+
"order": 49,
|
|
14814
14814
|
"level": 0
|
|
14815
14815
|
},
|
|
14816
14816
|
{
|
|
@@ -14883,7 +14883,7 @@
|
|
|
14883
14883
|
"filename": "useModifiers.js",
|
|
14884
14884
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
14885
14885
|
},
|
|
14886
|
-
"order":
|
|
14886
|
+
"order": 51,
|
|
14887
14887
|
"level": 0
|
|
14888
14888
|
},
|
|
14889
14889
|
{
|
|
@@ -14909,7 +14909,7 @@
|
|
|
14909
14909
|
"filename": "useIcon.js",
|
|
14910
14910
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
14911
14911
|
},
|
|
14912
|
-
"order":
|
|
14912
|
+
"order": 53,
|
|
14913
14913
|
"level": 0
|
|
14914
14914
|
},
|
|
14915
14915
|
{
|
|
@@ -14979,7 +14979,7 @@
|
|
|
14979
14979
|
"filename": "useDocumentTitle.js",
|
|
14980
14980
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
14981
14981
|
},
|
|
14982
|
-
"order":
|
|
14982
|
+
"order": 56,
|
|
14983
14983
|
"level": 0
|
|
14984
14984
|
},
|
|
14985
14985
|
{
|
|
@@ -15047,7 +15047,7 @@
|
|
|
15047
15047
|
"filename": "useBreakpointManager.js",
|
|
15048
15048
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
15049
15049
|
},
|
|
15050
|
-
"order":
|
|
15050
|
+
"order": 61,
|
|
15051
15051
|
"level": 0
|
|
15052
15052
|
},
|
|
15053
15053
|
{
|
|
@@ -15142,7 +15142,7 @@
|
|
|
15142
15142
|
"filename": "useTooltip.js",
|
|
15143
15143
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
|
|
15144
15144
|
},
|
|
15145
|
-
"order":
|
|
15145
|
+
"order": 96,
|
|
15146
15146
|
"level": 0
|
|
15147
15147
|
},
|
|
15148
15148
|
{
|
|
@@ -15435,7 +15435,7 @@
|
|
|
15435
15435
|
"filename": "api.js",
|
|
15436
15436
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
|
|
15437
15437
|
},
|
|
15438
|
-
"order":
|
|
15438
|
+
"order": 87,
|
|
15439
15439
|
"level": 0
|
|
15440
15440
|
},
|
|
15441
15441
|
{
|
|
@@ -15451,7 +15451,7 @@
|
|
|
15451
15451
|
"filename": "api.js",
|
|
15452
15452
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
|
|
15453
15453
|
},
|
|
15454
|
-
"order":
|
|
15454
|
+
"order": 88,
|
|
15455
15455
|
"level": 0
|
|
15456
15456
|
},
|
|
15457
15457
|
{
|
|
@@ -15485,7 +15485,7 @@
|
|
|
15485
15485
|
"filename": "useTableData.js",
|
|
15486
15486
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
15487
15487
|
},
|
|
15488
|
-
"order":
|
|
15488
|
+
"order": 45,
|
|
15489
15489
|
"level": 0
|
|
15490
15490
|
},
|
|
15491
15491
|
{
|
|
@@ -15502,7 +15502,7 @@
|
|
|
15502
15502
|
"filename": "api.js",
|
|
15503
15503
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
|
|
15504
15504
|
},
|
|
15505
|
-
"order":
|
|
15505
|
+
"order": 86,
|
|
15506
15506
|
"level": 0
|
|
15507
15507
|
},
|
|
15508
15508
|
{
|
|
@@ -15519,7 +15519,7 @@
|
|
|
15519
15519
|
"filename": "api.js",
|
|
15520
15520
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
|
|
15521
15521
|
},
|
|
15522
|
-
"order":
|
|
15522
|
+
"order": 89,
|
|
15523
15523
|
"level": 0
|
|
15524
15524
|
},
|
|
15525
15525
|
{
|
|
@@ -15598,7 +15598,7 @@
|
|
|
15598
15598
|
"filename": "useWindowResize.js",
|
|
15599
15599
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
15600
15600
|
},
|
|
15601
|
-
"order":
|
|
15601
|
+
"order": 32,
|
|
15602
15602
|
"level": 0
|
|
15603
15603
|
},
|
|
15604
15604
|
{
|
|
@@ -15615,7 +15615,7 @@
|
|
|
15615
15615
|
"filename": "useTableData.js",
|
|
15616
15616
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
15617
15617
|
},
|
|
15618
|
-
"order":
|
|
15618
|
+
"order": 40,
|
|
15619
15619
|
"level": 0
|
|
15620
15620
|
},
|
|
15621
15621
|
{
|
|
@@ -15632,7 +15632,7 @@
|
|
|
15632
15632
|
"filename": "useTableData.js",
|
|
15633
15633
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
15634
15634
|
},
|
|
15635
|
-
"order":
|
|
15635
|
+
"order": 41,
|
|
15636
15636
|
"level": 0
|
|
15637
15637
|
},
|
|
15638
15638
|
{
|
|
@@ -15649,7 +15649,7 @@
|
|
|
15649
15649
|
"filename": "useTableData.js",
|
|
15650
15650
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
15651
15651
|
},
|
|
15652
|
-
"order":
|
|
15652
|
+
"order": 42,
|
|
15653
15653
|
"level": 0
|
|
15654
15654
|
},
|
|
15655
15655
|
{
|
|
@@ -15666,7 +15666,7 @@
|
|
|
15666
15666
|
"filename": "useTableData.js",
|
|
15667
15667
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
15668
15668
|
},
|
|
15669
|
-
"order":
|
|
15669
|
+
"order": 43,
|
|
15670
15670
|
"level": 0
|
|
15671
15671
|
},
|
|
15672
15672
|
{
|
|
@@ -15683,7 +15683,7 @@
|
|
|
15683
15683
|
"filename": "useTableData.js",
|
|
15684
15684
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
15685
15685
|
},
|
|
15686
|
-
"order":
|
|
15686
|
+
"order": 44,
|
|
15687
15687
|
"level": 0
|
|
15688
15688
|
},
|
|
15689
15689
|
{
|
|
@@ -15723,7 +15723,7 @@
|
|
|
15723
15723
|
"filename": "useIcon.js",
|
|
15724
15724
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
15725
15725
|
},
|
|
15726
|
-
"order":
|
|
15726
|
+
"order": 54,
|
|
15727
15727
|
"level": 0
|
|
15728
15728
|
},
|
|
15729
15729
|
{
|
|
@@ -15754,7 +15754,7 @@
|
|
|
15754
15754
|
"filename": "api.js",
|
|
15755
15755
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
|
|
15756
15756
|
},
|
|
15757
|
-
"order":
|
|
15757
|
+
"order": 90,
|
|
15758
15758
|
"level": 0
|
|
15759
15759
|
},
|
|
15760
15760
|
{
|
|
@@ -15780,7 +15780,7 @@
|
|
|
15780
15780
|
"filename": "api.js",
|
|
15781
15781
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
|
|
15782
15782
|
},
|
|
15783
|
-
"order":
|
|
15783
|
+
"order": 91,
|
|
15784
15784
|
"level": 0
|
|
15785
15785
|
},
|
|
15786
15786
|
{
|
|
@@ -15796,7 +15796,7 @@
|
|
|
15796
15796
|
"filename": "api.js",
|
|
15797
15797
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
|
|
15798
15798
|
},
|
|
15799
|
-
"order":
|
|
15799
|
+
"order": 92,
|
|
15800
15800
|
"level": 0
|
|
15801
15801
|
},
|
|
15802
15802
|
{
|
|
@@ -15822,7 +15822,7 @@
|
|
|
15822
15822
|
"filename": "api.js",
|
|
15823
15823
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
|
|
15824
15824
|
},
|
|
15825
|
-
"order":
|
|
15825
|
+
"order": 93,
|
|
15826
15826
|
"level": 0
|
|
15827
15827
|
},
|
|
15828
15828
|
{
|
|
@@ -16177,7 +16177,7 @@
|
|
|
16177
16177
|
"filename": "useUluFloating.js",
|
|
16178
16178
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
16179
16179
|
},
|
|
16180
|
-
"order":
|
|
16180
|
+
"order": 35,
|
|
16181
16181
|
"level": 0
|
|
16182
16182
|
},
|
|
16183
16183
|
{
|
|
@@ -16264,7 +16264,7 @@
|
|
|
16264
16264
|
"filename": "useUluFloating.js",
|
|
16265
16265
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
|
|
16266
16266
|
},
|
|
16267
|
-
"order":
|
|
16267
|
+
"order": 36,
|
|
16268
16268
|
"level": 0
|
|
16269
16269
|
},
|
|
16270
16270
|
{
|
|
@@ -16305,7 +16305,7 @@
|
|
|
16305
16305
|
"filename": "index.js",
|
|
16306
16306
|
"path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
|
|
16307
16307
|
},
|
|
16308
|
-
"order":
|
|
16308
|
+
"order": 83,
|
|
16309
16309
|
"level": 0
|
|
16310
16310
|
}
|
|
16311
16311
|
],
|
|
@@ -17412,7 +17412,7 @@
|
|
|
17412
17412
|
"context": {
|
|
17413
17413
|
"type": "mixin",
|
|
17414
17414
|
"name": "styles",
|
|
17415
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17415
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17416
17416
|
"line": {
|
|
17417
17417
|
"start": 108,
|
|
17418
17418
|
"end": 198
|
|
@@ -17424,7 +17424,7 @@
|
|
|
17424
17424
|
"context": {
|
|
17425
17425
|
"type": "mixin",
|
|
17426
17426
|
"name": "styles",
|
|
17427
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17427
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17428
17428
|
"line": {
|
|
17429
17429
|
"start": 108,
|
|
17430
17430
|
"end": 198
|
|
@@ -17436,7 +17436,7 @@
|
|
|
17436
17436
|
"context": {
|
|
17437
17437
|
"type": "mixin",
|
|
17438
17438
|
"name": "styles",
|
|
17439
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17439
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17440
17440
|
"line": {
|
|
17441
17441
|
"start": 108,
|
|
17442
17442
|
"end": 198
|
|
@@ -17448,7 +17448,7 @@
|
|
|
17448
17448
|
"context": {
|
|
17449
17449
|
"type": "mixin",
|
|
17450
17450
|
"name": "styles",
|
|
17451
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17451
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17452
17452
|
"line": {
|
|
17453
17453
|
"start": 108,
|
|
17454
17454
|
"end": 198
|
|
@@ -17460,7 +17460,7 @@
|
|
|
17460
17460
|
"context": {
|
|
17461
17461
|
"type": "mixin",
|
|
17462
17462
|
"name": "styles",
|
|
17463
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17463
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17464
17464
|
"line": {
|
|
17465
17465
|
"start": 108,
|
|
17466
17466
|
"end": 198
|
|
@@ -17472,7 +17472,7 @@
|
|
|
17472
17472
|
"context": {
|
|
17473
17473
|
"type": "mixin",
|
|
17474
17474
|
"name": "styles",
|
|
17475
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17475
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17476
17476
|
"line": {
|
|
17477
17477
|
"start": 108,
|
|
17478
17478
|
"end": 198
|
|
@@ -17484,7 +17484,7 @@
|
|
|
17484
17484
|
"context": {
|
|
17485
17485
|
"type": "mixin",
|
|
17486
17486
|
"name": "styles",
|
|
17487
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17487
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17488
17488
|
"line": {
|
|
17489
17489
|
"start": 108,
|
|
17490
17490
|
"end": 198
|
|
@@ -17496,7 +17496,7 @@
|
|
|
17496
17496
|
"context": {
|
|
17497
17497
|
"type": "mixin",
|
|
17498
17498
|
"name": "styles",
|
|
17499
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17499
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17500
17500
|
"line": {
|
|
17501
17501
|
"start": 108,
|
|
17502
17502
|
"end": 198
|
|
@@ -17508,7 +17508,7 @@
|
|
|
17508
17508
|
"context": {
|
|
17509
17509
|
"type": "mixin",
|
|
17510
17510
|
"name": "styles",
|
|
17511
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17511
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17512
17512
|
"line": {
|
|
17513
17513
|
"start": 108,
|
|
17514
17514
|
"end": 198
|
|
@@ -17520,7 +17520,7 @@
|
|
|
17520
17520
|
"context": {
|
|
17521
17521
|
"type": "mixin",
|
|
17522
17522
|
"name": "styles",
|
|
17523
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17523
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17524
17524
|
"line": {
|
|
17525
17525
|
"start": 108,
|
|
17526
17526
|
"end": 198
|
|
@@ -17532,7 +17532,7 @@
|
|
|
17532
17532
|
"context": {
|
|
17533
17533
|
"type": "mixin",
|
|
17534
17534
|
"name": "styles",
|
|
17535
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17535
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17536
17536
|
"line": {
|
|
17537
17537
|
"start": 108,
|
|
17538
17538
|
"end": 198
|
|
@@ -17544,7 +17544,7 @@
|
|
|
17544
17544
|
"context": {
|
|
17545
17545
|
"type": "mixin",
|
|
17546
17546
|
"name": "styles",
|
|
17547
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17547
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17548
17548
|
"line": {
|
|
17549
17549
|
"start": 108,
|
|
17550
17550
|
"end": 198
|
|
@@ -17556,7 +17556,7 @@
|
|
|
17556
17556
|
"context": {
|
|
17557
17557
|
"type": "mixin",
|
|
17558
17558
|
"name": "styles",
|
|
17559
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17559
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17560
17560
|
"line": {
|
|
17561
17561
|
"start": 108,
|
|
17562
17562
|
"end": 198
|
|
@@ -17568,7 +17568,7 @@
|
|
|
17568
17568
|
"context": {
|
|
17569
17569
|
"type": "mixin",
|
|
17570
17570
|
"name": "styles",
|
|
17571
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17571
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17572
17572
|
"line": {
|
|
17573
17573
|
"start": 108,
|
|
17574
17574
|
"end": 198
|
|
@@ -17580,7 +17580,7 @@
|
|
|
17580
17580
|
"context": {
|
|
17581
17581
|
"type": "mixin",
|
|
17582
17582
|
"name": "styles",
|
|
17583
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17583
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17584
17584
|
"line": {
|
|
17585
17585
|
"start": 108,
|
|
17586
17586
|
"end": 198
|
|
@@ -17592,7 +17592,7 @@
|
|
|
17592
17592
|
"context": {
|
|
17593
17593
|
"type": "mixin",
|
|
17594
17594
|
"name": "styles",
|
|
17595
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17595
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17596
17596
|
"line": {
|
|
17597
17597
|
"start": 108,
|
|
17598
17598
|
"end": 198
|
|
@@ -17604,7 +17604,7 @@
|
|
|
17604
17604
|
"context": {
|
|
17605
17605
|
"type": "mixin",
|
|
17606
17606
|
"name": "styles",
|
|
17607
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17607
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17608
17608
|
"line": {
|
|
17609
17609
|
"start": 108,
|
|
17610
17610
|
"end": 198
|
|
@@ -17616,7 +17616,7 @@
|
|
|
17616
17616
|
"context": {
|
|
17617
17617
|
"type": "mixin",
|
|
17618
17618
|
"name": "styles",
|
|
17619
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17619
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17620
17620
|
"line": {
|
|
17621
17621
|
"start": 108,
|
|
17622
17622
|
"end": 198
|
|
@@ -17628,7 +17628,7 @@
|
|
|
17628
17628
|
"context": {
|
|
17629
17629
|
"type": "mixin",
|
|
17630
17630
|
"name": "styles",
|
|
17631
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17631
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17632
17632
|
"line": {
|
|
17633
17633
|
"start": 108,
|
|
17634
17634
|
"end": 198
|
|
@@ -17640,7 +17640,7 @@
|
|
|
17640
17640
|
"context": {
|
|
17641
17641
|
"type": "mixin",
|
|
17642
17642
|
"name": "styles",
|
|
17643
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17643
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17644
17644
|
"line": {
|
|
17645
17645
|
"start": 108,
|
|
17646
17646
|
"end": 198
|
|
@@ -17662,7 +17662,7 @@
|
|
|
17662
17662
|
"context": {
|
|
17663
17663
|
"type": "mixin",
|
|
17664
17664
|
"name": "styles",
|
|
17665
|
-
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue animation\n
|
|
17665
|
+
"code": "\n $prefix: selector.class(\"toast\");\n\n #{ $prefix }-container {\n position: fixed;\n top: get(\"container-top\");\n right: get(\"container-right\");\n width: get(\"container-width\");\n z-index: get(\"z-index\");\n }\n\n #{ $prefix } {\n box-shadow: get(\"box-shadow\");\n background-color: get(\"background-color\");\n border-radius: get(\"border-radius\");\n border: get(\"border-width\") solid get(\"border-color\");\n padding: get(\"padding\");\n line-height: get(\"line-height\");\n margin-bottom: get(\"margin-bottom\");\n display: flex;\n align-items: center;\n }\n\n #{ $prefix }__header {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n }\n\n #{ $prefix }__date {\n color: get(\"date-color\");\n font-weight: get(\"date-font-weight\");\n margin-left: 1em;\n }\n\n #{ $prefix }__icon {\n margin-right: get(\"icon-margin-right\");\n font-size: get(\"icon-font-size\");\n }\n\n #{ $prefix }__actions {\n flex-basis: min-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n margin-right: get(\"actions-margin-right\");\n }\n\n #{ $prefix }__action {\n width: 100%;\n margin: 0;\n & + & {\n margin-top: get(\"action-margin-top\");\n }\n }\n\n #{ $prefix }__close {\n margin: 0;\n }\n\n #{ $prefix }__content {\n margin-right: auto;\n flex-grow: 1;\n padding: get(\"content-padding\");\n }\n\n #{ $prefix }--persistent {\n animation: get(\"persistent-animation\");\n &:hover,\n &:focus-within {\n animation: none;\n }\n }\n\n // Vue transition group animation on container\n .toast-animation-move, \n .toast-animation-enter-active,\n .toast-animation-leave-active {\n transition: all 0.3s ease;\n }\n .toast-animation-enter-from,\n .toast-animation-leave-to {\n opacity: 0;\n transform: translateX(30px);\n }\n .toast-animation-leave-active {\n position: absolute;\n width: 100%;\n }\n",
|
|
17666
17666
|
"line": {
|
|
17667
17667
|
"start": 108,
|
|
17668
17668
|
"end": 198
|