yuyeon 0.0.42-test20 → 0.0.42
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/style.css +1 -1
- package/dist/yuyeon.js +3566 -3269
- package/dist/yuyeon.umd.cjs +6 -6
- package/lib/components/button/YButton.mjs +4 -1
- package/lib/components/button/YButton.mjs.map +1 -1
- package/lib/components/checkbox/YCheckbox.mjs +2 -1
- package/lib/components/checkbox/YCheckbox.mjs.map +1 -1
- package/lib/components/date-picker/YDateCalendar.mjs +5 -5
- package/lib/components/date-picker/YDateCalendar.mjs.map +1 -1
- package/lib/components/date-picker/YDatePicker.mjs +112 -4
- package/lib/components/date-picker/YDatePicker.mjs.map +1 -1
- package/lib/components/date-picker/YDatePicker.scss +3 -0
- package/lib/components/date-picker/YDatePickerControl.mjs +84 -6
- package/lib/components/date-picker/YDatePickerControl.mjs.map +1 -1
- package/lib/components/date-picker/YDatePickerControl.scss +33 -1
- package/lib/components/date-picker/YMonthPicker.mjs +57 -0
- package/lib/components/date-picker/YMonthPicker.mjs.map +1 -0
- package/lib/components/date-picker/YMonthPicker.scss +25 -0
- package/lib/components/date-picker/YYearPicker.mjs +82 -0
- package/lib/components/date-picker/YYearPicker.mjs.map +1 -0
- package/lib/components/date-picker/YYearPicker.scss +23 -0
- package/lib/components/date-picker/index.mjs +2 -0
- package/lib/components/date-picker/index.mjs.map +1 -1
- package/lib/components/dialog/YDialog.mjs +36 -41
- package/lib/components/dialog/YDialog.mjs.map +1 -1
- package/lib/components/dialog/YDialog.scss +0 -1
- package/lib/components/field-input/YFieldInput.scss +1 -0
- package/lib/components/icons/index.mjs +12 -0
- package/lib/components/icons/index.mjs.map +1 -1
- package/lib/components/layer/YLayer.mjs +15 -31
- package/lib/components/layer/YLayer.mjs.map +1 -1
- package/lib/components/layer/base.mjs +36 -0
- package/lib/components/layer/base.mjs.map +1 -0
- package/lib/components/select/YSelect.mjs +14 -8
- package/lib/components/select/YSelect.mjs.map +1 -1
- package/lib/components/select/YSelect.scss +4 -0
- package/lib/components/textarea/YTextarea.mjs +3 -1
- package/lib/components/textarea/YTextarea.mjs.map +1 -1
- package/lib/components/tree-view/util.mjs +2 -1
- package/lib/components/tree-view/util.mjs.map +1 -1
- package/lib/composables/choice.mjs +2 -1
- package/lib/composables/choice.mjs.map +1 -1
- package/lib/composables/coordinate/index.mjs.map +1 -1
- package/lib/composables/layer-group.mjs +10 -3
- package/lib/composables/layer-group.mjs.map +1 -1
- package/lib/composables/list-items.mjs +13 -9
- package/lib/composables/list-items.mjs.map +1 -1
- package/lib/styles/util/_mixin.scss +0 -1
- package/package.json +1 -1
- package/types/components/button/YButton.d.ts +3 -1
- package/types/components/checkbox/YCheckbox.d.ts +2 -2
- package/types/components/checkbox/YInputCheckbox.d.ts +2 -2
- package/types/components/date-picker/YDatePicker.d.ts +117 -0
- package/types/components/date-picker/YDatePickerControl.d.ts +128 -0
- package/types/components/date-picker/YMonthPicker.d.ts +28 -0
- package/types/components/date-picker/YYearPicker.d.ts +43 -0
- package/types/components/date-picker/index.d.ts +2 -0
- package/types/components/dialog/YDialog.d.ts +419 -15
- package/types/components/dropdown/YDropdown.d.ts +13 -13
- package/types/components/field-input/YFieldInput.d.ts +2 -2
- package/types/components/icons/index.d.ts +36 -0
- package/types/components/input/YInput.d.ts +2 -2
- package/types/components/layer/YLayer.d.ts +19 -19
- package/types/components/layer/base.d.ts +13 -0
- package/types/components/menu/YMenu.d.ts +12 -12
- package/types/components/pagination/YPagination.d.ts +2 -2
- package/types/components/select/YSelect.d.ts +58 -58
- package/types/components/tab/YTabs.d.ts +7 -0
- package/types/components/textarea/YTextarea.d.ts +6 -6
- package/types/components/tooltip/YTooltip.d.ts +14 -14
- package/types/composables/choice.d.ts +5 -0
- package/types/composables/coordinate/index.d.ts +8 -8
- package/types/composables/list-items.d.ts +3 -10
- package/types/shims.d.ts +4 -0
|
@@ -108,7 +108,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
108
108
|
closeDelay?: number | undefined;
|
|
109
109
|
coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
|
|
110
110
|
position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
|
|
111
|
-
align?: "end" | "start" | "center" | undefined;
|
|
111
|
+
align?: "top" | "end" | "bottom" | "start" | "center" | undefined;
|
|
112
112
|
origin?: string | undefined;
|
|
113
113
|
viewportMargin?: number | undefined;
|
|
114
114
|
transition?: string | (import("vue").TransitionProps & {
|
|
@@ -129,7 +129,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
129
129
|
readonly eager?: boolean | undefined;
|
|
130
130
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
131
131
|
readonly closeClickScrim?: boolean | undefined;
|
|
132
|
-
readonly offset?: string | number |
|
|
132
|
+
readonly offset?: string | number | string[] | undefined;
|
|
133
133
|
readonly minWidth?: string | number | undefined;
|
|
134
134
|
readonly maxWidth?: string | number | undefined;
|
|
135
135
|
readonly minHeight?: string | number | undefined;
|
|
@@ -190,7 +190,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
190
190
|
closeDelay?: number | undefined;
|
|
191
191
|
coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
|
|
192
192
|
position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
|
|
193
|
-
align?: "end" | "start" | "center" | undefined;
|
|
193
|
+
align?: "top" | "end" | "bottom" | "start" | "center" | undefined;
|
|
194
194
|
origin?: string | undefined;
|
|
195
195
|
viewportMargin?: number | undefined;
|
|
196
196
|
transition?: string | (import("vue").TransitionProps & {
|
|
@@ -211,7 +211,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
211
211
|
readonly eager?: boolean | undefined;
|
|
212
212
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
213
213
|
readonly closeClickScrim?: boolean | undefined;
|
|
214
|
-
readonly offset?: string | number |
|
|
214
|
+
readonly offset?: string | number | string[] | undefined;
|
|
215
215
|
readonly minWidth?: string | number | undefined;
|
|
216
216
|
readonly maxWidth?: string | number | undefined;
|
|
217
217
|
readonly minHeight?: string | number | undefined;
|
|
@@ -272,7 +272,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
272
272
|
closeDelay?: number | undefined;
|
|
273
273
|
coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
|
|
274
274
|
position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
|
|
275
|
-
align?: "end" | "start" | "center" | undefined;
|
|
275
|
+
align?: "top" | "end" | "bottom" | "start" | "center" | undefined;
|
|
276
276
|
origin?: string | undefined;
|
|
277
277
|
viewportMargin?: number | undefined;
|
|
278
278
|
transition?: string | (import("vue").TransitionProps & {
|
|
@@ -293,7 +293,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
293
293
|
readonly eager?: boolean | undefined;
|
|
294
294
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
295
295
|
readonly closeClickScrim?: boolean | undefined;
|
|
296
|
-
readonly offset?: string | number |
|
|
296
|
+
readonly offset?: string | number | string[] | undefined;
|
|
297
297
|
readonly minWidth?: string | number | undefined;
|
|
298
298
|
readonly maxWidth?: string | number | undefined;
|
|
299
299
|
readonly minHeight?: string | number | undefined;
|
|
@@ -352,7 +352,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
352
352
|
closeDelay?: number | undefined;
|
|
353
353
|
coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
|
|
354
354
|
position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
|
|
355
|
-
align?: "end" | "start" | "center" | undefined;
|
|
355
|
+
align?: "top" | "end" | "bottom" | "start" | "center" | undefined;
|
|
356
356
|
origin?: string | undefined;
|
|
357
357
|
viewportMargin?: number | undefined;
|
|
358
358
|
transition?: string | (import("vue").TransitionProps & {
|
|
@@ -373,7 +373,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
373
373
|
readonly eager?: boolean | undefined;
|
|
374
374
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
375
375
|
readonly closeClickScrim?: boolean | undefined;
|
|
376
|
-
readonly offset?: string | number |
|
|
376
|
+
readonly offset?: string | number | string[] | undefined;
|
|
377
377
|
readonly minWidth?: string | number | undefined;
|
|
378
378
|
readonly maxWidth?: string | number | undefined;
|
|
379
379
|
readonly minHeight?: string | number | undefined;
|
|
@@ -433,7 +433,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
433
433
|
closeDelay?: number | undefined;
|
|
434
434
|
coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
|
|
435
435
|
position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
|
|
436
|
-
align?: "end" | "start" | "center" | undefined;
|
|
436
|
+
align?: "top" | "end" | "bottom" | "start" | "center" | undefined;
|
|
437
437
|
origin?: string | undefined;
|
|
438
438
|
viewportMargin?: number | undefined;
|
|
439
439
|
transition?: string | (import("vue").TransitionProps & {
|
|
@@ -454,7 +454,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
454
454
|
readonly eager?: boolean | undefined;
|
|
455
455
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
456
456
|
readonly closeClickScrim?: boolean | undefined;
|
|
457
|
-
readonly offset?: string | number |
|
|
457
|
+
readonly offset?: string | number | string[] | undefined;
|
|
458
458
|
readonly minWidth?: string | number | undefined;
|
|
459
459
|
readonly maxWidth?: string | number | undefined;
|
|
460
460
|
readonly minHeight?: string | number | undefined;
|
|
@@ -513,7 +513,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
513
513
|
closeDelay?: number | undefined;
|
|
514
514
|
coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
|
|
515
515
|
position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
|
|
516
|
-
align?: "end" | "start" | "center" | undefined;
|
|
516
|
+
align?: "top" | "end" | "bottom" | "start" | "center" | undefined;
|
|
517
517
|
origin?: string | undefined;
|
|
518
518
|
viewportMargin?: number | undefined;
|
|
519
519
|
transition?: string | (import("vue").TransitionProps & {
|
|
@@ -534,7 +534,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
534
534
|
readonly eager?: boolean | undefined;
|
|
535
535
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
536
536
|
readonly closeClickScrim?: boolean | undefined;
|
|
537
|
-
readonly offset?: string | number |
|
|
537
|
+
readonly offset?: string | number | string[] | undefined;
|
|
538
538
|
readonly minWidth?: string | number | undefined;
|
|
539
539
|
readonly maxWidth?: string | number | undefined;
|
|
540
540
|
readonly minHeight?: string | number | undefined;
|
|
@@ -659,14 +659,14 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
659
659
|
default: unknown extends Defaults["position"] ? NonNullable<"default" | "top" | "end" | "right" | "bottom" | "left" | "start"> : NonNullable<NonNullable<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">> | Defaults["position"];
|
|
660
660
|
};
|
|
661
661
|
align: unknown extends Defaults["align"] ? {
|
|
662
|
-
type: PropType<"end" | "start" | "center">;
|
|
662
|
+
type: PropType<"top" | "end" | "bottom" | "start" | "center">;
|
|
663
663
|
default: string;
|
|
664
664
|
} : Omit<{
|
|
665
|
-
type: PropType<"end" | "start" | "center">;
|
|
665
|
+
type: PropType<"top" | "end" | "bottom" | "start" | "center">;
|
|
666
666
|
default: string;
|
|
667
667
|
}, "type" | "default"> & {
|
|
668
|
-
type: PropType<unknown extends Defaults["align"] ? "end" | "start" | "center" : NonNullable<"end" | "start" | "center"> | Defaults["align"]>;
|
|
669
|
-
default: unknown extends Defaults["align"] ? "end" | "start" | "center" : NonNullable<"end" | "start" | "center"> | Defaults["align"];
|
|
668
|
+
type: PropType<unknown extends Defaults["align"] ? "top" | "end" | "bottom" | "start" | "center" : NonNullable<"top" | "end" | "bottom" | "start" | "center"> | Defaults["align"]>;
|
|
669
|
+
default: unknown extends Defaults["align"] ? "top" | "end" | "bottom" | "start" | "center" : NonNullable<"top" | "end" | "bottom" | "start" | "center"> | Defaults["align"];
|
|
670
670
|
};
|
|
671
671
|
origin: unknown extends Defaults["origin"] ? {
|
|
672
672
|
type: StringConstructor;
|
|
@@ -679,12 +679,12 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
679
679
|
default: unknown extends Defaults["origin"] ? string : string | Defaults["origin"];
|
|
680
680
|
};
|
|
681
681
|
offset: unknown extends Defaults["offset"] ? {
|
|
682
|
-
type:
|
|
682
|
+
type: PropType<string | number | string[]>;
|
|
683
683
|
} : Omit<{
|
|
684
|
-
type:
|
|
684
|
+
type: PropType<string | number | string[]>;
|
|
685
685
|
}, "type" | "default"> & {
|
|
686
|
-
type: PropType<unknown extends Defaults["offset"] ? string | number |
|
|
687
|
-
default: unknown extends Defaults["offset"] ? string | number |
|
|
686
|
+
type: PropType<unknown extends Defaults["offset"] ? string | number | string[] : NonNullable<string | number | string[]> | Defaults["offset"]>;
|
|
687
|
+
default: unknown extends Defaults["offset"] ? string | number | string[] : NonNullable<string | number | string[]> | Defaults["offset"];
|
|
688
688
|
};
|
|
689
689
|
viewportMargin: unknown extends Defaults["viewportMargin"] ? {
|
|
690
690
|
type: NumberConstructor;
|
|
@@ -981,7 +981,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
981
981
|
closeDelay?: number | undefined;
|
|
982
982
|
coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
|
|
983
983
|
position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
|
|
984
|
-
align?: "end" | "start" | "center" | undefined;
|
|
984
|
+
align?: "top" | "end" | "bottom" | "start" | "center" | undefined;
|
|
985
985
|
origin?: string | undefined;
|
|
986
986
|
viewportMargin?: number | undefined;
|
|
987
987
|
transition?: string | (import("vue").TransitionProps & {
|
|
@@ -1002,7 +1002,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1002
1002
|
readonly eager?: boolean | undefined;
|
|
1003
1003
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1004
1004
|
readonly closeClickScrim?: boolean | undefined;
|
|
1005
|
-
readonly offset?: string | number |
|
|
1005
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1006
1006
|
readonly minWidth?: string | number | undefined;
|
|
1007
1007
|
readonly maxWidth?: string | number | undefined;
|
|
1008
1008
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1063,7 +1063,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1063
1063
|
closeDelay?: number | undefined;
|
|
1064
1064
|
coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
|
|
1065
1065
|
position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
|
|
1066
|
-
align?: "end" | "start" | "center" | undefined;
|
|
1066
|
+
align?: "top" | "end" | "bottom" | "start" | "center" | undefined;
|
|
1067
1067
|
origin?: string | undefined;
|
|
1068
1068
|
viewportMargin?: number | undefined;
|
|
1069
1069
|
transition?: string | (import("vue").TransitionProps & {
|
|
@@ -1084,7 +1084,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1084
1084
|
readonly eager?: boolean | undefined;
|
|
1085
1085
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1086
1086
|
readonly closeClickScrim?: boolean | undefined;
|
|
1087
|
-
readonly offset?: string | number |
|
|
1087
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1088
1088
|
readonly minWidth?: string | number | undefined;
|
|
1089
1089
|
readonly maxWidth?: string | number | undefined;
|
|
1090
1090
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1145,7 +1145,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1145
1145
|
closeDelay?: number | undefined;
|
|
1146
1146
|
coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
|
|
1147
1147
|
position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
|
|
1148
|
-
align?: "end" | "start" | "center" | undefined;
|
|
1148
|
+
align?: "top" | "end" | "bottom" | "start" | "center" | undefined;
|
|
1149
1149
|
origin?: string | undefined;
|
|
1150
1150
|
viewportMargin?: number | undefined;
|
|
1151
1151
|
transition?: string | (import("vue").TransitionProps & {
|
|
@@ -1166,7 +1166,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1166
1166
|
readonly eager?: boolean | undefined;
|
|
1167
1167
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1168
1168
|
readonly closeClickScrim?: boolean | undefined;
|
|
1169
|
-
readonly offset?: string | number |
|
|
1169
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1170
1170
|
readonly minWidth?: string | number | undefined;
|
|
1171
1171
|
readonly maxWidth?: string | number | undefined;
|
|
1172
1172
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1225,7 +1225,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1225
1225
|
closeDelay?: number | undefined;
|
|
1226
1226
|
coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
|
|
1227
1227
|
position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
|
|
1228
|
-
align?: "end" | "start" | "center" | undefined;
|
|
1228
|
+
align?: "top" | "end" | "bottom" | "start" | "center" | undefined;
|
|
1229
1229
|
origin?: string | undefined;
|
|
1230
1230
|
viewportMargin?: number | undefined;
|
|
1231
1231
|
transition?: string | (import("vue").TransitionProps & {
|
|
@@ -1246,7 +1246,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1246
1246
|
readonly eager?: boolean | undefined;
|
|
1247
1247
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1248
1248
|
readonly closeClickScrim?: boolean | undefined;
|
|
1249
|
-
readonly offset?: string | number |
|
|
1249
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1250
1250
|
readonly minWidth?: string | number | undefined;
|
|
1251
1251
|
readonly maxWidth?: string | number | undefined;
|
|
1252
1252
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1306,7 +1306,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1306
1306
|
closeDelay?: number | undefined;
|
|
1307
1307
|
coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
|
|
1308
1308
|
position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
|
|
1309
|
-
align?: "end" | "start" | "center" | undefined;
|
|
1309
|
+
align?: "top" | "end" | "bottom" | "start" | "center" | undefined;
|
|
1310
1310
|
origin?: string | undefined;
|
|
1311
1311
|
viewportMargin?: number | undefined;
|
|
1312
1312
|
transition?: string | (import("vue").TransitionProps & {
|
|
@@ -1327,7 +1327,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1327
1327
|
readonly eager?: boolean | undefined;
|
|
1328
1328
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1329
1329
|
readonly closeClickScrim?: boolean | undefined;
|
|
1330
|
-
readonly offset?: string | number |
|
|
1330
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1331
1331
|
readonly minWidth?: string | number | undefined;
|
|
1332
1332
|
readonly maxWidth?: string | number | undefined;
|
|
1333
1333
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1386,7 +1386,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1386
1386
|
closeDelay?: number | undefined;
|
|
1387
1387
|
coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
|
|
1388
1388
|
position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
|
|
1389
|
-
align?: "end" | "start" | "center" | undefined;
|
|
1389
|
+
align?: "top" | "end" | "bottom" | "start" | "center" | undefined;
|
|
1390
1390
|
origin?: string | undefined;
|
|
1391
1391
|
viewportMargin?: number | undefined;
|
|
1392
1392
|
transition?: string | (import("vue").TransitionProps & {
|
|
@@ -1407,7 +1407,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1407
1407
|
readonly eager?: boolean | undefined;
|
|
1408
1408
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1409
1409
|
readonly closeClickScrim?: boolean | undefined;
|
|
1410
|
-
readonly offset?: string | number |
|
|
1410
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1411
1411
|
readonly minWidth?: string | number | undefined;
|
|
1412
1412
|
readonly maxWidth?: string | number | undefined;
|
|
1413
1413
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1510,7 +1510,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1510
1510
|
default: NonNullable<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">;
|
|
1511
1511
|
};
|
|
1512
1512
|
align: {
|
|
1513
|
-
type: PropType<"end" | "start" | "center">;
|
|
1513
|
+
type: PropType<"top" | "end" | "bottom" | "start" | "center">;
|
|
1514
1514
|
default: string;
|
|
1515
1515
|
};
|
|
1516
1516
|
origin: {
|
|
@@ -1518,7 +1518,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1518
1518
|
default: string;
|
|
1519
1519
|
};
|
|
1520
1520
|
offset: {
|
|
1521
|
-
type:
|
|
1521
|
+
type: PropType<string | number | string[]>;
|
|
1522
1522
|
};
|
|
1523
1523
|
viewportMargin: {
|
|
1524
1524
|
type: NumberConstructor;
|
|
@@ -1629,7 +1629,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1629
1629
|
closeDelay?: number | undefined;
|
|
1630
1630
|
coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
|
|
1631
1631
|
position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
|
|
1632
|
-
align?: "end" | "start" | "center" | undefined;
|
|
1632
|
+
align?: "top" | "end" | "bottom" | "start" | "center" | undefined;
|
|
1633
1633
|
origin?: string | undefined;
|
|
1634
1634
|
viewportMargin?: number | undefined;
|
|
1635
1635
|
transition?: string | (import("vue").TransitionProps & {
|
|
@@ -1650,7 +1650,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1650
1650
|
readonly eager?: boolean | undefined;
|
|
1651
1651
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1652
1652
|
readonly closeClickScrim?: boolean | undefined;
|
|
1653
|
-
readonly offset?: string | number |
|
|
1653
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1654
1654
|
readonly minWidth?: string | number | undefined;
|
|
1655
1655
|
readonly maxWidth?: string | number | undefined;
|
|
1656
1656
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1737,7 +1737,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1737
1737
|
closeDelay?: number | undefined;
|
|
1738
1738
|
coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
|
|
1739
1739
|
position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
|
|
1740
|
-
align?: "end" | "start" | "center" | undefined;
|
|
1740
|
+
align?: "top" | "end" | "bottom" | "start" | "center" | undefined;
|
|
1741
1741
|
origin?: string | undefined;
|
|
1742
1742
|
viewportMargin?: number | undefined;
|
|
1743
1743
|
transition?: string | (import("vue").TransitionProps & {
|
|
@@ -1758,7 +1758,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1758
1758
|
readonly eager?: boolean | undefined;
|
|
1759
1759
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1760
1760
|
readonly closeClickScrim?: boolean | undefined;
|
|
1761
|
-
readonly offset?: string | number |
|
|
1761
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1762
1762
|
readonly minWidth?: string | number | undefined;
|
|
1763
1763
|
readonly maxWidth?: string | number | undefined;
|
|
1764
1764
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1849,7 +1849,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1849
1849
|
default: string;
|
|
1850
1850
|
};
|
|
1851
1851
|
align: {
|
|
1852
|
-
type: PropType<"end" | "start" | "center">;
|
|
1852
|
+
type: PropType<"top" | "end" | "bottom" | "start" | "center">;
|
|
1853
1853
|
default: string;
|
|
1854
1854
|
};
|
|
1855
1855
|
origin: {
|
|
@@ -1857,7 +1857,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1857
1857
|
default: string;
|
|
1858
1858
|
};
|
|
1859
1859
|
offset: {
|
|
1860
|
-
type:
|
|
1860
|
+
type: PropType<string | number | string[]>;
|
|
1861
1861
|
};
|
|
1862
1862
|
viewportMargin: {
|
|
1863
1863
|
type: NumberConstructor;
|
|
@@ -1940,7 +1940,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1940
1940
|
default: string;
|
|
1941
1941
|
};
|
|
1942
1942
|
align: {
|
|
1943
|
-
type: PropType<"end" | "start" | "center">;
|
|
1943
|
+
type: PropType<"top" | "end" | "bottom" | "start" | "center">;
|
|
1944
1944
|
default: string;
|
|
1945
1945
|
};
|
|
1946
1946
|
origin: {
|
|
@@ -1948,7 +1948,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1948
1948
|
default: string;
|
|
1949
1949
|
};
|
|
1950
1950
|
offset: {
|
|
1951
|
-
type:
|
|
1951
|
+
type: PropType<string | number | string[]>;
|
|
1952
1952
|
};
|
|
1953
1953
|
viewportMargin: {
|
|
1954
1954
|
type: NumberConstructor;
|
|
@@ -3606,7 +3606,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
3606
3606
|
default: string;
|
|
3607
3607
|
};
|
|
3608
3608
|
align: {
|
|
3609
|
-
type: PropType<"end" | "start" | "center">;
|
|
3609
|
+
type: PropType<"top" | "end" | "bottom" | "start" | "center">;
|
|
3610
3610
|
default: string;
|
|
3611
3611
|
};
|
|
3612
3612
|
origin: {
|
|
@@ -3614,7 +3614,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
3614
3614
|
default: string;
|
|
3615
3615
|
};
|
|
3616
3616
|
offset: {
|
|
3617
|
-
type:
|
|
3617
|
+
type: PropType<string | number | string[]>;
|
|
3618
3618
|
};
|
|
3619
3619
|
viewportMargin: {
|
|
3620
3620
|
type: NumberConstructor;
|
|
@@ -3681,7 +3681,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
3681
3681
|
closeDelay: number;
|
|
3682
3682
|
coordinateStrategy: "levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn;
|
|
3683
3683
|
position: "default" | "top" | "end" | "right" | "bottom" | "left" | "start";
|
|
3684
|
-
align: "end" | "start" | "center";
|
|
3684
|
+
align: "top" | "end" | "bottom" | "start" | "center";
|
|
3685
3685
|
origin: string;
|
|
3686
3686
|
viewportMargin: number;
|
|
3687
3687
|
transition: string | (import("vue").TransitionProps & {
|
|
@@ -3707,7 +3707,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
3707
3707
|
closeDelay: number;
|
|
3708
3708
|
coordinateStrategy: string | import("../../composables/coordinate").CoordinateStrategyFn;
|
|
3709
3709
|
position: "default" | "top" | "end" | "right" | "bottom" | "left" | "start";
|
|
3710
|
-
align: "end" | "start" | "center";
|
|
3710
|
+
align: "top" | "end" | "bottom" | "start" | "center";
|
|
3711
3711
|
origin: string;
|
|
3712
3712
|
viewportMargin: number;
|
|
3713
3713
|
transition: string | (import("vue").TransitionProps & {
|
|
@@ -3762,7 +3762,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
3762
3762
|
default: string;
|
|
3763
3763
|
};
|
|
3764
3764
|
align: {
|
|
3765
|
-
type: PropType<"end" | "start" | "center">;
|
|
3765
|
+
type: PropType<"top" | "end" | "bottom" | "start" | "center">;
|
|
3766
3766
|
default: string;
|
|
3767
3767
|
};
|
|
3768
3768
|
origin: {
|
|
@@ -3770,7 +3770,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
3770
3770
|
default: string;
|
|
3771
3771
|
};
|
|
3772
3772
|
offset: {
|
|
3773
|
-
type:
|
|
3773
|
+
type: PropType<string | number | string[]>;
|
|
3774
3774
|
};
|
|
3775
3775
|
viewportMargin: {
|
|
3776
3776
|
type: NumberConstructor;
|
|
@@ -3853,7 +3853,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
3853
3853
|
default: string;
|
|
3854
3854
|
};
|
|
3855
3855
|
align: {
|
|
3856
|
-
type: PropType<"end" | "start" | "center">;
|
|
3856
|
+
type: PropType<"top" | "end" | "bottom" | "start" | "center">;
|
|
3857
3857
|
default: string;
|
|
3858
3858
|
};
|
|
3859
3859
|
origin: {
|
|
@@ -3861,7 +3861,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
3861
3861
|
default: string;
|
|
3862
3862
|
};
|
|
3863
3863
|
offset: {
|
|
3864
|
-
type:
|
|
3864
|
+
type: PropType<string | number | string[]>;
|
|
3865
3865
|
};
|
|
3866
3866
|
viewportMargin: {
|
|
3867
3867
|
type: NumberConstructor;
|
|
@@ -5519,7 +5519,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5519
5519
|
default: string;
|
|
5520
5520
|
};
|
|
5521
5521
|
align: {
|
|
5522
|
-
type: PropType<"end" | "start" | "center">;
|
|
5522
|
+
type: PropType<"top" | "end" | "bottom" | "start" | "center">;
|
|
5523
5523
|
default: string;
|
|
5524
5524
|
};
|
|
5525
5525
|
origin: {
|
|
@@ -5527,7 +5527,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5527
5527
|
default: string;
|
|
5528
5528
|
};
|
|
5529
5529
|
offset: {
|
|
5530
|
-
type:
|
|
5530
|
+
type: PropType<string | number | string[]>;
|
|
5531
5531
|
};
|
|
5532
5532
|
viewportMargin: {
|
|
5533
5533
|
type: NumberConstructor;
|
|
@@ -5594,7 +5594,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5594
5594
|
closeDelay: number;
|
|
5595
5595
|
coordinateStrategy: "levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn;
|
|
5596
5596
|
position: "default" | "top" | "end" | "right" | "bottom" | "left" | "start";
|
|
5597
|
-
align: "end" | "start" | "center";
|
|
5597
|
+
align: "top" | "end" | "bottom" | "start" | "center";
|
|
5598
5598
|
origin: string;
|
|
5599
5599
|
viewportMargin: number;
|
|
5600
5600
|
transition: string | (import("vue").TransitionProps & {
|
|
@@ -5627,7 +5627,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5627
5627
|
default: NonNullable<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">;
|
|
5628
5628
|
};
|
|
5629
5629
|
align: {
|
|
5630
|
-
type: PropType<"end" | "start" | "center">;
|
|
5630
|
+
type: PropType<"top" | "end" | "bottom" | "start" | "center">;
|
|
5631
5631
|
default: string;
|
|
5632
5632
|
};
|
|
5633
5633
|
origin: {
|
|
@@ -5635,7 +5635,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5635
5635
|
default: string;
|
|
5636
5636
|
};
|
|
5637
5637
|
offset: {
|
|
5638
|
-
type:
|
|
5638
|
+
type: PropType<string | number | string[]>;
|
|
5639
5639
|
};
|
|
5640
5640
|
viewportMargin: {
|
|
5641
5641
|
type: NumberConstructor;
|
|
@@ -5746,7 +5746,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5746
5746
|
closeDelay?: number | undefined;
|
|
5747
5747
|
coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
|
|
5748
5748
|
position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
|
|
5749
|
-
align?: "end" | "start" | "center" | undefined;
|
|
5749
|
+
align?: "top" | "end" | "bottom" | "start" | "center" | undefined;
|
|
5750
5750
|
origin?: string | undefined;
|
|
5751
5751
|
viewportMargin?: number | undefined;
|
|
5752
5752
|
transition?: string | (import("vue").TransitionProps & {
|
|
@@ -5767,7 +5767,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5767
5767
|
readonly eager?: boolean | undefined;
|
|
5768
5768
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
5769
5769
|
readonly closeClickScrim?: boolean | undefined;
|
|
5770
|
-
readonly offset?: string | number |
|
|
5770
|
+
readonly offset?: string | number | string[] | undefined;
|
|
5771
5771
|
readonly minWidth?: string | number | undefined;
|
|
5772
5772
|
readonly maxWidth?: string | number | undefined;
|
|
5773
5773
|
readonly minHeight?: string | number | undefined;
|
|
@@ -5853,7 +5853,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5853
5853
|
openDelay: number;
|
|
5854
5854
|
closeDelay: number;
|
|
5855
5855
|
position: NonNullable<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">;
|
|
5856
|
-
align: "end" | "start" | "center";
|
|
5856
|
+
align: "top" | "end" | "bottom" | "start" | "center";
|
|
5857
5857
|
origin: string;
|
|
5858
5858
|
viewportMargin: number;
|
|
5859
5859
|
maxHeight: string | number;
|
|
@@ -7,6 +7,7 @@ export declare const pressYTabsPropOptions: <Defaults extends {
|
|
|
7
7
|
max?: unknown;
|
|
8
8
|
selectedClass?: unknown;
|
|
9
9
|
disabled?: unknown;
|
|
10
|
+
returnItem?: unknown;
|
|
10
11
|
items?: unknown;
|
|
11
12
|
} = {}>(defaults?: Defaults | undefined) => {
|
|
12
13
|
modelValue: unknown extends Defaults["modelValue"] ? {
|
|
@@ -51,6 +52,10 @@ export declare const pressYTabsPropOptions: <Defaults extends {
|
|
|
51
52
|
type: PropType<unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"]>;
|
|
52
53
|
default: unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"];
|
|
53
54
|
};
|
|
55
|
+
returnItem: unknown extends Defaults["returnItem"] ? PropType<boolean> : {
|
|
56
|
+
type: PropType<unknown extends Defaults["returnItem"] ? boolean : boolean | Defaults["returnItem"]>;
|
|
57
|
+
default: unknown extends Defaults["returnItem"] ? boolean : boolean | Defaults["returnItem"];
|
|
58
|
+
};
|
|
54
59
|
items: unknown extends Defaults["items"] ? {
|
|
55
60
|
type: PropType<YTabPropItem[]>;
|
|
56
61
|
} : Omit<{
|
|
@@ -76,6 +81,7 @@ export declare const YTabs: import("vue").DefineComponent<{
|
|
|
76
81
|
default: string;
|
|
77
82
|
};
|
|
78
83
|
disabled: BooleanConstructor;
|
|
84
|
+
returnItem: PropType<boolean>;
|
|
79
85
|
items: {
|
|
80
86
|
type: PropType<YTabPropItem[]>;
|
|
81
87
|
};
|
|
@@ -103,6 +109,7 @@ export declare const YTabs: import("vue").DefineComponent<{
|
|
|
103
109
|
default: string;
|
|
104
110
|
};
|
|
105
111
|
disabled: BooleanConstructor;
|
|
112
|
+
returnItem: PropType<boolean>;
|
|
106
113
|
items: {
|
|
107
114
|
type: PropType<YTabPropItem[]>;
|
|
108
115
|
};
|
|
@@ -273,6 +273,7 @@ export declare const YTextarea: import("vue").DefineComponent<{
|
|
|
273
273
|
readonly variation?: string | undefined;
|
|
274
274
|
readonly outlined?: boolean | undefined;
|
|
275
275
|
readonly filled?: boolean | undefined;
|
|
276
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
276
277
|
readonly width?: string | number | undefined;
|
|
277
278
|
readonly height?: string | number | undefined;
|
|
278
279
|
readonly modelValue?: any;
|
|
@@ -288,7 +289,6 @@ export declare const YTextarea: import("vue").DefineComponent<{
|
|
|
288
289
|
readonly ceramic?: boolean | undefined;
|
|
289
290
|
onError?: ((...args: any[]) => any) | undefined;
|
|
290
291
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
291
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
292
292
|
onMousedown?: ((...args: any[]) => any) | undefined;
|
|
293
293
|
onMouseup?: ((...args: any[]) => any) | undefined;
|
|
294
294
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
@@ -366,7 +366,7 @@ export declare const YTextarea: import("vue").DefineComponent<{
|
|
|
366
366
|
}>;
|
|
367
367
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
368
368
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
369
|
-
$emit: (event: "
|
|
369
|
+
$emit: (event: "click" | "error" | "focus" | "mousedown" | "mouseup" | "blur" | "mousedown:display" | "mouseup:display" | "click:leading" | "update:modelValue" | "update:focused", ...args: any[]) => void;
|
|
370
370
|
$el: any;
|
|
371
371
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
372
372
|
focused: BooleanConstructor;
|
|
@@ -421,10 +421,10 @@ export declare const YTextarea: import("vue").DefineComponent<{
|
|
|
421
421
|
ceramic: PropType<boolean>;
|
|
422
422
|
theme: PropType<string>;
|
|
423
423
|
}>> & {
|
|
424
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
424
425
|
"onUpdate:focused"?: ((...args: any[]) => any) | undefined;
|
|
425
426
|
onError?: ((...args: any[]) => any) | undefined;
|
|
426
427
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
427
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
428
428
|
onMousedown?: ((...args: any[]) => any) | undefined;
|
|
429
429
|
onMouseup?: ((...args: any[]) => any) | undefined;
|
|
430
430
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
@@ -446,7 +446,7 @@ export declare const YTextarea: import("vue").DefineComponent<{
|
|
|
446
446
|
[key: string]: any;
|
|
447
447
|
}> | undefined;
|
|
448
448
|
invokeValidators: () => Promise<any[]>;
|
|
449
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
449
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "error" | "focus" | "mousedown" | "mouseup" | "blur" | "mousedown:display" | "mouseup:display" | "click:leading" | "update:modelValue" | "update:focused")[], string, {
|
|
450
450
|
displayTag: string;
|
|
451
451
|
autoSelect: boolean;
|
|
452
452
|
floating: boolean;
|
|
@@ -543,10 +543,10 @@ export declare const YTextarea: import("vue").DefineComponent<{
|
|
|
543
543
|
ceramic: PropType<boolean>;
|
|
544
544
|
theme: PropType<string>;
|
|
545
545
|
}>> & {
|
|
546
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
546
547
|
"onUpdate:focused"?: ((...args: any[]) => any) | undefined;
|
|
547
548
|
onError?: ((...args: any[]) => any) | undefined;
|
|
548
549
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
549
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
550
550
|
onMousedown?: ((...args: any[]) => any) | undefined;
|
|
551
551
|
onMouseup?: ((...args: any[]) => any) | undefined;
|
|
552
552
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
@@ -638,9 +638,9 @@ export declare const YTextarea: import("vue").DefineComponent<{
|
|
|
638
638
|
displayText: PropType<string | ((value: any) => string)>;
|
|
639
639
|
whenInputValid: PropType<number | boolean>;
|
|
640
640
|
}>> & {
|
|
641
|
+
onClick?: ((e: MouseEvent) => any) | undefined;
|
|
641
642
|
"onUpdate:focused"?: ((v: boolean) => any) | undefined;
|
|
642
643
|
onFocus?: ((e: FocusEvent) => any) | undefined;
|
|
643
|
-
onClick?: ((e: MouseEvent) => any) | undefined;
|
|
644
644
|
onBlur?: ((e: FocusEvent) => any) | undefined;
|
|
645
645
|
"onMousedown:display"?: ((e: MouseEvent) => any) | undefined;
|
|
646
646
|
"onUpdate:modelValue"?: ((v: any) => any) | undefined;
|