cisse-vue-ui 0.8.4 → 0.9.0

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/README.md +666 -4
  2. package/dist/{CheckboxGroup.vue_vue_type_script_setup_true_lang-B190Yija.js → CheckboxGroup.vue_vue_type_script_setup_true_lang-ZP02bMgY.js} +2 -2
  3. package/dist/{CheckboxGroup.vue_vue_type_script_setup_true_lang-B190Yija.js.map → CheckboxGroup.vue_vue_type_script_setup_true_lang-ZP02bMgY.js.map} +1 -1
  4. package/dist/{ConfirmDialog.vue_vue_type_script_setup_true_lang-DWs2V7xX.js → ConfirmDialog.vue_vue_type_script_setup_true_lang-C5KHLMvx.js} +37 -184
  5. package/dist/ConfirmDialog.vue_vue_type_script_setup_true_lang-C5KHLMvx.js.map +1 -0
  6. package/dist/{ConfirmDialog.vue_vue_type_script_setup_true_lang-BGUoa5fT.cjs → ConfirmDialog.vue_vue_type_script_setup_true_lang-CLfy0-Wb.cjs} +33 -180
  7. package/dist/ConfirmDialog.vue_vue_type_script_setup_true_lang-CLfy0-Wb.cjs.map +1 -0
  8. package/dist/{FilterTabs.vue_vue_type_script_setup_true_lang-DYxh-wFx.cjs → FilterTabs.vue_vue_type_script_setup_true_lang-COkZbeGG.cjs} +1259 -208
  9. package/dist/FilterTabs.vue_vue_type_script_setup_true_lang-COkZbeGG.cjs.map +1 -0
  10. package/dist/{FilterTabs.vue_vue_type_script_setup_true_lang-BmJHgkBs.js → FilterTabs.vue_vue_type_script_setup_true_lang-CzpYHtc5.js} +1268 -217
  11. package/dist/FilterTabs.vue_vue_type_script_setup_true_lang-CzpYHtc5.js.map +1 -0
  12. package/dist/ListSkeleton.vue_vue_type_script_setup_true_lang-BHopJ9RG.js +298 -0
  13. package/dist/ListSkeleton.vue_vue_type_script_setup_true_lang-BHopJ9RG.js.map +1 -0
  14. package/dist/ListSkeleton.vue_vue_type_script_setup_true_lang-Bo3HqgX0.cjs +297 -0
  15. package/dist/ListSkeleton.vue_vue_type_script_setup_true_lang-Bo3HqgX0.cjs.map +1 -0
  16. package/dist/components/core/AccordionItem.test.d.ts +1 -0
  17. package/dist/components/core/Breadcrumb.stories.d.ts +5 -0
  18. package/dist/components/core/CardWrapper.stories.d.ts +32 -0
  19. package/dist/components/core/CardWrapper.test.d.ts +1 -0
  20. package/dist/components/core/CardWrapper.vue.d.ts +129 -0
  21. package/dist/components/core/CollapsibleCard.vue.d.ts +1 -1
  22. package/dist/components/core/DataTable.stories.d.ts +38 -0
  23. package/dist/components/core/Dropdown.vue.d.ts +1 -1
  24. package/dist/components/core/Popover.vue.d.ts +2 -2
  25. package/dist/components/core/Tooltip.stories.d.ts +3 -0
  26. package/dist/components/core/index.cjs +39 -22
  27. package/dist/components/core/index.cjs.map +1 -1
  28. package/dist/components/core/index.d.ts +4 -1
  29. package/dist/components/core/index.js +39 -22
  30. package/dist/components/core/table/DataTable.test.d.ts +1 -0
  31. package/dist/components/core/{TableComponent.vue.d.ts → table/DataTable.vue.d.ts} +60 -7
  32. package/dist/components/core/table/Table.stories.d.ts +27 -0
  33. package/dist/components/core/table/atoms/Caption.test.d.ts +1 -0
  34. package/dist/components/core/table/atoms/Caption.vue.d.ts +26 -0
  35. package/dist/components/core/table/atoms/Col.test.d.ts +1 -0
  36. package/dist/components/core/table/atoms/Col.vue.d.ts +8 -0
  37. package/dist/components/core/table/atoms/Colgroup.test.d.ts +1 -0
  38. package/dist/components/core/table/atoms/Colgroup.vue.d.ts +17 -0
  39. package/dist/components/core/table/atoms/Table.test.d.ts +1 -0
  40. package/dist/components/core/table/atoms/Table.vue.d.ts +46 -0
  41. package/dist/components/core/table/atoms/Tbody.test.d.ts +1 -0
  42. package/dist/components/core/table/atoms/Tbody.vue.d.ts +17 -0
  43. package/dist/components/core/table/atoms/Td.test.d.ts +1 -0
  44. package/dist/components/core/table/atoms/Td.vue.d.ts +43 -0
  45. package/dist/components/core/table/atoms/Tfoot.test.d.ts +1 -0
  46. package/dist/components/core/table/atoms/Tfoot.vue.d.ts +17 -0
  47. package/dist/components/core/table/atoms/Th.test.d.ts +1 -0
  48. package/dist/components/core/table/atoms/Th.vue.d.ts +64 -0
  49. package/dist/components/core/table/atoms/Thead.test.d.ts +1 -0
  50. package/dist/components/core/table/atoms/Thead.vue.d.ts +17 -0
  51. package/dist/components/core/table/atoms/Tr.test.d.ts +1 -0
  52. package/dist/components/core/table/atoms/Tr.vue.d.ts +35 -0
  53. package/dist/components/core/table/atoms/index.d.ts +10 -0
  54. package/dist/components/core/table/index.d.ts +3 -0
  55. package/dist/components/core/table/molecules/ExpandableRow.test.d.ts +1 -0
  56. package/dist/components/core/table/molecules/ExpandableRow.vue.d.ts +47 -0
  57. package/dist/components/core/table/molecules/TableFooter.test.d.ts +1 -0
  58. package/dist/components/core/table/molecules/TableFooter.vue.d.ts +21 -0
  59. package/dist/components/core/table/molecules/TableHeader.test.d.ts +1 -0
  60. package/dist/components/core/table/molecules/TableHeader.vue.d.ts +49 -0
  61. package/dist/components/core/table/molecules/TableRow.test.d.ts +1 -0
  62. package/dist/components/core/table/molecules/TableRow.vue.d.ts +59 -0
  63. package/dist/components/core/table/molecules/index.d.ts +4 -0
  64. package/dist/components/feedback/Progress.vue.d.ts +1 -1
  65. package/dist/components/feedback/TableSkeleton.vue.d.ts +1 -1
  66. package/dist/components/feedback/index.cjs +14 -14
  67. package/dist/components/feedback/index.js +14 -14
  68. package/dist/components/form/Combobox.vue.d.ts +1 -1
  69. package/dist/components/form/DatePicker.vue.d.ts +1 -1
  70. package/dist/components/form/FormSection.vue.d.ts +1 -1
  71. package/dist/components/form/IconPicker.stories.d.ts +19 -0
  72. package/dist/components/form/IconPicker.test.d.ts +1 -0
  73. package/dist/components/form/InputWrapper.stories.d.ts +0 -5
  74. package/dist/components/form/Rating.vue.d.ts +1 -1
  75. package/dist/components/form/SearchInput.vue.d.ts +1 -1
  76. package/dist/components/form/index.js +2 -2
  77. package/dist/components/index.cjs +53 -36
  78. package/dist/components/index.cjs.map +1 -1
  79. package/dist/components/index.js +65 -48
  80. package/dist/composables/index.cjs +15 -8
  81. package/dist/composables/index.cjs.map +1 -1
  82. package/dist/composables/index.d.ts +7 -0
  83. package/dist/composables/index.js +12 -5
  84. package/dist/composables/useColumnResize.d.ts +38 -0
  85. package/dist/composables/useColumnResize.test.d.ts +1 -0
  86. package/dist/composables/useColumnVisibility.d.ts +44 -0
  87. package/dist/composables/useColumnVisibility.test.d.ts +1 -0
  88. package/dist/composables/useEditableCell.d.ts +51 -0
  89. package/dist/composables/useEditableCell.test.d.ts +1 -0
  90. package/dist/composables/usePagination.d.ts +44 -0
  91. package/dist/composables/usePagination.test.d.ts +1 -0
  92. package/dist/composables/usePinnedRows.d.ts +41 -0
  93. package/dist/composables/usePinnedRows.test.d.ts +1 -0
  94. package/dist/composables/useTableKeyboardNavigation.d.ts +52 -0
  95. package/dist/composables/useTableKeyboardNavigation.test.d.ts +1 -0
  96. package/dist/composables/useVirtualScroll.d.ts +32 -0
  97. package/dist/composables/useVirtualScroll.test.d.ts +1 -0
  98. package/dist/index-0kwQORZJ.js +114 -0
  99. package/dist/index-0kwQORZJ.js.map +1 -0
  100. package/dist/{index-LFQFhClN.cjs → index-BMSH4AOz.cjs} +54 -37
  101. package/dist/{index-LFQFhClN.cjs.map → index-BMSH4AOz.cjs.map} +1 -1
  102. package/dist/{index-SNefWfX0.js → index-BaWpldIJ.js} +3 -3
  103. package/dist/{index-SNefWfX0.js.map → index-BaWpldIJ.js.map} +1 -1
  104. package/dist/index.cjs +69 -45
  105. package/dist/index.cjs.map +1 -1
  106. package/dist/index.js +79 -55
  107. package/dist/style.css +1 -1
  108. package/dist/types/components.d.ts +1 -1
  109. package/dist/types/property.d.ts +8 -0
  110. package/dist/usePagination-BGwbICFC.js +135 -0
  111. package/dist/usePagination-BGwbICFC.js.map +1 -0
  112. package/dist/usePagination-gvvh1zqA.cjs +134 -0
  113. package/dist/usePagination-gvvh1zqA.cjs.map +1 -0
  114. package/dist/useVirtualScroll-BivP86fA.cjs +869 -0
  115. package/dist/useVirtualScroll-BivP86fA.cjs.map +1 -0
  116. package/dist/useVirtualScroll-YeZru2Eo.js +870 -0
  117. package/dist/useVirtualScroll-YeZru2Eo.js.map +1 -0
  118. package/package.json +1 -1
  119. package/dist/ConfirmDialog.vue_vue_type_script_setup_true_lang-BGUoa5fT.cjs.map +0 -1
  120. package/dist/ConfirmDialog.vue_vue_type_script_setup_true_lang-DWs2V7xX.js.map +0 -1
  121. package/dist/FilterTabs.vue_vue_type_script_setup_true_lang-BmJHgkBs.js.map +0 -1
  122. package/dist/FilterTabs.vue_vue_type_script_setup_true_lang-DYxh-wFx.cjs.map +0 -1
  123. package/dist/ListSkeleton.vue_vue_type_script_setup_true_lang-BwtEbaiT.js +0 -150
  124. package/dist/ListSkeleton.vue_vue_type_script_setup_true_lang-BwtEbaiT.js.map +0 -1
  125. package/dist/ListSkeleton.vue_vue_type_script_setup_true_lang-DtwwmfWr.cjs +0 -149
  126. package/dist/ListSkeleton.vue_vue_type_script_setup_true_lang-DtwwmfWr.cjs.map +0 -1
  127. package/dist/components/core/TableComponent.stories.d.ts +0 -16
  128. package/dist/index-CyL_6V7D.js +0 -97
  129. package/dist/index-CyL_6V7D.js.map +0 -1
  130. package/dist/useDarkMode-Cl5QWTlC.js +0 -53
  131. package/dist/useDarkMode-Cl5QWTlC.js.map +0 -1
  132. package/dist/useDarkMode-DLZcJEUQ.cjs +0 -52
  133. package/dist/useDarkMode-DLZcJEUQ.cjs.map +0 -1
  134. package/dist/useToast-Bk60GArg.cjs +0 -176
  135. package/dist/useToast-Bk60GArg.cjs.map +0 -1
  136. package/dist/useToast-ina5g3mj.js +0 -177
  137. package/dist/useToast-ina5g3mj.js.map +0 -1
