@stlhorizon/vue-ui 1.1.0 → 1.1.1

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 (32) hide show
  1. package/dist/src/components/Accordion.vue.d.ts +2 -2
  2. package/dist/src/components/Alert.vue.d.ts +3 -3
  3. package/dist/src/components/Breadcrumb.vue.d.ts +2 -2
  4. package/dist/src/components/Button.vue.d.ts +4 -4
  5. package/dist/src/components/Checkbox.vue.d.ts +4 -4
  6. package/dist/src/components/DataTableCell.vue.d.ts +6 -6
  7. package/dist/src/components/DataTableFilters.vue.d.ts +1 -1
  8. package/dist/src/components/DataTableRow.vue.d.ts +4 -4
  9. package/dist/src/components/DatePicker.vue.d.ts +4 -4
  10. package/dist/src/components/Divider.vue.d.ts +2 -2
  11. package/dist/src/components/DropdownItem.vue.d.ts +2 -2
  12. package/dist/src/components/FormField.vue.d.ts +6 -6
  13. package/dist/src/components/Image.vue.d.ts +3 -3
  14. package/dist/src/components/Label.vue.d.ts +2 -2
  15. package/dist/src/components/ListItem.vue.d.ts +4 -4
  16. package/dist/src/components/Logo.vue.d.ts +2 -2
  17. package/dist/src/components/MenuItem.vue.d.ts +2 -2
  18. package/dist/src/components/ProgressBar.vue.d.ts +2 -2
  19. package/dist/src/components/Radio.vue.d.ts +6 -6
  20. package/dist/src/components/Search.vue.d.ts +5 -5
  21. package/dist/src/components/Select.vue.d.ts +2 -2
  22. package/dist/src/components/Spinner.vue.d.ts +2 -2
  23. package/dist/src/components/StepperItem.vue.d.ts +2 -2
  24. package/dist/src/components/Switch.vue.d.ts +2 -2
  25. package/dist/src/components/Text.vue.d.ts +4 -4
  26. package/dist/src/components/Textarea.vue.d.ts +8 -8
  27. package/dist/src/components/TimelineItem.vue.d.ts +2 -2
  28. package/dist/src/components/Typography.vue.d.ts +2 -2
  29. package/dist/src/layouts/ErrorLayout.vue.d.ts +12 -12
  30. package/dist/tsconfig.tsbuildinfo +1 -1
  31. package/dist/vue-ui.css +1 -1
  32. package/package.json +1 -1
@@ -7,8 +7,8 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $emit: typeof emit;
8
8
  $props: Partial<typeof props>;
9
9
  size: string;
10
- disabled: boolean;
11
10
  variant: string;
11
+ disabled: boolean;
12
12
  items: unknown[];
13
13
  multiple: boolean;
14
14
  modelValue?: number | unknown[];
