@rotki/ui-library 0.13.0 → 0.15.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 (54) hide show
  1. package/dist/Accordion-BFcz_iFc.js +8386 -0
  2. package/dist/breakpoint-CRvqq4aP.js +37 -0
  3. package/dist/components/accordions/accordion/Accordion.vue.d.ts +71 -0
  4. package/dist/components/accordions/accordions/Accordions.vue.d.ts +31 -0
  5. package/dist/components/alerts/Alert.vue.d.ts +10 -10
  6. package/dist/components/buttons/button/Button.vue.d.ts +4 -4
  7. package/dist/components/buttons/button-group/ButtonGroup.vue.d.ts +3 -3
  8. package/dist/components/cards/Card.vue.d.ts +3 -3
  9. package/dist/components/chips/Chip.vue.d.ts +18 -18
  10. package/dist/components/forms/auto-complete/AutoComplete.vue.d.ts +58 -172
  11. package/dist/components/forms/auto-complete/AutoCompleteSelection.vue.d.ts +26 -77
  12. package/dist/components/forms/checkbox/Checkbox.vue.d.ts +18 -18
  13. package/dist/components/forms/radio-button/radio/Radio.vue.d.ts +18 -18
  14. package/dist/components/forms/radio-button/radio-group/RadioGroup.vue.d.ts +18 -18
  15. package/dist/components/forms/revealable-text-field/RevealableTextField.vue.d.ts +9 -9
  16. package/dist/components/forms/select/RuiMenuSelect.vue.d.ts +155 -0
  17. package/dist/components/forms/slider/Slider.vue.d.ts +192 -0
  18. package/dist/components/forms/switch/Switch.vue.d.ts +18 -18
  19. package/dist/components/forms/text-area/TextArea.vue.d.ts +9 -9
  20. package/dist/components/forms/text-field/TextField.vue.d.ts +9 -9
  21. package/dist/components/icons/Icon.vue.d.ts +6 -6
  22. package/dist/components/index.d.ts +6 -1
  23. package/dist/components/index.es.js +38 -42
  24. package/dist/components/loaders/Skeleton.vue.d.ts +6 -6
  25. package/dist/components/loaders/SkeletonBase.vue.d.ts +3 -3
  26. package/dist/components/logos/Logo.vue.d.ts +42 -4
  27. package/dist/components/overlays/badge/Badge.vue.d.ts +15 -15
  28. package/dist/components/overlays/dialog/Dialog.vue.d.ts +8 -8
  29. package/dist/components/overlays/menu/Menu.vue.d.ts +191 -0
  30. package/dist/components/progress/Progress.vue.d.ts +6 -6
  31. package/dist/components/tables/DataTable.vue.d.ts +13 -8
  32. package/dist/components/tables/TableHead.vue.d.ts +15 -3
  33. package/dist/components/tables/TablePagination.vue.d.ts +10 -0
  34. package/dist/components/tabs/tab/Tab.vue.d.ts +28 -28
  35. package/dist/components/tabs/tabs/Tabs.vue.d.ts +9 -9
  36. package/dist/composables/defaults/table.d.ts +1 -0
  37. package/dist/composables/dropdown-menu.d.ts +40 -0
  38. package/dist/composables/forms/auto-complete/index.d.ts +9 -0
  39. package/dist/composables/index.es.js +5 -85
  40. package/dist/composables/popper.d.ts +2 -2
  41. package/dist/composables/sticky-header.d.ts +5 -5
  42. package/dist/consts/forms/auto-complete/index.d.ts +4 -0
  43. package/dist/index-x2urm9HD.js +176 -0
  44. package/dist/index.d.ts +1 -1
  45. package/dist/index.es.js +2787 -2786
  46. package/dist/style.css +1 -1
  47. package/dist/theme/index.es.js +1 -1
  48. package/dist/utils/assert.d.ts +1 -0
  49. package/dist/utils/forms/auto-complete/index.d.ts +2 -0
  50. package/dist/utils/helpers.d.ts +7 -0
  51. package/package.json +46 -48
  52. package/dist/index-Ph4f0pga.js +0 -7435
  53. package/dist/theme-DT8UjYf9.js +0 -124
  54. /package/dist/{colors-ikihApJv.js → colors-D563Ic3q.js} +0 -0
