@volverjs/ui-vue 0.0.9-beta.2 → 0.0.9-beta.21

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.
Files changed (146) hide show
  1. package/README.md +3 -3
  2. package/auto-imports.d.ts +2 -0
  3. package/dist/components/VvAccordion/VvAccordion.es.js +15 -7
  4. package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +15 -7
  5. package/dist/components/VvAction/VvAction.es.js +17 -8
  6. package/dist/components/VvAction/VvAction.umd.js +1 -1
  7. package/dist/components/VvAction/VvAction.vue.d.ts +9 -0
  8. package/dist/components/VvAction/index.d.ts +4 -0
  9. package/dist/components/VvAlert/VvAlert.es.js +22 -13
  10. package/dist/components/VvAlert/VvAlert.umd.js +1 -1
  11. package/dist/components/VvAlert/VvAlert.vue.d.ts +6 -6
  12. package/dist/components/VvAlert/index.d.ts +3 -3
  13. package/dist/components/VvAlertGroup/VvAlertGroup.es.js +22 -13
  14. package/dist/components/VvAlertGroup/VvAlertGroup.umd.js +1 -1
  15. package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +6 -6
  16. package/dist/components/VvAlertGroup/index.d.ts +2 -2
  17. package/dist/components/VvAvatar/VvAvatar.es.js +15 -7
  18. package/dist/components/VvAvatarGroup/VvAvatarGroup.es.js +15 -7
  19. package/dist/components/VvBadge/VvBadge.es.js +15 -7
  20. package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +15 -7
  21. package/dist/components/VvButton/VvButton.es.js +19 -9
  22. package/dist/components/VvButton/VvButton.umd.js +1 -1
  23. package/dist/components/VvButton/VvButton.vue.d.ts +9 -0
  24. package/dist/components/VvButton/index.d.ts +4 -0
  25. package/dist/components/VvButtonGroup/VvButtonGroup.es.js +15 -7
  26. package/dist/components/VvCard/VvCard.es.js +15 -7
  27. package/dist/components/VvCheckbox/VvCheckbox.es.js +99 -21
  28. package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -1
  29. package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +4 -4
  30. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +105 -22
  31. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -1
  32. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +4 -4
  33. package/dist/components/VvCombobox/VvCombobox.es.js +256 -191
  34. package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
  35. package/dist/components/VvCombobox/VvCombobox.vue.d.ts +329 -101
  36. package/dist/components/VvCombobox/index.d.ts +123 -37
  37. package/dist/components/VvDialog/VvDialog.es.js +50 -37
  38. package/dist/components/VvDialog/VvDialog.umd.js +1 -1
  39. package/dist/components/VvDropdown/VvDropdown.es.js +32 -18
  40. package/dist/components/VvDropdown/VvDropdown.umd.js +1 -1
  41. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +300 -92
  42. package/dist/components/VvDropdown/VvDropdownAction.vue.d.ts +9 -0
  43. package/dist/components/VvDropdown/index.d.ts +99 -30
  44. package/dist/components/VvDropdownAction/VvDropdownAction.es.js +17 -8
  45. package/dist/components/VvDropdownAction/VvDropdownAction.umd.js +1 -1
  46. package/dist/components/VvDropdownOptgroup/VvDropdownOptgroup.es.js +15 -7
  47. package/dist/components/VvDropdownOption/VvDropdownOption.es.js +15 -7
  48. package/dist/components/VvInputText/VvInputText.es.js +279 -116
  49. package/dist/components/VvInputText/VvInputText.umd.js +1 -1
  50. package/dist/components/VvInputText/VvInputText.vue.d.ts +23 -41
  51. package/dist/components/VvInputText/index.d.ts +15 -33
  52. package/dist/components/VvNav/VvNav.es.js +18 -9
  53. package/dist/components/VvNav/VvNav.umd.js +1 -1
  54. package/dist/components/VvNav/index.d.ts +1 -1
  55. package/dist/components/VvProgress/VvProgress.es.js +15 -7
  56. package/dist/components/VvRadio/VvRadio.es.js +99 -21
  57. package/dist/components/VvRadio/VvRadio.umd.js +1 -1
  58. package/dist/components/VvRadio/VvRadio.vue.d.ts +4 -4
  59. package/dist/components/VvRadioGroup/VvRadioGroup.es.js +105 -22
  60. package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -1
  61. package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +4 -4
  62. package/dist/components/VvSelect/VvSelect.es.js +95 -21
  63. package/dist/components/VvSelect/VvSelect.umd.js +1 -1
  64. package/dist/components/VvSelect/VvSelect.vue.d.ts +5 -5
  65. package/dist/components/VvTab/VvTab.es.js +18 -9
  66. package/dist/components/VvTab/VvTab.umd.js +1 -1
  67. package/dist/components/VvTextarea/VvTextarea.es.js +103 -26
  68. package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
  69. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +4 -4
  70. package/dist/components/VvTooltip/VvTooltip.es.js +15 -7
  71. package/dist/components/common/HintSlot.d.ts +4 -3
  72. package/dist/components/index.d.ts +5 -0
  73. package/dist/components/index.es.js +1212 -626
  74. package/dist/components/index.umd.js +1 -1
  75. package/dist/composables/alert/useAlert.d.ts +27 -0
  76. package/dist/composables/index.d.ts +1 -0
  77. package/dist/composables/index.es.js +81 -0
  78. package/dist/composables/index.umd.js +1 -0
  79. package/dist/constants.d.ts +14 -0
  80. package/dist/directives/index.es.js +15 -7
  81. package/dist/directives/v-tooltip.es.js +15 -7
  82. package/dist/icons.es.js +3 -3
  83. package/dist/icons.umd.js +1 -1
  84. package/dist/props/index.d.ts +107 -31
  85. package/dist/resolvers/unplugin.es.js +3 -0
  86. package/dist/resolvers/unplugin.umd.js +1 -1
  87. package/dist/stories/AccordionGroup/AccordionGroup.stories.d.ts +2 -2
  88. package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +54 -269
  89. package/dist/stories/Alert/Alert.settings.d.ts +3 -7
  90. package/dist/stories/AlertGroup/AlertGroupSlots.stories.d.ts +2 -2
  91. package/dist/stories/AlertGroup/AlertGroupWithComposable.stories.d.ts +6 -0
  92. package/dist/stories/Button/Button.settings.d.ts +3 -13
  93. package/dist/stories/Combobox/Combobox.settings.d.ts +117 -19
  94. package/dist/stories/InputText/InputText.settings.d.ts +31 -9
  95. package/dist/stories/InputText/InputText.stories.d.ts +0 -1
  96. package/dist/stories/InputText/InputTextMask.stories.d.ts +12 -0
  97. package/dist/stories/Nav/Nav.settings.d.ts +3 -21
  98. package/package.json +75 -66
  99. package/src/assets/icons/detailed.json +1 -1
  100. package/src/assets/icons/normal.json +1 -1
  101. package/src/assets/icons/simple.json +1 -1
  102. package/src/components/VvAction/VvAction.vue +2 -1
  103. package/src/components/VvAlert/VvAlert.vue +5 -1
  104. package/src/components/VvAlert/index.ts +3 -3
  105. package/src/components/VvAlertGroup/VvAlertGroup.vue +2 -0
  106. package/src/components/VvButton/VvButton.vue +1 -0
  107. package/src/components/VvCheckbox/VvCheckbox.vue +8 -1
  108. package/src/components/VvCheckboxGroup/VvCheckboxGroup.vue +8 -1
  109. package/src/components/VvCombobox/VvCombobox.vue +43 -23
  110. package/src/components/VvCombobox/index.ts +24 -0
  111. package/src/components/VvDialog/VvDialog.vue +22 -19
  112. package/src/components/VvDropdown/VvDropdown.vue +24 -18
  113. package/src/components/VvInputText/VvInputText.vue +177 -55
  114. package/src/components/VvInputText/index.ts +32 -34
  115. package/src/components/VvNav/VvNav.vue +1 -1
  116. package/src/components/VvNav/index.ts +1 -1
  117. package/src/components/VvRadio/VvRadio.vue +8 -1
  118. package/src/components/VvRadioGroup/VvRadioGroup.vue +8 -1
  119. package/src/components/VvSelect/VvSelect.vue +8 -1
  120. package/src/components/VvTextarea/VvTextarea.vue +16 -6
  121. package/src/components/common/HintSlot.ts +26 -13
  122. package/src/components/index.ts +5 -0
  123. package/src/composables/alert/useAlert.ts +103 -0
  124. package/src/composables/index.ts +1 -0
  125. package/src/constants.ts +26 -0
  126. package/src/props/index.ts +14 -11
  127. package/src/resolvers/unplugin.ts +3 -0
  128. package/src/stories/Alert/Alert.settings.ts +3 -1
  129. package/src/stories/AlertGroup/AlertGroup.test.ts +13 -0
  130. package/src/stories/AlertGroup/AlertGroupSlots.stories.ts +3 -3
  131. package/src/stories/AlertGroup/AlertGroupWithComposable.stories.ts +118 -0
  132. package/src/stories/Button/Button.settings.ts +5 -3
  133. package/src/stories/Combobox/Combobox.settings.ts +119 -2
  134. package/src/stories/Combobox/Combobox.test.ts +1 -1
  135. package/src/stories/InputText/InputText.settings.ts +36 -15
  136. package/src/stories/InputText/InputText.stories.ts +4 -12
  137. package/src/stories/InputText/InputText.test.ts +31 -15
  138. package/src/stories/InputText/InputTextMask.stories.ts +122 -0
  139. package/src/stories/Nav/Nav.settings.ts +3 -1
  140. package/src/stories/Tab/Tab.stories.ts +3 -3
  141. package/src/stories/Textarea/TextareaLength.stories.ts +1 -1
  142. package/src/types/alert.d.ts +20 -0
  143. /package/dist/components/{VvNavItemTitle → VvNav}/VvNavItemTitle.vue.d.ts +0 -0
  144. /package/dist/components/{VvNavSeparator → VvNav}/VvNavSeparator.d.ts +0 -0
  145. /package/src/components/{VvNavItemTitle → VvNav}/VvNavItemTitle.vue +0 -0
  146. /package/src/components/{VvNavSeparator → VvNav}/VvNavSeparator.ts +0 -0
