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
|
@@ -2,6 +2,7 @@ import type { PropType } from 'vue';
|
|
|
2
2
|
export declare const pressYDialogPropsOptions: <Defaults extends {
|
|
3
3
|
disabled?: unknown;
|
|
4
4
|
theme?: unknown;
|
|
5
|
+
base?: unknown;
|
|
5
6
|
width?: unknown;
|
|
6
7
|
height?: unknown;
|
|
7
8
|
modelValue?: unknown;
|
|
@@ -15,7 +16,6 @@ export declare const pressYDialogPropsOptions: <Defaults extends {
|
|
|
15
16
|
openDelay?: unknown;
|
|
16
17
|
closeDelay?: unknown;
|
|
17
18
|
zIndex?: unknown;
|
|
18
|
-
base?: unknown;
|
|
19
19
|
coordinateStrategy?: unknown;
|
|
20
20
|
position?: unknown;
|
|
21
21
|
align?: unknown;
|
|
@@ -46,6 +46,10 @@ export declare const pressYDialogPropsOptions: <Defaults extends {
|
|
|
46
46
|
type: PropType<unknown extends Defaults["theme"] ? string : string | Defaults["theme"]>;
|
|
47
47
|
default: unknown extends Defaults["theme"] ? string : string | Defaults["theme"];
|
|
48
48
|
};
|
|
49
|
+
base: unknown extends Defaults["base"] ? PropType<import("../layer/base").BaseType> : {
|
|
50
|
+
type: PropType<unknown extends Defaults["base"] ? import("../layer/base").BaseType : Defaults["base"] | NonNullable<import("../layer/base").BaseType>>;
|
|
51
|
+
default: unknown extends Defaults["base"] ? import("../layer/base").BaseType : Defaults["base"] | NonNullable<import("../layer/base").BaseType>;
|
|
52
|
+
};
|
|
49
53
|
width: unknown extends Defaults["width"] ? PropType<string | number> : {
|
|
50
54
|
type: PropType<unknown extends Defaults["width"] ? string | number : NonNullable<string | number> | Defaults["width"]>;
|
|
51
55
|
default: unknown extends Defaults["width"] ? string | number : NonNullable<string | number> | Defaults["width"];
|
|
@@ -158,10 +162,6 @@ export declare const pressYDialogPropsOptions: <Defaults extends {
|
|
|
158
162
|
type: PropType<unknown extends Defaults["zIndex"] ? string | number : NonNullable<string | number> | Defaults["zIndex"]>;
|
|
159
163
|
default: unknown extends Defaults["zIndex"] ? string | number : NonNullable<string | number> | Defaults["zIndex"];
|
|
160
164
|
};
|
|
161
|
-
base: unknown extends Defaults["base"] ? PropType<import("../layer/base").BaseType> : {
|
|
162
|
-
type: PropType<unknown extends Defaults["base"] ? import("../layer/base").BaseType : Defaults["base"] | NonNullable<import("../layer/base").BaseType>>;
|
|
163
|
-
default: unknown extends Defaults["base"] ? import("../layer/base").BaseType : Defaults["base"] | NonNullable<import("../layer/base").BaseType>;
|
|
164
|
-
};
|
|
165
165
|
coordinateStrategy: unknown extends Defaults["coordinateStrategy"] ? {
|
|
166
166
|
type: PropType<"levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn>;
|
|
167
167
|
default: string;
|
|
@@ -291,6 +291,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
291
291
|
default: boolean;
|
|
292
292
|
};
|
|
293
293
|
theme: PropType<string>;
|
|
294
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
294
295
|
width: PropType<string | number>;
|
|
295
296
|
height: PropType<string | number>;
|
|
296
297
|
modelValue: {
|
|
@@ -334,7 +335,6 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
334
335
|
type: PropType<string | number>;
|
|
335
336
|
default: number;
|
|
336
337
|
};
|
|
337
|
-
base: PropType<import("../layer/base").BaseType>;
|
|
338
338
|
coordinateStrategy: {
|
|
339
339
|
type: PropType<"levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn>;
|
|
340
340
|
default: string;
|
|
@@ -481,6 +481,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
481
481
|
content$: import("vue").Ref<HTMLElement | undefined>;
|
|
482
482
|
base$: import("vue").Ref<any>;
|
|
483
483
|
baseEl: import("vue").Ref<HTMLElement | undefined>;
|
|
484
|
+
baseFromSlotEl: import("vue").ComputedRef<any>;
|
|
484
485
|
polyTransitionBindProps: import("vue").ComputedRef<{
|
|
485
486
|
is: any;
|
|
486
487
|
transitionProps: any;
|
|
@@ -500,6 +501,8 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
500
501
|
animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
501
502
|
animationName?: import("csstype").Property.AnimationName | undefined;
|
|
502
503
|
animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
504
|
+
animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
|
|
505
|
+
animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
|
|
503
506
|
animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
|
|
504
507
|
animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
505
508
|
appearance?: import("csstype").Property.Appearance | undefined;
|
|
@@ -621,6 +624,10 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
621
624
|
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
622
625
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
623
626
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
627
|
+
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
628
|
+
fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
|
|
629
|
+
fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
|
|
630
|
+
fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
|
|
624
631
|
fontVariant?: import("csstype").Property.FontVariant | undefined;
|
|
625
632
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
626
633
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
@@ -694,6 +701,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
694
701
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
695
702
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
696
703
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
704
|
+
masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
|
|
697
705
|
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
698
706
|
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
699
707
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
@@ -733,6 +741,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
733
741
|
overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
|
|
734
742
|
overflowX?: import("csstype").Property.OverflowX | undefined;
|
|
735
743
|
overflowY?: import("csstype").Property.OverflowY | undefined;
|
|
744
|
+
overlay?: import("csstype").Property.Overlay | undefined;
|
|
736
745
|
overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
|
|
737
746
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
738
747
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
@@ -820,12 +829,15 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
820
829
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
821
830
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
822
831
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
832
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
833
|
+
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
823
834
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
824
835
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
825
836
|
transform?: import("csstype").Property.Transform | undefined;
|
|
826
837
|
transformBox?: import("csstype").Property.TransformBox | undefined;
|
|
827
838
|
transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
828
839
|
transformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
840
|
+
transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
|
|
829
841
|
transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
830
842
|
transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
831
843
|
transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
@@ -834,9 +846,14 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
834
846
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
835
847
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
836
848
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
849
|
+
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
850
|
+
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
851
|
+
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
837
852
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
838
853
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
839
854
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
855
|
+
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
856
|
+
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
840
857
|
widows?: import("csstype").Property.Widows | undefined;
|
|
841
858
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
842
859
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
@@ -848,6 +865,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
848
865
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
849
866
|
all?: import("csstype").Globals | undefined;
|
|
850
867
|
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
868
|
+
animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
851
869
|
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
852
870
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
853
871
|
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
@@ -912,6 +930,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
912
930
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
913
931
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
914
932
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
933
|
+
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
915
934
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
916
935
|
MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
917
936
|
MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -921,7 +940,6 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
921
940
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
922
941
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
923
942
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
924
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
925
943
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
926
944
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
927
945
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -948,20 +966,16 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
948
966
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
949
967
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
950
968
|
MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
969
|
+
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
970
|
+
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
971
|
+
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
972
|
+
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
951
973
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
952
974
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
953
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
954
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
955
975
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
956
976
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
957
977
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
958
978
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
959
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
960
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
961
|
-
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
962
|
-
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
963
|
-
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
964
|
-
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
965
979
|
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
966
980
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
967
981
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
@@ -1141,7 +1155,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
1141
1155
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
1142
1156
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
1143
1157
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1144
|
-
|
|
1158
|
+
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1145
1159
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
1146
1160
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
1147
1161
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -1199,6 +1213,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
1199
1213
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1200
1214
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
1201
1215
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1216
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1202
1217
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
1203
1218
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1204
1219
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
@@ -1220,17 +1235,22 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
1220
1235
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
1221
1236
|
MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
1222
1237
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
1223
|
-
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1224
|
-
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1225
|
-
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1226
|
-
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1227
|
-
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1228
1238
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
1229
1239
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
1240
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1241
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1230
1242
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
1231
1243
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
1232
1244
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
1233
1245
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1246
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
1247
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1248
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
1249
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1250
|
+
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1251
|
+
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1252
|
+
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1253
|
+
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1234
1254
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
1235
1255
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
1236
1256
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -1263,8 +1283,6 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
1263
1283
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
1264
1284
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
1265
1285
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
1266
|
-
WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
1267
|
-
WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
1268
1286
|
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
1269
1287
|
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
1270
1288
|
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
@@ -1308,6 +1326,8 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
1308
1326
|
"animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
1309
1327
|
"animation-name"?: import("csstype").Property.AnimationName | undefined;
|
|
1310
1328
|
"animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1329
|
+
"animation-range-end"?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
|
|
1330
|
+
"animation-range-start"?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
|
|
1311
1331
|
"animation-timeline"?: import("csstype").Property.AnimationTimeline | undefined;
|
|
1312
1332
|
"animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1313
1333
|
"aspect-ratio"?: import("csstype").Property.AspectRatio | undefined;
|
|
@@ -1418,6 +1438,10 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
1418
1438
|
"font-stretch"?: import("csstype").Property.FontStretch | undefined;
|
|
1419
1439
|
"font-style"?: import("csstype").Property.FontStyle | undefined;
|
|
1420
1440
|
"font-synthesis"?: import("csstype").Property.FontSynthesis | undefined;
|
|
1441
|
+
"font-synthesis-position"?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
1442
|
+
"font-synthesis-small-caps"?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
|
|
1443
|
+
"font-synthesis-style"?: import("csstype").Property.FontSynthesisStyle | undefined;
|
|
1444
|
+
"font-synthesis-weight"?: import("csstype").Property.FontSynthesisWeight | undefined;
|
|
1421
1445
|
"font-variant"?: import("csstype").Property.FontVariant | undefined;
|
|
1422
1446
|
"font-variant-alternates"?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
1423
1447
|
"font-variant-caps"?: import("csstype").Property.FontVariantCaps | undefined;
|
|
@@ -1487,6 +1511,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
1487
1511
|
"mask-repeat"?: import("csstype").Property.MaskRepeat | undefined;
|
|
1488
1512
|
"mask-size"?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
1489
1513
|
"mask-type"?: import("csstype").Property.MaskType | undefined;
|
|
1514
|
+
"masonry-auto-flow"?: import("csstype").Property.MasonryAutoFlow | undefined;
|
|
1490
1515
|
"math-depth"?: import("csstype").Property.MathDepth | undefined;
|
|
1491
1516
|
"math-shift"?: import("csstype").Property.MathShift | undefined;
|
|
1492
1517
|
"math-style"?: import("csstype").Property.MathStyle | undefined;
|
|
@@ -1602,10 +1627,13 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
1602
1627
|
"text-transform"?: import("csstype").Property.TextTransform | undefined;
|
|
1603
1628
|
"text-underline-offset"?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
1604
1629
|
"text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
1630
|
+
"text-wrap"?: import("csstype").Property.TextWrap | undefined;
|
|
1631
|
+
"timeline-scope"?: import("csstype").Property.TimelineScope | undefined;
|
|
1605
1632
|
"touch-action"?: import("csstype").Property.TouchAction | undefined;
|
|
1606
1633
|
"transform-box"?: import("csstype").Property.TransformBox | undefined;
|
|
1607
1634
|
"transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1608
1635
|
"transform-style"?: import("csstype").Property.TransformStyle | undefined;
|
|
1636
|
+
"transition-behavior"?: import("csstype").Property.TransitionBehavior | undefined;
|
|
1609
1637
|
"transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1610
1638
|
"transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1611
1639
|
"transition-property"?: import("csstype").Property.TransitionProperty | undefined;
|
|
@@ -1613,14 +1641,20 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
1613
1641
|
"unicode-bidi"?: import("csstype").Property.UnicodeBidi | undefined;
|
|
1614
1642
|
"user-select"?: import("csstype").Property.UserSelect | undefined;
|
|
1615
1643
|
"vertical-align"?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
1644
|
+
"view-timeline-axis"?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
1645
|
+
"view-timeline-inset"?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
1646
|
+
"view-timeline-name"?: import("csstype").Property.ViewTimelineName | undefined;
|
|
1616
1647
|
"view-transition-name"?: import("csstype").Property.ViewTransitionName | undefined;
|
|
1617
1648
|
"white-space"?: import("csstype").Property.WhiteSpace | undefined;
|
|
1649
|
+
"white-space-collapse"?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
1650
|
+
"white-space-trim"?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
1618
1651
|
"will-change"?: import("csstype").Property.WillChange | undefined;
|
|
1619
1652
|
"word-break"?: import("csstype").Property.WordBreak | undefined;
|
|
1620
1653
|
"word-spacing"?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
1621
1654
|
"word-wrap"?: import("csstype").Property.WordWrap | undefined;
|
|
1622
1655
|
"writing-mode"?: import("csstype").Property.WritingMode | undefined;
|
|
1623
1656
|
"z-index"?: import("csstype").Property.ZIndex | undefined;
|
|
1657
|
+
"animation-range"?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
1624
1658
|
"background-position"?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
1625
1659
|
"border-block"?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
1626
1660
|
"border-block-end"?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
@@ -1667,6 +1701,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
1667
1701
|
"scroll-timeline"?: import("csstype").Property.ScrollTimeline | undefined;
|
|
1668
1702
|
"text-decoration"?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
1669
1703
|
"text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
|
|
1704
|
+
"view-timeline"?: import("csstype").Property.ViewTimeline | undefined;
|
|
1670
1705
|
"-moz-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1671
1706
|
"-moz-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
|
|
1672
1707
|
"-moz-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -1676,7 +1711,6 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
1676
1711
|
"-moz-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1677
1712
|
"-moz-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1678
1713
|
"-moz-appearance"?: import("csstype").Property.MozAppearance | undefined;
|
|
1679
|
-
"-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1680
1714
|
"-moz-binding"?: import("csstype").Property.MozBinding | undefined;
|
|
1681
1715
|
"-moz-border-bottom-colors"?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
1682
1716
|
"-moz-border-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -1703,20 +1737,16 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
1703
1737
|
"-moz-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1704
1738
|
"-moz-orient"?: import("csstype").Property.MozOrient | undefined;
|
|
1705
1739
|
"-moz-osx-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
1740
|
+
"-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1741
|
+
"-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1742
|
+
"-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1743
|
+
"-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1706
1744
|
"-moz-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
1707
1745
|
"-moz-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
1708
|
-
"-moz-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1709
|
-
"-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1710
1746
|
"-moz-stack-sizing"?: import("csstype").Property.MozStackSizing | undefined;
|
|
1711
1747
|
"-moz-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
1712
1748
|
"-moz-text-blink"?: import("csstype").Property.MozTextBlink | undefined;
|
|
1713
1749
|
"-moz-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
1714
|
-
"-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1715
|
-
"-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
|
|
1716
|
-
"-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1717
|
-
"-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1718
|
-
"-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
|
|
1719
|
-
"-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1720
1750
|
"-moz-user-focus"?: import("csstype").Property.MozUserFocus | undefined;
|
|
1721
1751
|
"-moz-user-modify"?: import("csstype").Property.MozUserModify | undefined;
|
|
1722
1752
|
"-moz-user-select"?: import("csstype").Property.UserSelect | undefined;
|
|
@@ -1896,7 +1926,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
1896
1926
|
"-moz-border-image"?: import("csstype").Property.BorderImage | undefined;
|
|
1897
1927
|
"-moz-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
1898
1928
|
"-moz-columns"?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1899
|
-
"-moz-
|
|
1929
|
+
"-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1900
1930
|
"-ms-content-zoom-limit"?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
1901
1931
|
"-ms-content-zoom-snap"?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
1902
1932
|
"-ms-flex"?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -1952,6 +1982,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
1952
1982
|
"-khtml-line-break"?: import("csstype").Property.LineBreak | undefined;
|
|
1953
1983
|
"-khtml-opacity"?: import("csstype").Property.Opacity | undefined;
|
|
1954
1984
|
"-khtml-user-select"?: import("csstype").Property.UserSelect | undefined;
|
|
1985
|
+
"-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1955
1986
|
"-moz-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
|
|
1956
1987
|
"-moz-background-inline-policy"?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1957
1988
|
"-moz-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
@@ -1973,17 +2004,22 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
1973
2004
|
"-moz-opacity"?: import("csstype").Property.Opacity | undefined;
|
|
1974
2005
|
"-moz-outline"?: import("csstype").Property.Outline<string | number> | undefined;
|
|
1975
2006
|
"-moz-outline-color"?: import("csstype").Property.OutlineColor | undefined;
|
|
1976
|
-
"-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1977
|
-
"-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1978
|
-
"-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1979
|
-
"-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1980
|
-
"-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1981
2007
|
"-moz-outline-style"?: import("csstype").Property.OutlineStyle | undefined;
|
|
1982
2008
|
"-moz-outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
2009
|
+
"-moz-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
2010
|
+
"-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1983
2011
|
"-moz-text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
|
|
1984
2012
|
"-moz-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
|
|
1985
2013
|
"-moz-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
|
|
1986
2014
|
"-moz-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
2015
|
+
"-moz-transform"?: import("csstype").Property.Transform | undefined;
|
|
2016
|
+
"-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
2017
|
+
"-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
|
|
2018
|
+
"-moz-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
2019
|
+
"-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
2020
|
+
"-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
2021
|
+
"-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
|
|
2022
|
+
"-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1987
2023
|
"-moz-user-input"?: import("csstype").Property.MozUserInput | undefined;
|
|
1988
2024
|
"-ms-ime-mode"?: import("csstype").Property.ImeMode | undefined;
|
|
1989
2025
|
"-o-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -2016,8 +2052,6 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
2016
2052
|
"-webkit-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
2017
2053
|
"-webkit-box-orient"?: import("csstype").Property.BoxOrient | undefined;
|
|
2018
2054
|
"-webkit-box-pack"?: import("csstype").Property.BoxPack | undefined;
|
|
2019
|
-
"-webkit-scroll-snap-points-x"?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
2020
|
-
"-webkit-scroll-snap-points-y"?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
2021
2055
|
"alignment-baseline"?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
2022
2056
|
"baseline-shift"?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
2023
2057
|
"clip-rule"?: import("csstype").Property.ClipRule | undefined;
|
|
@@ -2052,7 +2086,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
2052
2086
|
'update:modelValue': (value: boolean) => true;
|
|
2053
2087
|
'click:complement': (mouseEvent: MouseEvent) => true;
|
|
2054
2088
|
afterLeave: () => true;
|
|
2055
|
-
}, string, import("vue").
|
|
2089
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2056
2090
|
minWidth: PropType<string | number>;
|
|
2057
2091
|
width: PropType<string | number>;
|
|
2058
2092
|
maxWidth: PropType<string | number>;
|
|
@@ -2163,12 +2197,13 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
2163
2197
|
'y-dialog': boolean;
|
|
2164
2198
|
'y-dialog--maximized': boolean | undefined;
|
|
2165
2199
|
}>;
|
|
2166
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").
|
|
2200
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2167
2201
|
disabled: {
|
|
2168
2202
|
type: PropType<boolean>;
|
|
2169
2203
|
default: boolean;
|
|
2170
2204
|
};
|
|
2171
2205
|
theme: PropType<string>;
|
|
2206
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
2172
2207
|
width: PropType<string | number>;
|
|
2173
2208
|
height: PropType<string | number>;
|
|
2174
2209
|
modelValue: {
|
|
@@ -2212,7 +2247,6 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
2212
2247
|
type: PropType<string | number>;
|
|
2213
2248
|
default: number;
|
|
2214
2249
|
};
|
|
2215
|
-
base: PropType<import("../layer/base").BaseType>;
|
|
2216
2250
|
coordinateStrategy: {
|
|
2217
2251
|
type: PropType<"levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn>;
|
|
2218
2252
|
default: string;
|
|
@@ -9,7 +9,7 @@ export declare const pressYDividerPropsOptions: <Defaults extends {
|
|
|
9
9
|
};
|
|
10
10
|
export declare const YDivider: import("vue").DefineComponent<{
|
|
11
11
|
vertical: PropType<boolean>;
|
|
12
|
-
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
12
|
+
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
13
|
vertical: PropType<boolean>;
|
|
14
14
|
}>>, {}, {}>;
|
|
15
15
|
export type YDivider = InstanceType<typeof YDivider>;
|