@knime/kds-components 1.1.3 → 1.1.5

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 (137) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/dist/index.css +357 -236
  3. package/dist/index.js +1373 -726
  4. package/dist/index.js.map +1 -1
  5. package/dist/src/accessories/Icon/KdsDataType.vue.d.ts.map +1 -1
  6. package/dist/src/accessories/Icon/KdsIcon.vue.d.ts.map +1 -1
  7. package/dist/src/accessories/Icon/aliases.d.ts +18 -0
  8. package/dist/src/accessories/Icon/aliases.d.ts.map +1 -0
  9. package/dist/src/accessories/Icon/useIcon.d.ts +5 -0
  10. package/dist/src/accessories/Icon/useIcon.d.ts.map +1 -1
  11. package/dist/src/buttons/ActionButton/ActionButton.vue.d.ts +8 -4
  12. package/dist/src/buttons/ActionButton/ActionButton.vue.d.ts.map +1 -1
  13. package/dist/src/buttons/ActionButton/types.d.ts +2 -0
  14. package/dist/src/buttons/ActionButton/types.d.ts.map +1 -1
  15. package/dist/src/buttons/BaseButton.vue.d.ts +10 -2
  16. package/dist/src/buttons/BaseButton.vue.d.ts.map +1 -1
  17. package/dist/src/buttons/KdsMenuButton/KdsMenuButton.vue.d.ts +4 -2
  18. package/dist/src/buttons/KdsMenuButton/KdsMenuButton.vue.d.ts.map +1 -1
  19. package/dist/src/buttons/KdsSplitButton/KdsSplitButton.vue.d.ts +4 -2
  20. package/dist/src/buttons/KdsSplitButton/KdsSplitButton.vue.d.ts.map +1 -1
  21. package/dist/src/buttons/ResponsiveButtonGroup/KdsResponsiveButtonGroup.vue.d.ts +4 -2
  22. package/dist/src/buttons/ResponsiveButtonGroup/KdsResponsiveButtonGroup.vue.d.ts.map +1 -1
  23. package/dist/src/containers/FileExplorer/FileExplorerItem.vue.d.ts +38 -15
  24. package/dist/src/containers/FileExplorer/FileExplorerItem.vue.d.ts.map +1 -1
  25. package/dist/src/containers/FileExplorer/KdsFileExplorer.vue.d.ts +68 -30
  26. package/dist/src/containers/FileExplorer/KdsFileExplorer.vue.d.ts.map +1 -1
  27. package/dist/src/containers/Menu/KdsMenu.vue.d.ts +8 -4
  28. package/dist/src/containers/Menu/KdsMenu.vue.d.ts.map +1 -1
  29. package/dist/src/containers/MenuContainer/KdsMenuItem.vue.d.ts +16 -3
  30. package/dist/src/containers/MenuContainer/KdsMenuItem.vue.d.ts.map +1 -1
  31. package/dist/src/forms/RadioButton/KdsValueSwitch.vue.d.ts +4 -2
  32. package/dist/src/forms/RadioButton/KdsValueSwitch.vue.d.ts.map +1 -1
  33. package/dist/src/forms/_helper/BaseFieldsetWrapper.vue.d.ts +10 -2
  34. package/dist/src/forms/_helper/BaseFieldsetWrapper.vue.d.ts.map +1 -1
  35. package/dist/src/forms/_helper/BaseFormFieldWrapper.vue.d.ts +18 -4
  36. package/dist/src/forms/_helper/BaseFormFieldWrapper.vue.d.ts.map +1 -1
  37. package/dist/src/forms/_helper/InfoPopover/InfoPopover.vue.d.ts +10 -5
  38. package/dist/src/forms/_helper/InfoPopover/InfoPopover.vue.d.ts.map +1 -1
  39. package/dist/src/forms/_helper/InfoPopover/KdsInfoToggleButton.vue.d.ts +18 -9
  40. package/dist/src/forms/_helper/InfoPopover/KdsInfoToggleButton.vue.d.ts.map +1 -1
  41. package/dist/src/forms/_helper/VariablePopover/KdsVariableToggleButton.vue.d.ts +18 -9
  42. package/dist/src/forms/_helper/VariablePopover/KdsVariableToggleButton.vue.d.ts.map +1 -1
  43. package/dist/src/forms/_helper/VariablePopover/VariablePopover.vue.d.ts +10 -5
  44. package/dist/src/forms/_helper/VariablePopover/VariablePopover.vue.d.ts.map +1 -1
  45. package/dist/src/forms/inputs/BaseInput.vue.d.ts +18 -3
  46. package/dist/src/forms/inputs/BaseInput.vue.d.ts.map +1 -1
  47. package/dist/src/forms/inputs/ColorInput/KdsColorInput.vue.d.ts +4 -2
  48. package/dist/src/forms/inputs/ColorInput/KdsColorInput.vue.d.ts.map +1 -1
  49. package/dist/src/forms/inputs/DateInput/KdsDateInput.vue.d.ts +10 -5
  50. package/dist/src/forms/inputs/DateInput/KdsDateInput.vue.d.ts.map +1 -1
  51. package/dist/src/forms/inputs/DateTimeFormatInput/KdsDateTimeFormatInput.vue.d.ts +4 -2
  52. package/dist/src/forms/inputs/DateTimeFormatInput/KdsDateTimeFormatInput.vue.d.ts.map +1 -1
  53. package/dist/src/forms/inputs/DateTimeInput/KdsDateTimeInput.vue.d.ts +38 -19
  54. package/dist/src/forms/inputs/DateTimeInput/KdsDateTimeInput.vue.d.ts.map +1 -1
  55. package/dist/src/forms/inputs/IntervalInput/KdsIntervalInput.vue.d.ts +10 -5
  56. package/dist/src/forms/inputs/IntervalInput/KdsIntervalInput.vue.d.ts.map +1 -1
  57. package/dist/src/forms/inputs/NumberInput/KdsNumberInput.vue.d.ts +6 -3
  58. package/dist/src/forms/inputs/NumberInput/KdsNumberInput.vue.d.ts.map +1 -1
  59. package/dist/src/forms/inputs/PasswordInput/KdsPasswordInput.vue.d.ts +6 -3
  60. package/dist/src/forms/inputs/PasswordInput/KdsPasswordInput.vue.d.ts.map +1 -1
  61. package/dist/src/forms/inputs/PatternInput/KdsPatternInput.vue.d.ts +6 -3
  62. package/dist/src/forms/inputs/PatternInput/KdsPatternInput.vue.d.ts.map +1 -1
  63. package/dist/src/forms/inputs/SearchInput/KdsSearchInput.vue.d.ts +10 -5
  64. package/dist/src/forms/inputs/SearchInput/KdsSearchInput.vue.d.ts.map +1 -1
  65. package/dist/src/forms/inputs/TextInput/KdsTextInput.vue.d.ts +10 -5
  66. package/dist/src/forms/inputs/TextInput/KdsTextInput.vue.d.ts.map +1 -1
  67. package/dist/src/forms/inputs/TimeInput/KdsTimeInput.vue.d.ts +28 -14
  68. package/dist/src/forms/inputs/TimeInput/KdsTimeInput.vue.d.ts.map +1 -1
  69. package/dist/src/forms/inputs/TimeInput/TimePicker.vue.d.ts +18 -9
  70. package/dist/src/forms/inputs/TimeInput/TimePicker.vue.d.ts.map +1 -1
  71. package/dist/src/forms/inputs/UsernameInput/KdsUsernameInput.vue.d.ts +6 -3
  72. package/dist/src/forms/inputs/UsernameInput/KdsUsernameInput.vue.d.ts.map +1 -1
  73. package/dist/src/forms/inputs/ZonedDateTimeInput/KdsZonedDateTimeInput.vue.d.ts +38 -19
  74. package/dist/src/forms/inputs/ZonedDateTimeInput/KdsZonedDateTimeInput.vue.d.ts.map +1 -1
  75. package/dist/src/forms/selects/Dropdown/DropdownContainer.vue.d.ts +6 -3
  76. package/dist/src/forms/selects/Dropdown/DropdownContainer.vue.d.ts.map +1 -1
  77. package/dist/src/forms/selects/Dropdown/KdsDropdown.vue.d.ts +10 -5
  78. package/dist/src/forms/selects/Dropdown/KdsDropdown.vue.d.ts.map +1 -1
  79. package/dist/src/forms/selects/Dropdown/KdsMultiSelectDropdown.vue.d.ts +10 -5
  80. package/dist/src/forms/selects/Dropdown/KdsMultiSelectDropdown.vue.d.ts.map +1 -1
  81. package/dist/src/forms/selects/Dropdown/MultiSelectDropdownContainer.vue.d.ts +6 -3
  82. package/dist/src/forms/selects/Dropdown/MultiSelectDropdownContainer.vue.d.ts.map +1 -1
  83. package/dist/src/forms/selects/SortableListBox/KdsSortableListBox.vue.d.ts +4 -4
  84. package/dist/src/forms/selects/SortableListBox/types.d.ts +1 -1
  85. package/dist/src/forms/selects/SortableListBox/types.d.ts.map +1 -1
  86. package/dist/src/layouts/Accordion/KdsAccordion.vue.d.ts +9 -3
  87. package/dist/src/layouts/Accordion/KdsAccordion.vue.d.ts.map +1 -1
  88. package/dist/src/layouts/Card/BaseCard.vue.d.ts +34 -5
  89. package/dist/src/layouts/Card/BaseCard.vue.d.ts.map +1 -1
  90. package/dist/src/layouts/Card/CardHeader.vue.d.ts +18 -3
  91. package/dist/src/layouts/Card/CardHeader.vue.d.ts.map +1 -1
  92. package/dist/src/layouts/Card/KdsCard.vue.d.ts +26 -4
  93. package/dist/src/layouts/Card/KdsCard.vue.d.ts.map +1 -1
  94. package/dist/src/layouts/Card/KdsClickableCard.vue.d.ts +26 -4
  95. package/dist/src/layouts/Card/KdsClickableCard.vue.d.ts.map +1 -1
  96. package/dist/src/layouts/Card/KdsLinkCard.vue.d.ts +26 -4
  97. package/dist/src/layouts/Card/KdsLinkCard.vue.d.ts.map +1 -1
  98. package/dist/src/layouts/Card/KdsSelectableCard.vue.d.ts +26 -4
  99. package/dist/src/layouts/Card/KdsSelectableCard.vue.d.ts.map +1 -1
  100. package/dist/src/layouts/LoadingSkeleton/KdsLoadingSkeleton.vue.d.ts +10 -2
  101. package/dist/src/layouts/LoadingSkeleton/KdsLoadingSkeleton.vue.d.ts.map +1 -1
  102. package/dist/src/layouts/Navigation/types.d.ts +1 -1
  103. package/dist/src/layouts/Navigation/types.d.ts.map +1 -1
  104. package/dist/src/layouts/ResizeContainer/KdsResizeContainer.vue.d.ts +13 -3
  105. package/dist/src/layouts/ResizeContainer/KdsResizeContainer.vue.d.ts.map +1 -1
  106. package/dist/src/layouts/Tree/BaseTree/BaseTree.vue.d.ts +33 -0
  107. package/dist/src/layouts/Tree/BaseTree/BaseTree.vue.d.ts.map +1 -0
  108. package/dist/src/layouts/Tree/BaseTree/TreeNode.vue.d.ts +17 -0
  109. package/dist/src/layouts/Tree/BaseTree/TreeNode.vue.d.ts.map +1 -0
  110. package/dist/src/layouts/Tree/BaseTree/context.d.ts +4 -0
  111. package/dist/src/layouts/Tree/BaseTree/context.d.ts.map +1 -0
  112. package/dist/src/layouts/Tree/BaseTree/renderNode.d.ts +35 -0
  113. package/dist/src/layouts/Tree/BaseTree/renderNode.d.ts.map +1 -0
  114. package/dist/src/layouts/Tree/BaseTree/useTreeData.d.ts +11 -0
  115. package/dist/src/layouts/Tree/BaseTree/useTreeData.d.ts.map +1 -0
  116. package/dist/src/layouts/Tree/KdsTree.vue.d.ts +159 -0
  117. package/dist/src/layouts/Tree/KdsTree.vue.d.ts.map +1 -0
  118. package/dist/src/layouts/Tree/index.d.ts +3 -0
  119. package/dist/src/layouts/Tree/index.d.ts.map +1 -0
  120. package/dist/src/layouts/Tree/types.d.ts +100 -0
  121. package/dist/src/layouts/Tree/types.d.ts.map +1 -0
  122. package/dist/src/layouts/index.d.ts +2 -0
  123. package/dist/src/layouts/index.d.ts.map +1 -1
  124. package/dist/src/overlays/Modal/KdsModal.vue.d.ts +38 -9
  125. package/dist/src/overlays/Modal/KdsModal.vue.d.ts.map +1 -1
  126. package/dist/src/overlays/Modal/KdsModalLayout.vue.d.ts +18 -3
  127. package/dist/src/overlays/Modal/KdsModalLayout.vue.d.ts.map +1 -1
  128. package/dist/src/overlays/Popover/KdsPopover.vue.d.ts +10 -2
  129. package/dist/src/overlays/Popover/KdsPopover.vue.d.ts.map +1 -1
  130. package/dist/src/overlays/SideDrawer/KdsSideDrawer.vue.d.ts +10 -2
  131. package/dist/src/overlays/SideDrawer/KdsSideDrawer.vue.d.ts.map +1 -1
  132. package/dist/src/{containers/FileExplorer/useKeyPressedUntilMouseClick/index.d.ts → util/useKeyPressedUntilMouseClick.d.ts} +1 -1
  133. package/dist/src/util/useKeyPressedUntilMouseClick.d.ts.map +1 -0
  134. package/package.json +2 -2
  135. package/dist/src/containers/FileExplorer/useKeyPressedUntilMouseClick/index.d.ts.map +0 -1
  136. package/dist/src/containers/FileExplorer/utils/filterSlotsForDynamicColumns.d.ts +0 -3
  137. package/dist/src/containers/FileExplorer/utils/filterSlotsForDynamicColumns.d.ts.map +0 -1
