yuyeon 0.0.52-rc.1 → 0.1.0-rc.10
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 +3904 -3664
- package/dist/yuyeon.umd.cjs +20 -6
- package/lib/components/badge/YBadge.mjs.map +1 -1
- package/lib/components/checkbox/YCheckbox.mjs.map +1 -1
- package/lib/components/checkbox/YInputCheckbox.mjs.map +1 -1
- package/lib/components/chip/YChip.mjs.map +1 -1
- package/lib/components/date-picker/YDateCalendar.mjs.map +1 -1
- package/lib/components/date-picker/YDatePicker.mjs +1 -0
- package/lib/components/date-picker/YDatePicker.mjs.map +1 -1
- package/lib/components/date-picker/YDatePickerControl.mjs.map +1 -1
- package/lib/components/dropdown/YDropdown.mjs +10 -4
- package/lib/components/dropdown/YDropdown.mjs.map +1 -1
- package/lib/components/field-input/YFieldInput.mjs +4 -0
- package/lib/components/field-input/YFieldInput.mjs.map +1 -1
- package/lib/components/icons/YIconCheckbox.mjs.map +1 -1
- package/lib/components/icons/YIconClear.mjs.map +1 -1
- package/lib/components/icons/YIconDropdown.mjs.map +1 -1
- package/lib/components/icons/YIconExpand.mjs.map +1 -1
- package/lib/components/icons/YIconPageControl.mjs.map +1 -1
- package/lib/components/icons/YIconSort.mjs.map +1 -1
- package/lib/components/index.mjs +1 -0
- package/lib/components/index.mjs.map +1 -1
- package/lib/components/input/YInput.mjs +6 -6
- package/lib/components/input/YInput.mjs.map +1 -1
- package/lib/components/input/YInput.scss +2 -3
- package/lib/components/layer/YLayer.mjs +3 -1
- package/lib/components/layer/YLayer.mjs.map +1 -1
- package/lib/components/layer/base.mjs +5 -1
- package/lib/components/layer/base.mjs.map +1 -1
- package/lib/components/list/YList.mjs.map +1 -1
- package/lib/components/loading/YSpinnerRing.mjs.map +1 -1
- package/lib/components/pagination/YPagination.mjs.map +1 -1
- package/lib/components/panel/YDividePanel.mjs.map +1 -1
- package/lib/components/progress-bar/YProgressBar.mjs.map +1 -1
- package/lib/components/select/YSelect.mjs +64 -13
- package/lib/components/select/YSelect.mjs.map +1 -1
- package/lib/components/snackbar/YSnackbar.mjs +6 -6
- package/lib/components/snackbar/YSnackbar.mjs.map +1 -1
- package/lib/components/switch/YSwitch.mjs +3 -2
- package/lib/components/switch/YSwitch.mjs.map +1 -1
- package/lib/components/tab/YTabs.mjs.map +1 -1
- package/lib/components/table/YDataTableBody.mjs.map +1 -1
- package/lib/components/table/YDataTableControl.mjs.map +1 -1
- package/lib/components/table/YDataTableHead.mjs.map +1 -1
- package/lib/components/text-ellipsis/YTextEllipsis.mjs +61 -0
- package/lib/components/text-ellipsis/YTextEllipsis.mjs.map +1 -0
- package/lib/components/text-ellipsis/YTextEllipsis.scss +43 -0
- package/lib/components/text-ellipsis/index.mjs +2 -0
- package/lib/components/text-ellipsis/index.mjs.map +1 -0
- package/lib/components/tooltip/YTooltip.mjs +13 -23
- package/lib/components/tooltip/YTooltip.mjs.map +1 -1
- package/lib/components/tree-view/YTreeView.mjs.map +1 -1
- package/lib/components/tree-view/YTreeViewNode.mjs.map +1 -1
- package/lib/composables/icon.mjs.map +1 -1
- package/package.json +6 -10
- package/types/components/alert/YAlert.d.ts +1 -1
- package/types/components/app/YApp.d.ts +1 -1
- package/types/components/badge/YBadge.d.ts +2 -2
- package/types/components/button/YButton.d.ts +1 -1
- package/types/components/card/YCard.d.ts +1 -1
- package/types/components/card/YCardBody.d.ts +1 -1
- package/types/components/card/YCardFooter.d.ts +1 -1
- package/types/components/card/YCardHeader.d.ts +1 -1
- package/types/components/checkbox/YCheckbox.d.ts +3 -3
- package/types/components/checkbox/YInputCheckbox.d.ts +3 -3
- package/types/components/chip/YChip.d.ts +1 -1
- package/types/components/date-picker/YDateCalendar.d.ts +1 -1
- package/types/components/date-picker/YDatePicker.d.ts +7 -2
- package/types/components/date-picker/YDatePickerControl.d.ts +1 -1
- package/types/components/date-picker/YMonthPicker.d.ts +1 -1
- package/types/components/date-picker/YYearPicker.d.ts +1 -1
- package/types/components/dialog/YDialog.d.ts +77 -43
- package/types/components/divider/YDivider.d.ts +1 -1
- package/types/components/dropdown/YDropdown.d.ts +387 -1
- package/types/components/field-input/YFieldInput.d.ts +16 -14
- package/types/components/form/YForm.d.ts +2 -2
- package/types/components/icon/YIcon.d.ts +1 -1
- package/types/components/icons/YIconCheckbox.d.ts +1 -1
- package/types/components/icons/YIconClear.d.ts +1 -1
- package/types/components/icons/YIconDropdown.d.ts +1 -1
- package/types/components/icons/YIconExpand.d.ts +1 -1
- package/types/components/icons/YIconPageControl.d.ts +1 -1
- package/types/components/icons/YIconSort.d.ts +1 -1
- package/types/components/icons/index.d.ts +8 -8
- package/types/components/index.d.ts +1 -0
- package/types/components/input/YInput.d.ts +11 -9
- package/types/components/layer/YLayer.d.ts +69 -35
- package/types/components/layer/base.d.ts +1 -0
- package/types/components/list/YList.d.ts +1 -1
- package/types/components/list/YListItem.d.ts +1 -1
- package/types/components/loading/YSpinnerRing.d.ts +1 -1
- package/types/components/menu/YMenu.d.ts +70 -36
- package/types/components/pagination/YPagination.d.ts +2 -2
- package/types/components/panel/YDividePanel.d.ts +1 -1
- package/types/components/plate/YPlate.d.ts +1 -1
- package/types/components/progress-bar/YProgressBar.d.ts +1 -1
- package/types/components/select/YSelect.d.ts +4790 -3589
- package/types/components/snackbar/YSnackbar.d.ts +2 -2
- package/types/components/switch/YSwitch.d.ts +2 -2
- package/types/components/tab/YTab.d.ts +1 -1
- package/types/components/tab/YTabs.d.ts +1 -1
- package/types/components/table/YDataTable.d.ts +2 -2
- package/types/components/table/YDataTableBody.d.ts +1 -1
- package/types/components/table/YDataTableCell.d.ts +1 -1
- package/types/components/table/YDataTableControl.d.ts +1 -1
- package/types/components/table/YDataTableHead.d.ts +1 -1
- package/types/components/table/YDataTableLayer.d.ts +1 -1
- package/types/components/table/YDataTableRow.d.ts +1 -1
- package/types/components/table/YDataTableServer.d.ts +1 -1
- package/types/components/table/YTable.d.ts +1 -1
- package/types/components/text-ellipsis/YTextEllipsis.d.ts +14 -0
- package/types/components/text-ellipsis/index.d.ts +1 -0
- package/types/components/text-highlighter/YTextHighlighter.d.ts +1 -1
- package/types/components/textarea/YTextarea.d.ts +181 -232
- package/types/components/tooltip/YTooltip.d.ts +1883 -39
- package/types/components/transitions/expand-transition.d.ts +1 -1
- package/types/components/transitions/index.d.ts +2 -2
- package/types/components/tree-view/YTreeView.d.ts +5 -5
- package/types/components/tree-view/YTreeViewNode.d.ts +1 -1
- package/types/composables/coordinate/index.d.ts +67 -34
- package/types/composables/icon.d.ts +2 -2
- package/types/composables/theme/index.d.ts +1 -1
- package/types/composables/validation.d.ts +4 -4
- package/types/globals.d.ts +14 -10
|
@@ -4,14 +4,14 @@ export * from './YIconCheckbox';
|
|
|
4
4
|
export * from './YIconPageControl';
|
|
5
5
|
export * from './YIconSort';
|
|
6
6
|
export declare const builtSet: {
|
|
7
|
-
expand: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
8
|
-
dropdown: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
9
|
-
clear: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
7
|
+
expand: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
8
|
+
dropdown: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
9
|
+
clear: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
10
10
|
checkbox: import("vue").DefineComponent<{
|
|
11
11
|
checked: BooleanConstructor;
|
|
12
12
|
indeterminate: BooleanConstructor;
|
|
13
13
|
disabled: BooleanConstructor;
|
|
14
|
-
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
14
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
15
|
checked: BooleanConstructor;
|
|
16
16
|
indeterminate: BooleanConstructor;
|
|
17
17
|
disabled: BooleanConstructor;
|
|
@@ -25,7 +25,7 @@ export declare const builtSet: {
|
|
|
25
25
|
type: import("vue").PropType<"next" | "prev" | "first" | "last">;
|
|
26
26
|
default: string;
|
|
27
27
|
};
|
|
28
|
-
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
28
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
29
|
type: {
|
|
30
30
|
type: import("vue").PropType<"next" | "prev" | "first" | "last">;
|
|
31
31
|
default: string;
|
|
@@ -39,7 +39,7 @@ export declare const builtSet: {
|
|
|
39
39
|
type: import("vue").PropType<"next" | "prev" | "first" | "last">;
|
|
40
40
|
default: string;
|
|
41
41
|
};
|
|
42
|
-
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
42
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
43
43
|
type: {
|
|
44
44
|
type: import("vue").PropType<"next" | "prev" | "first" | "last">;
|
|
45
45
|
default: string;
|
|
@@ -57,7 +57,7 @@ export declare const builtSet: {
|
|
|
57
57
|
type: import("vue").PropType<"next" | "prev" | "first" | "last">;
|
|
58
58
|
default: string;
|
|
59
59
|
};
|
|
60
|
-
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
60
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
61
61
|
type: {
|
|
62
62
|
type: import("vue").PropType<"next" | "prev" | "first" | "last">;
|
|
63
63
|
default: string;
|
|
@@ -76,7 +76,7 @@ export declare const builtSet: {
|
|
|
76
76
|
disabled: {
|
|
77
77
|
type: BooleanConstructor;
|
|
78
78
|
};
|
|
79
|
-
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
79
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
80
80
|
direction: {
|
|
81
81
|
type: import("vue").PropType<"asc" | "desc">;
|
|
82
82
|
};
|
|
@@ -49,14 +49,14 @@ export declare const pressYInputPropsOptions: <Defaults extends {
|
|
|
49
49
|
default: unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"];
|
|
50
50
|
};
|
|
51
51
|
status: unknown extends Defaults["status"] ? {
|
|
52
|
-
type: PropType<"
|
|
52
|
+
type: PropType<"error" | "success" | "warning" | undefined>;
|
|
53
53
|
validator(value: string): boolean;
|
|
54
54
|
} : Omit<{
|
|
55
|
-
type: PropType<"
|
|
55
|
+
type: PropType<"error" | "success" | "warning" | undefined>;
|
|
56
56
|
validator(value: string): boolean;
|
|
57
57
|
}, "type" | "default"> & {
|
|
58
|
-
type: PropType<unknown extends Defaults["status"] ? "
|
|
59
|
-
default: unknown extends Defaults["status"] ? "
|
|
58
|
+
type: PropType<unknown extends Defaults["status"] ? "error" | "success" | "warning" | undefined : NonNullable<"error" | "success" | "warning" | undefined> | Defaults["status"]>;
|
|
59
|
+
default: unknown extends Defaults["status"] ? "error" | "success" | "warning" | undefined : NonNullable<"error" | "success" | "warning" | undefined> | Defaults["status"];
|
|
60
60
|
};
|
|
61
61
|
helperText: unknown extends Defaults["helperText"] ? StringConstructor : {
|
|
62
62
|
type: PropType<unknown extends Defaults["helperText"] ? string : string | Defaults["helperText"]>;
|
|
@@ -197,7 +197,7 @@ export declare const YInput: import("vue").DefineComponent<{
|
|
|
197
197
|
readonly: PropType<boolean>;
|
|
198
198
|
disabled: PropType<boolean>;
|
|
199
199
|
status: {
|
|
200
|
-
type: PropType<"
|
|
200
|
+
type: PropType<"error" | "success" | "warning" | undefined>;
|
|
201
201
|
validator(value: string): boolean;
|
|
202
202
|
};
|
|
203
203
|
helperText: StringConstructor;
|
|
@@ -243,14 +243,14 @@ export declare const YInput: import("vue").DefineComponent<{
|
|
|
243
243
|
filled: PropType<boolean>;
|
|
244
244
|
ceramic: PropType<boolean>;
|
|
245
245
|
theme: PropType<string>;
|
|
246
|
-
}, any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
246
|
+
}, any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("blur" | "click" | "error" | "focus" | "mousedown" | "mouseup" | "mousedown:display" | "mouseup:display" | "click:leading" | "update:modelValue" | "update:focused")[], "blur" | "click" | "error" | "focus" | "mousedown" | "mouseup" | "mousedown:display" | "mouseup:display" | "click:leading" | "update:modelValue" | "update:focused", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
247
247
|
extended: PropType<any>;
|
|
248
248
|
focused: BooleanConstructor;
|
|
249
249
|
'onUpdate:focused': PropType<(v: boolean) => void>;
|
|
250
250
|
readonly: PropType<boolean>;
|
|
251
251
|
disabled: PropType<boolean>;
|
|
252
252
|
status: {
|
|
253
|
-
type: PropType<"
|
|
253
|
+
type: PropType<"error" | "success" | "warning" | undefined>;
|
|
254
254
|
validator(value: string): boolean;
|
|
255
255
|
};
|
|
256
256
|
helperText: StringConstructor;
|
|
@@ -297,13 +297,13 @@ export declare const YInput: import("vue").DefineComponent<{
|
|
|
297
297
|
ceramic: PropType<boolean>;
|
|
298
298
|
theme: PropType<string>;
|
|
299
299
|
}>> & {
|
|
300
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
300
301
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
301
|
-
"onUpdate:focused"?: ((...args: any[]) => any) | undefined;
|
|
302
302
|
onError?: ((...args: any[]) => any) | undefined;
|
|
303
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
|
304
303
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
305
304
|
onMousedown?: ((...args: any[]) => any) | undefined;
|
|
306
305
|
onMouseup?: ((...args: any[]) => any) | undefined;
|
|
306
|
+
"onUpdate:focused"?: ((...args: any[]) => any) | undefined;
|
|
307
307
|
"onMousedown:display"?: ((...args: any[]) => any) | undefined;
|
|
308
308
|
"onMouseup:display"?: ((...args: any[]) => any) | undefined;
|
|
309
309
|
"onClick:leading"?: ((...args: any[]) => any) | undefined;
|
|
@@ -324,6 +324,8 @@ export declare const YInput: import("vue").DefineComponent<{
|
|
|
324
324
|
error: boolean;
|
|
325
325
|
};
|
|
326
326
|
trailing: any;
|
|
327
|
+
'leading-out': any;
|
|
328
|
+
'trailing-out': any;
|
|
327
329
|
'helper-text': {
|
|
328
330
|
error: boolean;
|
|
329
331
|
errorResult: string | undefined;
|
|
@@ -358,6 +358,7 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
358
358
|
content$: import("vue").Ref<HTMLElement | undefined>;
|
|
359
359
|
base$: import("vue").Ref<any>;
|
|
360
360
|
baseEl: import("vue").Ref<HTMLElement | undefined>;
|
|
361
|
+
baseFromSlotEl: import("vue").ComputedRef<any>;
|
|
361
362
|
polyTransitionBindProps: import("vue").ComputedRef<{
|
|
362
363
|
is: any;
|
|
363
364
|
transitionProps: any;
|
|
@@ -377,6 +378,8 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
377
378
|
animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
378
379
|
animationName?: import("csstype").Property.AnimationName | undefined;
|
|
379
380
|
animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
381
|
+
animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
|
|
382
|
+
animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
|
|
380
383
|
animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
|
|
381
384
|
animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
382
385
|
appearance?: import("csstype").Property.Appearance | undefined;
|
|
@@ -498,6 +501,10 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
498
501
|
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
499
502
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
500
503
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
504
|
+
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
505
|
+
fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
|
|
506
|
+
fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
|
|
507
|
+
fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
|
|
501
508
|
fontVariant?: import("csstype").Property.FontVariant | undefined;
|
|
502
509
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
503
510
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
@@ -571,6 +578,7 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
571
578
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
572
579
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
573
580
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
581
|
+
masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
|
|
574
582
|
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
575
583
|
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
576
584
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
@@ -610,6 +618,7 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
610
618
|
overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
|
|
611
619
|
overflowX?: import("csstype").Property.OverflowX | undefined;
|
|
612
620
|
overflowY?: import("csstype").Property.OverflowY | undefined;
|
|
621
|
+
overlay?: import("csstype").Property.Overlay | undefined;
|
|
613
622
|
overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
|
|
614
623
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
615
624
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
@@ -697,12 +706,15 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
697
706
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
698
707
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
699
708
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
709
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
710
|
+
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
700
711
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
701
712
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
702
713
|
transform?: import("csstype").Property.Transform | undefined;
|
|
703
714
|
transformBox?: import("csstype").Property.TransformBox | undefined;
|
|
704
715
|
transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
705
716
|
transformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
717
|
+
transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
|
|
706
718
|
transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
707
719
|
transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
708
720
|
transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
@@ -711,9 +723,14 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
711
723
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
712
724
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
713
725
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
726
|
+
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
727
|
+
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
728
|
+
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
714
729
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
715
730
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
716
731
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
732
|
+
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
733
|
+
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
717
734
|
widows?: import("csstype").Property.Widows | undefined;
|
|
718
735
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
719
736
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
@@ -725,6 +742,7 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
725
742
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
726
743
|
all?: import("csstype").Globals | undefined;
|
|
727
744
|
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
745
|
+
animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
728
746
|
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
729
747
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
730
748
|
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
@@ -789,6 +807,7 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
789
807
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
790
808
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
791
809
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
810
|
+
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
792
811
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
793
812
|
MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
794
813
|
MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -798,7 +817,6 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
798
817
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
799
818
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
800
819
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
801
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
802
820
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
803
821
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
804
822
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -825,20 +843,16 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
825
843
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
826
844
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
827
845
|
MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
846
|
+
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
847
|
+
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
848
|
+
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
849
|
+
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
828
850
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
829
851
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
830
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
831
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
832
852
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
833
853
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
834
854
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
835
855
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
836
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
837
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
838
|
-
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
839
|
-
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
840
|
-
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
841
|
-
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
842
856
|
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
843
857
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
844
858
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
@@ -1018,7 +1032,7 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1018
1032
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
1019
1033
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
1020
1034
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1021
|
-
|
|
1035
|
+
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1022
1036
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
1023
1037
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
1024
1038
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -1076,6 +1090,7 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1076
1090
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1077
1091
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
1078
1092
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1093
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1079
1094
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
1080
1095
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1081
1096
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
@@ -1097,17 +1112,22 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1097
1112
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
1098
1113
|
MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
1099
1114
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
1100
|
-
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1101
|
-
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1102
|
-
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1103
|
-
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1104
|
-
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1105
1115
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
1106
1116
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
1117
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1118
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1107
1119
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
1108
1120
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
1109
1121
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
1110
1122
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1123
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
1124
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1125
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
1126
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1127
|
+
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1128
|
+
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1129
|
+
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1130
|
+
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1111
1131
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
1112
1132
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
1113
1133
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -1140,8 +1160,6 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1140
1160
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
1141
1161
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
1142
1162
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
1143
|
-
WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
1144
|
-
WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
1145
1163
|
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
1146
1164
|
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
1147
1165
|
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
@@ -1185,6 +1203,8 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1185
1203
|
"animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
1186
1204
|
"animation-name"?: import("csstype").Property.AnimationName | undefined;
|
|
1187
1205
|
"animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1206
|
+
"animation-range-end"?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
|
|
1207
|
+
"animation-range-start"?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
|
|
1188
1208
|
"animation-timeline"?: import("csstype").Property.AnimationTimeline | undefined;
|
|
1189
1209
|
"animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1190
1210
|
"aspect-ratio"?: import("csstype").Property.AspectRatio | undefined;
|
|
@@ -1295,6 +1315,10 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1295
1315
|
"font-stretch"?: import("csstype").Property.FontStretch | undefined;
|
|
1296
1316
|
"font-style"?: import("csstype").Property.FontStyle | undefined;
|
|
1297
1317
|
"font-synthesis"?: import("csstype").Property.FontSynthesis | undefined;
|
|
1318
|
+
"font-synthesis-position"?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
1319
|
+
"font-synthesis-small-caps"?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
|
|
1320
|
+
"font-synthesis-style"?: import("csstype").Property.FontSynthesisStyle | undefined;
|
|
1321
|
+
"font-synthesis-weight"?: import("csstype").Property.FontSynthesisWeight | undefined;
|
|
1298
1322
|
"font-variant"?: import("csstype").Property.FontVariant | undefined;
|
|
1299
1323
|
"font-variant-alternates"?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
1300
1324
|
"font-variant-caps"?: import("csstype").Property.FontVariantCaps | undefined;
|
|
@@ -1364,6 +1388,7 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1364
1388
|
"mask-repeat"?: import("csstype").Property.MaskRepeat | undefined;
|
|
1365
1389
|
"mask-size"?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
1366
1390
|
"mask-type"?: import("csstype").Property.MaskType | undefined;
|
|
1391
|
+
"masonry-auto-flow"?: import("csstype").Property.MasonryAutoFlow | undefined;
|
|
1367
1392
|
"math-depth"?: import("csstype").Property.MathDepth | undefined;
|
|
1368
1393
|
"math-shift"?: import("csstype").Property.MathShift | undefined;
|
|
1369
1394
|
"math-style"?: import("csstype").Property.MathStyle | undefined;
|
|
@@ -1479,10 +1504,13 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1479
1504
|
"text-transform"?: import("csstype").Property.TextTransform | undefined;
|
|
1480
1505
|
"text-underline-offset"?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
1481
1506
|
"text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
1507
|
+
"text-wrap"?: import("csstype").Property.TextWrap | undefined;
|
|
1508
|
+
"timeline-scope"?: import("csstype").Property.TimelineScope | undefined;
|
|
1482
1509
|
"touch-action"?: import("csstype").Property.TouchAction | undefined;
|
|
1483
1510
|
"transform-box"?: import("csstype").Property.TransformBox | undefined;
|
|
1484
1511
|
"transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1485
1512
|
"transform-style"?: import("csstype").Property.TransformStyle | undefined;
|
|
1513
|
+
"transition-behavior"?: import("csstype").Property.TransitionBehavior | undefined;
|
|
1486
1514
|
"transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1487
1515
|
"transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1488
1516
|
"transition-property"?: import("csstype").Property.TransitionProperty | undefined;
|
|
@@ -1490,14 +1518,20 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1490
1518
|
"unicode-bidi"?: import("csstype").Property.UnicodeBidi | undefined;
|
|
1491
1519
|
"user-select"?: import("csstype").Property.UserSelect | undefined;
|
|
1492
1520
|
"vertical-align"?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
1521
|
+
"view-timeline-axis"?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
1522
|
+
"view-timeline-inset"?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
1523
|
+
"view-timeline-name"?: import("csstype").Property.ViewTimelineName | undefined;
|
|
1493
1524
|
"view-transition-name"?: import("csstype").Property.ViewTransitionName | undefined;
|
|
1494
1525
|
"white-space"?: import("csstype").Property.WhiteSpace | undefined;
|
|
1526
|
+
"white-space-collapse"?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
1527
|
+
"white-space-trim"?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
1495
1528
|
"will-change"?: import("csstype").Property.WillChange | undefined;
|
|
1496
1529
|
"word-break"?: import("csstype").Property.WordBreak | undefined;
|
|
1497
1530
|
"word-spacing"?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
1498
1531
|
"word-wrap"?: import("csstype").Property.WordWrap | undefined;
|
|
1499
1532
|
"writing-mode"?: import("csstype").Property.WritingMode | undefined;
|
|
1500
1533
|
"z-index"?: import("csstype").Property.ZIndex | undefined;
|
|
1534
|
+
"animation-range"?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
1501
1535
|
"background-position"?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
1502
1536
|
"border-block"?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
1503
1537
|
"border-block-end"?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
@@ -1544,6 +1578,7 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1544
1578
|
"scroll-timeline"?: import("csstype").Property.ScrollTimeline | undefined;
|
|
1545
1579
|
"text-decoration"?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
1546
1580
|
"text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
|
|
1581
|
+
"view-timeline"?: import("csstype").Property.ViewTimeline | undefined;
|
|
1547
1582
|
"-moz-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1548
1583
|
"-moz-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
|
|
1549
1584
|
"-moz-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -1553,7 +1588,6 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1553
1588
|
"-moz-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1554
1589
|
"-moz-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1555
1590
|
"-moz-appearance"?: import("csstype").Property.MozAppearance | undefined;
|
|
1556
|
-
"-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1557
1591
|
"-moz-binding"?: import("csstype").Property.MozBinding | undefined;
|
|
1558
1592
|
"-moz-border-bottom-colors"?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
1559
1593
|
"-moz-border-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -1580,20 +1614,16 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1580
1614
|
"-moz-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1581
1615
|
"-moz-orient"?: import("csstype").Property.MozOrient | undefined;
|
|
1582
1616
|
"-moz-osx-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
1617
|
+
"-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1618
|
+
"-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1619
|
+
"-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1620
|
+
"-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1583
1621
|
"-moz-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
1584
1622
|
"-moz-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
1585
|
-
"-moz-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1586
|
-
"-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1587
1623
|
"-moz-stack-sizing"?: import("csstype").Property.MozStackSizing | undefined;
|
|
1588
1624
|
"-moz-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
1589
1625
|
"-moz-text-blink"?: import("csstype").Property.MozTextBlink | undefined;
|
|
1590
1626
|
"-moz-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
1591
|
-
"-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1592
|
-
"-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
|
|
1593
|
-
"-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1594
|
-
"-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1595
|
-
"-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
|
|
1596
|
-
"-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1597
1627
|
"-moz-user-focus"?: import("csstype").Property.MozUserFocus | undefined;
|
|
1598
1628
|
"-moz-user-modify"?: import("csstype").Property.MozUserModify | undefined;
|
|
1599
1629
|
"-moz-user-select"?: import("csstype").Property.UserSelect | undefined;
|
|
@@ -1773,7 +1803,7 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1773
1803
|
"-moz-border-image"?: import("csstype").Property.BorderImage | undefined;
|
|
1774
1804
|
"-moz-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
1775
1805
|
"-moz-columns"?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1776
|
-
"-moz-
|
|
1806
|
+
"-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1777
1807
|
"-ms-content-zoom-limit"?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
1778
1808
|
"-ms-content-zoom-snap"?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
1779
1809
|
"-ms-flex"?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -1829,6 +1859,7 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1829
1859
|
"-khtml-line-break"?: import("csstype").Property.LineBreak | undefined;
|
|
1830
1860
|
"-khtml-opacity"?: import("csstype").Property.Opacity | undefined;
|
|
1831
1861
|
"-khtml-user-select"?: import("csstype").Property.UserSelect | undefined;
|
|
1862
|
+
"-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1832
1863
|
"-moz-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
|
|
1833
1864
|
"-moz-background-inline-policy"?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1834
1865
|
"-moz-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
@@ -1850,17 +1881,22 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1850
1881
|
"-moz-opacity"?: import("csstype").Property.Opacity | undefined;
|
|
1851
1882
|
"-moz-outline"?: import("csstype").Property.Outline<string | number> | undefined;
|
|
1852
1883
|
"-moz-outline-color"?: import("csstype").Property.OutlineColor | undefined;
|
|
1853
|
-
"-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1854
|
-
"-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1855
|
-
"-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1856
|
-
"-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1857
|
-
"-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1858
1884
|
"-moz-outline-style"?: import("csstype").Property.OutlineStyle | undefined;
|
|
1859
1885
|
"-moz-outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
1886
|
+
"-moz-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1887
|
+
"-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1860
1888
|
"-moz-text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
|
|
1861
1889
|
"-moz-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
|
|
1862
1890
|
"-moz-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
|
|
1863
1891
|
"-moz-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1892
|
+
"-moz-transform"?: import("csstype").Property.Transform | undefined;
|
|
1893
|
+
"-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1894
|
+
"-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
|
|
1895
|
+
"-moz-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1896
|
+
"-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1897
|
+
"-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1898
|
+
"-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
|
|
1899
|
+
"-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1864
1900
|
"-moz-user-input"?: import("csstype").Property.MozUserInput | undefined;
|
|
1865
1901
|
"-ms-ime-mode"?: import("csstype").Property.ImeMode | undefined;
|
|
1866
1902
|
"-o-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -1893,8 +1929,6 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1893
1929
|
"-webkit-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
1894
1930
|
"-webkit-box-orient"?: import("csstype").Property.BoxOrient | undefined;
|
|
1895
1931
|
"-webkit-box-pack"?: import("csstype").Property.BoxPack | undefined;
|
|
1896
|
-
"-webkit-scroll-snap-points-x"?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
1897
|
-
"-webkit-scroll-snap-points-y"?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
1898
1932
|
"alignment-baseline"?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
1899
1933
|
"baseline-shift"?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
1900
1934
|
"clip-rule"?: import("csstype").Property.ClipRule | undefined;
|
|
@@ -1929,7 +1963,7 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1929
1963
|
'update:modelValue': (value: boolean) => true;
|
|
1930
1964
|
'click:complement': (mouseEvent: MouseEvent) => true;
|
|
1931
1965
|
afterLeave: () => true;
|
|
1932
|
-
}, string, import("vue").
|
|
1966
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1933
1967
|
minWidth: PropType<string | number>;
|
|
1934
1968
|
width: PropType<string | number>;
|
|
1935
1969
|
maxWidth: PropType<string | number>;
|
|
@@ -14,7 +14,7 @@ export declare const pressYListPropsOptions: <Defaults extends {
|
|
|
14
14
|
export declare const YList: import("vue").DefineComponent<{
|
|
15
15
|
theme: import("vue").PropType<string>;
|
|
16
16
|
disabled: BooleanConstructor;
|
|
17
|
-
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
17
|
+
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
18
|
theme: import("vue").PropType<string>;
|
|
19
19
|
disabled: BooleanConstructor;
|
|
20
20
|
}>>, {
|
|
@@ -37,7 +37,7 @@ export declare const YListItem: import("vue").DefineComponent<{
|
|
|
37
37
|
disabled: BooleanConstructor;
|
|
38
38
|
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
39
39
|
click: (e: MouseEvent) => true;
|
|
40
|
-
}, string, import("vue").
|
|
40
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
41
41
|
theme: import("vue").PropType<string>;
|
|
42
42
|
tag: {
|
|
43
43
|
type: StringConstructor;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const YSpinnerRing: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
1
|
+
export declare const YSpinnerRing: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
2
|
export type YSpinnerRing = InstanceType<typeof YSpinnerRing>;
|