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
|
@@ -317,6 +317,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
317
317
|
content$: import("vue").Ref<HTMLElement | undefined>;
|
|
318
318
|
base$: import("vue").Ref<any>;
|
|
319
319
|
baseEl: import("vue").Ref<HTMLElement | undefined>;
|
|
320
|
+
baseFromSlotEl: import("vue").ComputedRef<any>;
|
|
320
321
|
polyTransitionBindProps: import("vue").ComputedRef<{
|
|
321
322
|
is: any;
|
|
322
323
|
transitionProps: any;
|
|
@@ -336,6 +337,8 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
336
337
|
animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
337
338
|
animationName?: import("csstype").Property.AnimationName | undefined;
|
|
338
339
|
animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
340
|
+
animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
|
|
341
|
+
animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
|
|
339
342
|
animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
|
|
340
343
|
animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
341
344
|
appearance?: import("csstype").Property.Appearance | undefined;
|
|
@@ -457,6 +460,10 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
457
460
|
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
458
461
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
459
462
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
463
|
+
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
464
|
+
fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
|
|
465
|
+
fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
|
|
466
|
+
fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
|
|
460
467
|
fontVariant?: import("csstype").Property.FontVariant | undefined;
|
|
461
468
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
462
469
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
@@ -530,6 +537,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
530
537
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
531
538
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
532
539
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
540
|
+
masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
|
|
533
541
|
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
534
542
|
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
535
543
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
@@ -569,6 +577,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
569
577
|
overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
|
|
570
578
|
overflowX?: import("csstype").Property.OverflowX | undefined;
|
|
571
579
|
overflowY?: import("csstype").Property.OverflowY | undefined;
|
|
580
|
+
overlay?: import("csstype").Property.Overlay | undefined;
|
|
572
581
|
overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
|
|
573
582
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
574
583
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
@@ -656,12 +665,15 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
656
665
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
657
666
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
658
667
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
668
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
669
|
+
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
659
670
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
660
671
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
661
672
|
transform?: import("csstype").Property.Transform | undefined;
|
|
662
673
|
transformBox?: import("csstype").Property.TransformBox | undefined;
|
|
663
674
|
transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
664
675
|
transformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
676
|
+
transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
|
|
665
677
|
transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
666
678
|
transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
667
679
|
transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
@@ -670,9 +682,14 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
670
682
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
671
683
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
672
684
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
685
|
+
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
686
|
+
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
687
|
+
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
673
688
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
674
689
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
675
690
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
691
|
+
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
692
|
+
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
676
693
|
widows?: import("csstype").Property.Widows | undefined;
|
|
677
694
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
678
695
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
@@ -684,6 +701,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
684
701
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
685
702
|
all?: import("csstype").Globals | undefined;
|
|
686
703
|
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
704
|
+
animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
687
705
|
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
688
706
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
689
707
|
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
@@ -748,6 +766,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
748
766
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
749
767
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
750
768
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
769
|
+
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
751
770
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
752
771
|
MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
753
772
|
MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -757,7 +776,6 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
757
776
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
758
777
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
759
778
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
760
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
761
779
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
762
780
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
763
781
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -784,20 +802,16 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
784
802
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
785
803
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
786
804
|
MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
805
|
+
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
806
|
+
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
807
|
+
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
808
|
+
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
787
809
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
788
810
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
789
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
790
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
791
811
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
792
812
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
793
813
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
794
814
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
795
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
796
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
797
|
-
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
798
|
-
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
799
|
-
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
800
|
-
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
801
815
|
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
802
816
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
803
817
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
@@ -977,7 +991,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
977
991
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
978
992
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
979
993
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
980
|
-
|
|
994
|
+
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
981
995
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
982
996
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
983
997
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -1035,6 +1049,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1035
1049
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1036
1050
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
1037
1051
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1052
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1038
1053
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
1039
1054
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1040
1055
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
@@ -1056,17 +1071,22 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1056
1071
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
1057
1072
|
MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
1058
1073
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
1059
|
-
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1060
|
-
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1061
|
-
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1062
|
-
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1063
|
-
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1064
1074
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
1065
1075
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
1076
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1077
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1066
1078
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
1067
1079
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
1068
1080
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
1069
1081
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1082
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
1083
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1084
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
1085
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1086
|
+
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1087
|
+
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1088
|
+
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1089
|
+
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1070
1090
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
1071
1091
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
1072
1092
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -1099,8 +1119,6 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1099
1119
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
1100
1120
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
1101
1121
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
1102
|
-
WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
1103
|
-
WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
1104
1122
|
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
1105
1123
|
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
1106
1124
|
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
@@ -1144,6 +1162,8 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1144
1162
|
"animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
1145
1163
|
"animation-name"?: import("csstype").Property.AnimationName | undefined;
|
|
1146
1164
|
"animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1165
|
+
"animation-range-end"?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
|
|
1166
|
+
"animation-range-start"?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
|
|
1147
1167
|
"animation-timeline"?: import("csstype").Property.AnimationTimeline | undefined;
|
|
1148
1168
|
"animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1149
1169
|
"aspect-ratio"?: import("csstype").Property.AspectRatio | undefined;
|
|
@@ -1254,6 +1274,10 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1254
1274
|
"font-stretch"?: import("csstype").Property.FontStretch | undefined;
|
|
1255
1275
|
"font-style"?: import("csstype").Property.FontStyle | undefined;
|
|
1256
1276
|
"font-synthesis"?: import("csstype").Property.FontSynthesis | undefined;
|
|
1277
|
+
"font-synthesis-position"?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
1278
|
+
"font-synthesis-small-caps"?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
|
|
1279
|
+
"font-synthesis-style"?: import("csstype").Property.FontSynthesisStyle | undefined;
|
|
1280
|
+
"font-synthesis-weight"?: import("csstype").Property.FontSynthesisWeight | undefined;
|
|
1257
1281
|
"font-variant"?: import("csstype").Property.FontVariant | undefined;
|
|
1258
1282
|
"font-variant-alternates"?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
1259
1283
|
"font-variant-caps"?: import("csstype").Property.FontVariantCaps | undefined;
|
|
@@ -1323,6 +1347,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1323
1347
|
"mask-repeat"?: import("csstype").Property.MaskRepeat | undefined;
|
|
1324
1348
|
"mask-size"?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
1325
1349
|
"mask-type"?: import("csstype").Property.MaskType | undefined;
|
|
1350
|
+
"masonry-auto-flow"?: import("csstype").Property.MasonryAutoFlow | undefined;
|
|
1326
1351
|
"math-depth"?: import("csstype").Property.MathDepth | undefined;
|
|
1327
1352
|
"math-shift"?: import("csstype").Property.MathShift | undefined;
|
|
1328
1353
|
"math-style"?: import("csstype").Property.MathStyle | undefined;
|
|
@@ -1438,10 +1463,13 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1438
1463
|
"text-transform"?: import("csstype").Property.TextTransform | undefined;
|
|
1439
1464
|
"text-underline-offset"?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
1440
1465
|
"text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
1466
|
+
"text-wrap"?: import("csstype").Property.TextWrap | undefined;
|
|
1467
|
+
"timeline-scope"?: import("csstype").Property.TimelineScope | undefined;
|
|
1441
1468
|
"touch-action"?: import("csstype").Property.TouchAction | undefined;
|
|
1442
1469
|
"transform-box"?: import("csstype").Property.TransformBox | undefined;
|
|
1443
1470
|
"transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1444
1471
|
"transform-style"?: import("csstype").Property.TransformStyle | undefined;
|
|
1472
|
+
"transition-behavior"?: import("csstype").Property.TransitionBehavior | undefined;
|
|
1445
1473
|
"transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1446
1474
|
"transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1447
1475
|
"transition-property"?: import("csstype").Property.TransitionProperty | undefined;
|
|
@@ -1449,14 +1477,20 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1449
1477
|
"unicode-bidi"?: import("csstype").Property.UnicodeBidi | undefined;
|
|
1450
1478
|
"user-select"?: import("csstype").Property.UserSelect | undefined;
|
|
1451
1479
|
"vertical-align"?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
1480
|
+
"view-timeline-axis"?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
1481
|
+
"view-timeline-inset"?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
1482
|
+
"view-timeline-name"?: import("csstype").Property.ViewTimelineName | undefined;
|
|
1452
1483
|
"view-transition-name"?: import("csstype").Property.ViewTransitionName | undefined;
|
|
1453
1484
|
"white-space"?: import("csstype").Property.WhiteSpace | undefined;
|
|
1485
|
+
"white-space-collapse"?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
1486
|
+
"white-space-trim"?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
1454
1487
|
"will-change"?: import("csstype").Property.WillChange | undefined;
|
|
1455
1488
|
"word-break"?: import("csstype").Property.WordBreak | undefined;
|
|
1456
1489
|
"word-spacing"?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
1457
1490
|
"word-wrap"?: import("csstype").Property.WordWrap | undefined;
|
|
1458
1491
|
"writing-mode"?: import("csstype").Property.WritingMode | undefined;
|
|
1459
1492
|
"z-index"?: import("csstype").Property.ZIndex | undefined;
|
|
1493
|
+
"animation-range"?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
1460
1494
|
"background-position"?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
1461
1495
|
"border-block"?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
1462
1496
|
"border-block-end"?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
@@ -1503,6 +1537,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1503
1537
|
"scroll-timeline"?: import("csstype").Property.ScrollTimeline | undefined;
|
|
1504
1538
|
"text-decoration"?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
1505
1539
|
"text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
|
|
1540
|
+
"view-timeline"?: import("csstype").Property.ViewTimeline | undefined;
|
|
1506
1541
|
"-moz-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1507
1542
|
"-moz-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
|
|
1508
1543
|
"-moz-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -1512,7 +1547,6 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1512
1547
|
"-moz-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1513
1548
|
"-moz-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1514
1549
|
"-moz-appearance"?: import("csstype").Property.MozAppearance | undefined;
|
|
1515
|
-
"-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1516
1550
|
"-moz-binding"?: import("csstype").Property.MozBinding | undefined;
|
|
1517
1551
|
"-moz-border-bottom-colors"?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
1518
1552
|
"-moz-border-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -1539,20 +1573,16 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1539
1573
|
"-moz-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1540
1574
|
"-moz-orient"?: import("csstype").Property.MozOrient | undefined;
|
|
1541
1575
|
"-moz-osx-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
1576
|
+
"-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1577
|
+
"-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1578
|
+
"-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1579
|
+
"-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1542
1580
|
"-moz-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
1543
1581
|
"-moz-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
1544
|
-
"-moz-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1545
|
-
"-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1546
1582
|
"-moz-stack-sizing"?: import("csstype").Property.MozStackSizing | undefined;
|
|
1547
1583
|
"-moz-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
1548
1584
|
"-moz-text-blink"?: import("csstype").Property.MozTextBlink | undefined;
|
|
1549
1585
|
"-moz-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
1550
|
-
"-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1551
|
-
"-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
|
|
1552
|
-
"-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1553
|
-
"-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1554
|
-
"-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
|
|
1555
|
-
"-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1556
1586
|
"-moz-user-focus"?: import("csstype").Property.MozUserFocus | undefined;
|
|
1557
1587
|
"-moz-user-modify"?: import("csstype").Property.MozUserModify | undefined;
|
|
1558
1588
|
"-moz-user-select"?: import("csstype").Property.UserSelect | undefined;
|
|
@@ -1732,7 +1762,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1732
1762
|
"-moz-border-image"?: import("csstype").Property.BorderImage | undefined;
|
|
1733
1763
|
"-moz-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
1734
1764
|
"-moz-columns"?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1735
|
-
"-moz-
|
|
1765
|
+
"-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1736
1766
|
"-ms-content-zoom-limit"?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
1737
1767
|
"-ms-content-zoom-snap"?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
1738
1768
|
"-ms-flex"?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -1788,6 +1818,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1788
1818
|
"-khtml-line-break"?: import("csstype").Property.LineBreak | undefined;
|
|
1789
1819
|
"-khtml-opacity"?: import("csstype").Property.Opacity | undefined;
|
|
1790
1820
|
"-khtml-user-select"?: import("csstype").Property.UserSelect | undefined;
|
|
1821
|
+
"-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1791
1822
|
"-moz-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
|
|
1792
1823
|
"-moz-background-inline-policy"?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1793
1824
|
"-moz-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
@@ -1809,17 +1840,22 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1809
1840
|
"-moz-opacity"?: import("csstype").Property.Opacity | undefined;
|
|
1810
1841
|
"-moz-outline"?: import("csstype").Property.Outline<string | number> | undefined;
|
|
1811
1842
|
"-moz-outline-color"?: import("csstype").Property.OutlineColor | undefined;
|
|
1812
|
-
"-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1813
|
-
"-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1814
|
-
"-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1815
|
-
"-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1816
|
-
"-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1817
1843
|
"-moz-outline-style"?: import("csstype").Property.OutlineStyle | undefined;
|
|
1818
1844
|
"-moz-outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
1845
|
+
"-moz-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1846
|
+
"-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1819
1847
|
"-moz-text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
|
|
1820
1848
|
"-moz-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
|
|
1821
1849
|
"-moz-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
|
|
1822
1850
|
"-moz-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1851
|
+
"-moz-transform"?: import("csstype").Property.Transform | undefined;
|
|
1852
|
+
"-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1853
|
+
"-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
|
|
1854
|
+
"-moz-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1855
|
+
"-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1856
|
+
"-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1857
|
+
"-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
|
|
1858
|
+
"-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1823
1859
|
"-moz-user-input"?: import("csstype").Property.MozUserInput | undefined;
|
|
1824
1860
|
"-ms-ime-mode"?: import("csstype").Property.ImeMode | undefined;
|
|
1825
1861
|
"-o-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -1852,8 +1888,6 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1852
1888
|
"-webkit-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
1853
1889
|
"-webkit-box-orient"?: import("csstype").Property.BoxOrient | undefined;
|
|
1854
1890
|
"-webkit-box-pack"?: import("csstype").Property.BoxPack | undefined;
|
|
1855
|
-
"-webkit-scroll-snap-points-x"?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
1856
|
-
"-webkit-scroll-snap-points-y"?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
1857
1891
|
"alignment-baseline"?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
1858
1892
|
"baseline-shift"?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
1859
1893
|
"clip-rule"?: import("csstype").Property.ClipRule | undefined;
|
|
@@ -1888,7 +1922,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1888
1922
|
'update:modelValue': (value: boolean) => true;
|
|
1889
1923
|
'click:complement': (mouseEvent: MouseEvent) => true;
|
|
1890
1924
|
afterLeave: () => true;
|
|
1891
|
-
}, string, import("vue").
|
|
1925
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1892
1926
|
minWidth: PropType<string | number>;
|
|
1893
1927
|
width: PropType<string | number>;
|
|
1894
1928
|
maxWidth: PropType<string | number>;
|
|
@@ -2006,7 +2040,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
2006
2040
|
parent: import("../layer/active-stack").ActiveStackProvide | null;
|
|
2007
2041
|
active: import("vue").WritableComputedRef<boolean>;
|
|
2008
2042
|
hovered: import("vue").ComputedRef<boolean>;
|
|
2009
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "afterLeave")[], "update:modelValue" | "afterLeave", import("vue").
|
|
2043
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "afterLeave")[], "update:modelValue" | "afterLeave", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2010
2044
|
transition: {
|
|
2011
2045
|
default: string;
|
|
2012
2046
|
type: PropType<string | (import("vue").TransitionProps & {
|
|
@@ -132,7 +132,7 @@ export declare const YPagination: import("vue").DefineComponent<{
|
|
|
132
132
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
133
133
|
'update:modelValue': (value: number) => true;
|
|
134
134
|
change: (value: number, control?: string) => true;
|
|
135
|
-
}, string, import("vue").
|
|
135
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
136
136
|
start: {
|
|
137
137
|
type: (StringConstructor | NumberConstructor)[];
|
|
138
138
|
default: number;
|
|
@@ -162,8 +162,8 @@ export declare const YPagination: import("vue").DefineComponent<{
|
|
|
162
162
|
default: string;
|
|
163
163
|
};
|
|
164
164
|
}>> & {
|
|
165
|
-
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
166
165
|
onChange?: ((value: number, control?: string | undefined) => any) | undefined;
|
|
166
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
167
167
|
}, {
|
|
168
168
|
length: string | number;
|
|
169
169
|
disabled: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const YDividePanel: import("vue").DefineComponent<{}, {
|
|
2
2
|
activeSecondary: import("vue").Ref<boolean>;
|
|
3
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
3
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
4
4
|
export type YDividePanel = InstanceType<typeof YDividePanel>;
|
|
@@ -4,7 +4,7 @@ import { PropType } from 'vue';
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const YPlate: import("vue").DefineComponent<{
|
|
6
6
|
variation: PropType<Record<string, any>>;
|
|
7
|
-
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
7
|
+
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
8
|
variation: PropType<Record<string, any>>;
|
|
9
9
|
}>>, {}, {}>;
|
|
10
10
|
export type YPlate = InstanceType<typeof YPlate>;
|
|
@@ -38,7 +38,7 @@ export declare const YProgressBar: import("vue").DefineComponent<{
|
|
|
38
38
|
classes(): Record<string, boolean>;
|
|
39
39
|
leadColor(): string;
|
|
40
40
|
styles(): StyleValue;
|
|
41
|
-
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
41
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
42
42
|
value: {
|
|
43
43
|
type: PropType<number>;
|
|
44
44
|
};
|