@dpa-id-components/dpa-shared-components 13.1.0 → 13.2.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.
- package/dist/components/UiDatePicker/UiDatePicker.stories.d.ts +64 -40
- package/dist/components/UiDatePicker/UiDatePicker.vue.d.ts +22 -20
- package/dist/components/UiFilterButton/UiFilterButton.stories.d.ts +32 -0
- package/dist/components/UiFilterButton/UiFilterButton.vue.d.ts +5 -0
- package/dist/components/UiSearchBar/UiSearchBar.stories.d.ts +12 -0
- package/dist/components/UiSearchBar/UiSearchBar.vue.d.ts +4 -0
- package/dist/dpa-shared-components.mjs +263 -229
- package/dist/dpa-shared-components.umd.js +3 -3
- package/package.json +1 -1
|
@@ -34,6 +34,7 @@ declare const meta: {
|
|
|
34
34
|
customFormatCallback?: any;
|
|
35
35
|
inputLabel?: string;
|
|
36
36
|
iconLeft?: import('..').UiIconName | null;
|
|
37
|
+
inline?: boolean;
|
|
37
38
|
utc?: boolean;
|
|
38
39
|
teleport?: boolean | string;
|
|
39
40
|
closeOnScroll?: boolean;
|
|
@@ -82,6 +83,7 @@ declare const meta: {
|
|
|
82
83
|
monthPicker: boolean;
|
|
83
84
|
customFormatCallback: any;
|
|
84
85
|
inputLabel: string;
|
|
86
|
+
inline: boolean;
|
|
85
87
|
utc: boolean;
|
|
86
88
|
teleport: boolean | string;
|
|
87
89
|
closeOnScroll: boolean;
|
|
@@ -254,6 +256,11 @@ declare const meta: {
|
|
|
254
256
|
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
255
257
|
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
256
258
|
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
259
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
260
|
+
input?: boolean;
|
|
261
|
+
} | undefined, boolean | {
|
|
262
|
+
input?: boolean;
|
|
263
|
+
} | undefined> | null | undefined;
|
|
257
264
|
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
258
265
|
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
259
266
|
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
@@ -303,11 +310,6 @@ declare const meta: {
|
|
|
303
310
|
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
304
311
|
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
305
312
|
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
306
|
-
readonly inline?: import('vue').Prop<boolean | {
|
|
307
|
-
input?: boolean;
|
|
308
|
-
} | undefined, boolean | {
|
|
309
|
-
input?: boolean;
|
|
310
|
-
} | undefined> | null | undefined;
|
|
311
313
|
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
312
314
|
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
313
315
|
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -787,6 +789,11 @@ declare const meta: {
|
|
|
787
789
|
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
788
790
|
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
789
791
|
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
792
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
793
|
+
input?: boolean;
|
|
794
|
+
} | undefined, boolean | {
|
|
795
|
+
input?: boolean;
|
|
796
|
+
} | undefined> | null | undefined;
|
|
790
797
|
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
791
798
|
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
792
799
|
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
@@ -836,11 +843,6 @@ declare const meta: {
|
|
|
836
843
|
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
837
844
|
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
838
845
|
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
839
|
-
readonly inline?: import('vue').Prop<boolean | {
|
|
840
|
-
input?: boolean;
|
|
841
|
-
} | undefined, boolean | {
|
|
842
|
-
input?: boolean;
|
|
843
|
-
} | undefined> | null | undefined;
|
|
844
846
|
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
845
847
|
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
846
848
|
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -1191,6 +1193,7 @@ declare const meta: {
|
|
|
1191
1193
|
customFormatCallback?: any;
|
|
1192
1194
|
inputLabel?: string;
|
|
1193
1195
|
iconLeft?: import('..').UiIconName | null;
|
|
1196
|
+
inline?: boolean;
|
|
1194
1197
|
utc?: boolean;
|
|
1195
1198
|
teleport?: boolean | string;
|
|
1196
1199
|
closeOnScroll?: boolean;
|
|
@@ -1233,6 +1236,7 @@ declare const meta: {
|
|
|
1233
1236
|
monthPicker: boolean;
|
|
1234
1237
|
customFormatCallback: any;
|
|
1235
1238
|
inputLabel: string;
|
|
1239
|
+
inline: boolean;
|
|
1236
1240
|
utc: boolean;
|
|
1237
1241
|
teleport: boolean | string;
|
|
1238
1242
|
closeOnScroll: boolean;
|
|
@@ -1273,6 +1277,7 @@ declare const meta: {
|
|
|
1273
1277
|
customFormatCallback?: any;
|
|
1274
1278
|
inputLabel?: string;
|
|
1275
1279
|
iconLeft?: import('..').UiIconName | null;
|
|
1280
|
+
inline?: boolean;
|
|
1276
1281
|
utc?: boolean;
|
|
1277
1282
|
teleport?: boolean | string;
|
|
1278
1283
|
closeOnScroll?: boolean;
|
|
@@ -1321,6 +1326,7 @@ declare const meta: {
|
|
|
1321
1326
|
monthPicker: boolean;
|
|
1322
1327
|
customFormatCallback: any;
|
|
1323
1328
|
inputLabel: string;
|
|
1329
|
+
inline: boolean;
|
|
1324
1330
|
utc: boolean;
|
|
1325
1331
|
teleport: boolean | string;
|
|
1326
1332
|
closeOnScroll: boolean;
|
|
@@ -1470,6 +1476,7 @@ declare const meta: {
|
|
|
1470
1476
|
customFormatCallback?: any;
|
|
1471
1477
|
inputLabel?: string;
|
|
1472
1478
|
iconLeft?: import('..').UiIconName | null;
|
|
1479
|
+
inline?: boolean;
|
|
1473
1480
|
utc?: boolean;
|
|
1474
1481
|
teleport?: boolean | string;
|
|
1475
1482
|
closeOnScroll?: boolean;
|
|
@@ -1518,6 +1525,7 @@ declare const meta: {
|
|
|
1518
1525
|
monthPicker: boolean;
|
|
1519
1526
|
customFormatCallback: any;
|
|
1520
1527
|
inputLabel: string;
|
|
1528
|
+
inline: boolean;
|
|
1521
1529
|
utc: boolean;
|
|
1522
1530
|
teleport: boolean | string;
|
|
1523
1531
|
closeOnScroll: boolean;
|
|
@@ -1690,6 +1698,11 @@ declare const meta: {
|
|
|
1690
1698
|
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
1691
1699
|
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
1692
1700
|
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1701
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
1702
|
+
input?: boolean;
|
|
1703
|
+
} | undefined, boolean | {
|
|
1704
|
+
input?: boolean;
|
|
1705
|
+
} | undefined> | null | undefined;
|
|
1693
1706
|
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
1694
1707
|
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
1695
1708
|
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
@@ -1739,11 +1752,6 @@ declare const meta: {
|
|
|
1739
1752
|
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1740
1753
|
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
1741
1754
|
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
1742
|
-
readonly inline?: import('vue').Prop<boolean | {
|
|
1743
|
-
input?: boolean;
|
|
1744
|
-
} | undefined, boolean | {
|
|
1745
|
-
input?: boolean;
|
|
1746
|
-
} | undefined> | null | undefined;
|
|
1747
1755
|
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1748
1756
|
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1749
1757
|
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -2223,6 +2231,11 @@ declare const meta: {
|
|
|
2223
2231
|
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
2224
2232
|
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
2225
2233
|
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2234
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
2235
|
+
input?: boolean;
|
|
2236
|
+
} | undefined, boolean | {
|
|
2237
|
+
input?: boolean;
|
|
2238
|
+
} | undefined> | null | undefined;
|
|
2226
2239
|
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
2227
2240
|
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
2228
2241
|
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
@@ -2272,11 +2285,6 @@ declare const meta: {
|
|
|
2272
2285
|
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2273
2286
|
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
2274
2287
|
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
2275
|
-
readonly inline?: import('vue').Prop<boolean | {
|
|
2276
|
-
input?: boolean;
|
|
2277
|
-
} | undefined, boolean | {
|
|
2278
|
-
input?: boolean;
|
|
2279
|
-
} | undefined> | null | undefined;
|
|
2280
2288
|
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
2281
2289
|
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
2282
2290
|
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -2627,6 +2635,7 @@ declare const meta: {
|
|
|
2627
2635
|
customFormatCallback?: any;
|
|
2628
2636
|
inputLabel?: string;
|
|
2629
2637
|
iconLeft?: import('..').UiIconName | null;
|
|
2638
|
+
inline?: boolean;
|
|
2630
2639
|
utc?: boolean;
|
|
2631
2640
|
teleport?: boolean | string;
|
|
2632
2641
|
closeOnScroll?: boolean;
|
|
@@ -2669,6 +2678,7 @@ declare const meta: {
|
|
|
2669
2678
|
monthPicker: boolean;
|
|
2670
2679
|
customFormatCallback: any;
|
|
2671
2680
|
inputLabel: string;
|
|
2681
|
+
inline: boolean;
|
|
2672
2682
|
utc: boolean;
|
|
2673
2683
|
teleport: boolean | string;
|
|
2674
2684
|
closeOnScroll: boolean;
|
|
@@ -2709,6 +2719,7 @@ declare const meta: {
|
|
|
2709
2719
|
customFormatCallback?: any;
|
|
2710
2720
|
inputLabel?: string;
|
|
2711
2721
|
iconLeft?: import('..').UiIconName | null;
|
|
2722
|
+
inline?: boolean;
|
|
2712
2723
|
utc?: boolean;
|
|
2713
2724
|
teleport?: boolean | string;
|
|
2714
2725
|
closeOnScroll?: boolean;
|
|
@@ -2757,6 +2768,7 @@ declare const meta: {
|
|
|
2757
2768
|
monthPicker: boolean;
|
|
2758
2769
|
customFormatCallback: any;
|
|
2759
2770
|
inputLabel: string;
|
|
2771
|
+
inline: boolean;
|
|
2760
2772
|
utc: boolean;
|
|
2761
2773
|
teleport: boolean | string;
|
|
2762
2774
|
closeOnScroll: boolean;
|
|
@@ -2800,6 +2812,7 @@ declare const meta: {
|
|
|
2800
2812
|
customFormatCallback?: any;
|
|
2801
2813
|
inputLabel?: string;
|
|
2802
2814
|
iconLeft?: import('..').UiIconName | null;
|
|
2815
|
+
inline?: boolean;
|
|
2803
2816
|
utc?: boolean;
|
|
2804
2817
|
teleport?: boolean | string;
|
|
2805
2818
|
closeOnScroll?: boolean;
|
|
@@ -2848,6 +2861,7 @@ declare const meta: {
|
|
|
2848
2861
|
monthPicker: boolean;
|
|
2849
2862
|
customFormatCallback: any;
|
|
2850
2863
|
inputLabel: string;
|
|
2864
|
+
inline: boolean;
|
|
2851
2865
|
utc: boolean;
|
|
2852
2866
|
teleport: boolean | string;
|
|
2853
2867
|
closeOnScroll: boolean;
|
|
@@ -3020,6 +3034,11 @@ declare const meta: {
|
|
|
3020
3034
|
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
3021
3035
|
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
3022
3036
|
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3037
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
3038
|
+
input?: boolean;
|
|
3039
|
+
} | undefined, boolean | {
|
|
3040
|
+
input?: boolean;
|
|
3041
|
+
} | undefined> | null | undefined;
|
|
3023
3042
|
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
3024
3043
|
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
3025
3044
|
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
@@ -3069,11 +3088,6 @@ declare const meta: {
|
|
|
3069
3088
|
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3070
3089
|
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
3071
3090
|
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
3072
|
-
readonly inline?: import('vue').Prop<boolean | {
|
|
3073
|
-
input?: boolean;
|
|
3074
|
-
} | undefined, boolean | {
|
|
3075
|
-
input?: boolean;
|
|
3076
|
-
} | undefined> | null | undefined;
|
|
3077
3091
|
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3078
3092
|
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3079
3093
|
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -3553,6 +3567,11 @@ declare const meta: {
|
|
|
3553
3567
|
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
3554
3568
|
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
3555
3569
|
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3570
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
3571
|
+
input?: boolean;
|
|
3572
|
+
} | undefined, boolean | {
|
|
3573
|
+
input?: boolean;
|
|
3574
|
+
} | undefined> | null | undefined;
|
|
3556
3575
|
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
3557
3576
|
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
3558
3577
|
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
@@ -3602,11 +3621,6 @@ declare const meta: {
|
|
|
3602
3621
|
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3603
3622
|
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
3604
3623
|
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
3605
|
-
readonly inline?: import('vue').Prop<boolean | {
|
|
3606
|
-
input?: boolean;
|
|
3607
|
-
} | undefined, boolean | {
|
|
3608
|
-
input?: boolean;
|
|
3609
|
-
} | undefined> | null | undefined;
|
|
3610
3624
|
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3611
3625
|
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3612
3626
|
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -3957,6 +3971,7 @@ declare const meta: {
|
|
|
3957
3971
|
customFormatCallback?: any;
|
|
3958
3972
|
inputLabel?: string;
|
|
3959
3973
|
iconLeft?: import('..').UiIconName | null;
|
|
3974
|
+
inline?: boolean;
|
|
3960
3975
|
utc?: boolean;
|
|
3961
3976
|
teleport?: boolean | string;
|
|
3962
3977
|
closeOnScroll?: boolean;
|
|
@@ -3999,6 +4014,7 @@ declare const meta: {
|
|
|
3999
4014
|
monthPicker: boolean;
|
|
4000
4015
|
customFormatCallback: any;
|
|
4001
4016
|
inputLabel: string;
|
|
4017
|
+
inline: boolean;
|
|
4002
4018
|
utc: boolean;
|
|
4003
4019
|
teleport: boolean | string;
|
|
4004
4020
|
closeOnScroll: boolean;
|
|
@@ -4039,6 +4055,7 @@ declare const meta: {
|
|
|
4039
4055
|
customFormatCallback?: any;
|
|
4040
4056
|
inputLabel?: string;
|
|
4041
4057
|
iconLeft?: import('..').UiIconName | null;
|
|
4058
|
+
inline?: boolean;
|
|
4042
4059
|
utc?: boolean;
|
|
4043
4060
|
teleport?: boolean | string;
|
|
4044
4061
|
closeOnScroll?: boolean;
|
|
@@ -4087,6 +4104,7 @@ declare const meta: {
|
|
|
4087
4104
|
monthPicker: boolean;
|
|
4088
4105
|
customFormatCallback: any;
|
|
4089
4106
|
inputLabel: string;
|
|
4107
|
+
inline: boolean;
|
|
4090
4108
|
utc: boolean;
|
|
4091
4109
|
teleport: boolean | string;
|
|
4092
4110
|
closeOnScroll: boolean;
|
|
@@ -4131,6 +4149,7 @@ declare const meta: {
|
|
|
4131
4149
|
customFormatCallback?: any;
|
|
4132
4150
|
inputLabel?: string;
|
|
4133
4151
|
iconLeft?: import('..').UiIconName | null;
|
|
4152
|
+
inline?: boolean;
|
|
4134
4153
|
utc?: boolean;
|
|
4135
4154
|
teleport?: boolean | string;
|
|
4136
4155
|
closeOnScroll?: boolean;
|
|
@@ -4179,6 +4198,7 @@ declare const meta: {
|
|
|
4179
4198
|
monthPicker: boolean;
|
|
4180
4199
|
customFormatCallback: any;
|
|
4181
4200
|
inputLabel: string;
|
|
4201
|
+
inline: boolean;
|
|
4182
4202
|
utc: boolean;
|
|
4183
4203
|
teleport: boolean | string;
|
|
4184
4204
|
closeOnScroll: boolean;
|
|
@@ -4351,6 +4371,11 @@ declare const meta: {
|
|
|
4351
4371
|
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
4352
4372
|
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
4353
4373
|
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
4374
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
4375
|
+
input?: boolean;
|
|
4376
|
+
} | undefined, boolean | {
|
|
4377
|
+
input?: boolean;
|
|
4378
|
+
} | undefined> | null | undefined;
|
|
4354
4379
|
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
4355
4380
|
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
4356
4381
|
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
@@ -4400,11 +4425,6 @@ declare const meta: {
|
|
|
4400
4425
|
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
4401
4426
|
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
4402
4427
|
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
4403
|
-
readonly inline?: import('vue').Prop<boolean | {
|
|
4404
|
-
input?: boolean;
|
|
4405
|
-
} | undefined, boolean | {
|
|
4406
|
-
input?: boolean;
|
|
4407
|
-
} | undefined> | null | undefined;
|
|
4408
4428
|
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
4409
4429
|
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
4410
4430
|
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -4884,6 +4904,11 @@ declare const meta: {
|
|
|
4884
4904
|
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
4885
4905
|
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
4886
4906
|
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
4907
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
4908
|
+
input?: boolean;
|
|
4909
|
+
} | undefined, boolean | {
|
|
4910
|
+
input?: boolean;
|
|
4911
|
+
} | undefined> | null | undefined;
|
|
4887
4912
|
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
4888
4913
|
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
4889
4914
|
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
@@ -4933,11 +4958,6 @@ declare const meta: {
|
|
|
4933
4958
|
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
4934
4959
|
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
4935
4960
|
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
4936
|
-
readonly inline?: import('vue').Prop<boolean | {
|
|
4937
|
-
input?: boolean;
|
|
4938
|
-
} | undefined, boolean | {
|
|
4939
|
-
input?: boolean;
|
|
4940
|
-
} | undefined> | null | undefined;
|
|
4941
4961
|
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
4942
4962
|
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
4943
4963
|
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -5288,6 +5308,7 @@ declare const meta: {
|
|
|
5288
5308
|
customFormatCallback?: any;
|
|
5289
5309
|
inputLabel?: string;
|
|
5290
5310
|
iconLeft?: import('..').UiIconName | null;
|
|
5311
|
+
inline?: boolean;
|
|
5291
5312
|
utc?: boolean;
|
|
5292
5313
|
teleport?: boolean | string;
|
|
5293
5314
|
closeOnScroll?: boolean;
|
|
@@ -5330,6 +5351,7 @@ declare const meta: {
|
|
|
5330
5351
|
monthPicker: boolean;
|
|
5331
5352
|
customFormatCallback: any;
|
|
5332
5353
|
inputLabel: string;
|
|
5354
|
+
inline: boolean;
|
|
5333
5355
|
utc: boolean;
|
|
5334
5356
|
teleport: boolean | string;
|
|
5335
5357
|
closeOnScroll: boolean;
|
|
@@ -5370,6 +5392,7 @@ declare const meta: {
|
|
|
5370
5392
|
customFormatCallback?: any;
|
|
5371
5393
|
inputLabel?: string;
|
|
5372
5394
|
iconLeft?: import('..').UiIconName | null;
|
|
5395
|
+
inline?: boolean;
|
|
5373
5396
|
utc?: boolean;
|
|
5374
5397
|
teleport?: boolean | string;
|
|
5375
5398
|
closeOnScroll?: boolean;
|
|
@@ -5418,6 +5441,7 @@ declare const meta: {
|
|
|
5418
5441
|
monthPicker: boolean;
|
|
5419
5442
|
customFormatCallback: any;
|
|
5420
5443
|
inputLabel: string;
|
|
5444
|
+
inline: boolean;
|
|
5421
5445
|
utc: boolean;
|
|
5422
5446
|
teleport: boolean | string;
|
|
5423
5447
|
closeOnScroll: boolean;
|
|
@@ -39,6 +39,7 @@ type __VLS_Props = {
|
|
|
39
39
|
customFormatCallback?: any;
|
|
40
40
|
inputLabel?: string;
|
|
41
41
|
iconLeft?: UiIconName | null;
|
|
42
|
+
inline?: boolean;
|
|
42
43
|
utc?: boolean;
|
|
43
44
|
teleport?: boolean | string;
|
|
44
45
|
closeOnScroll?: boolean;
|
|
@@ -217,6 +218,11 @@ declare function __VLS_template(): {
|
|
|
217
218
|
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
218
219
|
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
219
220
|
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
221
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
222
|
+
input?: boolean;
|
|
223
|
+
} | undefined, boolean | {
|
|
224
|
+
input?: boolean;
|
|
225
|
+
} | undefined> | null | undefined;
|
|
220
226
|
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
221
227
|
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
222
228
|
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
@@ -266,11 +272,6 @@ declare function __VLS_template(): {
|
|
|
266
272
|
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
267
273
|
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
268
274
|
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
269
|
-
readonly inline?: import('vue').Prop<boolean | {
|
|
270
|
-
input?: boolean;
|
|
271
|
-
} | undefined, boolean | {
|
|
272
|
-
input?: boolean;
|
|
273
|
-
} | undefined> | null | undefined;
|
|
274
275
|
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
275
276
|
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
276
277
|
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -750,6 +751,11 @@ declare function __VLS_template(): {
|
|
|
750
751
|
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
751
752
|
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
752
753
|
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
754
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
755
|
+
input?: boolean;
|
|
756
|
+
} | undefined, boolean | {
|
|
757
|
+
input?: boolean;
|
|
758
|
+
} | undefined> | null | undefined;
|
|
753
759
|
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
754
760
|
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
755
761
|
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
@@ -799,11 +805,6 @@ declare function __VLS_template(): {
|
|
|
799
805
|
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
800
806
|
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
801
807
|
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
802
|
-
readonly inline?: import('vue').Prop<boolean | {
|
|
803
|
-
input?: boolean;
|
|
804
|
-
} | undefined, boolean | {
|
|
805
|
-
input?: boolean;
|
|
806
|
-
} | undefined> | null | undefined;
|
|
807
808
|
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
808
809
|
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
809
810
|
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -1163,6 +1164,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1163
1164
|
monthPicker: boolean;
|
|
1164
1165
|
customFormatCallback: any;
|
|
1165
1166
|
inputLabel: string;
|
|
1167
|
+
inline: boolean;
|
|
1166
1168
|
utc: boolean;
|
|
1167
1169
|
teleport: boolean | string;
|
|
1168
1170
|
closeOnScroll: boolean;
|
|
@@ -1335,6 +1337,11 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1335
1337
|
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
1336
1338
|
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
1337
1339
|
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1340
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
1341
|
+
input?: boolean;
|
|
1342
|
+
} | undefined, boolean | {
|
|
1343
|
+
input?: boolean;
|
|
1344
|
+
} | undefined> | null | undefined;
|
|
1338
1345
|
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
1339
1346
|
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
1340
1347
|
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
@@ -1384,11 +1391,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1384
1391
|
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1385
1392
|
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
1386
1393
|
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
1387
|
-
readonly inline?: import('vue').Prop<boolean | {
|
|
1388
|
-
input?: boolean;
|
|
1389
|
-
} | undefined, boolean | {
|
|
1390
|
-
input?: boolean;
|
|
1391
|
-
} | undefined> | null | undefined;
|
|
1392
1394
|
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1393
1395
|
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1394
1396
|
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -1868,6 +1870,11 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1868
1870
|
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
1869
1871
|
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
1870
1872
|
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1873
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
1874
|
+
input?: boolean;
|
|
1875
|
+
} | undefined, boolean | {
|
|
1876
|
+
input?: boolean;
|
|
1877
|
+
} | undefined> | null | undefined;
|
|
1871
1878
|
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
1872
1879
|
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
1873
1880
|
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
@@ -1917,11 +1924,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1917
1924
|
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1918
1925
|
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
1919
1926
|
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
1920
|
-
readonly inline?: import('vue').Prop<boolean | {
|
|
1921
|
-
input?: boolean;
|
|
1922
|
-
} | undefined, boolean | {
|
|
1923
|
-
input?: boolean;
|
|
1924
|
-
} | undefined> | null | undefined;
|
|
1925
1927
|
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1926
1928
|
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1927
1929
|
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -12,6 +12,8 @@ declare const meta: {
|
|
|
12
12
|
active?: boolean;
|
|
13
13
|
hasIcon?: boolean;
|
|
14
14
|
iconLeft?: import('..').UiIconName | null;
|
|
15
|
+
iconLeftClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
16
|
+
iconRightClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
15
17
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
18
|
click: () => any;
|
|
17
19
|
}, string, import('vue').PublicProps, Readonly<{
|
|
@@ -25,6 +27,8 @@ declare const meta: {
|
|
|
25
27
|
active?: boolean;
|
|
26
28
|
hasIcon?: boolean;
|
|
27
29
|
iconLeft?: import('..').UiIconName | null;
|
|
30
|
+
iconLeftClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
31
|
+
iconRightClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
28
32
|
}> & Readonly<{
|
|
29
33
|
onClick?: (() => any) | undefined;
|
|
30
34
|
}>, {
|
|
@@ -38,6 +42,8 @@ declare const meta: {
|
|
|
38
42
|
active: boolean;
|
|
39
43
|
hasIcon: boolean;
|
|
40
44
|
iconLeft: import('..').UiIconName | null;
|
|
45
|
+
iconLeftClass: string | number | bigint | boolean | import('clsx').ClassArray | import('clsx').ClassDictionary | import('clsx').ClassValue[] | null;
|
|
46
|
+
iconRightClass: string | number | bigint | boolean | import('clsx').ClassArray | import('clsx').ClassDictionary | import('clsx').ClassValue[] | null;
|
|
41
47
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
42
48
|
argTypes: {
|
|
43
49
|
title: {
|
|
@@ -75,6 +81,12 @@ declare const meta: {
|
|
|
75
81
|
control: "select";
|
|
76
82
|
options: string[];
|
|
77
83
|
};
|
|
84
|
+
iconLeftClass: {
|
|
85
|
+
control: "text";
|
|
86
|
+
};
|
|
87
|
+
iconRightClass: {
|
|
88
|
+
control: "text";
|
|
89
|
+
};
|
|
78
90
|
};
|
|
79
91
|
args: {
|
|
80
92
|
title: string;
|
|
@@ -86,6 +98,8 @@ declare const meta: {
|
|
|
86
98
|
hasIcon: true;
|
|
87
99
|
iconSize: "xs";
|
|
88
100
|
iconLeft: null;
|
|
101
|
+
iconLeftClass: undefined;
|
|
102
|
+
iconRightClass: undefined;
|
|
89
103
|
};
|
|
90
104
|
render: (args: import('@storybook/vue3').ComponentPropsAndSlots<import('vue').DefineComponent<{
|
|
91
105
|
title?: string;
|
|
@@ -98,6 +112,8 @@ declare const meta: {
|
|
|
98
112
|
active?: boolean;
|
|
99
113
|
hasIcon?: boolean;
|
|
100
114
|
iconLeft?: import('..').UiIconName | null;
|
|
115
|
+
iconLeftClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
116
|
+
iconRightClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
101
117
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
102
118
|
click: () => any;
|
|
103
119
|
}, string, import('vue').PublicProps, Readonly<{
|
|
@@ -111,6 +127,8 @@ declare const meta: {
|
|
|
111
127
|
active?: boolean;
|
|
112
128
|
hasIcon?: boolean;
|
|
113
129
|
iconLeft?: import('..').UiIconName | null;
|
|
130
|
+
iconLeftClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
131
|
+
iconRightClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
114
132
|
}> & Readonly<{
|
|
115
133
|
onClick?: (() => any) | undefined;
|
|
116
134
|
}>, {
|
|
@@ -124,6 +142,8 @@ declare const meta: {
|
|
|
124
142
|
active: boolean;
|
|
125
143
|
hasIcon: boolean;
|
|
126
144
|
iconLeft: import('..').UiIconName | null;
|
|
145
|
+
iconLeftClass: string | number | bigint | boolean | import('clsx').ClassArray | import('clsx').ClassDictionary | import('clsx').ClassValue[] | null;
|
|
146
|
+
iconRightClass: string | number | bigint | boolean | import('clsx').ClassArray | import('clsx').ClassDictionary | import('clsx').ClassValue[] | null;
|
|
127
147
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>>) => {
|
|
128
148
|
setup(this: void): {
|
|
129
149
|
args: import('@storybook/vue3').ComponentPropsAndSlots<import('vue').DefineComponent<{
|
|
@@ -137,6 +157,8 @@ declare const meta: {
|
|
|
137
157
|
active?: boolean;
|
|
138
158
|
hasIcon?: boolean;
|
|
139
159
|
iconLeft?: import('..').UiIconName | null;
|
|
160
|
+
iconLeftClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
161
|
+
iconRightClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
140
162
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
141
163
|
click: () => any;
|
|
142
164
|
}, string, import('vue').PublicProps, Readonly<{
|
|
@@ -150,6 +172,8 @@ declare const meta: {
|
|
|
150
172
|
active?: boolean;
|
|
151
173
|
hasIcon?: boolean;
|
|
152
174
|
iconLeft?: import('..').UiIconName | null;
|
|
175
|
+
iconLeftClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
176
|
+
iconRightClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
153
177
|
}> & Readonly<{
|
|
154
178
|
onClick?: (() => any) | undefined;
|
|
155
179
|
}>, {
|
|
@@ -163,6 +187,8 @@ declare const meta: {
|
|
|
163
187
|
active: boolean;
|
|
164
188
|
hasIcon: boolean;
|
|
165
189
|
iconLeft: import('..').UiIconName | null;
|
|
190
|
+
iconLeftClass: string | number | bigint | boolean | import('clsx').ClassArray | import('clsx').ClassDictionary | import('clsx').ClassValue[] | null;
|
|
191
|
+
iconRightClass: string | number | bigint | boolean | import('clsx').ClassArray | import('clsx').ClassDictionary | import('clsx').ClassValue[] | null;
|
|
166
192
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>>;
|
|
167
193
|
};
|
|
168
194
|
components: {
|
|
@@ -177,6 +203,8 @@ declare const meta: {
|
|
|
177
203
|
active?: boolean;
|
|
178
204
|
hasIcon?: boolean;
|
|
179
205
|
iconLeft?: import('..').UiIconName | null;
|
|
206
|
+
iconLeftClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
207
|
+
iconRightClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
180
208
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
181
209
|
click: () => any;
|
|
182
210
|
}, string, import('vue').PublicProps, Readonly<{
|
|
@@ -190,6 +218,8 @@ declare const meta: {
|
|
|
190
218
|
active?: boolean;
|
|
191
219
|
hasIcon?: boolean;
|
|
192
220
|
iconLeft?: import('..').UiIconName | null;
|
|
221
|
+
iconLeftClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
222
|
+
iconRightClass?: import('clsx').ClassValue | import('clsx').ClassValue[];
|
|
193
223
|
}> & Readonly<{
|
|
194
224
|
onClick?: (() => any) | undefined;
|
|
195
225
|
}>, {
|
|
@@ -203,6 +233,8 @@ declare const meta: {
|
|
|
203
233
|
active: boolean;
|
|
204
234
|
hasIcon: boolean;
|
|
205
235
|
iconLeft: import('..').UiIconName | null;
|
|
236
|
+
iconLeftClass: string | number | bigint | boolean | import('clsx').ClassArray | import('clsx').ClassDictionary | import('clsx').ClassValue[] | null;
|
|
237
|
+
iconRightClass: string | number | bigint | boolean | import('clsx').ClassArray | import('clsx').ClassDictionary | import('clsx').ClassValue[] | null;
|
|
206
238
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
207
239
|
};
|
|
208
240
|
template: string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UiIconName } from '../UiIcon/UiIcon.vue';
|
|
2
|
+
import { ClassValue } from 'clsx';
|
|
2
3
|
type __VLS_Props = {
|
|
3
4
|
title?: string;
|
|
4
5
|
variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
|
|
@@ -10,6 +11,8 @@ type __VLS_Props = {
|
|
|
10
11
|
active?: boolean;
|
|
11
12
|
hasIcon?: boolean;
|
|
12
13
|
iconLeft?: UiIconName | null;
|
|
14
|
+
iconLeftClass?: ClassValue | ClassValue[];
|
|
15
|
+
iconRightClass?: ClassValue | ClassValue[];
|
|
13
16
|
};
|
|
14
17
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
18
|
click: () => any;
|
|
@@ -26,5 +29,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
26
29
|
active: boolean;
|
|
27
30
|
hasIcon: boolean;
|
|
28
31
|
iconLeft: UiIconName | null;
|
|
32
|
+
iconLeftClass: string | number | bigint | boolean | import('clsx').ClassArray | import('clsx').ClassDictionary | ClassValue[] | null;
|
|
33
|
+
iconRightClass: string | number | bigint | boolean | import('clsx').ClassArray | import('clsx').ClassDictionary | ClassValue[] | null;
|
|
29
34
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
30
35
|
export default _default;
|