@@ -265,9 +265,12 @@ declare const _default: import('vue').DefineComponent<({
265
265
  }>, "focus"> & {
266
266
  focus: (options?: FocusOptions) => void;
267
267
  } & {} & import('vue').ComponentCustomProperties & {} & {
268
- $slots: {
269
- leading?(_: {}): any;
270
- trailing?(_: {}): any;
268
+ $slots: Readonly<{
269
+ leading?(): unknown;
270
+ trailing?(): unknown;
271
+ }> & {
272
+ leading?(): unknown;
273
+ trailing?(): unknown;
271
274
  };
272
275
  }) | null;
273
276
  popoverRef: ({
@@ -398,8 +401,10 @@ declare const _default: import('vue').DefineComponent<({
398
401
  anchorStyle: Record<string, string>;
399
402
  popoverId: string;
400
403
  } & {} & import('vue').ComponentCustomProperties & {} & {
401
- $slots: {
402
- default?(_: {}): any;
404
+ $slots: Readonly<{
405
+ default(): unknown;
406
+ }> & {
407
+ default(): unknown;
403
408
  };
404
409
  }) | null;
405
410
  listContainerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../../../index.ts').KdsListContainerProps> & Readonly<{
@@ -1 +1 @@
1
- {"version":3,"file":"KdsTextInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/TextInput/KdsTextInput.vue"],"names":[],"mappings":";iBA8Ta,MAAM;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;mBAhInB,CAtFW;;;;iBAsNE,MAAM;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAiOk+R,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlB3mS,wBAUG"}
1
+ {"version":3,"file":"KdsTextInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/TextInput/KdsTextInput.vue"],"names":[],"mappings":";iBA8Ta,MAAM;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;mBAhInB,CAtFW;;;;iBAsNE,MAAM;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAiOk+R,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlB3mS,wBAUG"}
@@ -187,9 +187,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
187
187
  }>, "focus"> & {
188
188
  focus: (options?: FocusOptions) => void;
189
189
  } & {} & import('vue').ComponentCustomProperties & {} & {
190
- $slots: {
191
- leading?(_: {}): any;
192
- trailing?(_: {}): any;
190
+ $slots: Readonly<{
191
+ leading?(): unknown;
192
+ trailing?(): unknown;
193
+ }> & {
194
+ leading?(): unknown;
195
+ trailing?(): unknown;
193
196
  };
194
197
  }) | null;
195
198
  popoverRef: ({
@@ -320,8 +323,10 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
320
323
  anchorStyle: Record<string, string>;
321
324
  popoverId: string;
322
325
  } & {} & import('vue').ComponentCustomProperties & {} & {
323
- $slots: {
324
- default?(_: {}): any;
326
+ $slots: Readonly<{
327
+ default(): unknown;
328
+ }> & {
329
+ default(): unknown;
325
330
  };
326
331
  }) | null;
327
332
  timePickerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
@@ -563,9 +568,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
563
568
  }>, "focus"> & {
564
569
  focus: (options?: FocusOptions) => void;
565
570
  } & {} & import('vue').ComponentCustomProperties & {} & {
566
- $slots: {
567
- leading?(_: {}): any;
568
- trailing?(_: {}): any;
571
+ $slots: Readonly<{
572
+ leading?(): unknown;
573
+ trailing?(): unknown;
574
+ }> & {
575
+ leading?(): unknown;
576
+ trailing?(): unknown;
569
577
  };
570
578
  }) | null;
571
579
  }, HTMLDivElement, import('vue').ComponentProvideOptions, {
@@ -855,9 +863,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
855
863
  }>, "focus"> & {
856
864
  focus: (options?: FocusOptions) => void;
857
865
  } & {} & import('vue').ComponentCustomProperties & {} & {
858
- $slots: {
859
- leading?(_: {}): any;
860
- trailing?(_: {}): any;
866
+ $slots: Readonly<{
867
+ leading?(): unknown;
868
+ trailing?(): unknown;
869
+ }> & {
870
+ leading?(): unknown;
871
+ trailing?(): unknown;
861
872
  };
862
873
  }) | null;