@@ -0,0 +1,8 @@
1
+ type __VLS_Props = {
2
+ /** Number of columns to span */
3
+ span?: number | string;
4
+ /** Column width */
5
+ width?: string;
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
8
+ export default _default;
@@ -0,0 +1,17 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ rootEl: any;
8
+ };
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
11
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
12
+ export default _default;
13
+ type __VLS_WithTemplateSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,46 @@
1
+ import { InjectionKey } from 'vue';
2
+ export interface TableContext {
3
+ striped: boolean;
4
+ bordered: boolean;
5
+ hover: boolean;
6
+ compact: boolean;
7
+ stickyHeader: boolean;
8
+ }
9
+ export declare const TableContextKey: InjectionKey<TableContext>;
10
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
11
+ /** Enable alternating row colors */
12
+ striped?: boolean;
13
+ /** Show cell borders */
14
+ bordered?: boolean;
15
+ /** Enable row hover effect */
16
+ hover?: boolean;
17
+ /** Use compact padding */
18
+ compact?: boolean;
19
+ /** Make header sticky on scroll */
20
+ stickyHeader?: boolean;
21
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
22
+ /** Enable alternating row colors */
23
+ striped?: boolean;
24
+ /** Show cell borders */
25
+ bordered?: boolean;
26
+ /** Enable row hover effect */
27
+ hover?: boolean;
28
+ /** Use compact padding */
29
+ compact?: boolean;
30
+ /** Make header sticky on scroll */
31
+ stickyHeader?: boolean;
32
+ }> & Readonly<{}>, {
33
+ striped: boolean;
34
+ bordered: boolean;
35
+ hover: boolean;
36
+ compact: boolean;
37
+ stickyHeader: boolean;
38
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
39
+ default?(_: {}): any;
40
+ }>;
41
+ export default _default;
42
+ type __VLS_WithTemplateSlots<T, S> = T & {
43
+ new (): {
44
+ $slots: S;
45
+ };
46
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,17 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ rootEl: any;
8
+ };
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
11
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
12
+ export default _default;
13
+ type __VLS_WithTemplateSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,43 @@
1
+ type __VLS_Props = {
2
+ /** Text alignment */
3
+ align?: 'left' | 'center' | 'right';
4
+ /** Whether this is the main/primary column */
5
+ main?: boolean;
6
+ /** Additional CSS classes */
7
+ className?: string;
8
+ /** Truncate text with ellipsis */
9
+ truncate?: boolean;
10
+ /** Fixed width (e.g., '200px', '20%') */
11
+ width?: string;
12
+ /** Make this column sticky (for horizontal scroll) */
13
+ sticky?: boolean;
14
+ /** Sticky position from left (for multiple sticky columns) */
15
+ stickyLeft?: string;
16
+ /** Column span */
17
+ colspan?: number | string;
18
+ /** Row span */
19
+ rowspan?: number | string;
20
+ };
21
+ declare function __VLS_template(): {
22
+ attrs: Partial<{}>;
23
+ slots: {
24
+ default?(_: {}): any;
25
+ };
26
+ refs: {};
27
+ rootEl: any;
28
+ };
29
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
30
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
31
+ main: boolean;
32
+ align: "left" | "center" | "right";
33
+ sticky: boolean;
34
+ stickyLeft: string;
35
+ truncate: boolean;
36
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
37
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
38
+ export default _default;
39
+ type __VLS_WithTemplateSlots<T, S> = T & {
40
+ new (): {
41
+ $slots: S;
42
+ };
43
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,17 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ rootEl: any;
8
+ };
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
11
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
12
+ export default _default;
13
+ type __VLS_WithTemplateSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,64 @@
1
+ export type SortDirection = 'asc' | 'desc';
2
+ type __VLS_Props = {
3
+ /** Enable sorting for this column */
4
+ sortable?: boolean;
5
+ /** Whether this column is currently sorted */
6
+ sorted?: boolean;
7
+ /** Current sort direction */
8
+ sortDirection?: SortDirection;
9
+ /** Text alignment */
10
+ align?: 'left' | 'center' | 'right';
11
+ /** Fixed width (e.g., '200px', '20%') */
12
+ width?: string;
13
+ /** Minimum width */
14
+ minWidth?: string;
15
+ /** Maximum width */
16
+ maxWidth?: string;
17
+ /** Make this column sticky (for horizontal scroll) */
18
+ sticky?: boolean;
19
+ /** Sticky position from left (for multiple sticky columns) */
20
+ stickyLeft?: string;
21
+ /** Column span */
22
+ colspan?: number | string;
23
+ /** Row span */
24
+ rowspan?: number | string;
25
+ /** Scope attribute for accessibility (col, row, colgroup, rowgroup) */
26
+ scope?: 'col' | 'row' | 'colgroup' | 'rowgroup';
27
+ /** Enable column resizing */
28
+ resizable?: boolean;
29
+ /** Whether this column is currently being resized */
30
+ resizing?: boolean;
31
+ };
32
+ declare function __VLS_template(): {
33
+ attrs: Partial<{}>;
34
+ slots: {
35
+ default?(_: {}): any;
36
+ };
37
+ refs: {};
38
+ rootEl: any;
39
+ };
40
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
41
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
42
+ sort: () => any;
43
+ resizeStart: (event: MouseEvent | TouchEvent) => any;
44
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
45
+ onSort?: (() => any) | undefined;
46
+ onResizeStart?: ((event: MouseEvent | TouchEvent) => any) | undefined;
47
+ }>, {
48
+ sortable: boolean;
49
+ sorted: boolean;
50
+ sortDirection: SortDirection;
51
+ align: "left" | "center" | "right";
52
+ sticky: boolean;
53
+ stickyLeft: string;
54
+ scope: "col" | "row" | "colgroup" | "rowgroup";
55
+ resizable: boolean;
56
+ resizing: boolean;
57
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
58
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
59
+ export default _default;
60
+ type __VLS_WithTemplateSlots<T, S> = T & {
61
+ new (): {
62
+ $slots: S;
63
+ };
64
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,17 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ rootEl: any;
8
+ };
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
11
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
12
+ export default _default;
13
+ type __VLS_WithTemplateSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,35 @@
1
+ type __VLS_Props = {
2
+ /** Whether the row is selected */
3
+ selected?: boolean;
4
+ /** Make the row clickable with hover cursor */
5
+ clickable?: boolean;
6
+ /** Disable the row */
7
+ disabled?: boolean;
8
+ /** Whether this is an even row (for striped tables, auto-detected if not provided) */
9
+ even?: boolean;
10
+ };
11
+ declare function __VLS_template(): {
12
+ attrs: Partial<{}>;
13
+ slots: {
14
+ default?(_: {}): any;
15
+ };
16
+ refs: {};
17
+ rootEl: any;
18
+ };
19
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
20
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
21
+ click: (event: MouseEvent) => any;
22
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
23
+ onClick?: ((event: MouseEvent) => any) | undefined;
24
+ }>, {
25
+ clickable: boolean;
26
+ selected: boolean;
27
+ disabled: boolean;
28
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
29
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
30
+ export default _default;
31
+ type __VLS_WithTemplateSlots<T, S> = T & {
32
+ new (): {
33
+ $slots: S;
34
+ };
35
+ };
@@ -0,0 +1,10 @@
1
+ export { default as Table, TableContextKey, type TableContext } from './Table.vue';
2
+ export { default as Caption } from './Caption.vue';
3
+ export { default as Colgroup } from './Colgroup.vue';
4
+ export { default as Col } from './Col.vue';
5
+ export { default as Thead } from './Thead.vue';
6
+ export { default as Tbody } from './Tbody.vue';
7
+ export { default as Tfoot } from './Tfoot.vue';
8
+ export { default as Tr } from './Tr.vue';
9
+ export { default as Th, type SortDirection } from './Th.vue';
10
+ export { default as Td } from './Td.vue';
@@ -0,0 +1,3 @@
1
+ export { Table, TableContextKey, type TableContext, Caption, Colgroup, Col, Thead, Tbody, Tfoot, Tr, Th, type SortDirection, Td, } from './atoms';
2
+ export { TableHeader, TableRow, TableFooter, ExpandableRow } from './molecules';
3
+ export { default as DataTable } from './DataTable.vue';
@@ -0,0 +1,47 @@
1
+ type __VLS_Props = {
2
+ /** Number of columns in the table (for colspan on expanded content) */
3
+ colspan: number;
4
+ /** Whether the row is initially expanded */
5
+ defaultExpanded?: boolean;
6
+ /** Control expanded state externally (use undefined for uncontrolled) */
7
+ expanded?: boolean | undefined;
8
+ /** Whether the row is selected */
9
+ selected?: boolean;
10
+ /** Whether the row is disabled */
11
+ disabled?: boolean;
12
+ /** Whether clicking the row toggles expansion */
13
+ expandOnRowClick?: boolean;
14
+ };
15
+ declare function __VLS_template(): {
16
+ attrs: Partial<{}>;
17
+ slots: {
18
+ row?(_: {}): any;
19
+ expanded?(_: {}): any;
20
+ };
21
+ refs: {};
22
+ rootEl: any;
23
+ };
24
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
25
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
26
+ toggle: () => void;
27
+ isExpanded: import('vue').WritableComputedRef<boolean, boolean>;
28
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
29
+ click: (event: MouseEvent) => any;
30
+ "update:expanded": (value: boolean) => any;
31
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
32
+ onClick?: ((event: MouseEvent) => any) | undefined;
33
+ "onUpdate:expanded"?: ((value: boolean) => any) | undefined;
34
+ }>, {
35
+ selected: boolean;
36
+ disabled: boolean;
37
+ expanded: boolean;
38
+ defaultExpanded: boolean;
39
+ expandOnRowClick: boolean;
40
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
41
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
42
+ export default _default;
43
+ type __VLS_WithTemplateSlots<T, S> = T & {
44
+ new (): {
45
+ $slots: S;
46
+ };
47
+ };
@@ -0,0 +1,21 @@
1
+ type __VLS_Props = {
2
+ /** Number of columns to span */
3
+ colSpan?: number;
4
+ };
5
+ declare function __VLS_template(): {
6
+ attrs: Partial<{}>;
7
+ slots: {
8
+ default?(_: {}): any;
9
+ };
10
+ refs: {};
11
+ rootEl: any;
12
+ };
13
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
15
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
+ export default _default;
17
+ type __VLS_WithTemplateSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };
@@ -0,0 +1,49 @@
1
+ import { Property } from '../../../../types';
2
+ import { SortDirection } from '../atoms/Th.vue';
3
+ type __VLS_Props = {
4
+ /** Column definitions */
5
+ columns: Property[];
6
+ /** Enable selection column */
7
+ selectable?: boolean;
8
+ /** Whether all items are selected */
9
+ allSelected?: boolean;
10
+ /** Whether some items are selected (indeterminate state) */
11
+ someSelected?: boolean;
12
+ /** Number of selectable items (for disabling checkbox when 0) */
13
+ selectableCount?: number;
14
+ /** Current sort column */
15
+ sortBy?: string;
16
+ /** Current sort direction */
17
+ sortDirection?: SortDirection;
18
+ /** Show action column */
19
+ showActions?: boolean;
20
+ };
21
+ declare function __VLS_template(): {
22
+ attrs: Partial<{}>;
23
+ slots: Partial<Record<string, (_: {
24
+ column: Property;
25
+ }) => any>>;
26
+ refs: {};
27
+ rootEl: any;
28
+ };
29
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
30
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
31
+ sort: (column: string, direction: SortDirection) => any;
32
+ selectAll: () => any;
33
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
34
+ onSort?: ((column: string, direction: SortDirection) => any) | undefined;
35
+ onSelectAll?: (() => any) | undefined;
36
+ }>, {
37
+ showActions: boolean;
38
+ selectable: boolean;
39
+ allSelected: boolean;
40
+ someSelected: boolean;
41
+ selectableCount: number;
42
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
43
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
44
+ export default _default;
45
+ type __VLS_WithTemplateSlots<T, S> = T & {
46
+ new (): {
47
+ $slots: S;
48
+ };
49
+ };
@@ -0,0 +1,59 @@
1
+ import { Property } from '../../../../types';
2
+ type ItemType = {
3
+ id: number | string;
4
+ [key: string]: unknown;
5
+ };
6
+ type __VLS_Props = {
7
+ /** The data item for this row */
8
+ item: ItemType;
9
+ /** Column definitions */
10
+ columns: Property[];
11
+ /** Enable selection for this row */
12
+ selectable?: boolean;
13
+ /** Whether this row is selected */
14
+ selected?: boolean;
15
+ /** Whether this row can be selected */
16
+ canSelect?: boolean;
17
+ /** Make the row clickable */
18
+ clickable?: boolean;
19
+ /** Whether this is an even row (for striped tables) */
20
+ even?: boolean;
21
+ /** Show action column */
22
+ showActions?: boolean;
23
+ };
24
+ declare function __VLS_template(): {
25
+ attrs: Partial<{}>;
26
+ slots: Partial<Record<string, (_: {
27
+ item: ItemType;
28
+ value: unknown;
29
+ column: Property;
30
+ }) => any>> & {
31
+ actions?(_: {
32
+ item: ItemType;
33
+ }): any;
34
+ };
35
+ refs: {};
36
+ rootEl: any;
37
+ };
38
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
39
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
40
+ select: () => any;
41
+ click: (event: MouseEvent) => any;
42
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
43
+ onSelect?: (() => any) | undefined;
44
+ onClick?: ((event: MouseEvent) => any) | undefined;
45
+ }>, {
46
+ showActions: boolean;
47
+ clickable: boolean;
48
+ selected: boolean;
49
+ even: boolean;
50
+ selectable: boolean;
51
+ canSelect: boolean;
52
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
53
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
54
+ export default _default;
55
+ type __VLS_WithTemplateSlots<T, S> = T & {
56
+ new (): {
57
+ $slots: S;
58
+ };
59
+ };
@@ -0,0 +1,4 @@
1
+ export { default as TableHeader } from './TableHeader.vue';
2
+ export { default as TableRow } from './TableRow.vue';
3
+ export { default as TableFooter } from './TableFooter.vue';
4
+ export { default as ExpandableRow } from './ExpandableRow.vue';
@@ -20,11 +20,11 @@ type __VLS_Props = {
20
20
  };
21
21
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
22
22
  variant: ProgressVariant;
23
+ striped: boolean;
23
24
  size: ProgressSize;
24
25
  indeterminate: boolean;
25
26
  showLabel: boolean;
26
27
  max: number;
27
- striped: boolean;
28
28
  animated: boolean;
29
29
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
30
30
  export default _default;
@@ -7,8 +7,8 @@ type __VLS_Props = {
7
7
  showHeader?: boolean;
8
8
  };
9
9
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
10
- rows: number;
11
10
  columns: number;
11
+ rows: number;
12
12
  showHeader: boolean;
13
13
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
14
14
  export default _default;
@@ -1,20 +1,20 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const ConfirmDialog_vue_vue_type_script_setup_true_lang = require("../../ConfirmDialog.vue_vue_type_script_setup_true_lang-BGUoa5fT.cjs");
4
- const ListSkeleton_vue_vue_type_script_setup_true_lang = require("../../ListSkeleton.vue_vue_type_script_setup_true_lang-DtwwmfWr.cjs");
5
- exports.Alert = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$5;
6
- exports.ConfirmDialog = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$10;
7
- exports.EmptyState = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$6;
3
+ const ConfirmDialog_vue_vue_type_script_setup_true_lang = require("../../ConfirmDialog.vue_vue_type_script_setup_true_lang-CLfy0-Wb.cjs");
4
+ const ListSkeleton_vue_vue_type_script_setup_true_lang = require("../../ListSkeleton.vue_vue_type_script_setup_true_lang-Bo3HqgX0.cjs");
5
+ exports.Alert = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$4;
6
+ exports.ConfirmDialog = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$9;
7
+ exports.EmptyState = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$5;
8
8
  exports.LoadingSpinner = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main;
9
9
  exports.Modal = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$1;
10
- exports.NotificationComponent = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$3;
11
- exports.NotificationList = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$4;
12
- exports.PaginationControls = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$2;
10
+ exports.NotificationComponent = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$2;
11
+ exports.NotificationList = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$3;
13
12
  exports.Progress = ConfirmDialog_vue_vue_type_script_setup_true_lang.Progress;
14
- exports.Skeleton = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$9;
15
- exports.Toast = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$7;
16
- exports.ToastContainer = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$8;
17
- exports.CardSkeleton = ListSkeleton_vue_vue_type_script_setup_true_lang._sfc_main$1;
18
- exports.ListSkeleton = ListSkeleton_vue_vue_type_script_setup_true_lang._sfc_main$2;
19
- exports.TableSkeleton = ListSkeleton_vue_vue_type_script_setup_true_lang._sfc_main;
13
+ exports.Skeleton = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$8;
14
+ exports.Toast = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$6;
15
+ exports.ToastContainer = ConfirmDialog_vue_vue_type_script_setup_true_lang._sfc_main$7;
16
+ exports.CardSkeleton = ListSkeleton_vue_vue_type_script_setup_true_lang._sfc_main$2;
17
+ exports.ListSkeleton = ListSkeleton_vue_vue_type_script_setup_true_lang._sfc_main$3;
18
+ exports.PaginationControls = ListSkeleton_vue_vue_type_script_setup_true_lang._sfc_main;
19
+ exports.TableSkeleton = ListSkeleton_vue_vue_type_script_setup_true_lang._sfc_main$1;
20
20
  //# sourceMappingURL=index.cjs.map
@@ -1,20 +1,20 @@
1
- import { e, j, f, _, a, c, d, b, P, i, g, h } from "../../ConfirmDialog.vue_vue_type_script_setup_true_lang-DWs2V7xX.js";
2
- import { a as a2, b as b2, _ as _2 } from "../../ListSkeleton.vue_vue_type_script_setup_true_lang-BwtEbaiT.js";
1
+ import { d, i, e, _, a, b, c, P, h, f, g } from "../../ConfirmDialog.vue_vue_type_script_setup_true_lang-C5KHLMvx.js";
2
+ import { b as b2, c as c2, _ as _2, a as a2 } from "../../ListSkeleton.vue_vue_type_script_setup_true_lang-BHopJ9RG.js";
3
3
  export {
4
- e as Alert,
5
- a2 as CardSkeleton,
6
- j as ConfirmDialog,
7
- f as EmptyState,
8
- b2 as ListSkeleton,
4
+ d as Alert,
5
+ b2 as CardSkeleton,
6
+ i as ConfirmDialog,
7
+ e as EmptyState,
8
+ c2 as ListSkeleton,
9
9
  _ as LoadingSpinner,
10
10
  a as Modal,
11
- c as NotificationComponent,
12
- d as NotificationList,
13
- b as PaginationControls,
11
+ b as NotificationComponent,
12
+ c as NotificationList,
13
+ _2 as PaginationControls,
14
14
  P as Progress,
15
- i as Skeleton,
16
- _2 as TableSkeleton,
17
- g as Toast,
18
- h as ToastContainer
15
+ h as Skeleton,
16
+ a2 as TableSkeleton,
17
+ f as Toast,
18
+ g as ToastContainer
19
19
  };
20
20
  //# sourceMappingURL=index.js.map
@@ -35,8 +35,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
35
35
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
36
36
  "onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
37
37
  }>, {
38
- size: InputSize;
39
38
  disabled: boolean;
39
+ size: InputSize;
40
40
  teleport: string | false;
41
41
  placeholder: string;
42
42
  noResultsText: string;
@@ -27,8 +27,8 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
27
27
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
28
28
  "onUpdate:modelValue"?: ((value: Date | null) => any) | undefined;
29
29
  }>, {
30
- size: InputSize;
31
30
  disabled: boolean;
31
+ size: InputSize;
32
32
  teleport: boolean;
33
33
  placeholder: string;
34
34
  locale: string;
@@ -35,8 +35,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
35
35
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
36
36
  "onUpdate:collapsed"?: ((value: boolean) => any) | undefined;
37
37
  }>, {
38
- iconColor: "primary" | "gray" | "success" | "warning" | "danger";
39
38
  bordered: boolean;
39
+ iconColor: "primary" | "gray" | "success" | "warning" | "danger";
40
40
  collapsible: boolean;
41
41
  collapsed: boolean;
42
42
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;