@dpa-id-components/dpa-shared-components 12.3.0 → 12.4.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.
- package/dist/ai-VuCGPNLN.mjs +15 -0
- package/dist/components/DpaMediaItem/DpaMediaItem.stories.d.ts +6 -6
- package/dist/components/DpaMediaItem/DpaMediaItem.vue.d.ts +3 -2
- package/dist/components/UiAutocomplete/UiAutocomplete.stories.d.ts +3 -3
- package/dist/components/UiAutocomplete/UiAutocomplete.vue.d.ts +3 -3
- package/dist/components/UiBadge/UiBadge.stories.d.ts +10 -11
- package/dist/components/UiBadge/UiBadge.vue.d.ts +4 -4
- package/dist/components/UiButton/UiButton.stories.d.ts +7 -8
- package/dist/components/UiButton/UiButton.vue.d.ts +3 -3
- package/dist/components/UiCheckBoxGroup/UiCheckBoxGroup.vue.d.ts +2 -1
- package/dist/components/UiDatePicker/UiDatePicker.stories.d.ts +81 -82
- package/dist/components/UiDatePicker/UiDatePicker.vue.d.ts +31 -31
- package/dist/components/UiFilterBadge/UiFilterBadge.stories.d.ts +2 -2
- package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.stories.d.ts +2 -2
- package/dist/components/UiFilterButton/UiFilterButton.stories.d.ts +28 -29
- package/dist/components/UiFilterButton/UiFilterButton.vue.d.ts +5 -5
- package/dist/components/UiIcon/UiIcon.stories.d.ts +4 -5
- package/dist/components/UiIcon/UiIcon.vue.d.ts +8 -4
- package/dist/components/UiIcon/iconNames.d.ts +1 -1
- package/dist/components/UiIconButton/UiIconButton.stories.d.ts +10 -11
- package/dist/components/UiIconButton/UiIconButton.vue.d.ts +2 -2
- package/dist/components/UiInfoContent/UiInfoContent.stories.d.ts +32 -33
- package/dist/components/UiInfoContent/UiInfoContent.vue.d.ts +3 -3
- package/dist/components/UiInput/UiInput.stories.d.ts +12 -12
- package/dist/components/UiInput/UiInput.vue.d.ts +1 -1
- package/dist/components/UiList/UiList.stories.d.ts +6 -6
- package/dist/components/UiListItem/UiListItem.stories.d.ts +26 -27
- package/dist/components/UiListItem/UiListItem.vue.d.ts +3 -3
- package/dist/components/UiMenu/UiMenu.stories.d.ts +3 -4
- package/dist/components/UiMenu/UiMenu.vue.d.ts +2 -2
- package/dist/components/UiOverlayMenu/UiOverlayMenu.stories.d.ts +12 -12
- package/dist/components/UiSnackbar/UiSnackbar.stories.d.ts +25 -26
- package/dist/components/UiSnackbar/UiSnackbar.vue.d.ts +3 -3
- package/dist/components/UiTextButton/UiTextButton.stories.d.ts +14 -14
- package/dist/components/UiTextButton/UiTextButton.vue.d.ts +5 -6
- package/dist/components/index.d.ts +2 -2
- package/dist/dpa-shared-components.mjs +3771 -3883
- package/dist/dpa-shared-components.umd.js +7 -7
- package/dist/graphic-C1wh-TxG.mjs +15 -0
- package/dist/label-ZzjOPjln.mjs +19 -0
- package/dist/label-filled-j_-BCTAD.mjs +19 -0
- package/dist/lock-Dcj4HaSk.mjs +19 -0
- package/dist/lock-filled-BnsIWWZt.mjs +19 -0
- package/dist/story-cXfkRTNd.mjs +15 -0
- package/dist/style.css +1 -1
- package/dist/thumbs-down-CdwHyt1J.mjs +19 -0
- package/package.json +4 -13
- package/dist/graphic-BmqiWT4u.mjs +0 -20
- package/dist/lock-EkeSCdjL.mjs +0 -19
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { RangeConfig } from '@vuepic/vue-datepicker';
|
|
2
|
-
import {
|
|
2
|
+
import { UiIconName } from '../UiIcon/UiIcon.vue';
|
|
3
3
|
export interface PresetRange {
|
|
4
4
|
label: string;
|
|
5
5
|
range: Date[] | string[];
|
|
@@ -38,7 +38,7 @@ type __VLS_Props = {
|
|
|
38
38
|
monthPicker?: boolean;
|
|
39
39
|
customFormatCallback?: any;
|
|
40
40
|
inputLabel?: string;
|
|
41
|
-
iconLeft?:
|
|
41
|
+
iconLeft?: UiIconName | null;
|
|
42
42
|
utc?: boolean;
|
|
43
43
|
teleport?: boolean | string;
|
|
44
44
|
closeOnScroll?: boolean;
|
|
@@ -107,25 +107,22 @@ declare function __VLS_template(): {
|
|
|
107
107
|
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
|
|
108
108
|
} | undefined;
|
|
109
109
|
readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
|
|
110
|
-
readonly concat?: string[] | undefined;
|
|
111
|
-
readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
112
|
-
readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
113
|
-
readonly slice?: string[] | undefined;
|
|
114
110
|
readonly length?: number | undefined;
|
|
115
|
-
readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
|
|
116
|
-
readonly at?: ((index: number) => string | undefined) | undefined;
|
|
117
|
-
readonly toLocaleString?: string | undefined;
|
|
118
111
|
readonly pop?: string | undefined;
|
|
119
112
|
readonly push?: number | undefined;
|
|
113
|
+
readonly concat?: string[] | undefined;
|
|
120
114
|
readonly join?: string | undefined;
|
|
121
115
|
readonly reverse?: string[] | undefined;
|
|
122
116
|
readonly shift?: string | undefined;
|
|
117
|
+
readonly slice?: string[] | undefined;
|
|
123
118
|
readonly sort?: string[] | undefined;
|
|
124
119
|
readonly splice?: {
|
|
125
120
|
(start: number, deleteCount?: number): string[];
|
|
126
121
|
(start: number, deleteCount: number, ...items: string[]): string[];
|
|
127
122
|
} | undefined;
|
|
128
123
|
readonly unshift?: number | undefined;
|
|
124
|
+
readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
125
|
+
readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
129
126
|
readonly every?: {
|
|
130
127
|
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
|
|
131
128
|
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
|
|
@@ -152,8 +149,10 @@ declare function __VLS_template(): {
|
|
|
152
149
|
readonly entries?: ArrayIterator<[number, string]> | undefined;
|
|
153
150
|
readonly keys?: ArrayIterator<number> | undefined;
|
|
154
151
|
readonly values?: ArrayIterator<string> | undefined;
|
|
152
|
+
readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
|
|
155
153
|
readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
|
|
156
154
|
readonly flat?: unknown[] | undefined;
|
|
155
|
+
readonly at?: ((index: number) => string | undefined) | undefined;
|
|
157
156
|
readonly findLast?: {
|
|
158
157
|
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
|
|
159
158
|
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
|
|
@@ -167,6 +166,7 @@ declare function __VLS_template(): {
|
|
|
167
166
|
} | undefined;
|
|
168
167
|
readonly with?: ((index: number, value: string) => string[]) | undefined;
|
|
169
168
|
readonly toString?: string | undefined;
|
|
169
|
+
readonly toLocaleString?: string | undefined;
|
|
170
170
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
171
171
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
172
172
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
@@ -640,25 +640,22 @@ declare function __VLS_template(): {
|
|
|
640
640
|
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
|
|
641
641
|
} | undefined;
|
|
642
642
|
readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
|
|
643
|
-
readonly concat?: string[] | undefined;
|
|
644
|
-
readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
645
|
-
readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
646
|
-
readonly slice?: string[] | undefined;
|
|
647
643
|
readonly length?: number | undefined;
|
|
648
|
-
readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
|
|
649
|
-
readonly at?: ((index: number) => string | undefined) | undefined;
|
|
650
|
-
readonly toLocaleString?: string | undefined;
|
|
651
644
|
readonly pop?: string | undefined;
|
|
652
645
|
readonly push?: number | undefined;
|
|
646
|
+
readonly concat?: string[] | undefined;
|
|
653
647
|
readonly join?: string | undefined;
|
|
654
648
|
readonly reverse?: string[] | undefined;
|
|
655
649
|
readonly shift?: string | undefined;
|
|
650
|
+
readonly slice?: string[] | undefined;
|
|
656
651
|
readonly sort?: string[] | undefined;
|
|
657
652
|
readonly splice?: {
|
|
658
653
|
(start: number, deleteCount?: number): string[];
|
|
659
654
|
(start: number, deleteCount: number, ...items: string[]): string[];
|
|
660
655
|
} | undefined;
|
|
661
656
|
readonly unshift?: number | undefined;
|
|
657
|
+
readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
658
|
+
readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
662
659
|
readonly every?: {
|
|
663
660
|
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
|
|
664
661
|
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
|
|
@@ -685,8 +682,10 @@ declare function __VLS_template(): {
|
|
|
685
682
|
readonly entries?: ArrayIterator<[number, string]> | undefined;
|
|
686
683
|
readonly keys?: ArrayIterator<number> | undefined;
|
|
687
684
|
readonly values?: ArrayIterator<string> | undefined;
|
|
685
|
+
readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
|
|
688
686
|
readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
|
|
689
687
|
readonly flat?: unknown[] | undefined;
|
|
688
|
+
readonly at?: ((index: number) => string | undefined) | undefined;
|
|
690
689
|
readonly findLast?: {
|
|
691
690
|
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
|
|
692
691
|
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
|
|
@@ -700,6 +699,7 @@ declare function __VLS_template(): {
|
|
|
700
699
|
} | undefined;
|
|
701
700
|
readonly with?: ((index: number, value: string) => string[]) | undefined;
|
|
702
701
|
readonly toString?: string | undefined;
|
|
702
|
+
readonly toLocaleString?: string | undefined;
|
|
703
703
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
704
704
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
705
705
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
@@ -1134,7 +1134,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1134
1134
|
}>, {
|
|
1135
1135
|
cancel: string;
|
|
1136
1136
|
submit: string;
|
|
1137
|
-
iconLeft:
|
|
1137
|
+
iconLeft: UiIconName | null;
|
|
1138
1138
|
definesRange: boolean;
|
|
1139
1139
|
multiCalendars: boolean;
|
|
1140
1140
|
enableTimePicker: boolean;
|
|
@@ -1225,25 +1225,22 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1225
1225
|
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
|
|
1226
1226
|
} | undefined;
|
|
1227
1227
|
readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
|
|
1228
|
-
readonly concat?: string[] | undefined;
|
|
1229
|
-
readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
1230
|
-
readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
1231
|
-
readonly slice?: string[] | undefined;
|
|
1232
1228
|
readonly length?: number | undefined;
|
|
1233
|
-
readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
|
|
1234
|
-
readonly at?: ((index: number) => string | undefined) | undefined;
|
|
1235
|
-
readonly toLocaleString?: string | undefined;
|
|
1236
1229
|
readonly pop?: string | undefined;
|
|
1237
1230
|
readonly push?: number | undefined;
|
|
1231
|
+
readonly concat?: string[] | undefined;
|
|
1238
1232
|
readonly join?: string | undefined;
|
|
1239
1233
|
readonly reverse?: string[] | undefined;
|
|
1240
1234
|
readonly shift?: string | undefined;
|
|
1235
|
+
readonly slice?: string[] | undefined;
|
|
1241
1236
|
readonly sort?: string[] | undefined;
|
|
1242
1237
|
readonly splice?: {
|
|
1243
1238
|
(start: number, deleteCount?: number): string[];
|
|
1244
1239
|
(start: number, deleteCount: number, ...items: string[]): string[];
|
|
1245
1240
|
} | undefined;
|
|
1246
1241
|
readonly unshift?: number | undefined;
|
|
1242
|
+
readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
1243
|
+
readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
1247
1244
|
readonly every?: {
|
|
1248
1245
|
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
|
|
1249
1246
|
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
|
|
@@ -1270,8 +1267,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1270
1267
|
readonly entries?: ArrayIterator<[number, string]> | undefined;
|
|
1271
1268
|
readonly keys?: ArrayIterator<number> | undefined;
|
|
1272
1269
|
readonly values?: ArrayIterator<string> | undefined;
|
|
1270
|
+
readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
|
|
1273
1271
|
readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
|
|
1274
1272
|
readonly flat?: unknown[] | undefined;
|
|
1273
|
+
readonly at?: ((index: number) => string | undefined) | undefined;
|
|
1275
1274
|
readonly findLast?: {
|
|
1276
1275
|
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
|
|
1277
1276
|
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
|
|
@@ -1285,6 +1284,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1285
1284
|
} | undefined;
|
|
1286
1285
|
readonly with?: ((index: number, value: string) => string[]) | undefined;
|
|
1287
1286
|
readonly toString?: string | undefined;
|
|
1287
|
+
readonly toLocaleString?: string | undefined;
|
|
1288
1288
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1289
1289
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1290
1290
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
@@ -1758,25 +1758,22 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1758
1758
|
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
|
|
1759
1759
|
} | undefined;
|
|
1760
1760
|
readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
|
|
1761
|
-
readonly concat?: string[] | undefined;
|
|
1762
|
-
readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
1763
|
-
readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
1764
|
-
readonly slice?: string[] | undefined;
|
|
1765
1761
|
readonly length?: number | undefined;
|
|
1766
|
-
readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
|
|
1767
|
-
readonly at?: ((index: number) => string | undefined) | undefined;
|
|
1768
|
-
readonly toLocaleString?: string | undefined;
|
|
1769
1762
|
readonly pop?: string | undefined;
|
|
1770
1763
|
readonly push?: number | undefined;
|
|
1764
|
+
readonly concat?: string[] | undefined;
|
|
1771
1765
|
readonly join?: string | undefined;
|
|
1772
1766
|
readonly reverse?: string[] | undefined;
|
|
1773
1767
|
readonly shift?: string | undefined;
|
|
1768
|
+
readonly slice?: string[] | undefined;
|
|
1774
1769
|
readonly sort?: string[] | undefined;
|
|
1775
1770
|
readonly splice?: {
|
|
1776
1771
|
(start: number, deleteCount?: number): string[];
|
|
1777
1772
|
(start: number, deleteCount: number, ...items: string[]): string[];
|
|
1778
1773
|
} | undefined;
|
|
1779
1774
|
readonly unshift?: number | undefined;
|
|
1775
|
+
readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
1776
|
+
readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
1780
1777
|
readonly every?: {
|
|
1781
1778
|
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
|
|
1782
1779
|
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
|
|
@@ -1803,8 +1800,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1803
1800
|
readonly entries?: ArrayIterator<[number, string]> | undefined;
|
|
1804
1801
|
readonly keys?: ArrayIterator<number> | undefined;
|
|
1805
1802
|
readonly values?: ArrayIterator<string> | undefined;
|
|
1803
|
+
readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
|
|
1806
1804
|
readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
|
|
1807
1805
|
readonly flat?: unknown[] | undefined;
|
|
1806
|
+
readonly at?: ((index: number) => string | undefined) | undefined;
|
|
1808
1807
|
readonly findLast?: {
|
|
1809
1808
|
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
|
|
1810
1809
|
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
|
|
@@ -1818,6 +1817,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1818
1817
|
} | undefined;
|
|
1819
1818
|
readonly with?: ((index: number, value: string) => string[]) | undefined;
|
|
1820
1819
|
readonly toString?: string | undefined;
|
|
1820
|
+
readonly toLocaleString?: string | undefined;
|
|
1821
1821
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1822
1822
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1823
1823
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
@@ -214,7 +214,7 @@ declare const meta: {
|
|
|
214
214
|
};
|
|
215
215
|
});
|
|
216
216
|
UiIconButton: import('vue').DefineComponent<{
|
|
217
|
-
iconName:
|
|
217
|
+
iconName: import('..').UiIconName;
|
|
218
218
|
title?: string;
|
|
219
219
|
disabled?: boolean;
|
|
220
220
|
backgroundColor?: "blue" | "none" | "gray-hover";
|
|
@@ -223,7 +223,7 @@ declare const meta: {
|
|
|
223
223
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
224
224
|
click: (args_0: MouseEvent) => any;
|
|
225
225
|
}, string, import('vue').PublicProps, Readonly<{
|
|
226
|
-
iconName:
|
|
226
|
+
iconName: import('..').UiIconName;
|
|
227
227
|
title?: string;
|
|
228
228
|
disabled?: boolean;
|
|
229
229
|
backgroundColor?: "blue" | "none" | "gray-hover";
|
|
@@ -274,7 +274,7 @@ declare const meta: {
|
|
|
274
274
|
};
|
|
275
275
|
});
|
|
276
276
|
UiIconButton: import('vue').DefineComponent<{
|
|
277
|
-
iconName:
|
|
277
|
+
iconName: import('..').UiIconName;
|
|
278
278
|
title?: string;
|
|
279
279
|
disabled?: boolean;
|
|
280
280
|
backgroundColor?: "blue" | "none" | "gray-hover";
|
|
@@ -283,7 +283,7 @@ declare const meta: {
|
|
|
283
283
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
284
284
|
click: (args_0: MouseEvent) => any;
|
|
285
285
|
}, string, import('vue').PublicProps, Readonly<{
|
|
286
|
-
iconName:
|
|
286
|
+
iconName: import('..').UiIconName;
|
|
287
287
|
title?: string;
|
|
288
288
|
disabled?: boolean;
|
|
289
289
|
backgroundColor?: "blue" | "none" | "gray-hover";
|
|
@@ -1,31 +1,30 @@
|
|
|
1
|
-
import { iconNames } from '../UiIcon/iconNames';
|
|
2
1
|
import { StoryObj } from '@storybook/vue3';
|
|
3
2
|
declare const meta: {
|
|
4
3
|
title: string;
|
|
5
4
|
component: import('vue').DefineComponent<{
|
|
6
5
|
title?: string;
|
|
7
6
|
variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
|
|
8
|
-
chevronIcon?: (
|
|
7
|
+
chevronIcon?: import('..').UiIconName;
|
|
9
8
|
rotateIcon?: boolean;
|
|
10
9
|
iconSize?: "xs" | "small" | "large";
|
|
11
10
|
size?: "xs" | "small";
|
|
12
11
|
disabled?: boolean;
|
|
13
12
|
active?: boolean;
|
|
14
13
|
hasIcon?: boolean;
|
|
15
|
-
iconLeft?: (
|
|
14
|
+
iconLeft?: import('..').UiIconName | null;
|
|
16
15
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
16
|
click: () => any;
|
|
18
17
|
}, string, import('vue').PublicProps, Readonly<{
|
|
19
18
|
title?: string;
|
|
20
19
|
variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
|
|
21
|
-
chevronIcon?: (
|
|
20
|
+
chevronIcon?: import('..').UiIconName;
|
|
22
21
|
rotateIcon?: boolean;
|
|
23
22
|
iconSize?: "xs" | "small" | "large";
|
|
24
23
|
size?: "xs" | "small";
|
|
25
24
|
disabled?: boolean;
|
|
26
25
|
active?: boolean;
|
|
27
26
|
hasIcon?: boolean;
|
|
28
|
-
iconLeft?: (
|
|
27
|
+
iconLeft?: import('..').UiIconName | null;
|
|
29
28
|
}> & Readonly<{
|
|
30
29
|
onClick?: (() => any) | undefined;
|
|
31
30
|
}>, {
|
|
@@ -34,11 +33,11 @@ declare const meta: {
|
|
|
34
33
|
title: string;
|
|
35
34
|
iconSize: "xs" | "small" | "large";
|
|
36
35
|
variant: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
|
|
37
|
-
chevronIcon: (
|
|
36
|
+
chevronIcon: import('..').UiIconName;
|
|
38
37
|
rotateIcon: boolean;
|
|
39
38
|
active: boolean;
|
|
40
39
|
hasIcon: boolean;
|
|
41
|
-
iconLeft: (
|
|
40
|
+
iconLeft: import('..').UiIconName | null;
|
|
42
41
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
43
42
|
argTypes: {
|
|
44
43
|
title: {
|
|
@@ -50,7 +49,7 @@ declare const meta: {
|
|
|
50
49
|
};
|
|
51
50
|
chevronIcon: {
|
|
52
51
|
control: "select";
|
|
53
|
-
options:
|
|
52
|
+
options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
|
|
54
53
|
};
|
|
55
54
|
rotateIcon: {
|
|
56
55
|
control: "boolean";
|
|
@@ -66,7 +65,7 @@ declare const meta: {
|
|
|
66
65
|
};
|
|
67
66
|
iconLeft: {
|
|
68
67
|
control: "select";
|
|
69
|
-
options:
|
|
68
|
+
options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
|
|
70
69
|
};
|
|
71
70
|
iconSize: {
|
|
72
71
|
control: "select";
|
|
@@ -80,38 +79,38 @@ declare const meta: {
|
|
|
80
79
|
args: {
|
|
81
80
|
title: string;
|
|
82
81
|
variant: "white-rounded";
|
|
83
|
-
chevronIcon:
|
|
82
|
+
chevronIcon: "chevron-down";
|
|
84
83
|
rotateIcon: false;
|
|
85
84
|
disabled: false;
|
|
86
85
|
active: false;
|
|
87
86
|
hasIcon: true;
|
|
88
87
|
iconSize: "xs";
|
|
89
|
-
iconLeft:
|
|
88
|
+
iconLeft: null;
|
|
90
89
|
};
|
|
91
90
|
render: (args: import('@storybook/vue3').ComponentPropsAndSlots<import('vue').DefineComponent<{
|
|
92
91
|
title?: string;
|
|
93
92
|
variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
|
|
94
|
-
chevronIcon?: (
|
|
93
|
+
chevronIcon?: import('..').UiIconName;
|
|
95
94
|
rotateIcon?: boolean;
|
|
96
95
|
iconSize?: "xs" | "small" | "large";
|
|
97
96
|
size?: "xs" | "small";
|
|
98
97
|
disabled?: boolean;
|
|
99
98
|
active?: boolean;
|
|
100
99
|
hasIcon?: boolean;
|
|
101
|
-
iconLeft?: (
|
|
100
|
+
iconLeft?: import('..').UiIconName | null;
|
|
102
101
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
103
102
|
click: () => any;
|
|
104
103
|
}, string, import('vue').PublicProps, Readonly<{
|
|
105
104
|
title?: string;
|
|
106
105
|
variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
|
|
107
|
-
chevronIcon?: (
|
|
106
|
+
chevronIcon?: import('..').UiIconName;
|
|
108
107
|
rotateIcon?: boolean;
|
|
109
108
|
iconSize?: "xs" | "small" | "large";
|
|
110
109
|
size?: "xs" | "small";
|
|
111
110
|
disabled?: boolean;
|
|
112
111
|
active?: boolean;
|
|
113
112
|
hasIcon?: boolean;
|
|
114
|
-
iconLeft?: (
|
|
113
|
+
iconLeft?: import('..').UiIconName | null;
|
|
115
114
|
}> & Readonly<{
|
|
116
115
|
onClick?: (() => any) | undefined;
|
|
117
116
|
}>, {
|
|
@@ -120,37 +119,37 @@ declare const meta: {
|
|
|
120
119
|
title: string;
|
|
121
120
|
iconSize: "xs" | "small" | "large";
|
|
122
121
|
variant: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
|
|
123
|
-
chevronIcon: (
|
|
122
|
+
chevronIcon: import('..').UiIconName;
|
|
124
123
|
rotateIcon: boolean;
|
|
125
124
|
active: boolean;
|
|
126
125
|
hasIcon: boolean;
|
|
127
|
-
iconLeft: (
|
|
126
|
+
iconLeft: import('..').UiIconName | null;
|
|
128
127
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>>) => {
|
|
129
128
|
setup(this: void): {
|
|
130
129
|
args: import('@storybook/vue3').ComponentPropsAndSlots<import('vue').DefineComponent<{
|
|
131
130
|
title?: string;
|
|
132
131
|
variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
|
|
133
|
-
chevronIcon?: (
|
|
132
|
+
chevronIcon?: import('..').UiIconName;
|
|
134
133
|
rotateIcon?: boolean;
|
|
135
134
|
iconSize?: "xs" | "small" | "large";
|
|
136
135
|
size?: "xs" | "small";
|
|
137
136
|
disabled?: boolean;
|
|
138
137
|
active?: boolean;
|
|
139
138
|
hasIcon?: boolean;
|
|
140
|
-
iconLeft?: (
|
|
139
|
+
iconLeft?: import('..').UiIconName | null;
|
|
141
140
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
142
141
|
click: () => any;
|
|
143
142
|
}, string, import('vue').PublicProps, Readonly<{
|
|
144
143
|
title?: string;
|
|
145
144
|
variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
|
|
146
|
-
chevronIcon?: (
|
|
145
|
+
chevronIcon?: import('..').UiIconName;
|
|
147
146
|
rotateIcon?: boolean;
|
|
148
147
|
iconSize?: "xs" | "small" | "large";
|
|
149
148
|
size?: "xs" | "small";
|
|
150
149
|
disabled?: boolean;
|
|
151
150
|
active?: boolean;
|
|
152
151
|
hasIcon?: boolean;
|
|
153
|
-
iconLeft?: (
|
|
152
|
+
iconLeft?: import('..').UiIconName | null;
|
|
154
153
|
}> & Readonly<{
|
|
155
154
|
onClick?: (() => any) | undefined;
|
|
156
155
|
}>, {
|
|
@@ -159,38 +158,38 @@ declare const meta: {
|
|
|
159
158
|
title: string;
|
|
160
159
|
iconSize: "xs" | "small" | "large";
|
|
161
160
|
variant: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
|
|
162
|
-
chevronIcon: (
|
|
161
|
+
chevronIcon: import('..').UiIconName;
|
|
163
162
|
rotateIcon: boolean;
|
|
164
163
|
active: boolean;
|
|
165
164
|
hasIcon: boolean;
|
|
166
|
-
iconLeft: (
|
|
165
|
+
iconLeft: import('..').UiIconName | null;
|
|
167
166
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>>;
|
|
168
167
|
};
|
|
169
168
|
components: {
|
|
170
169
|
UiFilterButton: import('vue').DefineComponent<{
|
|
171
170
|
title?: string;
|
|
172
171
|
variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
|
|
173
|
-
chevronIcon?: (
|
|
172
|
+
chevronIcon?: import('..').UiIconName;
|
|
174
173
|
rotateIcon?: boolean;
|
|
175
174
|
iconSize?: "xs" | "small" | "large";
|
|
176
175
|
size?: "xs" | "small";
|
|
177
176
|
disabled?: boolean;
|
|
178
177
|
active?: boolean;
|
|
179
178
|
hasIcon?: boolean;
|
|
180
|
-
iconLeft?: (
|
|
179
|
+
iconLeft?: import('..').UiIconName | null;
|
|
181
180
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
182
181
|
click: () => any;
|
|
183
182
|
}, string, import('vue').PublicProps, Readonly<{
|
|
184
183
|
title?: string;
|
|
185
184
|
variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
|
|
186
|
-
chevronIcon?: (
|
|
185
|
+
chevronIcon?: import('..').UiIconName;
|
|
187
186
|
rotateIcon?: boolean;
|
|
188
187
|
iconSize?: "xs" | "small" | "large";
|
|
189
188
|
size?: "xs" | "small";
|
|
190
189
|
disabled?: boolean;
|
|
191
190
|
active?: boolean;
|
|
192
191
|
hasIcon?: boolean;
|
|
193
|
-
iconLeft?: (
|
|
192
|
+
iconLeft?: import('..').UiIconName | null;
|
|
194
193
|
}> & Readonly<{
|
|
195
194
|
onClick?: (() => any) | undefined;
|
|
196
195
|
}>, {
|
|
@@ -199,11 +198,11 @@ declare const meta: {
|
|
|
199
198
|
title: string;
|
|
200
199
|
iconSize: "xs" | "small" | "large";
|
|
201
200
|
variant: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
|
|
202
|
-
chevronIcon: (
|
|
201
|
+
chevronIcon: import('..').UiIconName;
|
|
203
202
|
rotateIcon: boolean;
|
|
204
203
|
active: boolean;
|
|
205
204
|
hasIcon: boolean;
|
|
206
|
-
iconLeft: (
|
|
205
|
+
iconLeft: import('..').UiIconName | null;
|
|
207
206
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
208
207
|
};
|
|
209
208
|
template: string;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { UiIconName } from '../UiIcon/UiIcon.vue';
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
title?: string;
|
|
4
4
|
variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
|
|
5
|
-
chevronIcon?:
|
|
5
|
+
chevronIcon?: UiIconName;
|
|
6
6
|
rotateIcon?: boolean;
|
|
7
7
|
iconSize?: "xs" | "small" | "large";
|
|
8
8
|
size?: "xs" | "small";
|
|
9
9
|
disabled?: boolean;
|
|
10
10
|
active?: boolean;
|
|
11
11
|
hasIcon?: boolean;
|
|
12
|
-
iconLeft?:
|
|
12
|
+
iconLeft?: UiIconName | null;
|
|
13
13
|
};
|
|
14
14
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
15
|
click: () => any;
|
|
@@ -21,10 +21,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
21
21
|
title: string;
|
|
22
22
|
iconSize: "xs" | "small" | "large";
|
|
23
23
|
variant: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
|
|
24
|
-
chevronIcon:
|
|
24
|
+
chevronIcon: UiIconName;
|
|
25
25
|
rotateIcon: boolean;
|
|
26
26
|
active: boolean;
|
|
27
27
|
hasIcon: boolean;
|
|
28
|
-
iconLeft:
|
|
28
|
+
iconLeft: UiIconName | null;
|
|
29
29
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
30
30
|
export default _default;
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { StoryObj } from '@storybook/vue3';
|
|
2
|
-
import { iconNames } from './iconNames';
|
|
3
2
|
declare const meta: {
|
|
4
3
|
title: string;
|
|
5
4
|
component: import('vue').DefineComponent<{
|
|
6
|
-
name: (
|
|
5
|
+
name: import('./UiIcon.vue').UiIconName;
|
|
7
6
|
size?: "xs" | "small" | "medium" | "large" | "xl" | "2xl";
|
|
8
7
|
sizeClasses?: string;
|
|
9
8
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
10
|
-
name: (
|
|
9
|
+
name: import('./UiIcon.vue').UiIconName;
|
|
11
10
|
size?: "xs" | "small" | "medium" | "large" | "xl" | "2xl";
|
|
12
11
|
sizeClasses?: string;
|
|
13
12
|
}> & Readonly<{}>, {
|
|
@@ -17,7 +16,7 @@ declare const meta: {
|
|
|
17
16
|
argTypes: {
|
|
18
17
|
name: {
|
|
19
18
|
control: "select";
|
|
20
|
-
options:
|
|
19
|
+
options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
|
|
21
20
|
};
|
|
22
21
|
size: {
|
|
23
22
|
control: "select";
|
|
@@ -25,7 +24,7 @@ declare const meta: {
|
|
|
25
24
|
};
|
|
26
25
|
};
|
|
27
26
|
args: {
|
|
28
|
-
name:
|
|
27
|
+
name: "alert";
|
|
29
28
|
size: "large";
|
|
30
29
|
};
|
|
31
30
|
};
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import { iconNames } from './iconNames';
|
|
2
|
-
type
|
|
3
|
-
|
|
2
|
+
export type UiIconName = (typeof iconNames)[number];
|
|
3
|
+
declare const _default: import('vue').DefineComponent<{
|
|
4
|
+
name: UiIconName;
|
|
4
5
|
size?: "xs" | "small" | "medium" | "large" | "xl" | "2xl";
|
|
5
6
|
sizeClasses?: string;
|
|
6
|
-
}
|
|
7
|
-
|
|
7
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
8
|
+
name: UiIconName;
|
|
9
|
+
size?: "xs" | "small" | "medium" | "large" | "xl" | "2xl";
|
|
10
|
+
sizeClasses?: string;
|
|
11
|
+
}> & Readonly<{}>, {
|
|
8
12
|
size: "xs" | "small" | "medium" | "large" | "xl" | "2xl";
|
|
9
13
|
sizeClasses: string;
|
|
10
14
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const iconNames:
|
|
1
|
+
export declare const iconNames: readonly ["activities", "alert", "alert-fill", "alert-octagon", "ai", "apps", "archive", "arrow-left", "arrow-nav-left", "arrow-nav-right", "arrow-up", "arrow-right", "arrow-down", "arrowhead-left", "arrowhead-right", "arrowhead-top", "atmo", "audio", "audio-circled", "audio-filled", "bag", "bell", "bell-fill", "book", "bookmark", "bookmark-fill", "bookmark-outlined", "box", "bulb", "call", "camera", "check", "checklist", "checkmark", "checkmark-double", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "clipboard", "clock", "close", "cloud-save", "code", "collapse", "color-palette", "comment", "comment-fill", "copy", "copy-link", "delete", "download", "dpa-id", "edit", "edit-add", "eil", "emoji", "emoji-add", "envelope", "event", "expand", "external-link", "file", "file-pdf", "filter", "filter-outline", "flag", "flag-fill", "flag-filled", "flag-outline", "flags", "flash", "folder", "folder-add", "folder-fill", "folder-filled", "gallery", "graphic", "graphic-circled", "graphic-filled", "graphics", "grid-1", "grid-2", "grid-3", "grid-4", "grid-6", "grid-9", "grid-masonry", "grid-masonry-9", "help", "home", "image", "image focus point", "impact-high", "impact-low", "impact-medium", "impact-very-high", "impact-very-low", "info", "info-fill", "info-filled", "label", "label-filled", "language", "latest", "lightbulb", "list", "lock", "lock-filled", "mail", "map", "map-outline", "menu", "minus", "more-horizontal", "more-vertical", "move", "move-up-down", "navigation", "note", "offline", "paper-plane", "paperplane", "pause", "pause-circle", "pdf", "pen", "pen-check", "people", "phone", "picture", "picture-circled", "picture-filled", "pin", "planning", "play", "play-circle", "play-fill", "plus", "plus-circle", "print", "refresh", "reset", "responsive", "rubix-thema", "save", "saved-search", "saved-search-fill", "search", "settings", "share", "share-alternative", "sidebar", "sidebar-fill", "slack", "slider-config", "spellcheck", "spinner", "standard-view", "star", "star-fill", "star-filled", "stop", "story", "sync", "tasks", "text", "text-circled", "text-filled", "thumbs-down", "thumbs-up", "thumbs-up-double", "topic", "union", "upload", "video", "video overlay", "video-circled", "video-filled", "view", "view-off", "volume-up"];
|