863
874
  }, HTMLDivElement, import('vue').ComponentProvideOptions, {
@@ -1147,9 +1158,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
1147
1158
  }>, "focus"> & {
1148
1159
  focus: (options?: FocusOptions) => void;
1149
1160
  } & {} & import('vue').ComponentCustomProperties & {} & {
1150
- $slots: {
1151
- leading?(_: {}): any;
1152
- trailing?(_: {}): any;
1161
+ $slots: Readonly<{
1162
+ leading?(): unknown;
1163
+ trailing?(): unknown;
1164
+ }> & {
1165
+ leading?(): unknown;
1166
+ trailing?(): unknown;
1153
1167
  };
1154
1168
  }) | null;
1155
1169
  }, HTMLDivElement, import('vue').ComponentProvideOptions, {
@@ -1 +1 @@
1
- {"version":3,"file":"KdsTimeInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/TimeInput/KdsTimeInput.vue"],"names":[],"mappings":"AAyLA,OAAO,EAEL,QAAQ,EAKT,MAAM,KAAK,CAAC;AACb,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AASlD,OAAO,KAAK,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAG7E,KAAK,WAAW,GAAG,iBAAiB,CAAC;AA+GrC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,QAAQ,CAAC,SAAS,GAAG,IAAI,CAAC;IACvC,aAAa,CAAC,EAAE,uBAAuB,CAAC;CACvC,GAAG,WAAW,CAAC;;mBAtIhB,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAscupR,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAnXrxR,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAscupR,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAnXrxR,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAmFR,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAscupR,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAnXrxR,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAmFR,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAscupR,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAnXrxR,CAnFQ;;;;;;;;;;;;;;;;;;;AAobR,wBAUG"}
1
+ {"version":3,"file":"KdsTimeInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/TimeInput/KdsTimeInput.vue"],"names":[],"mappings":"AAyLA,OAAO,EAEL,QAAQ,EAKT,MAAM,KAAK,CAAC;AACb,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AASlD,OAAO,KAAK,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAG7E,KAAK,WAAW,GAAG,iBAAiB,CAAC;AA+GrC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,QAAQ,CAAC,SAAS,GAAG,IAAI,CAAC;IACvC,aAAa,CAAC,EAAE,uBAAuB,CAAC;CACvC,GAAG,WAAW,CAAC;;mBAtIhB,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAscupR,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAnXrxR,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAscupR,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAnXrxR,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAmFR,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAscupR,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAnXrxR,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAmFR,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAscupR,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAnXrxR,CAnFQ;;;;;;;;;;;;;;;;;;;AAobR,wBAUG"}
@@ -242,9 +242,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
242
242
  }>, "focus"> & {
243
243
  focus: (options?: FocusOptions) => void;
244
244
  } & {} & import('vue').ComponentCustomProperties & {} & {
245
- $slots: {
246
- leading?(_: {}): any;
247
- trailing?(_: {}): any;
245
+ $slots: Readonly<{
246
+ leading?(): unknown;
247
+ trailing?(): unknown;
248
+ }> & {
249
+ leading?(): unknown;
250
+ trailing?(): unknown;
248
251
  };
249
252
  }) | null;