@@ -0,0 +1,192 @@
1
+ import type { ContextColorsType } from '~/src';
2
+ export interface Props {
3
+ modelValue?: number;
4
+ min?: number;
5
+ max?: number;
6
+ step?: number;
7
+ disabled?: boolean;
8
+ showThumbLabel?: boolean;
9
+ showTicks?: boolean;
10
+ hideTrack?: boolean;
11
+ tickSize?: number;
12
+ vertical?: boolean;
13
+ color?: ContextColorsType;
14
+ label?: string;
15
+ hint?: string;
16
+ errorMessages?: string | string[];
17
+ successMessages?: string | string[];
18
+ hideDetails?: boolean;
19
+ sliderClass?: string;
20
+ tickClass?: string;
21
+ }
22
+ declare const _default: import("vue").DefineComponent<{
23
+ vertical: {
24
+ type: globalThis.PropType<boolean>;
25
+ default: boolean;
26
+ };
27
+ color: {
28
+ type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
29
+ default: string;
30
+ };
31
+ label: {
32
+ type: globalThis.PropType<string>;
33
+ default: string;
34
+ };
35
+ max: {
36
+ type: globalThis.PropType<number>;
37
+ default: number;
38
+ };
39
+ min: {
40
+ type: globalThis.PropType<number>;
41
+ default: number;
42
+ };
43
+ disabled: {
44
+ type: globalThis.PropType<boolean>;
45
+ default: boolean;
46
+ };
47
+ modelValue: {
48
+ type: globalThis.PropType<number>;
49
+ default: number;
50
+ };
51
+ errorMessages: {
52
+ type: globalThis.PropType<string | string[]>;
53
+ default: () => never[];
54
+ };
55
+ successMessages: {
56
+ type: globalThis.PropType<string | string[]>;
57
+ default: () => never[];
58
+ };
59
+ hint: {
60
+ type: globalThis.PropType<string>;
61
+ default: string;
62
+ };
63
+ hideDetails: {
64
+ type: globalThis.PropType<boolean>;
65
+ default: boolean;
66
+ };
67
+ step: {
68
+ type: globalThis.PropType<number>;
69
+ default: number;
70
+ };
71
+ showThumbLabel: {
72
+ type: globalThis.PropType<boolean>;
73
+ default: boolean;
74
+ };
75
+ showTicks: {
76
+ type: globalThis.PropType<boolean>;
77
+ default: boolean;
78
+ };
79
+ hideTrack: {
80
+ type: globalThis.PropType<boolean>;
81
+ default: boolean;
82
+ };
83
+ tickSize: {
84
+ type: globalThis.PropType<number>;
85
+ default: number;
86
+ };
87
+ sliderClass: {
88
+ type: globalThis.PropType<string>;
89
+ default: string;
90
+ };
91
+ tickClass: {
92
+ type: globalThis.PropType<string>;
93
+ default: string;
94
+ };
95
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
96
+ "update:model-value": (value: number) => void;
97
+ }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
98
+ vertical: {
99
+ type: globalThis.PropType<boolean>;
100
+ default: boolean;
101
+ };
102
+ color: {
103
+ type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
104
+ default: string;
105
+ };
106
+ label: {
107
+ type: globalThis.PropType<string>;
108
+ default: string;
109
+ };
110
+ max: {
111
+ type: globalThis.PropType<number>;
112
+ default: number;
113
+ };
114
+ min: {
115
+ type: globalThis.PropType<number>;
116
+ default: number;
117
+ };
118
+ disabled: {
119
+ type: globalThis.PropType<boolean>;
120
+ default: boolean;
121
+ };
122
+ modelValue: {
123
+ type: globalThis.PropType<number>;
124
+ default: number;
125
+ };
126
+ errorMessages: {
127
+ type: globalThis.PropType<string | string[]>;
128
+ default: () => never[];
129
+ };
130
+ successMessages: {
131
+ type: globalThis.PropType<string | string[]>;
132
+ default: () => never[];
133
+ };
134
+ hint: {
135
+ type: globalThis.PropType<string>;
136
+ default: string;
137
+ };
138
+ hideDetails: {
139
+ type: globalThis.PropType<boolean>;
140
+ default: boolean;
141
+ };
142
+ step: {
143
+ type: globalThis.PropType<number>;
144
+ default: number;
145
+ };
146
+ showThumbLabel: {
147
+ type: globalThis.PropType<boolean>;
148
+ default: boolean;
149
+ };
150
+ showTicks: {
151
+ type: globalThis.PropType<boolean>;
152
+ default: boolean;
153
+ };
154
+ hideTrack: {
155
+ type: globalThis.PropType<boolean>;
156
+ default: boolean;
157
+ };
158
+ tickSize: {
159
+ type: globalThis.PropType<number>;
160
+ default: number;
161
+ };
162
+ sliderClass: {
163
+ type: globalThis.PropType<string>;
164
+ default: string;
165
+ };
166
+ tickClass: {
167
+ type: globalThis.PropType<string>;
168
+ default: string;
169
+ };
170
+ }>> & {
171
+ "onUpdate:model-value"?: ((value: number) => any) | undefined;
172
+ }, {
173
+ vertical: boolean;
174
+ color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
175
+ label: string;
176
+ max: number;
177
+ min: number;
178
+ disabled: boolean;
179
+ modelValue: number;
180
+ errorMessages: string | string[];
181
+ successMessages: string | string[];
182
+ hint: string;
183
+ hideDetails: boolean;
184
+ step: number;
185
+ showThumbLabel: boolean;
186
+ showTicks: boolean;
187
+ hideTrack: boolean;
188
+ tickSize: number;
189
+ sliderClass: string;
190
+ tickClass: string;
191
+ }, {}>;
192
+ export default _default;
@@ -11,14 +11,14 @@ export interface Props {
11
11
  hideDetails?: boolean;
12
12
  }