@@ -22,8 +22,8 @@ type __VLS_Slots = {
22
22
  declare const emit: (event: "update:modelValue" | "change", ...args: any[]) => void;
23
23
  declare const props: {
24
24
  readonly size: string;
25
- readonly disabled: boolean;
26
25
  readonly variant: string;
26
+ readonly disabled: boolean;
27
27
  readonly items: unknown[];
28
28
  readonly multiple: boolean;
29
29
  readonly modelValue?: number | unknown[];
@@ -7,10 +7,10 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $emit: typeof emit;
8
8
  $props: Partial<typeof props>;
9
9
  variant: string;
10
- actions: unknown[];
11
10
  dismissible: boolean;
12
11
  dismissLabel: string;
13
12
  showIcon: boolean;
13
+ actions: unknown[];
14
14
  autoClose: number | boolean;
15
15
  title?: string;
16
16
  message?: string;
@@ -20,13 +20,13 @@ type __VLS_Slots = {
20
20
  } & {
21
21
  actions?: (props: {}) => any;
22
22
  };
23
- declare const emit: (event: "action" | "dismiss", ...args: any[]) => void;
23
+ declare const emit: (event: "dismiss" | "action", ...args: any[]) => void;
24
24
  declare const props: {
25
25
  readonly variant: string;
26
- readonly actions: unknown[];
27
26
  readonly dismissible: boolean;
28
27
  readonly dismissLabel: string;
29
28
  readonly showIcon: boolean;
29
+ readonly actions: unknown[];
30
30
  readonly autoClose: number | boolean;
31
31
  readonly title?: string;
32
32
  readonly message?: string;
@@ -1,15 +1,15 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  $props: Partial<typeof props>;
3
3
  variant: string;
4
- items: unknown[];
5
4
  separator: string;
5
+ items: unknown[];
6
6
  ariaLabel: string;
7
7
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
8
  export default _default;
9
9
  declare const props: {
10
10
  readonly variant: string;
11
- readonly items: unknown[];
12
11
  readonly separator: string;
12
+ readonly items: unknown[];
13
13
  readonly ariaLabel: string;
14
14
  };
15
15
  //# sourceMappingURL=Breadcrumb.vue.d.ts.map
@@ -5,11 +5,11 @@ type __VLS_WithSlots<T, S> = T & (new () => {
5
5
  });
6
6
  declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $props: Partial<typeof props>;
8
- size: string;
9
8
  type: string;
10
- disabled: boolean;
9
+ size: string;
11
10
  variant: string;
12
11
  tag: string;
12
+ disabled: boolean;
13
13
  loading: boolean;
14
14
  href?: string;
15
15
  to?: string | Record<string, any>;
@@ -20,11 +20,11 @@ type __VLS_Slots = {
20
20
  default?: (props: {}) => any;
21
21
  };
22
22
  declare const props: {
23
- readonly size: string;
24
23
  readonly type: string;
25
- readonly disabled: boolean;
24
+ readonly size: string;
26
25
  readonly variant: string;
27
26
  readonly tag: string;
27
+ readonly disabled: boolean;
28
28
  readonly loading: boolean;
29
29
  readonly href?: string;
30
30
  readonly to?: string | Record<string, any>;
@@ -2,18 +2,18 @@ declare const _default: import("vue").DefineComponent<{}, {
2
2
  $emit: typeof emit;
3
3
  $props: Partial<typeof props>;
4
4
  size: string;
5
- modelValue: boolean;
6
5
  disabled: boolean;
7
- class?: string;
6
+ modelValue: boolean;
8
7
  label?: string;
8
+ class?: string;
9
9
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
10
10
  export default _default;
11
11
  declare const emit: (event: "update:modelValue", ...args: any[]) => void;
12
12
  declare const props: {
13
13
  readonly size: string;
14
- readonly modelValue: boolean;
15
14
  readonly disabled: boolean;
16
- readonly class?: string;
15
+ readonly modelValue: boolean;
17
16
  readonly label?: string;
17
+ readonly class?: string;
18
18
  };
19
19
  //# sourceMappingURL=Checkbox.vue.d.ts.map
@@ -5,26 +5,26 @@ type __VLS_WithSlots<T, S> = T & (new () => {
5
5
  });
6
6
  declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $props: Partial<typeof props>;
8
- padding: string;
9
- item: Record<string, any>;
10
8
  align: string;
9
+ item: Record<string, any>;
10
+ padding: string;
11
11
  column: Record<string, any>;
12
12
  textSize: string;
13
13
  textColor: string;
14
+ value?: string | number | boolean | Record<string, any> | unknown[];
14
15
  width?: string;
15
- value?: string | number | boolean | unknown[] | Record<string, any>;
16
16
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
17
17
  type __VLS_Slots = {
18
18
  default?: (props: {}) => any;
19
19
  };
20
20
  declare const props: {
21
- readonly padding: string;
22
- readonly item: Record<string, any>;
23
21
  readonly align: string;
22
+ readonly item: Record<string, any>;
23
+ readonly padding: string;
24
24
  readonly column: Record<string, any>;
25
25
  readonly textSize: string;
26
26
  readonly textColor: string;
27
+ readonly value?: string | number | boolean | Record<string, any> | unknown[];
27
28
  readonly width?: string;
28
- readonly value?: string | number | boolean | unknown[] | Record<string, any>;
29
29
  };
30
30
  //# sourceMappingURL=DataTableCell.vue.d.ts.map
@@ -21,7 +21,7 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
21
21
  type __VLS_Slots = {
22
22
  filters?: (props: {}) => any;
23
23
  };
24
- declare const emit: (event: "update:searchQuery" | "update:selectedStatus" | "update:dateFrom" | "update:dateTo" | "export" | "add" | "clear-filters", ...args: any[]) => void;
24
+ declare const emit: (event: "add" | "update:searchQuery" | "update:selectedStatus" | "update:dateFrom" | "update:dateTo" | "export" | "clear-filters", ...args: any[]) => void;
25
25
  declare const props: {
26
26
  readonly variant: string;
27
27
  readonly padding: string;
@@ -7,11 +7,11 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $emit: typeof emit;
8
8
  $props: Partial<typeof props>;
9
9
  variant: string;
10
+ isSelected: boolean;
10
11
  item: Record<string, any>;
11
- columns: unknown[];
12
12
  index: number;
13
+ columns: unknown[];
13
14
  selectable: boolean;
14
- isSelected: boolean;
15
15
  striped: boolean;
16
16
  hoverable: boolean;
17
17
  clickableRows: boolean;
@@ -33,11 +33,11 @@ type __VLS_Slots = {
33
33
  declare const emit: (event: "toggle-selection" | "row-click", ...args: any[]) => void;
34
34
  declare const props: {
35
35
  readonly variant: string;
36
+ readonly isSelected: boolean;
36
37
  readonly item: Record<string, any>;
37
- readonly columns: unknown[];
38
38
  readonly index: number;
39
+ readonly columns: unknown[];
39
40
  readonly selectable: boolean;
40
- readonly isSelected: boolean;
41
41
  readonly striped: boolean;
42
42
  readonly hoverable: boolean;
43
43
  readonly clickableRows: boolean;
@@ -1,10 +1,10 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  $emit: typeof __VLS_emit;
3
3
  $props: Partial<typeof props>;
4
- size: string;
5
4
  required: boolean;
6
- disabled: boolean;
5
+ size: string;
7
6
  variant: string;
7
+ disabled: boolean;
8
8
  id?: string;
9
9
  max?: string;
10
10
  min?: string;
@@ -13,10 +13,10 @@ declare const _default: import("vue").DefineComponent<{}, {
13
13
  export default _default;
14
14
  declare const __VLS_emit: (event: "update:modelValue", ...args: any[]) => void;
15
15
  declare const props: {
16
- readonly size: string;
17
16
  readonly required: boolean;
18
- readonly disabled: boolean;
17
+ readonly size: string;
19
18
  readonly variant: string;
19
+ readonly disabled: boolean;
20
20
  readonly id?: string;
21
21
  readonly max?: string;
22
22
  readonly min?: string;
@@ -2,14 +2,14 @@ declare const _default: import("vue").DefineComponent<{}, {
2
2
  $props: Partial<typeof props>;
3
3
  orientation: string;
4
4
  variant: string;
5
- class?: string;
6
5
  label?: string;
6
+ class?: string;
7
7
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
8
  export default _default;
9
9
  declare const props: {
10
10
  readonly orientation: string;
11
11
  readonly variant: string;
12
- readonly class?: string;
13
12
  readonly label?: string;
13
+ readonly class?: string;
14
14
  };
15
15
  //# sourceMappingURL=Divider.vue.d.ts.map
@@ -6,8 +6,8 @@ type __VLS_WithSlots<T, S> = T & (new () => {
6
6
  declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $emit: typeof emit;
8
8
  $props: Partial<typeof props>;
9
- disabled: boolean;
10
9
  variant: string;
10
+ disabled: boolean;
11
11
  href?: string;
12
12
  icon?: string;
13
13
  shortcut?: string;
@@ -17,8 +17,8 @@ type __VLS_Slots = {
17
17
  };
18
18
  declare const emit: (event: "click", ...args: any[]) => void;
19
19
  declare const props: {
20
- readonly disabled: boolean;
21
20
  readonly variant: string;
21
+ readonly disabled: boolean;
22
22
  readonly href?: string;
23
23
  readonly icon?: string;
24
24
  readonly shortcut?: string;
@@ -7,11 +7,11 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $props: Partial<typeof props>;
8
8
  required: boolean;
9
9
  variant: string;
10
- id?: string;
11
10
  label?: string;
12
- description?: string;
13
- success?: string;
11
+ id?: string;
14
12
  error?: string;
13
+ success?: string;
14
+ description?: string;
15
15
  hint?: string;
16
16
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
17
17
  type __VLS_Slots = {
@@ -24,11 +24,11 @@ type __VLS_Slots = {
24
24
  declare const props: {
25
25
  readonly required: boolean;
26
26
  readonly variant: string;
27
- readonly id?: string;
28
27
  readonly label?: string;
29
- readonly description?: string;
30
- readonly success?: string;
28
+ readonly id?: string;
31
29
  readonly error?: string;
30
+ readonly success?: string;
31
+ readonly description?: string;
32
32
  readonly hint?: string;
33
33
  };
34
34
  //# sourceMappingURL=FormField.vue.d.ts.map
@@ -1,20 +1,20 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  $emit: typeof emit;
3
3
  $props: Partial<typeof props>;
4
- loading: string;
5
4
  src: string;
6
5
  alt: string;
6
+ loading: string;
7
7
  aspectRatio: string;
8
8
  objectFit: string;
9
9
  showSpinner: boolean;
10
10
  class?: string;
11
11
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
12
12
  export default _default;
13
- declare const emit: (event: "error" | "load", ...args: any[]) => void;
13
+ declare const emit: (event: "load" | "error", ...args: any[]) => void;
14
14
  declare const props: {
15
- readonly loading: string;
16
15
  readonly src: string;
17
16
  readonly alt: string;
17
+ readonly loading: string;
18
18
  readonly aspectRatio: string;
19
19
  readonly objectFit: string;
20
20
  readonly showSpinner: boolean;
@@ -5,8 +5,8 @@ type __VLS_WithSlots<T, S> = T & (new () => {
5
5
  });
6
6
  declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $props: Partial<typeof props>;
8
- size: string;
9
8
  required: boolean;
9
+ size: string;
10
10
  disabled: boolean;
11
11
  class?: string;
12
12
  htmlFor?: string;
@@ -15,8 +15,8 @@ type __VLS_Slots = {
15
15
  default?: (props: {}) => any;
16
16
  };
17
17
  declare const props: {
18
- readonly size: string;
19
18
  readonly required: boolean;
19
+ readonly size: string;
20
20
  readonly disabled: boolean;
21
21
  readonly class?: string;
22
22
  readonly htmlFor?: string;
@@ -7,11 +7,11 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $emit: typeof emit;
8
8
  $props: Partial<typeof props>;
9
9
  variant: string;
10
+ title?: string;
10
11
  role?: string;
11
12
  href?: string;
12
- title?: string;
13
- description?: string;
14
13
  icon?: string;
14
+ description?: string;
15
15
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
16
16
  type __VLS_Slots = {
17
17
  icon?: (props: {}) => any;
@@ -23,10 +23,10 @@ type __VLS_Slots = {
23
23
  declare const emit: (event: "click", ...args: any[]) => void;
24
24
  declare const props: {
25
25
  readonly variant: string;
26
+ readonly title?: string;
26
27
  readonly role?: string;
27
28
  readonly href?: string;
28
- readonly title?: string;
29
- readonly description?: string;
30
29
  readonly icon?: string;
30
+ readonly description?: string;
31
31
  };
32
32
  //# sourceMappingURL=ListItem.vue.d.ts.map
@@ -2,8 +2,8 @@ declare const _default: import("vue").DefineComponent<{}, {
2
2
  $props: Partial<typeof props>;
3
3
  size: string;
4
4
  variant: string;
5
- class?: string;
6
5
  text?: string;
6
+ class?: string;
7
7
  src?: string;
8
8
  alt?: string;
9
9
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -11,8 +11,8 @@ export default _default;
11
11
  declare const props: {
12
12
  readonly size: string;
13
13
  readonly variant: string;
14
- readonly class?: string;
15
14
  readonly text?: string;
15
+ readonly class?: string;
16
16
  readonly src?: string;
17
17
  readonly alt?: string;
18
18
  };
@@ -6,8 +6,8 @@ type __VLS_WithSlots<T, S> = T & (new () => {
6
6
  declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $emit: typeof emit;
8
8
  $props: Partial<typeof props>;
9
- disabled: boolean;
10
9
  variant: string;
10
+ disabled: boolean;
11
11
  hasSubmenu: boolean;
12
12
  href?: string;
13
13
  icon?: string;
@@ -18,8 +18,8 @@ type __VLS_Slots = {
18
18
  };
19
19
  declare const emit: (event: "click", ...args: any[]) => void;
20
20
  declare const props: {
21
- readonly disabled: boolean;
22
21
  readonly variant: string;
22
+ readonly disabled: boolean;
23
23
  readonly hasSubmenu: boolean;
24
24
  readonly href?: string;
25
25
  readonly icon?: string;
@@ -1,17 +1,17 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  $props: Partial<typeof props>;
3
+ value: number;
3
4
  size: string;
4
5
  max: number;
5
- value: number;
6
6
  variant: string;
7
7
  showLabel: boolean;
8
8
  class?: string;
9
9
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
10
10
  export default _default;
11
11
  declare const props: {
12
+ readonly value: number;
12
13
  readonly size: string;
13
14
  readonly max: number;
14
- readonly value: number;
15
15
  readonly variant: string;
16
16
  readonly showLabel: boolean;
17
17
  readonly class?: string;
@@ -1,21 +1,21 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  $emit: typeof emit;
3
3
  $props: Partial<typeof props>;
4
- size: string;
5
4
  value: unknown;
6
- modelValue: any;
5
+ size: string;
7
6
  disabled: boolean;
8
- class?: string;
7
+ modelValue: any;
9
8
  label?: string;
9
+ class?: string;
10
10
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
11
11
  export default _default;
12
12
  declare const emit: (event: "update:modelValue", ...args: any[]) => void;
13
13
  declare const props: {
14
- readonly size: string;
15
14
  readonly value: unknown;
16
- readonly modelValue: any;
15
+ readonly size: string;
17
16
  readonly disabled: boolean;
18
- readonly class?: string;
17
+ readonly modelValue: any;
19
18
  readonly label?: string;
19
+ readonly class?: string;
20
20
  };
21
21
  //# sourceMappingURL=Radio.vue.d.ts.map
@@ -7,10 +7,10 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $emit: typeof emit;
8
8
  $props: Partial<typeof props>;
9
9
  size: string;
10
- modelValue: string;
11
10
  disabled: boolean;
12
- placeholder: string;
13
11
  loading: boolean;
12
+ placeholder: string;
13
+ modelValue: string;
14
14
  results: unknown[];
15
15
  clearable: boolean;
16
16
  clearLabel: string;
@@ -23,13 +23,13 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
23
23
  type __VLS_Slots = {
24
24
  footer?: (props: {}) => any;
25
25
  };
26
- declare const emit: (event: "search" | "update:modelValue" | "select" | "blur" | "focus" | "clear", ...args: any[]) => void;
26
+ declare const emit: (event: "search" | "select" | "update:modelValue" | "blur" | "focus" | "clear", ...args: any[]) => void;
27
27
  declare const props: {
28
28
  readonly size: string;
29
- readonly modelValue: string;
30
29
  readonly disabled: boolean;
31
- readonly placeholder: string;
32
30
  readonly loading: boolean;
31
+ readonly placeholder: string;
32
+ readonly modelValue: string;
33
33
  readonly results: unknown[];
34
34
  readonly clearable: boolean;
35
35
  readonly clearLabel: string;
@@ -6,8 +6,8 @@ type __VLS_WithSlots<T, S> = T & (new () => {
6
6
  declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $emit: typeof __VLS_emit;
8
8
  $props: Partial<typeof props>;
9
- modelValue: string | number | boolean;
10
9
  disabled: boolean;
10
+ modelValue: string | number | boolean;
11
11
  class?: string;
12
12
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
13
13
  type __VLS_Slots = {
@@ -15,8 +15,8 @@ type __VLS_Slots = {
15
15
  };
16
16
  declare const __VLS_emit: (event: "update:modelValue", ...args: any[]) => void;
17
17
  declare const props: {
18
- readonly modelValue: string | number | boolean;
19
18
  readonly disabled: boolean;
19
+ readonly modelValue: string | number | boolean;
20
20
  readonly class?: string;
21
21
  };
22
22
  //# sourceMappingURL=Select.vue.d.ts.map
@@ -1,14 +1,14 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  $props: Partial<typeof props>;
3
- size: string;
4
3
  label: string;
4
+ size: string;
5
5
  variant: string;
6
6
  class?: string;
7
7
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
8
  export default _default;
9
9
  declare const props: {
10
- readonly size: string;
11
10
  readonly label: string;
11
+ readonly size: string;
12
12
  readonly variant: string;
13
13
  readonly class?: string;
14
14
  };
@@ -1,15 +1,15 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  $props: Partial<typeof props>;
3
- step: number;
4
3
  title: string;
4
+ step: number;
5
5
  description: string;
6
6
  active: boolean;
7
7
  completed: boolean;
8
8
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
9
9
  export default _default;
10
10
  declare const props: {
11
- readonly step: number;
12
11
  readonly title: string;
12
+ readonly step: number;
13
13
  readonly description: string;
14
14
  readonly active: boolean;
15
15
  readonly completed: boolean;
@@ -2,16 +2,16 @@ declare const _default: import("vue").DefineComponent<{}, {
2
2
  $emit: typeof emit;
3
3
  $props: Partial<typeof props>;
4
4
  size: string;
5
- modelValue: boolean;
6
5
  disabled: boolean;
6
+ modelValue: boolean;
7
7
  class?: string;
8
8
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
9
9
  export default _default;
10
10
  declare const emit: (event: "update:modelValue", ...args: any[]) => void;
11
11
  declare const props: {
12
12
  readonly size: string;
13
- readonly modelValue: boolean;
14
13
  readonly disabled: boolean;
14
+ readonly modelValue: boolean;
15
15
  readonly class?: string;
16
16
  };
17
17
  //# sourceMappingURL=Switch.vue.d.ts.map
@@ -6,10 +6,10 @@ type __VLS_WithSlots<T, S> = T & (new () => {
6
6
  declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $props: Partial<typeof props>;
8
8
  size: string;
9
- as: string;
10
9
  variant: string;
11
- align: string;
10
+ as: string;
12
11
  weight: string;
12
+ align: string;
13
13
  class?: string;
14
14
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
15
15
  type __VLS_Slots = {
@@ -17,10 +17,10 @@ type __VLS_Slots = {
17
17
  };
18
18
  declare const props: {
19
19
  readonly size: string;
20
- readonly as: string;
21
20
  readonly variant: string;
22
- readonly align: string;
21
+ readonly as: string;
23
22
  readonly weight: string;
23
+ readonly align: string;
24
24
  readonly class?: string;
25
25
  };
26
26
  //# sourceMappingURL=Text.vue.d.ts.map
@@ -4,15 +4,15 @@ declare const _default: import("vue").DefineComponent<{}, {
4
4
  select: () => any;
5
5
  $emit: typeof emit;
6
6
  $props: Partial<typeof props>;
7
- size: string;
8
7
  required: boolean;
9
- modelValue: string;
10
- disabled: boolean;
8
+ size: string;
11
9
  variant: string;
10
+ disabled: boolean;
12
11
  placeholder: string;
13
- resize: string;
12
+ modelValue: string;
14
13
  readonly: boolean;
15
14
  rows: number;
15
+ resize: string;
16
16
  autoResize: boolean;
17
17
  id?: string;
18
18
  error?: string;
@@ -21,15 +21,15 @@ declare const _default: import("vue").DefineComponent<{}, {
21
21
  export default _default;
22
22
  declare const emit: (event: "update:modelValue" | "blur" | "focus" | "keydown", ...args: any[]) => void;
23
23
  declare const props: {
24
- readonly size: string;
25
24
  readonly required: boolean;
26
- readonly modelValue: string;
27
- readonly disabled: boolean;
25
+ readonly size: string;
28
26
  readonly variant: string;
27
+ readonly disabled: boolean;
29
28
  readonly placeholder: string;
30
- readonly resize: string;
29
+ readonly modelValue: string;
31
30
  readonly readonly: boolean;
32
31
  readonly rows: number;
32
+ readonly resize: string;
33
33
  readonly autoResize: boolean;
34
34
  readonly id?: string;
35
35
  readonly error?: string;
@@ -5,8 +5,8 @@ type __VLS_WithSlots<T, S> = T & (new () => {
5
5
  });
6
6
  declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $props: Partial<typeof props>;
8
- orientation: string;
9
8
  title: string;
9
+ orientation: string;
10
10
  subtitle: string;
11
11
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
12
12
  type __VLS_Slots = {
@@ -19,8 +19,8 @@ type __VLS_Slots = {
19
19
  default?: (props: {}) => any;
20
20
  };
21
21
  declare const props: {
22
- readonly orientation: string;
23
22
  readonly title: string;
23
+ readonly orientation: string;
24
24
  readonly subtitle: string;
25
25
  };
26
26
  //# sourceMappingURL=TimelineItem.vue.d.ts.map