250
253
  }, HTMLDivElement, import('vue').ComponentProvideOptions, {
@@ -534,9 +537,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
534
537
  }>, "focus"> & {
535
538
  focus: (options?: FocusOptions) => void;
536
539
  } & {} & import('vue').ComponentCustomProperties & {} & {
537
- $slots: {
538
- leading?(_: {}): any;
539
- trailing?(_: {}): any;
540
+ $slots: Readonly<{
541
+ leading?(): unknown;
542
+ trailing?(): unknown;
543
+ }> & {
544
+ leading?(): unknown;
545
+ trailing?(): unknown;
540
546
  };
541
547
  }) | null;
542
548
  }, HTMLDivElement, import('vue').ComponentProvideOptions, {
@@ -826,9 +832,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
826
832
  }>, "focus"> & {
827
833
  focus: (options?: FocusOptions) => void;
828
834
  } & {} & import('vue').ComponentCustomProperties & {} & {
829
- $slots: {
830
- leading?(_: {}): any;
831
- trailing?(_: {}): any;
835
+ $slots: Readonly<{
836
+ leading?(): unknown;
837
+ trailing?(): unknown;
838
+ }> & {
839
+ leading?(): unknown;
840
+ trailing?(): unknown;
832
841
  };
833
842
  }) | null;