@@ -1,6 +1,6 @@
1
1
  import type { PropType } from 'vue';
2
2
  import type { Option } from '../types/generic';
3
- import { Placement, Position, Side, AnchorTarget, ButtonType } from '../constants';
3
+ import { Placement, Strategy, Position, Side, AnchorTarget, ButtonType } from '../constants';
4
4
  export declare const LinkProps: {
5
5
  /**
6
6
  * The router-link/nuxt-link property, if it is defined the button is rendered as a ruouter-link or nuxt-link.
@@ -217,9 +217,9 @@ export declare const DropdownProps: {
217
217
  * Dropdown strategy
218
218
  */
219
219
  strategy: {
220
- type: PropType<"fixed" | "absolute">;
221
- default: string;
222
- validator: (value: 'fixed' | 'absolute') => boolean;
220
+ type: PropType<"absolute" | "fixed">;
221
+ default: undefined;
222
+ validator: (value: Strategy) => boolean;
223
223
  };
224
224
  /**
225
225
  * Dropdown show / hide transition name
@@ -240,12 +240,30 @@ export declare const DropdownProps: {
240
240
  * @see https://floating-ui.com/docs/shift
241
241
  */
242
242
  shift: {
243
- type: PropType<boolean | Partial<import("@floating-ui/core").ShiftOptions & {
244
- rootBoundary: import("@floating-ui/core").RootBoundary;
245
- elementContext: import("@floating-ui/core").ElementContext;
246
- altBoundary: boolean;
247
- padding: import("@floating-ui/core").Padding;
248
- boundary: import("@floating-ui/dom").Boundary;
243
+ type: PropType<boolean | {
244
+ mainAxis?: boolean | undefined;
245
+ crossAxis?: boolean | undefined;
246
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
247
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
248
+ altBoundary?: boolean | undefined;
249
+ padding?: import("@floating-ui/core").Padding | undefined;
250
+ limiter?: {
251
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
252
+ options?: any;
253
+ } | undefined;
254
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
255
+ } | import("@floating-ui/dom").Derivable<{
256
+ mainAxis?: boolean | undefined;
257
+ crossAxis?: boolean | undefined;
258
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
259
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
260
+ altBoundary?: boolean | undefined;
261
+ padding?: import("@floating-ui/core").Padding | undefined;
262
+ limiter?: {
263
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
264
+ options?: any;
265
+ } | undefined;
266
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
249
267
  }> | undefined>;
250
268
  default: boolean;
251
269
  };
@@ -254,12 +272,30 @@ export declare const DropdownProps: {
254
272
  * @see https://floating-ui.com/docs/flip
255
273
  */
256
274
  flip: {
257
- type: PropType<boolean | Partial<import("@floating-ui/core").FlipOptions & {
258
- rootBoundary: import("@floating-ui/core").RootBoundary;
259
- elementContext: import("@floating-ui/core").ElementContext;
260
- altBoundary: boolean;
261
- padding: import("@floating-ui/core").Padding;
262
- boundary: import("@floating-ui/dom").Boundary;
275
+ type: PropType<boolean | {
276
+ mainAxis?: boolean | undefined;
277
+ crossAxis?: boolean | undefined;
278
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
279
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
280
+ altBoundary?: boolean | undefined;
281
+ padding?: import("@floating-ui/core").Padding | undefined;
282
+ fallbackPlacements?: import("@floating-ui/core").Placement[] | undefined;
283
+ fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
284
+ fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
285
+ flipAlignment?: boolean | undefined;
286
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
287
+ } | import("@floating-ui/dom").Derivable<{
288
+ mainAxis?: boolean | undefined;
289
+ crossAxis?: boolean | undefined;
290
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
291
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
292
+ altBoundary?: boolean | undefined;
293
+ padding?: import("@floating-ui/core").Padding | undefined;
294
+ fallbackPlacements?: import("@floating-ui/core").Placement[] | undefined;
295
+ fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
296
+ fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
297
+ flipAlignment?: boolean | undefined;
298
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
263
299
  }> | undefined>;
264
300
  default: boolean;
265
301
  };
@@ -268,13 +304,38 @@ export declare const DropdownProps: {
268
304
  * @see https://floating-ui.com/docs/size
269
305
  */
270
306
  size: {
271
- type: PropType<boolean | Partial<{
272
- apply: (args: {
307
+ type: PropType<boolean | {
308
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
309
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
310
+ altBoundary?: boolean | undefined;
311
+ padding?: import("@floating-ui/core").Padding | undefined;
312
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
313
+ apply?: ((args: {
273
314
  x: number;
274
315
  y: number;
316
+ initialPlacement: import("@floating-ui/core").Placement;
275
317
  placement: import("@floating-ui/core").Placement;
276
318
  strategy: import("@floating-ui/core").Strategy;
319
+ middlewareData: import("@floating-ui/core").MiddlewareData;
320
+ rects: import("@floating-ui/core").ElementRects;
321
+ platform: import("@floating-ui/core").Platform;
322
+ elements: import("@floating-ui/dom").Elements;
323
+ } & {
324
+ availableWidth: number;
325
+ availableHeight: number;
326
+ }) => void | Promise<void>) | undefined;
327
+ } | import("@floating-ui/dom").Derivable<{
328
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
329
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
330
+ altBoundary?: boolean | undefined;
331
+ padding?: import("@floating-ui/core").Padding | undefined;
332
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
333
+ apply?: ((args: {
334
+ x: number;
335
+ y: number;
277
336
  initialPlacement: import("@floating-ui/core").Placement;
337
+ placement: import("@floating-ui/core").Placement;
338
+ strategy: import("@floating-ui/core").Strategy;
278
339
  middlewareData: import("@floating-ui/core").MiddlewareData;
279
340
  rects: import("@floating-ui/core").ElementRects;
280
341
  platform: import("@floating-ui/core").Platform;
@@ -282,13 +343,7 @@ export declare const DropdownProps: {
282
343
  } & {
283
344
  availableWidth: number;
284
345
  availableHeight: number;
285
- }) => void | Promise<void>;
286
- } & {
287
- rootBoundary: import("@floating-ui/core").RootBoundary;
288
- elementContext: import("@floating-ui/core").ElementContext;
289
- altBoundary: boolean;
290
- padding: import("@floating-ui/core").Padding;
291
- boundary: import("@floating-ui/dom").Boundary;
346
+ }) => void | Promise<void>) | undefined;
292
347
  }> | undefined>;
293
348
  default: () => {
294
349
  padding: number;
@@ -299,12 +354,26 @@ export declare const DropdownProps: {
299
354
  * @see https://floating-ui.com/docs/autoPlacement
300
355
  */
301
356
  autoPlacement: {
302
- type: PropType<boolean | Partial<import("@floating-ui/core").AutoPlacementOptions & {
303
- rootBoundary: import("@floating-ui/core").RootBoundary;
304
- elementContext: import("@floating-ui/core").ElementContext;
305
- altBoundary: boolean;
306
- padding: import("@floating-ui/core").Padding;
307
- boundary: import("@floating-ui/dom").Boundary;
357
+ type: PropType<boolean | {
358
+ crossAxis?: boolean | undefined;
359
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
360
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
361
+ altBoundary?: boolean | undefined;
362
+ padding?: import("@floating-ui/core").Padding | undefined;
363
+ alignment?: import("@floating-ui/core").Alignment | null | undefined;
364
+ autoAlignment?: boolean | undefined;
365
+ allowedPlacements?: import("@floating-ui/core").Placement[] | undefined;
366
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
367
+ } | import("@floating-ui/dom").Derivable<{
368
+ crossAxis?: boolean | undefined;
369
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
370
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
371
+ altBoundary?: boolean | undefined;
372
+ padding?: import("@floating-ui/core").Padding | undefined;
373
+ alignment?: import("@floating-ui/core").Alignment | null | undefined;
374
+ autoAlignment?: boolean | undefined;
375
+ allowedPlacements?: import("@floating-ui/core").Placement[] | undefined;
376
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
308
377
  }> | undefined>;
309
378
  default: boolean;
310
379
  };
@@ -694,6 +763,13 @@ export declare const ActionProps: {
694
763
  default: ButtonType;
695
764
  validator: (value: ButtonType) => boolean;
696
765
  };
766
+ /**
767
+ * Button aria-label
768
+ */
769
+ ariaLabel: {
770
+ type: StringConstructor;
771
+ default: undefined;
772
+ };
697
773
  /**
698
774
  * The router-link/nuxt-link property, if it is defined the button is rendered as a ruouter-link or nuxt-link.
699
775
  * @see Documentation of [router-link](https://router.vuejs.org/api/#router-link) and [nuxt-link](https://nuxtjs.org/api/components-nuxt-link/)
@@ -22,6 +22,9 @@ const getStyleNames = function(kebabName) {
22
22
  "vv-dropdown-action"
23
23
  ];
24
24
  }
25
+ if (kebabName === "vv-button-group") {
26
+ return ["vv-button", "vv-button-group"];
27
+ }
25
28
  if (kebabName === "vv-accordion-group") {
26
29
  return ["vv-accordion", "vv-accordion-group"];
27
30
  }
@@ -1 +1 @@
1
- !function(o,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((o="undefined"!=typeof globalThis?globalThis:o||self).components={})}(this,(function(o){"use strict";function e(o,e){if("string"!=typeof o)throw new TypeError("expected a string");return o.trim().replace(/([a-z])([A-Z])/g,"$1-$2").replace(/\W/g,(o=>/[À-ž]/.test(o)?o:"-")).replace(/^-+|-+$/g,"").replace(/-{2,}/g,(o=>(null==e?void 0:e.condense)?"-":o)).toLowerCase()}const r=["vv-icon","vv-action"],t=["v-tooltip"],v=function(o){if(!r.includes(o))return"vv-dropdown"===o?["vv-dropdown","vv-dropdown-option","vv-dropdown-action"]:"vv-combobox"===o?["vv-select","vv-dropdown-option","vv-dropdown-optgroup","vv-dropdown","vv-dropdown-action"]:"vv-accordion-group"===o?["vv-accordion","vv-accordion-group"]:"vv-checkbox-group"===o?["vv-checkbox","vv-checkbox-group"]:"vv-radio-group"===o?["vv-radio","vv-radio-group"]:"vv-alert-group"===o?["vv-alert","vv-alert-group"]:"v-tooltip"===o?["vv-tooltip"]:[o]},n=function(o,e){const r=[];if(!e)return r;const t=v(o);return t&&t.forEach((o=>{r.push(`@volverjs/style/${"scss"===e?"scss/":""}components/${o}`)})),r};o.VolverResolver=function({prefix:o="vv",importStyle:r,directives:v,ignore:i}={}){return[{type:"component",resolve:t=>{if(!o||!t.toLowerCase().startsWith(o.toLowerCase()))return;const v=e(t).replace(`${o}-`,"vv-");return i&&i.includes(v)?void 0:{from:`@volverjs/ui-vue/${v}`,sideEffects:n(v,r)}}},{type:"directive",resolve:o=>{if(!v)return;const c=`v-${e(o)}`;return!t.includes(c)||i&&i.includes(c)?void 0:{from:`@volverjs/ui-vue/${c}`,sideEffects:n(c,r)}}}]},o.getStyleNames=v,Object.defineProperty(o,Symbol.toStringTag,{value:"Module"})}));
1
+ !function(o,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((o="undefined"!=typeof globalThis?globalThis:o||self).components={})}(this,(function(o){"use strict";function e(o,e){if("string"!=typeof o)throw new TypeError("expected a string");return o.trim().replace(/([a-z])([A-Z])/g,"$1-$2").replace(/\W/g,(o=>/[À-ž]/.test(o)?o:"-")).replace(/^-+|-+$/g,"").replace(/-{2,}/g,(o=>(null==e?void 0:e.condense)?"-":o)).toLowerCase()}const t=["vv-icon","vv-action"],r=["v-tooltip"],v=function(o){if(!t.includes(o))return"vv-dropdown"===o?["vv-dropdown","vv-dropdown-option","vv-dropdown-action"]:"vv-combobox"===o?["vv-select","vv-dropdown-option","vv-dropdown-optgroup","vv-dropdown","vv-dropdown-action"]:"vv-button-group"===o?["vv-button","vv-button-group"]:"vv-accordion-group"===o?["vv-accordion","vv-accordion-group"]:"vv-checkbox-group"===o?["vv-checkbox","vv-checkbox-group"]:"vv-radio-group"===o?["vv-radio","vv-radio-group"]:"vv-alert-group"===o?["vv-alert","vv-alert-group"]:"v-tooltip"===o?["vv-tooltip"]:[o]},n=function(o,e){const t=[];if(!e)return t;const r=v(o);return r&&r.forEach((o=>{t.push(`@volverjs/style/${"scss"===e?"scss/":""}components/${o}`)})),t};o.VolverResolver=function({prefix:o="vv",importStyle:t,directives:v,ignore:i}={}){return[{type:"component",resolve:r=>{if(!o||!r.toLowerCase().startsWith(o.toLowerCase()))return;const v=e(r).replace(`${o}-`,"vv-");return i&&i.includes(v)?void 0:{from:`@volverjs/ui-vue/${v}`,sideEffects:n(v,t)}}},{type:"directive",resolve:o=>{if(!v)return;const c=`v-${e(o)}`;return!r.includes(c)||i&&i.includes(c)?void 0:{from:`@volverjs/ui-vue/${c}`,sideEffects:n(c,t)}}}]},o.getStyleNames=v,Object.defineProperty(o,Symbol.toStringTag,{value:"Module"})}));
@@ -15,10 +15,10 @@ declare const _default: Meta<{
15
15
  readonly modelValue?: string | unknown[] | undefined;
16
16
  readonly modifiers?: string | string[] | undefined;
17
17
  key?: string | number | symbol | undefined;
18
+ style?: unknown;
19
+ class?: unknown;
18
20
  ref_for?: boolean | undefined;
19
21
  ref_key?: string | undefined;
20
- class?: unknown;
21
- style?: unknown;
22
22
  readonly storeKey?: string | undefined;
23
23
  };
24
24
  $attrs: {
@@ -5,133 +5,26 @@ declare const _default: {
5
5
  includeStories?: (RegExp | string[]) | undefined;
6
6
  excludeStories?: (RegExp | string[]) | undefined;
7
7
  component?: Omit<import("vue").ConcreteComponent<{
8
- new (...args: any[]): {
9
- $: import("vue").ComponentInternalInstance;
10
- $data: {};
11
- $props: {
12
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
13
- disabled?: boolean | undefined;
14
- not?: boolean | undefined;
15
- collapse?: boolean | undefined;
16
- items?: import("../../components/VvAccordionGroup").VvAccordionGroupItem[] | undefined;
17
- itemModifiers?: string | string[] | undefined;
18
- ref?: import("vue").VNodeRef | undefined;
19
- readonly modelValue?: string | unknown[] | undefined;
20
- readonly modifiers?: string | string[] | undefined;
21
- key?: string | number | symbol | undefined;
22
- ref_for?: boolean | undefined;
23
- ref_key?: string | undefined;
24
- class?: unknown;
25
- style?: unknown;
26
- readonly storeKey?: string | undefined;
27
- };
28
- $attrs: {
29
- [x: string]: unknown;
30
- };
31
- $refs: {
32
- [x: string]: unknown;
33
- };
34
- $slots: Readonly<{
35
- [name: string]: import("vue").Slot<any> | undefined;
36
- }>;
37
- $root: globalThis.ComponentPublicInstance | null;
38
- $parent: globalThis.ComponentPublicInstance | null;
39
- $emit: (event: string, ...args: any[]) => void;
40
- $el: any;
41
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
42
- modelValue: (ArrayConstructor | StringConstructor)[];
43
- items: {
44
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
45
- default: () => never[];
46
- };
47
- collapse: BooleanConstructor;
48
- itemModifiers: {
49
- type: globalThis.PropType<string | string[]>;
50
- default: string;
51
- };
52
- disabled: BooleanConstructor;
53
- not: BooleanConstructor;
54
- storeKey: StringConstructor;
55
- modifiers: globalThis.PropType<string | string[]>;
56
- }>> & {
57
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
58
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, {
59
- disabled: boolean;
60
- not: boolean;
61
- collapse: boolean;
62
- items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
63
- itemModifiers: string | string[];
64
- }, {}, string, {}> & {
65
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
66
- created?: ((() => void) | (() => void)[]) | undefined;
67
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
68
- mounted?: ((() => void) | (() => void)[]) | undefined;
69
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
70
- updated?: ((() => void) | (() => void)[]) | undefined;
71
- activated?: ((() => void) | (() => void)[]) | undefined;
72
- deactivated?: ((() => void) | (() => void)[]) | undefined;
73
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
74
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
75
- destroyed?: ((() => void) | (() => void)[]) | undefined;
76
- unmounted?: ((() => void) | (() => void)[]) | undefined;
77
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
78
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
79
- errorCaptured?: (((err: unknown, instance: globalThis.ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: globalThis.ComponentPublicInstance | null, info: string) => boolean | void)[]) | undefined;
80
- };
81
- $forceUpdate: () => void;
82
- $nextTick: typeof import("vue").nextTick;
83
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
84
- } & Readonly<import("vue").ExtractPropTypes<{
85
- modelValue: (ArrayConstructor | StringConstructor)[];
86
- items: {
87
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
88
- default: () => never[];
89
- };
90
- collapse: BooleanConstructor;
91
- itemModifiers: {
92
- type: globalThis.PropType<string | string[]>;
93
- default: string;
94
- };
95
- disabled: BooleanConstructor;
96
- not: BooleanConstructor;
97
- storeKey: StringConstructor;
98
- modifiers: globalThis.PropType<string | string[]>;
99
- }>> & {
100
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
101
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
102
- __isFragment?: undefined;
103
- __isTeleport?: undefined;
104
- __isSuspense?: undefined;
105
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
106
- modelValue: (ArrayConstructor | StringConstructor)[];
107
- items: {
108
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
109
- default: () => never[];
110
- };
111
- collapse: BooleanConstructor;
112
- itemModifiers: {
113
- type: globalThis.PropType<string | string[]>;
114
- default: string;
115
- };
116
- disabled: BooleanConstructor;
117
- not: BooleanConstructor;
118
- storeKey: StringConstructor;
119
- modifiers: globalThis.PropType<string | string[]>;
120
- }>> & {
121
8
  [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
122
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, {
123
- disabled: boolean;
124
- not: boolean;
125
- collapse: boolean;
126
- items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
127
- itemModifiers: string | string[];
128
- }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
129
- $slots: Partial<Record<string, (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
130
- default?(_: {}): any;
131
- };
132
- })>, "props"> | undefined;
9
+ disabled?: boolean | undefined;
10
+ not?: boolean | undefined;
11
+ collapse?: boolean | undefined;
12
+ items?: import("../../components/VvAccordionGroup").VvAccordionGroupItem[] | undefined;
13
+ itemModifiers?: string | string[] | undefined;
14
+ ref?: import("vue").VNodeRef | undefined;
15
+ readonly modelValue?: string | unknown[] | undefined;
16
+ readonly modifiers?: string | string[] | undefined;
17
+ key?: string | number | symbol | undefined;
18
+ style?: unknown;
19
+ class?: unknown;
20
+ ref_for?: boolean | undefined;
21
+ ref_key?: string | undefined;
22
+ readonly storeKey?: string | undefined;
23
+ } & {
24
+ default?: import("vue").VNodeChild | ((_: {}) => any);
25
+ }>, "props"> | undefined;
133
26
  subcomponents?: Record<string, Omit<import("vue").ConcreteComponent<unknown>, "props">> | undefined;
134
- play?: import("@storybook/types").PlayFunction<import("@storybook/vue3/dist/render-c842c5d5").V, {
27
+ play?: import("@storybook/types").PlayFunction<import("@storybook/vue3/dist/render-32b7dd3f").V, import("@storybook/vue3").ComponentPropsAndSlots<{
135
28
  new (...args: any[]): {
136
29
  $: import("vue").ComponentInternalInstance;
137
30
  $data: {};
@@ -146,10 +39,10 @@ declare const _default: {
146
39
  readonly modelValue?: string | unknown[] | undefined;
147
40
  readonly modifiers?: string | string[] | undefined;
148
41
  key?: string | number | symbol | undefined;
42
+ style?: unknown;
43
+ class?: unknown;
149
44
  ref_for?: boolean | undefined;
150
45
  ref_key?: string | undefined;
151
- class?: unknown;
152
- style?: unknown;
153
46
  readonly storeKey?: string | undefined;
154
47
  };
155
48
  $attrs: {
@@ -256,136 +149,28 @@ declare const _default: {
256
149
  $slots: Partial<Record<string, (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
257
150
  default?(_: {}): any;
258
151
  };
259
- })> | undefined;
152
+ })>> | undefined;
260
153
  tags?: string[] | undefined;
261
- decorators?: import("@storybook/types").DecoratorFunction<import("@storybook/vue3/dist/render-c842c5d5").V, {
262
- new (...args: any[]): {
263
- $: import("vue").ComponentInternalInstance;
264
- $data: {};
265
- $props: {
266
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
267
- disabled?: boolean | undefined;
268
- not?: boolean | undefined;
269
- collapse?: boolean | undefined;
270
- items?: import("../../components/VvAccordionGroup").VvAccordionGroupItem[] | undefined;
271
- itemModifiers?: string | string[] | undefined;
272
- ref?: import("vue").VNodeRef | undefined;
273
- readonly modelValue?: string | unknown[] | undefined;
274
- readonly modifiers?: string | string[] | undefined;
275
- key?: string | number | symbol | undefined;
276
- ref_for?: boolean | undefined;
277
- ref_key?: string | undefined;
278
- class?: unknown;
279
- style?: unknown;
280
- readonly storeKey?: string | undefined;
281
- };
282
- $attrs: {
283
- [x: string]: unknown;
284
- };
285
- $refs: {
286
- [x: string]: unknown;
287
- };
288
- $slots: Readonly<{
289
- [name: string]: import("vue").Slot<any> | undefined;
290
- }>;
291
- $root: globalThis.ComponentPublicInstance | null;
292
- $parent: globalThis.ComponentPublicInstance | null;
293
- $emit: (event: string, ...args: any[]) => void;
294
- $el: any;
295
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
296
- modelValue: (ArrayConstructor | StringConstructor)[];
297
- items: {
298
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
299
- default: () => never[];
300
- };
301
- collapse: BooleanConstructor;
302
- itemModifiers: {
303
- type: globalThis.PropType<string | string[]>;
304
- default: string;
305
- };
306
- disabled: BooleanConstructor;
307
- not: BooleanConstructor;
308
- storeKey: StringConstructor;
309
- modifiers: globalThis.PropType<string | string[]>;
310
- }>> & {
311
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
312
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, {
313
- disabled: boolean;
314
- not: boolean;
315
- collapse: boolean;
316
- items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
317
- itemModifiers: string | string[];
318
- }, {}, string, {}> & {
319
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
320
- created?: ((() => void) | (() => void)[]) | undefined;
321
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
322
- mounted?: ((() => void) | (() => void)[]) | undefined;
323
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
324
- updated?: ((() => void) | (() => void)[]) | undefined;
325
- activated?: ((() => void) | (() => void)[]) | undefined;
326
- deactivated?: ((() => void) | (() => void)[]) | undefined;
327
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
328
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
329
- destroyed?: ((() => void) | (() => void)[]) | undefined;
330
- unmounted?: ((() => void) | (() => void)[]) | undefined;
331
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
332
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
333
- errorCaptured?: (((err: unknown, instance: globalThis.ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: globalThis.ComponentPublicInstance | null, info: string) => boolean | void)[]) | undefined;
334
- };
335
- $forceUpdate: () => void;
336
- $nextTick: typeof import("vue").nextTick;
337
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
338
- } & Readonly<import("vue").ExtractPropTypes<{
339
- modelValue: (ArrayConstructor | StringConstructor)[];
340
- items: {
341
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
342
- default: () => never[];
343
- };
344
- collapse: BooleanConstructor;
345
- itemModifiers: {
346
- type: globalThis.PropType<string | string[]>;
347
- default: string;
348
- };
349
- disabled: BooleanConstructor;
350
- not: BooleanConstructor;
351
- storeKey: StringConstructor;
352
- modifiers: globalThis.PropType<string | string[]>;
353
- }>> & {
354
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
355
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
356
- __isFragment?: undefined;
357
- __isTeleport?: undefined;
358
- __isSuspense?: undefined;
359
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
360
- modelValue: (ArrayConstructor | StringConstructor)[];
361
- items: {
362
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
363
- default: () => never[];
364
- };
365
- collapse: BooleanConstructor;
366
- itemModifiers: {
367
- type: globalThis.PropType<string | string[]>;
368
- default: string;
369
- };
370
- disabled: BooleanConstructor;
371
- not: BooleanConstructor;
372
- storeKey: StringConstructor;
373
- modifiers: globalThis.PropType<string | string[]>;
374
- }>> & {
154
+ decorators?: import("@storybook/types").DecoratorFunction<import("@storybook/vue3/dist/render-32b7dd3f").V, {
375
155
  [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
376
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, {
377
- disabled: boolean;
378
- not: boolean;
379
- collapse: boolean;
380
- items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
381
- itemModifiers: string | string[];
382
- }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
383
- $slots: Partial<Record<string, (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
384
- default?(_: {}): any;
385
- };
386
- })>[] | undefined;
156
+ disabled?: boolean | undefined;
157
+ not?: boolean | undefined;
158
+ collapse?: boolean | undefined;
159
+ items?: import("../../components/VvAccordionGroup").VvAccordionGroupItem[] | undefined;
160
+ itemModifiers?: string | string[] | undefined;
161
+ ref?: import("vue").VNodeRef | undefined;
162
+ readonly modelValue?: string | unknown[] | undefined;
163
+ readonly modifiers?: string | string[] | undefined;
164
+ key?: string | number | symbol | undefined;
165
+ style?: unknown;
166
+ class?: unknown;
167
+ ref_for?: boolean | undefined;
168
+ ref_key?: string | undefined;
169
+ readonly storeKey?: string | undefined;
170
+ default?: import("vue").VNodeChild | ((_: {}) => any);
171
+ }>[] | undefined;
387
172
  parameters?: import("@storybook/types").Parameters | undefined;
388
- args?: Partial<{
173
+ args?: Partial<import("@storybook/vue3").ComponentPropsAndSlots<{
389
174
  new (...args: any[]): {
390
175
  $: import("vue").ComponentInternalInstance;
391
176
  $data: {};
@@ -400,10 +185,10 @@ declare const _default: {
400
185
  readonly modelValue?: string | unknown[] | undefined;
401
186
  readonly modifiers?: string | string[] | undefined;
402
187
  key?: string | number | symbol | undefined;
188
+ style?: unknown;
189
+ class?: unknown;
403
190
  ref_for?: boolean | undefined;
404
191
  ref_key?: string | undefined;
405
- class?: unknown;
406
- style?: unknown;
407
192
  readonly storeKey?: string | undefined;
408
193
  };
409
194
  $attrs: {
@@ -510,8 +295,8 @@ declare const _default: {
510
295
  $slots: Partial<Record<string, (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
511
296
  default?(_: {}): any;
512
297
  };
513
- })> | undefined;
514
- argTypes?: Partial<import("@storybook/types").ArgTypes<{
298
+ })>> | undefined;
299
+ argTypes?: Partial<import("@storybook/types").ArgTypes<import("@storybook/vue3").ComponentPropsAndSlots<{
515
300
  new (...args: any[]): {
516
301
  $: import("vue").ComponentInternalInstance;
517
302
  $data: {};
@@ -526,10 +311,10 @@ declare const _default: {
526
311
  readonly modelValue?: string | unknown[] | undefined;
527
312
  readonly modifiers?: string | string[] | undefined;
528
313
  key?: string | number | symbol | undefined;
314
+ style?: unknown;
315
+ class?: unknown;
529
316
  ref_for?: boolean | undefined;
530
317
  ref_key?: string | undefined;
531
- class?: unknown;
532
- style?: unknown;
533
318
  readonly storeKey?: string | undefined;
534
319
  };
535
320
  $attrs: {
@@ -636,8 +421,8 @@ declare const _default: {
636
421
  $slots: Partial<Record<string, (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
637
422
  default?(_: {}): any;
638
423
  };
639
- })>> | undefined;
640
- loaders?: import("@storybook/types").LoaderFunction<import("@storybook/vue3/dist/render-c842c5d5").V, {
424
+ })>>> | undefined;
425
+ loaders?: import("@storybook/types").LoaderFunction<import("@storybook/vue3/dist/render-32b7dd3f").V, import("@storybook/vue3").ComponentPropsAndSlots<{
641
426
  new (...args: any[]): {
642
427
  $: import("vue").ComponentInternalInstance;
643
428
  $data: {};
@@ -652,10 +437,10 @@ declare const _default: {
652
437
  readonly modelValue?: string | unknown[] | undefined;
653
438
  readonly modifiers?: string | string[] | undefined;
654
439
  key?: string | number | symbol | undefined;
440
+ style?: unknown;
441
+ class?: unknown;
655
442
  ref_for?: boolean | undefined;
656
443
  ref_key?: string | undefined;
657
- class?: unknown;
658
- style?: unknown;
659
444
  readonly storeKey?: string | undefined;
660
445
  };
661
446
  $attrs: {
@@ -762,8 +547,8 @@ declare const _default: {
762
547
  $slots: Partial<Record<string, (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
763
548
  default?(_: {}): any;
764
549
  };
765
- })>[] | undefined;
766
- render?: import("@storybook/types").ArgsStoryFn<import("@storybook/vue3/dist/render-c842c5d5").V, {
550
+ })>>[] | undefined;
551
+ render?: import("@storybook/types").ArgsStoryFn<import("@storybook/vue3/dist/render-32b7dd3f").V, import("@storybook/vue3").ComponentPropsAndSlots<{
767
552
  new (...args: any[]): {
768
553
  $: import("vue").ComponentInternalInstance;
769
554
  $data: {};
@@ -778,10 +563,10 @@ declare const _default: {
778
563
  readonly modelValue?: string | unknown[] | undefined;
779
564
  readonly modifiers?: string | string[] | undefined;
780
565
  key?: string | number | symbol | undefined;
566
+ style?: unknown;
567
+ class?: unknown;
781
568
  ref_for?: boolean | undefined;
782
569
  ref_key?: string | undefined;
783
- class?: unknown;
784
- style?: unknown;
785
570
  readonly storeKey?: string | undefined;
786
571
  };
787
572
  $attrs: {
@@ -888,7 +673,7 @@ declare const _default: {
888
673
  $slots: Partial<Record<string, (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
889
674
  default?(_: {}): any;
890
675
  };
891
- })> | undefined;
676
+ })>> | undefined;
892
677
  };
893
678
  export default _default;
894
679
  export declare const Default: Story;