13
13
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
14
- color: {
15
- type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
16
- default: undefined;
17
- };
18
14
  size: {
19
15
  type: globalThis.PropType<"sm">;
20
16
  default: undefined;
21
17
  };
18
+ color: {
19
+ type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
20
+ default: undefined;
21
+ };
22
22
  label: {
23
23
  type: globalThis.PropType<string>;
24
24
  default: string;
@@ -27,6 +27,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
27
27
  type: globalThis.PropType<boolean>;
28
28
  default: boolean;
29
29
  };
30
+ modelValue: {
31
+ type: globalThis.PropType<boolean>;
32
+ default: boolean;
33
+ };
30
34
  errorMessages: {
31
35
  type: globalThis.PropType<string | string[]>;
32
36
  default: () => never[];
@@ -39,10 +43,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
39
43
  type: globalThis.PropType<string>;
40
44
  default: string;
41
45
  };
42
- modelValue: {
43
- type: globalThis.PropType<boolean>;
44
- default: boolean;
45
- };
46
46
  hideDetails: {
47
47
  type: globalThis.PropType<boolean>;
48
48
  default: boolean;
@@ -50,14 +50,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
50
50
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
51
51
  "update:modelValue": (modelValue: boolean) => void;
52
52
  }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
53
- color: {
54
- type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
55
- default: undefined;
56
- };
57
53
  size: {
58
54
  type: globalThis.PropType<"sm">;
59
55
  default: undefined;
60
56
  };
57
+ color: {
58
+ type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
59
+ default: undefined;
60
+ };
61
61
  label: {
62
62
  type: globalThis.PropType<string>;
63
63
  default: string;
@@ -66,6 +66,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
66
66
  type: globalThis.PropType<boolean>;
67
67
  default: boolean;
68
68
  };
69
+ modelValue: {
70
+ type: globalThis.PropType<boolean>;
71
+ default: boolean;
72
+ };
69
73
  errorMessages: {
70
74
  type: globalThis.PropType<string | string[]>;
71
75
  default: () => never[];
@@ -78,10 +82,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
78
82
  type: globalThis.PropType<string>;
79
83
  default: string;
80
84
  };