834
843
  }, HTMLDivElement, import('vue').ComponentProvideOptions, {
@@ -1 +1 @@
1
- {"version":3,"file":"TimePicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/TimeInput/TimePicker.vue"],"names":[],"mappings":"AA0PA,OAAO,EAAY,QAAQ,EAAkB,MAAM,KAAK,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAM7C,OAAO,KAAK,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAYxE,KAAK,WAAW,GAAG,eAAe,CAAC;AAoGnC,KAAK,iBAAiB,GAAG;IACzB,UAAU,EAAE,QAAQ,CAAC,SAAS,GAAG,IAAI,CAAC;IACtC,aAAa,CAAC,EAAE,uBAAuB,CAAC;CACvC,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBA1HhB,CArKC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA6lB+/J,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAxbtnK,CArKC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAqKD,CArKC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA6lB+/J,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAxbtnK,CArKC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAqKD,CArKC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA6lB+/J,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAxbtnK,CArKC;;;AA2kBD,wBAUG"}
1
+ {"version":3,"file":"TimePicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/TimeInput/TimePicker.vue"],"names":[],"mappings":"AA0PA,OAAO,EAAY,QAAQ,EAAkB,MAAM,KAAK,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAM7C,OAAO,KAAK,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAYxE,KAAK,WAAW,GAAG,eAAe,CAAC;AAoGnC,KAAK,iBAAiB,GAAG;IACzB,UAAU,EAAE,QAAQ,CAAC,SAAS,GAAG,IAAI,CAAC;IACtC,aAAa,CAAC,EAAE,uBAAuB,CAAC;CACvC,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBA1HhB,CArKC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA6lB+/J,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAxbtnK,CArKC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAqKD,CArKC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA6lB+/J,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAxbtnK,CArKC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAqKD,CArKC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA6lB+/J,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAxbtnK,CArKC;;;AA2kBD,wBAUG"}
@@ -182,9 +182,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
182
182
  }>, "focus"> & {
183
183
  focus: (options?: FocusOptions) => void;
184
184
  } & {} & import('vue').ComponentCustomProperties & {} & {
185
- $slots: {
186
- leading?(_: {}): any;
187
- trailing?(_: {}): any;
185
+ $slots: Readonly<{
186
+ leading?(): unknown;
187
+ trailing?(): unknown;
188
+ }> & {
189
+ leading?(): unknown;
190
+ trailing?(): unknown;
188
191
  };
189
192
  }) | null;
190
193
  }, HTMLDivElement>;
@@ -1 +1 @@
1
- {"version":3,"file":"KdsUsernameInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/UsernameInput/KdsUsernameInput.vue"],"names":[],"mappings":"AAwDA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAErD,KAAK,WAAW,GAAG,qBAAqB,CAAC;AAuBzC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;;mBAOgG,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAwGy3oB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlBhmpB,wBAUG"}
1
+ {"version":3,"file":"KdsUsernameInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/UsernameInput/KdsUsernameInput.vue"],"names":[],"mappings":"AAwDA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAErD,KAAK,WAAW,GAAG,qBAAqB,CAAC;AAuBzC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;;mBAOgG,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAwGy3oB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlBhmpB,wBAUG"}
@@ -200,9 +200,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
200
200
  }>, "focus"> & {
201
201
  focus: (options?: FocusOptions) => void;
202
202
  } & {} & import('vue').ComponentCustomProperties & {} & {
203
- $slots: {
204
- leading?(_: {}): any;
205
- trailing?(_: {}): any;
203
+ $slots: Readonly<{
204
+ leading?(): unknown;
205
+ trailing?(): unknown;
206
+ }> & {
207
+ leading?(): unknown;
208
+ trailing?(): unknown;
206
209
  };
207
210
  }) | null;
208
211
  popoverRef: ({
@@ -333,8 +336,10 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
333
336
  anchorStyle: Record<string, string>;
334
337
  popoverId: string;
335
338
  } & {} & import('vue').ComponentCustomProperties & {} & {
336
- $slots: {
337
- default?(_: {}): any;
339
+ $slots: Readonly<{
340
+ default(): unknown;
341
+ }> & {
342
+ default(): unknown;
338
343
  };
339
344
  }) | null;
340
345
  datePickerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
@@ -638,9 +643,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
638
643
  }>, "focus"> & {
639
644
  focus: (options?: FocusOptions) => void;
640
645
  } & {} & import('vue').ComponentCustomProperties & {} & {
641
- $slots: {
642
- leading?(_: {}): any;
643
- trailing?(_: {}): any;
646
+ $slots: Readonly<{
647
+ leading?(): unknown;
648
+ trailing?(): unknown;
649
+ }> & {
650
+ leading?(): unknown;
651
+ trailing?(): unknown;
644
652
  };
645
653
  }) | null;
646
654
  popoverRef: ({
@@ -771,8 +779,10 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
771
779
  anchorStyle: Record<string, string>;
772
780
  popoverId: string;
773
781
  } & {} & import('vue').ComponentCustomProperties & {} & {
774
- $slots: {
775
- default?(_: {}): any;
782
+ $slots: Readonly<{
783
+ default(): unknown;
784
+ }> & {
785
+ default(): unknown;
776
786
  };
777
787
  }) | null;
778
788
  timePickerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
@@ -1014,9 +1024,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
1014
1024
  }>, "focus"> & {
1015
1025
  focus: (options?: FocusOptions) => void;
1016
1026
  } & {} & import('vue').ComponentCustomProperties & {} & {
1017
- $slots: {
1018
- leading?(_: {}): any;
1019
- trailing?(_: {}): any;
1027
+ $slots: Readonly<{
1028
+ leading?(): unknown;
1029
+ trailing?(): unknown;
1030
+ }> & {
1031
+ leading?(): unknown;
1032
+ trailing?(): unknown;
1020
1033
  };
1021
1034
  }) | null;
1022
1035
  }, HTMLDivElement, import('vue').ComponentProvideOptions, {
@@ -1306,9 +1319,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
1306
1319
  }>, "focus"> & {
1307
1320
  focus: (options?: FocusOptions) => void;
1308
1321
  } & {} & import('vue').ComponentCustomProperties & {} & {
1309
- $slots: {
1310
- leading?(_: {}): any;
1311
- trailing?(_: {}): any;
1322
+ $slots: Readonly<{
1323
+ leading?(): unknown;
1324
+ trailing?(): unknown;
1325
+ }> & {
1326
+ leading?(): unknown;
1327
+ trailing?(): unknown;
1312
1328
  };
1313
1329
  }) | null;
1314
1330
  }, HTMLDivElement, import('vue').ComponentProvideOptions, {
@@ -1598,9 +1614,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
1598
1614
  }>, "focus"> & {
1599
1615
  focus: (options?: FocusOptions) => void;
1600
1616
  } & {} & import('vue').ComponentCustomProperties & {} & {
1601
- $slots: {
1602
- leading?(_: {}): any;
1603
- trailing?(_: {}): any;
1617
+ $slots: Readonly<{
1618
+ leading?(): unknown;
1619
+ trailing?(): unknown;
1620
+ }> & {
1621
+ leading?(): unknown;
1622
+ trailing?(): unknown;
1604
1623
  };
1605
1624
  }) | null;
1606
1625
  }, HTMLDivElement, import('vue').ComponentProvideOptions, {
@@ -1 +1 @@
1
- {"version":3,"file":"KdsZonedDateTimeInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/ZonedDateTimeInput/KdsZonedDateTimeInput.vue"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"KdsZonedDateTimeInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/ZonedDateTimeInput/KdsZonedDateTimeInput.vue"],"names":[],"mappings":"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"}
@@ -184,9 +184,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
184
184
  }>, "focus"> & {
185
185
  focus: (options?: FocusOptions) => void;
186
186
  } & {} & import('vue').ComponentCustomProperties & {} & {
187
- $slots: {
188
- leading?(_: {}): any;
189
- trailing?(_: {}): any;
187
+ $slots: Readonly<{
188
+ leading?(): unknown;
189
+ trailing?(): unknown;
190
+ }> & {
191
+ leading?(): unknown;
192
+ trailing?(): unknown;
190
193
  };
191
194
  }) | null;
192
195
  listContainer: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../../..').KdsListContainerProps> & Readonly<{
@@ -1 +1 @@
1
- {"version":3,"file":"DropdownContainer.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/Dropdown/DropdownContainer.vue"],"names":[],"mappings":"AAoKA,OAAO,KAAK,EAAE,sBAAsB,EAAqB,MAAM,SAAS,CAAC;AAEzE,KAAK,WAAW,GAAG,sBAAsB,CAAC;AAwG1C,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAoKoyZ,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlB16Z,wBAUG"}
1
+ {"version":3,"file":"DropdownContainer.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/Dropdown/DropdownContainer.vue"],"names":[],"mappings":"AAoKA,OAAO,KAAK,EAAE,sBAAsB,EAAqB,MAAM,SAAS,CAAC;AAEzE,KAAK,WAAW,GAAG,sBAAsB,CAAC;AAwG1C,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAoKoyZ,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlB16Z,wBAUG"}
@@ -245,8 +245,10 @@ declare const _default: import('vue').DefineComponent<({
245
245
  anchorStyle: Record<string, string>;
246
246
  popoverId: string;
247
247
  } & {} & import('vue').ComponentCustomProperties & {} & {
248
- $slots: {
249
- default?(_: {}): any;
248
+ $slots: Readonly<{
249
+ default(): unknown;
250
+ }> & {
251
+ default(): unknown;
250
252
  };
251
253
  }) | null;
252
254
  dropdownContainerEl: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
@@ -432,9 +434,12 @@ declare const _default: import('vue').DefineComponent<({
432
434
  }>, "focus"> & {
433
435
  focus: (options?: FocusOptions) => void;
434
436
  } & {} & import('vue').ComponentCustomProperties & {} & {
435
- $slots: {
436
- leading?(_: {}): any;
437
- trailing?(_: {}): any;
437
+ $slots: Readonly<{
438
+ leading?(): unknown;
439
+ trailing?(): unknown;
440
+ }> & {
441
+ leading?(): unknown;
442
+ trailing?(): unknown;
438
443
  };
439
444
  }) | null;
440
445
  listContainer: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../../../index.ts').KdsListContainerProps> & Readonly<{
@@ -1 +1 @@
1
- {"version":3,"file":"KdsDropdown.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/Dropdown/KdsDropdown.vue"],"names":[],"mappings":";iBA0La,MAAM;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;mBArEnB,CAfI;;;;iBAoFS,MAAM;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBArEnB,CAfI;;;;;;;;;;;;;;;;;;;uBAeJ,CAfI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA+Rs9b,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlBhlc,wBAUG"}
1
+ {"version":3,"file":"KdsDropdown.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/Dropdown/KdsDropdown.vue"],"names":[],"mappings":";iBA0La,MAAM;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;mBArEnB,CAfI;;;;iBAoFS,MAAM;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBArEnB,CAfI;;;;;;;;;;;;;;;;;;;uBAeJ,CAfI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA+Rs9b,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlBhlc,wBAUG"}
@@ -250,8 +250,10 @@ declare const _default: import('vue').DefineComponent<({
250
250
  anchorStyle: Record<string, string>;
251
251
  popoverId: string;
252
252
  } & {} & import('vue').ComponentCustomProperties & {} & {
253
- $slots: {
254
- default?(_: {}): any;
253
+ $slots: Readonly<{
254
+ default(): unknown;
255
+ }> & {
256
+ default(): unknown;
255
257
  };
256
258
  }) | null;
257
259
  dropdownContainerEl: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
@@ -442,9 +444,12 @@ declare const _default: import('vue').DefineComponent<({
442
444
  }>, "focus"> & {
443
445
  focus: (options?: FocusOptions) => void;
444
446
  } & {} & import('vue').ComponentCustomProperties & {} & {
445
- $slots: {
446
- leading?(_: {}): any;
447
- trailing?(_: {}): any;
447
+ $slots: Readonly<{
448
+ leading?(): unknown;
449
+ trailing?(): unknown;
450
+ }> & {
451
+ leading?(): unknown;
452
+ trailing?(): unknown;
448
453
  };
449
454
  }) | null;
450
455
  listContainer: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../../..').KdsListContainerProps> & Readonly<{
@@ -1 +1 @@
1
- {"version":3,"file":"KdsMultiSelectDropdown.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/Dropdown/KdsMultiSelectDropdown.vue"],"names":[],"mappings":"AAmKA,OAAO,KAAK,EAAE,iBAAiB,EAA+B,MAAM,SAAS,CAAC;;iBAqGjE,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;iBAAR,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;mBA9GrB,CA/D2B;;;;iBA6Kd,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;iBAAR,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBA9GrB,CA/D2B;;;;;;;;;;;;;;;;;;;uBA+D3B,CA/D2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAkXmkX,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlBptX,wBAUG"}
1
+ {"version":3,"file":"KdsMultiSelectDropdown.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/Dropdown/KdsMultiSelectDropdown.vue"],"names":[],"mappings":"AAmKA,OAAO,KAAK,EAAE,iBAAiB,EAA+B,MAAM,SAAS,CAAC;;iBAqGjE,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;iBAAR,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;mBA9GrB,CA/D2B;;;;iBA6Kd,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;iBAAR,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBA9GrB,CA/D2B;;;;;;;;;;;;;;;;;;;uBA+D3B,CA/D2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAkXmkX,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlBptX,wBAUG"}
@@ -187,9 +187,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
187
187
  }>, "focus"> & {
188
188
  focus: (options?: FocusOptions) => void;
189
189
  } & {} & import('vue').ComponentCustomProperties & {} & {
190
- $slots: {
191
- leading?(_: {}): any;
192
- trailing?(_: {}): any;
190
+ $slots: Readonly<{
191
+ leading?(): unknown;
192
+ trailing?(): unknown;
193
+ }> & {
194
+ leading?(): unknown;
195
+ trailing?(): unknown;
193
196
  };
194
197
  }) | null;