81
- modelValue: {
82
- type: globalThis.PropType<boolean>;
83
- default: boolean;
84
- };
85
85
  hideDetails: {
86
86
  type: globalThis.PropType<boolean>;
87
87
  default: boolean;
@@ -89,14 +89,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
89
89
  }>> & {
90
90
  "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
91
91
  }, {
92
- color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
93
92
  size: "sm";
93
+ color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
94
94
  label: string;
95
95
  disabled: boolean;
96
+ modelValue: boolean;
96
97
  errorMessages: string | string[];
97
98
  successMessages: string | string[];
98
99
  hint: string;
99
- modelValue: boolean;
100
100
  hideDetails: boolean;
101
101
  }, {}>, {
102
102
  default?(_: {}): any;
@@ -24,14 +24,14 @@ export interface Props {
24
24
  autoGrow?: boolean;
25
25
  }
26
26
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
27
- readonly: {
28
- type: globalThis.PropType<boolean>;
29
- default: boolean;
30
- };
31
27
  value: {
32
28
  type: globalThis.PropType<string>;
33
29
  default: string;
34
30
  };
31
+ readonly: {
32
+ type: globalThis.PropType<boolean>;
33
+ default: boolean;
34
+ };
35
35
  variant: {
36
36
  type: globalThis.PropType<"default" | "outlined" | "filled">;
37
37
  default: string;
@@ -112,14 +112,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
112
112
  input: (modelValue: string) => void;
113
113
  "click:clear": () => void;
114
114
  }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
115
- readonly: {
116
- type: globalThis.PropType<boolean>;
117
- default: boolean;
118
- };
119
115
  value: {
120
116
  type: globalThis.PropType<string>;
121
117
  default: string;
122
118
  };
119
+ readonly: {
120
+ type: globalThis.PropType<boolean>;
121
+ default: boolean;
122
+ };
123
123
  variant: {
124
124
  type: globalThis.PropType<"default" | "outlined" | "filled">;
125
125
  default: string;
@@ -200,8 +200,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
200
200
  onInput?: ((modelValue: string) => any) | undefined;
201
201
  "onClick:clear"?: (() => any) | undefined;
202
202
  }, {
203
- readonly: boolean;
204
203
  value: string;
204
+ readonly: boolean;
205
205
  variant: "default" | "outlined" | "filled";
206
206
  color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
207
207
  label: string;
@@ -44,6 +44,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
44
44
  type: globalThis.PropType<boolean>;
45
45
  default: boolean;
46
46
  };
47
+ modelValue: {
48
+ type: globalThis.PropType<string>;
49
+ default: string;
50
+ };
47
51
  errorMessages: {
48
52
  type: globalThis.PropType<string | string[]>;
49
53
  default: () => never[];
@@ -56,10 +60,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
56
60
  type: globalThis.PropType<string>;
57
61
  default: string;
58
62
  };
59
- modelValue: {
60
- type: globalThis.PropType<string>;
61
- default: string;
62
- };
63
63
  textColor: {
64
64
  type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
65
65
  default: undefined;
@@ -119,6 +119,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
119
119
  type: globalThis.PropType<boolean>;
120
120
  default: boolean;
121
121
  };
122
+ modelValue: {
123
+ type: globalThis.PropType<string>;
124
+ default: string;
125
+ };
122
126
  errorMessages: {
123
127
  type: globalThis.PropType<string | string[]>;
124
128
  default: () => never[];
@@ -131,10 +135,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
131
135
  type: globalThis.PropType<string>;
132
136
  default: string;
133
137
  };
134
- modelValue: {
135
- type: globalThis.PropType<string>;
136
- default: string;
137
- };
138
138
  textColor: {
139
139
  type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
140
140
  default: undefined;
@@ -176,10 +176,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
176
176
  label: string;
177
177
  placeholder: string;
178
178
  disabled: boolean;
179
+ modelValue: string;
179
180
  errorMessages: string | string[];
180
181
  successMessages: string | string[];
181
182
  hint: string;
182
- modelValue: string;
183
183
  textColor: "primary" | "secondary" | "error" | "warning" | "info" | "success";
184
184
  dense: boolean;
185
185
  as: string | object;
@@ -6,6 +6,10 @@ export interface Props {
6
6
  color?: ContextColorsType;
7
7
  }
8
8
  declare const _default: import("vue").DefineComponent<{
9
+ size: {
10
+ type: globalThis.PropType<string | number>;
11
+ default: number;
12
+ };
9
13
  name: {
10
14
  type: globalThis.PropType<RuiIcons>;
11
15
  required: true;
@@ -14,11 +18,11 @@ declare const _default: import("vue").DefineComponent<{
14
18
  type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
15
19
  default: undefined;
16
20
  };
21
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
17
22
  size: {
18
23
  type: globalThis.PropType<string | number>;
19
24
  default: number;
20
25
  };
21
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
22
26
  name: {
23
27
  type: globalThis.PropType<RuiIcons>;
24
28
  required: true;
@@ -27,12 +31,8 @@ declare const _default: import("vue").DefineComponent<{
27
31
  type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
28
32
  default: undefined;
29
33
  };
30
- size: {
31
- type: globalThis.PropType<string | number>;
32
- default: number;
33
- };
34
34
  }>>, {
35
- color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
36
35
  size: string | number;
36
+ color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
37
37
  }, {}>;
38
38
  export default _default;
@@ -5,12 +5,14 @@ import { type Props as ButtonGroupProps, default as RuiButtonGroup } from '../co
5
5
  import { type Props as IconProps, default as RuiIcon } from '../components/icons/Icon.vue';
6
6
  import { type Props as CheckboxProps, default as RuiCheckbox } from '../components/forms/checkbox/Checkbox.vue';
7
7
  import { default as RuiSwitch, type Props as SwitchProps } from '../components/forms/switch/Switch.vue';
8
+ import { default as RuiSlider, type Props as SliderProps } from '../components/forms/slider/Slider.vue';
8
9
  import { type Props as ChipProps, default as RuiChip } from '../components/chips/Chip.vue';
9
10
  import { type Props as DividerProps, default as RuiDivider } from '../components/divider/Divider.vue';
10
11
  import { default as RuiStepper, type Props as StepperProps } from '../components/steppers/Stepper.vue';
11
12
  import { default as RuiTextArea, type Props as TextAreaProps } from '../components/forms/text-area/TextArea.vue';
12
13
  import { default as RuiTextField, type TextFieldProps } from '../components/forms/text-field/TextField.vue';
13
14
  import { default as RuiTooltip, type Props as TooltipProps } from '../components/overlays/tooltip/Tooltip.vue';
15
+ import { type MenuProps, default as RuiMenu } from '../components/overlays/menu/Menu.vue';
14
16
  import { type Props as BadgeProps, default as RuiBadge } from '../components/overlays/badge/Badge.vue';
15
17
  import { type Props as DialogProps, default as RuiDialog } from '../components/overlays/dialog/Dialog.vue';
16
18
  import { type Props as FooterStepperProps, default as RuiFooterStepper } from '../components/steppers/FooterStepper.vue';
@@ -30,5 +32,8 @@ import { default as RuiTab, type Props as TabProps } from '../components/tabs/ta
30
32
  import { default as RuiTabItems, type Props as TabItemsProps } from '../components/tabs/tab-items/TabItems.vue';
31
33
  import { default as RuiTabItem, type Props as TabItemProps } from '../components/tabs/tab-item/TabItem.vue';
32
34
  import { default as RuiSkeletonLoader, type Props as SkeletonLoaderProps } from '../components/loaders/Skeleton.vue';
35
+ import { type Props as MenuSelectProps, default as RuiMenuSelect } from '../components/forms/select/RuiMenuSelect.vue';
36
+ import { type Props as AccordionsProps, default as RuiAccordions } from '../components/accordions/accordions/Accordions.vue';
37
+ import { type AccordionProps, default as RuiAccordion } from '../components/accordions/accordion/Accordion.vue';
33
38
  import type { TableColumn as DataTableColumn, GroupKeys as DataTableGroupKeys, SortColumn as DataTableSortColumn, TableSortData as DataTableSortData } from '../components/tables/TableHead.vue';
34
- export { RuiAlert, RuiAutoComplete, RuiBadge, RuiButton, RuiButtonGroup, RuiCheckbox, RuiChip, RuiFooterStepper, RuiIcon, RuiLogo, RuiProgress, RuiRadio, RuiRadioGroup, RuiRevealableTextField, RuiStepper, RuiSwitch, RuiTextField, RuiTooltip, RuiDataTable, RuiSimpleSelect, RuiDialog, RuiCard, RuiCardHeader, RuiTabs, RuiTab, RuiTabItems, RuiTabItem, RuiTablePagination, RuiSkeletonLoader, RuiTextArea, RuiDivider, RuiTableRowExpander, AutoCompleteProps, ChipProps, TooltipProps, SimpleSelectProps, DataTableProps, DataTableColumn, DataTableSortColumn, DataTableOptions, TablePaginationData, DialogProps, ButtonProps, ButtonGroupProps, CardProps, CardHeaderProps, BadgeProps, AlertProps, CheckboxProps, SwitchProps, ProgressProps, RadioGroupProps, RadioProps, LogoProps, StepperProps, TextFieldProps, IconProps, FooterStepperProps, TabsProps, TabProps, TabItemsProps, TabItemProps, TablePaginationProps, RevealableTextFieldProps, SkeletonLoaderProps, DividerProps, TextAreaProps, ExpandButtonProps, DataTableSortData, DataTableGroupKeys, };
39
+ export { RuiAlert, RuiAutoComplete, RuiBadge, RuiButton, RuiButtonGroup, RuiCheckbox, RuiChip, RuiFooterStepper, RuiIcon, RuiLogo, RuiProgress, RuiRadio, RuiRadioGroup, RuiRevealableTextField, RuiStepper, RuiSwitch, RuiTextField, RuiTooltip, RuiMenu, RuiDataTable, RuiSimpleSelect, RuiDialog, RuiCard, RuiCardHeader, RuiTabs, RuiTab, RuiTabItems, RuiTabItem, RuiTablePagination, RuiSkeletonLoader, RuiTextArea, RuiDivider, RuiTableRowExpander, RuiMenuSelect, RuiSlider, RuiAccordions, RuiAccordion, AutoCompleteProps, ChipProps, TooltipProps, MenuProps, SimpleSelectProps, DataTableProps, DataTableColumn, DataTableSortColumn, DataTableOptions, TablePaginationData, DialogProps, ButtonProps, ButtonGroupProps, CardProps, CardHeaderProps, BadgeProps, AlertProps, CheckboxProps, SwitchProps, ProgressProps, RadioGroupProps, RadioProps, LogoProps, StepperProps, TextFieldProps, IconProps, FooterStepperProps, TabsProps, TabProps, TabItemsProps, TabItemProps, TablePaginationProps, RevealableTextFieldProps, SkeletonLoaderProps, DividerProps, TextAreaProps, ExpandButtonProps, DataTableSortData, DataTableGroupKeys, MenuSelectProps, SliderProps, AccordionsProps, AccordionProps, };
@@ -1,44 +1,40 @@
1
- import { A as m, a as d, B as T, b, d as n, n as g, o as x, C, e as S, D as c, m as h, w as A, F as B, I as D, _ as F, P as I, R as k, f as v, g as w, l as P, u as f, h as E, i as G, q as L, s as j, r as q, t as H, E as _, p as y, v as z, j as J, k as K } from "../index-Ph4f0pga.js";
2
- import "vue";
3
- import "@vueuse/shared";
4
- import "../theme-DT8UjYf9.js";
5
- import "../icons/icons_1.es.js";
6
- import "../icons/icons_2.es.js";
7
- import "../icons/icons_5.es.js";
8
- import "@vueuse/core";
9
- import "../colors-ikihApJv.js";
10
- import "vue-router";
1
+ import { x as u, w as s, A as e, a as R, B as o, b as t, c as r, l, m as d, C as p, d as n, D as T, k as b, u as c, F as S, I as x, _ as g, i as m, M as A, P as C, R as h, e as B, f as D, j as F, s as I, v as k, S as v, g as w, o as M, q as P, p as f, r as E, E as G, n as L, t as j, h as q, T as H } from "../Accordion-BFcz_iFc.js";
11
2
  export {
12
- m as RuiAlert,
13
- d as RuiAutoComplete,
14
- T as RuiBadge,
15
- b as RuiButton,
16
- n as RuiButtonGroup,
17
- g as RuiCard,
18
- x as RuiCardHeader,
19
- C as RuiCheckbox,
20
- S as RuiChip,
21
- c as RuiDataTable,
22
- h as RuiDialog,
23
- A as RuiDivider,
24
- B as RuiFooterStepper,
25
- D as RuiIcon,
26
- F as RuiLogo,
27
- I as RuiProgress,
28
- k as RuiRadio,
29
- v as RuiRadioGroup,
30
- w as RuiRevealableTextField,
31
- P as RuiSimpleSelect,
32
- f as RuiSkeletonLoader,
33
- E as RuiStepper,
34
- G as RuiSwitch,
35
- L as RuiTab,
36
- j as RuiTabItem,
37
- q as RuiTabItems,
38
- H as RuiTablePagination,
39
- _ as RuiTableRowExpander,
40
- y as RuiTabs,
41
- z as RuiTextArea,
42
- J as RuiTextField,
43
- K as RuiTooltip
3
+ u as RuiAccordion,
4
+ s as RuiAccordions,
5
+ e as RuiAlert,
6
+ R as RuiAutoComplete,
7
+ o as RuiBadge,
8
+ t as RuiButton,
9
+ r as RuiButtonGroup,
10
+ l as RuiCard,
11
+ d as RuiCardHeader,
12
+ p as RuiCheckbox,
13
+ n as RuiChip,
14
+ T as RuiDataTable,
15
+ b as RuiDialog,
16
+ c as RuiDivider,
17
+ S as RuiFooterStepper,
18
+ x as RuiIcon,
19
+ g as RuiLogo,
20
+ m as RuiMenu,
21
+ A as RuiMenuSelect,
22
+ C as RuiProgress,
23
+ h as RuiRadio,
24
+ B as RuiRadioGroup,
25
+ D as RuiRevealableTextField,
26
+ F as RuiSimpleSelect,
27
+ I as RuiSkeletonLoader,
28
+ k as RuiSlider,
29
+ v as RuiStepper,
30
+ w as RuiSwitch,
31
+ M as RuiTab,
32
+ P as RuiTabItem,
33
+ f as RuiTabItems,
34
+ E as RuiTablePagination,
35
+ G as RuiTableRowExpander,
36
+ L as RuiTabs,
37
+ j as RuiTextArea,
38
+ q as RuiTextField,
39
+ H as RuiTooltip
44
40
  };
@@ -4,24 +4,24 @@ export interface Props extends SkeletonBaseProps {
4
4
  }
5
5
  declare const _default: import("vue").DefineComponent<{
6
6
  type: {
7
- type: globalThis.PropType<"article" | "button" | "text" | "icon" | "heading" | "paragraph" | "custom" | "avatar" | "thumbnail">;
7
+ type: globalThis.PropType<"heading" | "paragraph" | "text" | "article" | "button" | "icon" | "custom" | "avatar" | "thumbnail">;
8
8
  default: string;
9
9
  };
10
10
  rounded: {
11
- type: globalThis.PropType<"none" | "sm" | "lg" | "md" | "full">;
11
+ type: globalThis.PropType<"sm" | "md" | "lg" | "none" | "full">;
12
12
  default: undefined;
13
13
  };
14
14
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
15
15
  type: {
16
- type: globalThis.PropType<"article" | "button" | "text" | "icon" | "heading" | "paragraph" | "custom" | "avatar" | "thumbnail">;
16
+ type: globalThis.PropType<"heading" | "paragraph" | "text" | "article" | "button" | "icon" | "custom" | "avatar" | "thumbnail">;
17
17
  default: string;
18
18
  };
19
19
  rounded: {
20
- type: globalThis.PropType<"none" | "sm" | "lg" | "md" | "full">;
20
+ type: globalThis.PropType<"sm" | "md" | "lg" | "none" | "full">;
21
21
  default: undefined;
22
22
  };
23
23
  }>>, {
24
- type: "article" | "button" | "text" | "icon" | "heading" | "paragraph" | "custom" | "avatar" | "thumbnail";
25
- rounded: "none" | "sm" | "lg" | "md" | "full";
24
+ type: "heading" | "paragraph" | "text" | "article" | "button" | "icon" | "custom" | "avatar" | "thumbnail";
25
+ rounded: "sm" | "md" | "lg" | "none" | "full";
26
26
  }, {}>;
27
27
  export default _default;
@@ -3,15 +3,15 @@ export interface Props {
3
3
  }
4
4
  declare const _default: import("vue").DefineComponent<{
5
5
  rounded: {
6
- type: globalThis.PropType<"none" | "sm" | "lg" | "md" | "full">;
6
+ type: globalThis.PropType<"sm" | "md" | "lg" | "none" | "full">;
7
7
  default: undefined;
8
8
  };
9
9
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
10
10
  rounded: {
11
- type: globalThis.PropType<"none" | "sm" | "lg" | "md" | "full">;
11
+ type: globalThis.PropType<"sm" | "md" | "lg" | "none" | "full">;
12
12
  default: undefined;
13
13
  };
14
14
  }>>, {
15
- rounded: "none" | "sm" | "lg" | "md" | "full";
15
+ rounded: "sm" | "md" | "lg" | "none" | "full";
16
16
  }, {}>;
17
17
  export default _default;
@@ -1,27 +1,65 @@
1
+ interface ExternalLinks {
2
+ drawer?: string;
3
+ app?: string;
4
+ website?: string;
5
+ about?: string;
6
+ emptyScreen?: string;
7
+ [key: string]: string | undefined;
8
+ }
1
9
  export interface Props {
2
10
  text?: boolean;
3
- customSrc?: string;
11
+ branch?: 'develop' | 'main' | string;
12
+ logo?: keyof ExternalLinks;
13
+ size?: string | number;
14
+ uniqueKey?: string | number;
4
15
  }
5
16
  declare const _default: import("vue").DefineComponent<{
17
+ size: {
18
+ type: globalThis.PropType<string | number>;
19
+ default: number;
20
+ };
6
21
  text: {
7
22
  type: globalThis.PropType<boolean>;
8
23
  default: boolean;
9
24
  };
10
- customSrc: {
25
+ branch: {
11
26
  type: globalThis.PropType<string>;
27
+ default: string;
28
+ };
29
+ logo: {
30
+ type: globalThis.PropType<keyof ExternalLinks>;
31
+ default: undefined;
32
+ };
33
+ uniqueKey: {
34
+ type: globalThis.PropType<string | number>;
12
35
  default: undefined;
13
36
  };
14
37
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
38
+ size: {
39
+ type: globalThis.PropType<string | number>;
40
+ default: number;
41
+ };
15
42
  text: {
16
43
  type: globalThis.PropType<boolean>;
17
44
  default: boolean;
18
45
  };
19
- customSrc: {
46
+ branch: {
20
47
  type: globalThis.PropType<string>;
48
+ default: string;
49
+ };
50
+ logo: {
51
+ type: globalThis.PropType<keyof ExternalLinks>;
52
+ default: undefined;
53
+ };
54
+ uniqueKey: {
55
+ type: globalThis.PropType<string | number>;
21
56
  default: undefined;
22
57
  };
23
58
  }>>, {
59
+ size: string | number;
24
60
  text: boolean;
25
- customSrc: string;
61
+ branch: string;
62
+ logo: keyof ExternalLinks;
63
+ uniqueKey: string | number;
26
64
  }, {}>;
27
65
  export default _default;