195
198
  listContainer: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../../..').KdsListContainerProps> & Readonly<{
@@ -1 +1 @@
1
- {"version":3,"file":"MultiSelectDropdownContainer.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/Dropdown/MultiSelectDropdownContainer.vue"],"names":[],"mappings":"AA0PA,OAAO,KAAK,EAEV,oCAAoC,EACrC,MAAM,SAAS,CAAC;AAIjB,KAAK,WAAW,GAAG,oCAAoC,CAAC;AAuKxD,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,CAAC;CACtB,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA0MgzK,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlBt7K,wBAUG"}
1
+ {"version":3,"file":"MultiSelectDropdownContainer.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/Dropdown/MultiSelectDropdownContainer.vue"],"names":[],"mappings":"AA0PA,OAAO,KAAK,EAEV,oCAAoC,EACrC,MAAM,SAAS,CAAC;AAIjB,KAAK,WAAW,GAAG,oCAAoC,CAAC;AAuKxD,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,CAAC;CACtB,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA0MgzK,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlBt7K,wBAUG"}
@@ -2,7 +2,7 @@ import { KdsSortableListBoxOption } from './types';
2
2
  declare const _default: import('vue').DefineComponent<({
3
3
  modelValue: string[];
4
4
  } & {
5
- modelValue: string[];
5
+ modelValue?: string[];
6
6
  possibleValues: KdsSortableListBoxOption[];
7
7
  disabled?: boolean;
8
8
  } & {
@@ -20,7 +20,7 @@ declare const _default: import('vue').DefineComponent<({
20
20
  }) | ({
21
21
  modelValue: string[];
22
22
  } & {
23
- modelValue: string[];
23
+ modelValue?: string[];
24
24
  possibleValues: KdsSortableListBoxOption[];
25
25
  disabled?: boolean;
26
26
  } & {
@@ -42,7 +42,7 @@ declare const _default: import('vue').DefineComponent<({
42
42
  }, string, import('vue').PublicProps, Readonly<({
43
43
  modelValue: string[];
44
44
  } & {
45
- modelValue: string[];
45
+ modelValue?: string[];
46
46
  possibleValues: KdsSortableListBoxOption[];
47
47
  disabled?: boolean;
48
48
  } & {
@@ -60,7 +60,7 @@ declare const _default: import('vue').DefineComponent<({
60
60
  }) | ({
61
61
  modelValue: string[];
62
62
  } & {
63
- modelValue: string[];
63
+ modelValue?: string[];
64
64
  possibleValues: KdsSortableListBoxOption[];
65
65
  disabled?: boolean;
66
66
  } & {
@@ -3,7 +3,7 @@ import { KdsMultiSelectListBoxOption } from '../MultiSelectListBox';
3
3
  export type KdsSortableListBoxOption = KdsMultiSelectListBoxOption;
4
4
  export type KdsSortableListBoxProps = {
5
5
  /** The ordered list of selected value ids. */
6
- modelValue: string[];
6
+ modelValue?: string[];
7
7
  /** All available options with their metadata. The display order is determined by the v-model. */
8
8
  possibleValues: KdsSortableListBoxOption[];
9
9
  /** Whether the list box is disabled */
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/SortableListBox/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AACrD,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,uBAAuB,CAAC;AAEzE,MAAM,MAAM,wBAAwB,GAAG,2BAA2B,CAAC;AAEnE,MAAM,MAAM,uBAAuB,GAAG;IACpC,8CAA8C;IAC9C,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,iGAAiG;IACjG,cAAc,EAAE,wBAAwB,EAAE,CAAC;IAC3C,uCAAuC;IACvC,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,iBAAiB,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/SortableListBox/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AACrD,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,uBAAuB,CAAC;AAEzE,MAAM,MAAM,wBAAwB,GAAG,2BAA2B,CAAC;AAEnE,MAAM,MAAM,uBAAuB,GAAG;IACpC,8CAA8C;IAC9C,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,iGAAiG;IACjG,cAAc,EAAE,wBAAwB,EAAE,CAAC;IAC3C,uCAAuC;IACvC,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,iBAAiB,CAAC"}
@@ -5,9 +5,15 @@ type __VLS_PublicProps = {
5
5
  } & __VLS_Props;
6
6
  declare function __VLS_template(): {
7
7
  attrs: Partial<{}>;
8
- slots: Partial<Record<string, (_: {
9
- item: KdsAccordionItem;
10
- }) => any>>;
8
+ slots: Readonly<{
9
+ [name: string]: (props: {
10
+ item: KdsAccordionItem;
11
+ }) => unknown;
12
+ }> & {
13
+ [name: string]: (props: {
14
+ item: KdsAccordionItem;
15
+ }) => unknown;
16
+ };
11
17
  refs: {};
12
18
  rootEl: HTMLDivElement;
13
19
  };
@@ -1 +1 @@
1
- {"version":3,"file":"KdsAccordion.vue.d.ts","sourceRoot":"","sources":["../../../../src/layouts/Accordion/KdsAccordion.vue"],"names":[],"mappings":"AA+SA,OAAO,KAAK,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAEnE,KAAK,WAAW,GAAG,iBAAiB,CAAC;AA4KrC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA6FT,OAAO,IAA6B;;;UAXqC,GAAG;;;EAgBzF;AAgBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;6FAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"KdsAccordion.vue.d.ts","sourceRoot":"","sources":["../../../../src/layouts/Accordion/KdsAccordion.vue"],"names":[],"mappings":"AAsTA,OAAO,KAAK,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAEnE,KAAK,WAAW,GAAG,iBAAiB,CAAC;AAmLrC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAyFT,OAAO,IAA6B;;gCAtGxB;YAAE,IAAI,EAAE,gBAAgB,CAAA;SAAE,KAAK,OAAO;;gCAAtC;YAAE,IAAI,EAAE,gBAAgB,CAAA;SAAE,KAAK,OAAO;;;;EA2G/D;AAgBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;6FAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -11,11 +11,40 @@ type BaseCardProps = KdsCardProps & {
11
11
  };
12
12
  declare function __VLS_template(): {
13
13
  attrs: Partial<{}>;
14
- slots: {
15
- 'primary-action'?(_: {}): any;
16
- 'header-accessory'?(_: {}): any;
17
- 'header-actions'?(_: {}): any;
18
- default?(_: {}): any;
14
+ slots: Readonly<{
15
+ /**
16
+ * Primary interactive element (e.g. button or link overlay).
17
+ */
18
+ "primary-action"?(): unknown;
19
+ /**
20
+ * Accessory element displayed in the card header.
21
+ */
22
+ "header-accessory"?(): unknown;
23
+ /**
24
+ * Actions displayed in the card header.
25
+ */
26
+ "header-actions"?(): unknown;
27
+ /**
28
+ * Main content of the card.
29
+ */
30
+ default(): unknown;
31
+ }> & {
32
+ /**
33
+ * Primary interactive element (e.g. button or link overlay).
34
+ */
35
+ "primary-action"?(): unknown;
36
+ /**
37
+ * Accessory element displayed in the card header.
38
+ */
39
+ "header-accessory"?(): unknown;
40
+ /**
41
+ * Actions displayed in the card header.
42
+ */
43
+ "header-actions"?(): unknown;
44
+ /**
45
+ * Main content of the card.
46
+ */
47
+ default(): unknown;
19
48
  };
20
49
  refs: {};
21
50
  rootEl: HTMLDivElement;
@@ -1 +1 @@
1
- {"version":3,"file":"BaseCard.vue.d.ts","sourceRoot":"","sources":["../../../../src/layouts/Card/BaseCard.vue"],"names":[],"mappings":"AAyKA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAE5C,KAAK,aAAa,GAAG,YAAY,GAAG;IAClC;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAaF,iBAAS,cAAc;WAqET,OAAO,IAA6B;;kCAbZ,GAAG;oCACD,GAAG;kCACL,GAAG;yBACZ,GAAG;;;;EAe/B;AASD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,iTAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"BaseCard.vue.d.ts","sourceRoot":"","sources":["../../../../src/layouts/Card/BaseCard.vue"],"names":[],"mappings":"AA4LA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAE5C,KAAK,aAAa,GAAG,YAAY,GAAG;IAClC;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAgCF,iBAAS,cAAc;WA+DT,OAAO,IAA6B;;QAnFhD;;WAEG;6BACkB,OAAO;QAC5B;;WAEG;+BACoB,OAAO;QAC9B;;WAEG;6BACkB,OAAO;QAC5B;;WAEG;mBACQ,OAAO;;QAflB;;WAEG;6BACkB,OAAO;QAC5B;;WAEG;+BACoB,OAAO;QAC9B;;WAEG;6BACkB,OAAO;QAC5B;;WAEG;mBACQ,OAAO;;;;EAyEnB;AASD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,iTAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -3,9 +3,24 @@ type Props = {
3
3
  };
4
4
  declare function __VLS_template(): {
5
5
  attrs: Partial<{}>;
6
- slots: {
7
- accessory?(_: {}): any;
8
- actions?(_: {}): any;
6
+ slots: Readonly<{
7
+ /**
8
+ * Accessory element displayed before the headline (e.g. icon, avatar).
9
+ */
10
+ accessory?(): unknown;
11
+ /**
12
+ * Actions displayed after the headline (e.g. buttons).
13
+ */
14
+ actions?(): unknown;
15
+ }> & {
16
+ /**
17
+ * Accessory element displayed before the headline (e.g. icon, avatar).
18
+ */
19
+ accessory?(): unknown;
20
+ /**
21
+ * Actions displayed after the headline (e.g. buttons).
22
+ */
23
+ actions?(): unknown;
9
24
  };
10
25
  refs: {};
11
26
  rootEl: HTMLDivElement;
@@ -1 +1 @@
1
- {"version":3,"file":"CardHeader.vue.d.ts","sourceRoot":"","sources":["../../../../src/layouts/Card/CardHeader.vue"],"names":[],"mappings":"AAoDA,KAAK,KAAK,GAAG;IACX,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAOF,iBAAS,cAAc;WAiDT,OAAO,IAA6B;;2BAXnB,GAAG;yBACL,GAAG;;;;EAe/B;AAQD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,iSAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"CardHeader.vue.d.ts","sourceRoot":"","sources":["../../../../src/layouts/Card/CardHeader.vue"],"names":[],"mappings":"AA+DA,KAAK,KAAK,GAAG;IACX,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAkBF,iBAAS,cAAc;WA6CT,OAAO,IAA6B;;QAzDhD;;WAEG;sBACW,OAAO;QACrB;;WAEG;oBACS,OAAO;;QAPnB;;WAEG;sBACW,OAAO;QACrB;;WAEG;oBACS,OAAO;;;;EAuDpB;AAQD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,iSAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}