@uzum-tech/ui 1.9.0 → 1.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +586 -265
- package/dist/index.prod.js +2 -2
- package/es/chat/index.d.ts +1 -1
- package/es/chat/src/Chat.d.ts +233 -11
- package/es/chat/src/Chat.js +73 -22
- package/es/chat/src/ChatParts/ChatAttachment.js +14 -12
- package/es/chat/src/ChatParts/MainArea.d.ts +1 -0
- package/es/chat/src/ChatParts/MainArea.js +95 -57
- package/es/chat/src/ChatParts/Sidebar.d.ts +920 -0
- package/es/chat/src/ChatParts/Sidebar.js +63 -12
- package/es/chat/src/interface.d.ts +24 -3
- package/es/chat/src/styles/index.cssr.js +13 -2
- package/es/date-picker/src/DatePicker.d.ts +1308 -43
- package/es/date-picker/src/DatePicker.js +54 -29
- package/es/date-picker/src/interface.d.ts +1 -0
- package/es/date-picker/src/panel/date.d.ts +141 -0
- package/es/date-picker/src/panel/daterange.d.ts +141 -0
- package/es/date-picker/src/panel/datetime.d.ts +141 -0
- package/es/date-picker/src/panel/datetimerange.d.ts +141 -0
- package/es/date-picker/src/panel/panelMonth.d.ts +282 -0
- package/es/date-picker/src/panel/panelMonthContent.d.ts +141 -0
- package/es/date-picker/src/panel/panelYear.d.ts +282 -0
- package/es/date-picker/src/panel/panelYearContent.d.ts +141 -0
- package/es/date-picker/src/panel/use-calendar.d.ts +141 -0
- package/es/date-picker/src/panel/use-dual-calendar.d.ts +141 -0
- package/es/date-picker/src/panel/use-panel-common.d.ts +141 -0
- package/es/date-picker/styles/dark.js +3 -1
- package/es/date-picker/styles/light.d.ts +123 -0
- package/es/date-picker/styles/light.js +3 -1
- package/es/descriptions/src/Descriptions.d.ts +30 -0
- package/es/descriptions/src/Descriptions.js +18 -10
- package/es/locales/common/arDZ.js +2 -0
- package/es/locales/common/deDE.js +2 -0
- package/es/locales/common/enGB.js +2 -0
- package/es/locales/common/enUS.d.ts +2 -0
- package/es/locales/common/enUS.js +2 -0
- package/es/locales/common/eo.js +2 -0
- package/es/locales/common/esAR.js +2 -0
- package/es/locales/common/faIR.js +2 -0
- package/es/locales/common/frFR.js +2 -0
- package/es/locales/common/idID.js +2 -0
- package/es/locales/common/itIT.js +2 -0
- package/es/locales/common/jaJP.js +2 -0
- package/es/locales/common/koKR.js +2 -0
- package/es/locales/common/nbNO.js +2 -0
- package/es/locales/common/nlNL.js +2 -0
- package/es/locales/common/plPL.js +2 -0
- package/es/locales/common/ptBR.js +2 -0
- package/es/locales/common/ruRU.js +2 -0
- package/es/locales/common/skSK.js +2 -0
- package/es/locales/common/svSE.js +2 -0
- package/es/locales/common/thTH.js +2 -0
- package/es/locales/common/trTR.js +2 -0
- package/es/locales/common/ukUA.js +2 -0
- package/es/locales/common/viVN.js +2 -0
- package/es/locales/common/zhCN.js +2 -0
- package/es/locales/common/zhTW.js +2 -0
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/chat/index.d.ts +1 -1
- package/lib/chat/src/Chat.d.ts +233 -11
- package/lib/chat/src/Chat.js +73 -22
- package/lib/chat/src/ChatParts/ChatAttachment.js +14 -12
- package/lib/chat/src/ChatParts/MainArea.d.ts +1 -0
- package/lib/chat/src/ChatParts/MainArea.js +94 -56
- package/lib/chat/src/ChatParts/Sidebar.d.ts +920 -0
- package/lib/chat/src/ChatParts/Sidebar.js +62 -11
- package/lib/chat/src/interface.d.ts +24 -3
- package/lib/chat/src/styles/index.cssr.js +13 -2
- package/lib/date-picker/src/DatePicker.d.ts +1308 -43
- package/lib/date-picker/src/DatePicker.js +53 -28
- package/lib/date-picker/src/interface.d.ts +1 -0
- package/lib/date-picker/src/panel/date.d.ts +141 -0
- package/lib/date-picker/src/panel/daterange.d.ts +141 -0
- package/lib/date-picker/src/panel/datetime.d.ts +141 -0
- package/lib/date-picker/src/panel/datetimerange.d.ts +141 -0
- package/lib/date-picker/src/panel/panelMonth.d.ts +282 -0
- package/lib/date-picker/src/panel/panelMonthContent.d.ts +141 -0
- package/lib/date-picker/src/panel/panelYear.d.ts +282 -0
- package/lib/date-picker/src/panel/panelYearContent.d.ts +141 -0
- package/lib/date-picker/src/panel/use-calendar.d.ts +141 -0
- package/lib/date-picker/src/panel/use-dual-calendar.d.ts +141 -0
- package/lib/date-picker/src/panel/use-panel-common.d.ts +141 -0
- package/lib/date-picker/styles/dark.js +3 -1
- package/lib/date-picker/styles/light.d.ts +123 -0
- package/lib/date-picker/styles/light.js +3 -1
- package/lib/descriptions/src/Descriptions.d.ts +30 -0
- package/lib/descriptions/src/Descriptions.js +18 -10
- package/lib/locales/common/arDZ.js +2 -0
- package/lib/locales/common/deDE.js +2 -0
- package/lib/locales/common/enGB.js +2 -0
- package/lib/locales/common/enUS.d.ts +2 -0
- package/lib/locales/common/enUS.js +2 -0
- package/lib/locales/common/eo.js +2 -0
- package/lib/locales/common/esAR.js +2 -0
- package/lib/locales/common/faIR.js +2 -0
- package/lib/locales/common/frFR.js +2 -0
- package/lib/locales/common/idID.js +2 -0
- package/lib/locales/common/itIT.js +2 -0
- package/lib/locales/common/jaJP.js +2 -0
- package/lib/locales/common/koKR.js +2 -0
- package/lib/locales/common/nbNO.js +2 -0
- package/lib/locales/common/nlNL.js +2 -0
- package/lib/locales/common/plPL.js +2 -0
- package/lib/locales/common/ptBR.js +2 -0
- package/lib/locales/common/ruRU.js +2 -0
- package/lib/locales/common/skSK.js +2 -0
- package/lib/locales/common/svSE.js +2 -0
- package/lib/locales/common/thTH.js +2 -0
- package/lib/locales/common/trTR.js +2 -0
- package/lib/locales/common/ukUA.js +2 -0
- package/lib/locales/common/viVN.js +2 -0
- package/lib/locales/common/zhCN.js +2 -0
- package/lib/locales/common/zhTW.js +2 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/web-types.json +95 -4
|
@@ -5,7 +5,7 @@ import type { FormValidationStatus } from '../../form/src/interface';
|
|
|
5
5
|
import type { InputSize } from '../../input';
|
|
6
6
|
import type { MaybeArray, ExtractPublicPropTypes } from '../../_utils';
|
|
7
7
|
import { type DatePickerType } from './config';
|
|
8
|
-
import type { OnUpdateValue, Value, IsDateDisabled, IsTimeDisabled, Shortcuts, FirstDayOfWeek, DefaultTime, FormattedValue, OnUpdateFormattedValue, OnConfirm } from './interface';
|
|
8
|
+
import type { OnUpdateValue, Value, IsDateDisabled, IsTimeDisabled, Shortcuts, FirstDayOfWeek, DefaultTime, FormattedValue, OnUpdateFormattedValue, OnConfirm, TriggerPreset } from './interface';
|
|
9
9
|
export declare const datePickerProps: {
|
|
10
10
|
readonly to: {
|
|
11
11
|
type: PropType<HTMLElement | string | boolean>;
|
|
@@ -16,6 +16,7 @@ export declare const datePickerProps: {
|
|
|
16
16
|
readonly default: undefined;
|
|
17
17
|
};
|
|
18
18
|
readonly clearable: BooleanConstructor;
|
|
19
|
+
readonly round: BooleanConstructor;
|
|
19
20
|
readonly updateValueOnClose: BooleanConstructor;
|
|
20
21
|
readonly defaultValue: PropType<Value | null>;
|
|
21
22
|
readonly defaultFormattedValue: PropType<FormattedValue | null>;
|
|
@@ -65,6 +66,10 @@ export declare const datePickerProps: {
|
|
|
65
66
|
readonly defaultCalendarStartTime: NumberConstructor;
|
|
66
67
|
readonly defaultCalendarEndTime: NumberConstructor;
|
|
67
68
|
readonly bindCalendarMonths: BooleanConstructor;
|
|
69
|
+
readonly triggerPreset: {
|
|
70
|
+
readonly type: PropType<TriggerPreset>;
|
|
71
|
+
readonly default: "input";
|
|
72
|
+
};
|
|
68
73
|
readonly 'onUpdate:show': PropType<MaybeArray<(show: boolean) => void>>;
|
|
69
74
|
readonly onUpdateShow: PropType<MaybeArray<(show: boolean) => void>>;
|
|
70
75
|
readonly 'onUpdate:formattedValue': PropType<MaybeArray<OnUpdateFormattedValue>>;
|
|
@@ -782,6 +787,129 @@ export declare const datePickerProps: {
|
|
|
782
787
|
railInsetVerticalLeft: string;
|
|
783
788
|
railColor: string;
|
|
784
789
|
}, any>;
|
|
790
|
+
Select: import("../../_mixins").Theme<"InternalSelection", {
|
|
791
|
+
paddingTiny: string;
|
|
792
|
+
paddingSmall: string;
|
|
793
|
+
paddingMedium: string;
|
|
794
|
+
paddingLarge: string;
|
|
795
|
+
paddingHuge: string;
|
|
796
|
+
clearSizeTiny: string;
|
|
797
|
+
clearSizeSmall: string;
|
|
798
|
+
clearSizeMedium: string;
|
|
799
|
+
clearSizeLarge: string;
|
|
800
|
+
clearSizeHuge: string;
|
|
801
|
+
arrowSizeTiny: string;
|
|
802
|
+
arrowSizeSmall: string;
|
|
803
|
+
arrowSizeMedium: string;
|
|
804
|
+
arrowSizeLarge: string;
|
|
805
|
+
arrowSizeHuge: string;
|
|
806
|
+
fontSizeTiny: string;
|
|
807
|
+
fontSizeSmall: string;
|
|
808
|
+
fontSizeMedium: string;
|
|
809
|
+
fontSizeLarge: string;
|
|
810
|
+
fontSizeHuge: string;
|
|
811
|
+
lineHeightTiny: string;
|
|
812
|
+
lineHeightSmall: string;
|
|
813
|
+
lineHeightMedium: string;
|
|
814
|
+
lineHeightLarge: string;
|
|
815
|
+
lineHeightHuge: string;
|
|
816
|
+
heightTiny: string;
|
|
817
|
+
heightSmall: string;
|
|
818
|
+
heightMedium: string;
|
|
819
|
+
heightLarge: string;
|
|
820
|
+
heightHuge: string;
|
|
821
|
+
borderRadiusTiny: string;
|
|
822
|
+
borderRadiusSmall: string;
|
|
823
|
+
borderRadiusMedium: string;
|
|
824
|
+
borderRadiusLarge: string;
|
|
825
|
+
borderRadiusHuge: string;
|
|
826
|
+
textColor: string;
|
|
827
|
+
textColorDisabled: string;
|
|
828
|
+
placeholderColor: string;
|
|
829
|
+
placeholderColorDisabled: string;
|
|
830
|
+
color: string;
|
|
831
|
+
colorFilled: string;
|
|
832
|
+
colorDisabled: string;
|
|
833
|
+
colorActive: string;
|
|
834
|
+
border: string;
|
|
835
|
+
borderFilled: string;
|
|
836
|
+
borderHover: string;
|
|
837
|
+
borderActive: string;
|
|
838
|
+
borderFocus: string;
|
|
839
|
+
borderDisabled: string;
|
|
840
|
+
boxShadowHover: string;
|
|
841
|
+
boxShadowActive: string;
|
|
842
|
+
boxShadowFocus: string;
|
|
843
|
+
caretColor: string;
|
|
844
|
+
arrowColor: string;
|
|
845
|
+
arrowColorHover: string;
|
|
846
|
+
arrowColorDisabled: string;
|
|
847
|
+
loadingColor: string;
|
|
848
|
+
borderWarning: string;
|
|
849
|
+
borderHoverWarning: string;
|
|
850
|
+
borderActiveWarning: string;
|
|
851
|
+
borderFocusWarning: string;
|
|
852
|
+
boxShadowHoverWarning: string;
|
|
853
|
+
boxShadowActiveWarning: string;
|
|
854
|
+
boxShadowFocusWarning: string;
|
|
855
|
+
colorActiveWarning: string;
|
|
856
|
+
caretColorWarning: string;
|
|
857
|
+
borderError: string;
|
|
858
|
+
borderHoverError: string;
|
|
859
|
+
borderActiveError: string;
|
|
860
|
+
borderFocusError: string;
|
|
861
|
+
boxShadowHoverError: string;
|
|
862
|
+
boxShadowActiveError: string;
|
|
863
|
+
boxShadowFocusError: string;
|
|
864
|
+
colorActiveError: string;
|
|
865
|
+
caretColorError: string;
|
|
866
|
+
clearColor: string;
|
|
867
|
+
clearColorHover: string;
|
|
868
|
+
clearColorPressed: string;
|
|
869
|
+
caretColorSecondary: string;
|
|
870
|
+
filterCounterTextColor: string;
|
|
871
|
+
filterCounterTextColorDisabled: string;
|
|
872
|
+
arrowColorSecondary: string;
|
|
873
|
+
clearColorSecondary: string;
|
|
874
|
+
colorSecondary: string;
|
|
875
|
+
textColorSecondary: string;
|
|
876
|
+
borderSecondary: string;
|
|
877
|
+
arrowColorDisabledSecondary: string;
|
|
878
|
+
clearColorDisabledSecondary: string;
|
|
879
|
+
colorDisabledSecondary: string;
|
|
880
|
+
textColorDisabledSecondary: string;
|
|
881
|
+
borderDisabledSecondary: string;
|
|
882
|
+
arrowColorHoverSecondary: string;
|
|
883
|
+
clearColorHoverSecondary: string;
|
|
884
|
+
colorHoverSecondary: string;
|
|
885
|
+
textColorHoverSecondary: string;
|
|
886
|
+
borderHoverSecondary: string;
|
|
887
|
+
arrowColorFocusSecondary: string;
|
|
888
|
+
clearColorFocusSecondary: string;
|
|
889
|
+
colorFocusSecondary: string;
|
|
890
|
+
textColorFocusSecondary: string;
|
|
891
|
+
borderFocusSecondary: string;
|
|
892
|
+
arrowColorActiveSecondary: string;
|
|
893
|
+
clearColorActiveSecondary: string;
|
|
894
|
+
colorActiveSecondary: string;
|
|
895
|
+
textColorActiveSecondary: string;
|
|
896
|
+
borderActiveSecondary: string;
|
|
897
|
+
}, {
|
|
898
|
+
Popover: import("../../_mixins").Theme<"Popover", {
|
|
899
|
+
space: string;
|
|
900
|
+
spaceArrow: string;
|
|
901
|
+
arrowOffset: string;
|
|
902
|
+
arrowOffsetVertical: string;
|
|
903
|
+
arrowHeight: string;
|
|
904
|
+
padding: string;
|
|
905
|
+
fontSize: string;
|
|
906
|
+
borderRadius: string;
|
|
907
|
+
color: string;
|
|
908
|
+
dividerColor: string;
|
|
909
|
+
textColor: string;
|
|
910
|
+
boxShadow: string;
|
|
911
|
+
}, any>;
|
|
912
|
+
}>;
|
|
785
913
|
}>>;
|
|
786
914
|
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
|
|
787
915
|
itemColor: string;
|
|
@@ -1491,6 +1619,129 @@ export declare const datePickerProps: {
|
|
|
1491
1619
|
railInsetVerticalLeft: string;
|
|
1492
1620
|
railColor: string;
|
|
1493
1621
|
}, any>;
|
|
1622
|
+
Select: import("../../_mixins").Theme<"InternalSelection", {
|
|
1623
|
+
paddingTiny: string;
|
|
1624
|
+
paddingSmall: string;
|
|
1625
|
+
paddingMedium: string;
|
|
1626
|
+
paddingLarge: string;
|
|
1627
|
+
paddingHuge: string;
|
|
1628
|
+
clearSizeTiny: string;
|
|
1629
|
+
clearSizeSmall: string;
|
|
1630
|
+
clearSizeMedium: string;
|
|
1631
|
+
clearSizeLarge: string;
|
|
1632
|
+
clearSizeHuge: string;
|
|
1633
|
+
arrowSizeTiny: string;
|
|
1634
|
+
arrowSizeSmall: string;
|
|
1635
|
+
arrowSizeMedium: string;
|
|
1636
|
+
arrowSizeLarge: string;
|
|
1637
|
+
arrowSizeHuge: string;
|
|
1638
|
+
fontSizeTiny: string;
|
|
1639
|
+
fontSizeSmall: string;
|
|
1640
|
+
fontSizeMedium: string;
|
|
1641
|
+
fontSizeLarge: string;
|
|
1642
|
+
fontSizeHuge: string;
|
|
1643
|
+
lineHeightTiny: string;
|
|
1644
|
+
lineHeightSmall: string;
|
|
1645
|
+
lineHeightMedium: string;
|
|
1646
|
+
lineHeightLarge: string;
|
|
1647
|
+
lineHeightHuge: string;
|
|
1648
|
+
heightTiny: string;
|
|
1649
|
+
heightSmall: string;
|
|
1650
|
+
heightMedium: string;
|
|
1651
|
+
heightLarge: string;
|
|
1652
|
+
heightHuge: string;
|
|
1653
|
+
borderRadiusTiny: string;
|
|
1654
|
+
borderRadiusSmall: string;
|
|
1655
|
+
borderRadiusMedium: string;
|
|
1656
|
+
borderRadiusLarge: string;
|
|
1657
|
+
borderRadiusHuge: string;
|
|
1658
|
+
textColor: string;
|
|
1659
|
+
textColorDisabled: string;
|
|
1660
|
+
placeholderColor: string;
|
|
1661
|
+
placeholderColorDisabled: string;
|
|
1662
|
+
color: string;
|
|
1663
|
+
colorFilled: string;
|
|
1664
|
+
colorDisabled: string;
|
|
1665
|
+
colorActive: string;
|
|
1666
|
+
border: string;
|
|
1667
|
+
borderFilled: string;
|
|
1668
|
+
borderHover: string;
|
|
1669
|
+
borderActive: string;
|
|
1670
|
+
borderFocus: string;
|
|
1671
|
+
borderDisabled: string;
|
|
1672
|
+
boxShadowHover: string;
|
|
1673
|
+
boxShadowActive: string;
|
|
1674
|
+
boxShadowFocus: string;
|
|
1675
|
+
caretColor: string;
|
|
1676
|
+
arrowColor: string;
|
|
1677
|
+
arrowColorHover: string;
|
|
1678
|
+
arrowColorDisabled: string;
|
|
1679
|
+
loadingColor: string;
|
|
1680
|
+
borderWarning: string;
|
|
1681
|
+
borderHoverWarning: string;
|
|
1682
|
+
borderActiveWarning: string;
|
|
1683
|
+
borderFocusWarning: string;
|
|
1684
|
+
boxShadowHoverWarning: string;
|
|
1685
|
+
boxShadowActiveWarning: string;
|
|
1686
|
+
boxShadowFocusWarning: string;
|
|
1687
|
+
colorActiveWarning: string;
|
|
1688
|
+
caretColorWarning: string;
|
|
1689
|
+
borderError: string;
|
|
1690
|
+
borderHoverError: string;
|
|
1691
|
+
borderActiveError: string;
|
|
1692
|
+
borderFocusError: string;
|
|
1693
|
+
boxShadowHoverError: string;
|
|
1694
|
+
boxShadowActiveError: string;
|
|
1695
|
+
boxShadowFocusError: string;
|
|
1696
|
+
colorActiveError: string;
|
|
1697
|
+
caretColorError: string;
|
|
1698
|
+
clearColor: string;
|
|
1699
|
+
clearColorHover: string;
|
|
1700
|
+
clearColorPressed: string;
|
|
1701
|
+
caretColorSecondary: string;
|
|
1702
|
+
filterCounterTextColor: string;
|
|
1703
|
+
filterCounterTextColorDisabled: string;
|
|
1704
|
+
arrowColorSecondary: string;
|
|
1705
|
+
clearColorSecondary: string;
|
|
1706
|
+
colorSecondary: string;
|
|
1707
|
+
textColorSecondary: string;
|
|
1708
|
+
borderSecondary: string;
|
|
1709
|
+
arrowColorDisabledSecondary: string;
|
|
1710
|
+
clearColorDisabledSecondary: string;
|
|
1711
|
+
colorDisabledSecondary: string;
|
|
1712
|
+
textColorDisabledSecondary: string;
|
|
1713
|
+
borderDisabledSecondary: string;
|
|
1714
|
+
arrowColorHoverSecondary: string;
|
|
1715
|
+
clearColorHoverSecondary: string;
|
|
1716
|
+
colorHoverSecondary: string;
|
|
1717
|
+
textColorHoverSecondary: string;
|
|
1718
|
+
borderHoverSecondary: string;
|
|
1719
|
+
arrowColorFocusSecondary: string;
|
|
1720
|
+
clearColorFocusSecondary: string;
|
|
1721
|
+
colorFocusSecondary: string;
|
|
1722
|
+
textColorFocusSecondary: string;
|
|
1723
|
+
borderFocusSecondary: string;
|
|
1724
|
+
arrowColorActiveSecondary: string;
|
|
1725
|
+
clearColorActiveSecondary: string;
|
|
1726
|
+
colorActiveSecondary: string;
|
|
1727
|
+
textColorActiveSecondary: string;
|
|
1728
|
+
borderActiveSecondary: string;
|
|
1729
|
+
}, {
|
|
1730
|
+
Popover: import("../../_mixins").Theme<"Popover", {
|
|
1731
|
+
space: string;
|
|
1732
|
+
spaceArrow: string;
|
|
1733
|
+
arrowOffset: string;
|
|
1734
|
+
arrowOffsetVertical: string;
|
|
1735
|
+
arrowHeight: string;
|
|
1736
|
+
padding: string;
|
|
1737
|
+
fontSize: string;
|
|
1738
|
+
borderRadius: string;
|
|
1739
|
+
color: string;
|
|
1740
|
+
dividerColor: string;
|
|
1741
|
+
textColor: string;
|
|
1742
|
+
boxShadow: string;
|
|
1743
|
+
}, any>;
|
|
1744
|
+
}>;
|
|
1494
1745
|
}>>>;
|
|
1495
1746
|
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
|
|
1496
1747
|
itemColor: string;
|
|
@@ -2200,6 +2451,129 @@ export declare const datePickerProps: {
|
|
|
2200
2451
|
railInsetVerticalLeft: string;
|
|
2201
2452
|
railColor: string;
|
|
2202
2453
|
}, any>;
|
|
2454
|
+
Select: import("../../_mixins").Theme<"InternalSelection", {
|
|
2455
|
+
paddingTiny: string;
|
|
2456
|
+
paddingSmall: string;
|
|
2457
|
+
paddingMedium: string;
|
|
2458
|
+
paddingLarge: string;
|
|
2459
|
+
paddingHuge: string;
|
|
2460
|
+
clearSizeTiny: string;
|
|
2461
|
+
clearSizeSmall: string;
|
|
2462
|
+
clearSizeMedium: string;
|
|
2463
|
+
clearSizeLarge: string;
|
|
2464
|
+
clearSizeHuge: string;
|
|
2465
|
+
arrowSizeTiny: string;
|
|
2466
|
+
arrowSizeSmall: string;
|
|
2467
|
+
arrowSizeMedium: string;
|
|
2468
|
+
arrowSizeLarge: string;
|
|
2469
|
+
arrowSizeHuge: string;
|
|
2470
|
+
fontSizeTiny: string;
|
|
2471
|
+
fontSizeSmall: string;
|
|
2472
|
+
fontSizeMedium: string;
|
|
2473
|
+
fontSizeLarge: string;
|
|
2474
|
+
fontSizeHuge: string;
|
|
2475
|
+
lineHeightTiny: string;
|
|
2476
|
+
lineHeightSmall: string;
|
|
2477
|
+
lineHeightMedium: string;
|
|
2478
|
+
lineHeightLarge: string;
|
|
2479
|
+
lineHeightHuge: string;
|
|
2480
|
+
heightTiny: string;
|
|
2481
|
+
heightSmall: string;
|
|
2482
|
+
heightMedium: string;
|
|
2483
|
+
heightLarge: string;
|
|
2484
|
+
heightHuge: string;
|
|
2485
|
+
borderRadiusTiny: string;
|
|
2486
|
+
borderRadiusSmall: string;
|
|
2487
|
+
borderRadiusMedium: string;
|
|
2488
|
+
borderRadiusLarge: string;
|
|
2489
|
+
borderRadiusHuge: string;
|
|
2490
|
+
textColor: string;
|
|
2491
|
+
textColorDisabled: string;
|
|
2492
|
+
placeholderColor: string;
|
|
2493
|
+
placeholderColorDisabled: string;
|
|
2494
|
+
color: string;
|
|
2495
|
+
colorFilled: string;
|
|
2496
|
+
colorDisabled: string;
|
|
2497
|
+
colorActive: string;
|
|
2498
|
+
border: string;
|
|
2499
|
+
borderFilled: string;
|
|
2500
|
+
borderHover: string;
|
|
2501
|
+
borderActive: string;
|
|
2502
|
+
borderFocus: string;
|
|
2503
|
+
borderDisabled: string;
|
|
2504
|
+
boxShadowHover: string;
|
|
2505
|
+
boxShadowActive: string;
|
|
2506
|
+
boxShadowFocus: string;
|
|
2507
|
+
caretColor: string;
|
|
2508
|
+
arrowColor: string;
|
|
2509
|
+
arrowColorHover: string;
|
|
2510
|
+
arrowColorDisabled: string;
|
|
2511
|
+
loadingColor: string;
|
|
2512
|
+
borderWarning: string;
|
|
2513
|
+
borderHoverWarning: string;
|
|
2514
|
+
borderActiveWarning: string;
|
|
2515
|
+
borderFocusWarning: string;
|
|
2516
|
+
boxShadowHoverWarning: string;
|
|
2517
|
+
boxShadowActiveWarning: string;
|
|
2518
|
+
boxShadowFocusWarning: string;
|
|
2519
|
+
colorActiveWarning: string;
|
|
2520
|
+
caretColorWarning: string;
|
|
2521
|
+
borderError: string;
|
|
2522
|
+
borderHoverError: string;
|
|
2523
|
+
borderActiveError: string;
|
|
2524
|
+
borderFocusError: string;
|
|
2525
|
+
boxShadowHoverError: string;
|
|
2526
|
+
boxShadowActiveError: string;
|
|
2527
|
+
boxShadowFocusError: string;
|
|
2528
|
+
colorActiveError: string;
|
|
2529
|
+
caretColorError: string;
|
|
2530
|
+
clearColor: string;
|
|
2531
|
+
clearColorHover: string;
|
|
2532
|
+
clearColorPressed: string;
|
|
2533
|
+
caretColorSecondary: string;
|
|
2534
|
+
filterCounterTextColor: string;
|
|
2535
|
+
filterCounterTextColorDisabled: string;
|
|
2536
|
+
arrowColorSecondary: string;
|
|
2537
|
+
clearColorSecondary: string;
|
|
2538
|
+
colorSecondary: string;
|
|
2539
|
+
textColorSecondary: string;
|
|
2540
|
+
borderSecondary: string;
|
|
2541
|
+
arrowColorDisabledSecondary: string;
|
|
2542
|
+
clearColorDisabledSecondary: string;
|
|
2543
|
+
colorDisabledSecondary: string;
|
|
2544
|
+
textColorDisabledSecondary: string;
|
|
2545
|
+
borderDisabledSecondary: string;
|
|
2546
|
+
arrowColorHoverSecondary: string;
|
|
2547
|
+
clearColorHoverSecondary: string;
|
|
2548
|
+
colorHoverSecondary: string;
|
|
2549
|
+
textColorHoverSecondary: string;
|
|
2550
|
+
borderHoverSecondary: string;
|
|
2551
|
+
arrowColorFocusSecondary: string;
|
|
2552
|
+
clearColorFocusSecondary: string;
|
|
2553
|
+
colorFocusSecondary: string;
|
|
2554
|
+
textColorFocusSecondary: string;
|
|
2555
|
+
borderFocusSecondary: string;
|
|
2556
|
+
arrowColorActiveSecondary: string;
|
|
2557
|
+
clearColorActiveSecondary: string;
|
|
2558
|
+
colorActiveSecondary: string;
|
|
2559
|
+
textColorActiveSecondary: string;
|
|
2560
|
+
borderActiveSecondary: string;
|
|
2561
|
+
}, {
|
|
2562
|
+
Popover: import("../../_mixins").Theme<"Popover", {
|
|
2563
|
+
space: string;
|
|
2564
|
+
spaceArrow: string;
|
|
2565
|
+
arrowOffset: string;
|
|
2566
|
+
arrowOffsetVertical: string;
|
|
2567
|
+
arrowHeight: string;
|
|
2568
|
+
padding: string;
|
|
2569
|
+
fontSize: string;
|
|
2570
|
+
borderRadius: string;
|
|
2571
|
+
color: string;
|
|
2572
|
+
dividerColor: string;
|
|
2573
|
+
textColor: string;
|
|
2574
|
+
boxShadow: string;
|
|
2575
|
+
}, any>;
|
|
2576
|
+
}>;
|
|
2203
2577
|
}>>>;
|
|
2204
2578
|
};
|
|
2205
2579
|
export type DatePickerSetupProps = ExtractPropTypes<typeof datePickerProps>;
|
|
@@ -2214,6 +2588,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2214
2588
|
readonly default: undefined;
|
|
2215
2589
|
};
|
|
2216
2590
|
readonly clearable: BooleanConstructor;
|
|
2591
|
+
readonly round: BooleanConstructor;
|
|
2217
2592
|
readonly updateValueOnClose: BooleanConstructor;
|
|
2218
2593
|
readonly defaultValue: PropType<Value | null>;
|
|
2219
2594
|
readonly defaultFormattedValue: PropType<FormattedValue | null>;
|
|
@@ -2263,6 +2638,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2263
2638
|
readonly defaultCalendarStartTime: NumberConstructor;
|
|
2264
2639
|
readonly defaultCalendarEndTime: NumberConstructor;
|
|
2265
2640
|
readonly bindCalendarMonths: BooleanConstructor;
|
|
2641
|
+
readonly triggerPreset: {
|
|
2642
|
+
readonly type: PropType<TriggerPreset>;
|
|
2643
|
+
readonly default: "input";
|
|
2644
|
+
};
|
|
2266
2645
|
readonly 'onUpdate:show': PropType<MaybeArray<(show: boolean) => void>>;
|
|
2267
2646
|
readonly onUpdateShow: PropType<MaybeArray<(show: boolean) => void>>;
|
|
2268
2647
|
readonly 'onUpdate:formattedValue': PropType<MaybeArray<OnUpdateFormattedValue>>;
|
|
@@ -2980,6 +3359,129 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2980
3359
|
railInsetVerticalLeft: string;
|
|
2981
3360
|
railColor: string;
|
|
2982
3361
|
}, any>;
|
|
3362
|
+
Select: import("../../_mixins").Theme<"InternalSelection", {
|
|
3363
|
+
paddingTiny: string;
|
|
3364
|
+
paddingSmall: string;
|
|
3365
|
+
paddingMedium: string;
|
|
3366
|
+
paddingLarge: string;
|
|
3367
|
+
paddingHuge: string;
|
|
3368
|
+
clearSizeTiny: string;
|
|
3369
|
+
clearSizeSmall: string;
|
|
3370
|
+
clearSizeMedium: string;
|
|
3371
|
+
clearSizeLarge: string;
|
|
3372
|
+
clearSizeHuge: string;
|
|
3373
|
+
arrowSizeTiny: string;
|
|
3374
|
+
arrowSizeSmall: string;
|
|
3375
|
+
arrowSizeMedium: string;
|
|
3376
|
+
arrowSizeLarge: string;
|
|
3377
|
+
arrowSizeHuge: string;
|
|
3378
|
+
fontSizeTiny: string;
|
|
3379
|
+
fontSizeSmall: string;
|
|
3380
|
+
fontSizeMedium: string;
|
|
3381
|
+
fontSizeLarge: string;
|
|
3382
|
+
fontSizeHuge: string;
|
|
3383
|
+
lineHeightTiny: string;
|
|
3384
|
+
lineHeightSmall: string;
|
|
3385
|
+
lineHeightMedium: string;
|
|
3386
|
+
lineHeightLarge: string;
|
|
3387
|
+
lineHeightHuge: string;
|
|
3388
|
+
heightTiny: string;
|
|
3389
|
+
heightSmall: string;
|
|
3390
|
+
heightMedium: string;
|
|
3391
|
+
heightLarge: string;
|
|
3392
|
+
heightHuge: string;
|
|
3393
|
+
borderRadiusTiny: string;
|
|
3394
|
+
borderRadiusSmall: string;
|
|
3395
|
+
borderRadiusMedium: string;
|
|
3396
|
+
borderRadiusLarge: string;
|
|
3397
|
+
borderRadiusHuge: string;
|
|
3398
|
+
textColor: string;
|
|
3399
|
+
textColorDisabled: string;
|
|
3400
|
+
placeholderColor: string;
|
|
3401
|
+
placeholderColorDisabled: string;
|
|
3402
|
+
color: string;
|
|
3403
|
+
colorFilled: string;
|
|
3404
|
+
colorDisabled: string;
|
|
3405
|
+
colorActive: string;
|
|
3406
|
+
border: string;
|
|
3407
|
+
borderFilled: string;
|
|
3408
|
+
borderHover: string;
|
|
3409
|
+
borderActive: string;
|
|
3410
|
+
borderFocus: string;
|
|
3411
|
+
borderDisabled: string;
|
|
3412
|
+
boxShadowHover: string;
|
|
3413
|
+
boxShadowActive: string;
|
|
3414
|
+
boxShadowFocus: string;
|
|
3415
|
+
caretColor: string;
|
|
3416
|
+
arrowColor: string;
|
|
3417
|
+
arrowColorHover: string;
|
|
3418
|
+
arrowColorDisabled: string;
|
|
3419
|
+
loadingColor: string;
|
|
3420
|
+
borderWarning: string;
|
|
3421
|
+
borderHoverWarning: string;
|
|
3422
|
+
borderActiveWarning: string;
|
|
3423
|
+
borderFocusWarning: string;
|
|
3424
|
+
boxShadowHoverWarning: string;
|
|
3425
|
+
boxShadowActiveWarning: string;
|
|
3426
|
+
boxShadowFocusWarning: string;
|
|
3427
|
+
colorActiveWarning: string;
|
|
3428
|
+
caretColorWarning: string;
|
|
3429
|
+
borderError: string;
|
|
3430
|
+
borderHoverError: string;
|
|
3431
|
+
borderActiveError: string;
|
|
3432
|
+
borderFocusError: string;
|
|
3433
|
+
boxShadowHoverError: string;
|
|
3434
|
+
boxShadowActiveError: string;
|
|
3435
|
+
boxShadowFocusError: string;
|
|
3436
|
+
colorActiveError: string;
|
|
3437
|
+
caretColorError: string;
|
|
3438
|
+
clearColor: string;
|
|
3439
|
+
clearColorHover: string;
|
|
3440
|
+
clearColorPressed: string;
|
|
3441
|
+
caretColorSecondary: string;
|
|
3442
|
+
filterCounterTextColor: string;
|
|
3443
|
+
filterCounterTextColorDisabled: string;
|
|
3444
|
+
arrowColorSecondary: string;
|
|
3445
|
+
clearColorSecondary: string;
|
|
3446
|
+
colorSecondary: string;
|
|
3447
|
+
textColorSecondary: string;
|
|
3448
|
+
borderSecondary: string;
|
|
3449
|
+
arrowColorDisabledSecondary: string;
|
|
3450
|
+
clearColorDisabledSecondary: string;
|
|
3451
|
+
colorDisabledSecondary: string;
|
|
3452
|
+
textColorDisabledSecondary: string;
|
|
3453
|
+
borderDisabledSecondary: string;
|
|
3454
|
+
arrowColorHoverSecondary: string;
|
|
3455
|
+
clearColorHoverSecondary: string;
|
|
3456
|
+
colorHoverSecondary: string;
|
|
3457
|
+
textColorHoverSecondary: string;
|
|
3458
|
+
borderHoverSecondary: string;
|
|
3459
|
+
arrowColorFocusSecondary: string;
|
|
3460
|
+
clearColorFocusSecondary: string;
|
|
3461
|
+
colorFocusSecondary: string;
|
|
3462
|
+
textColorFocusSecondary: string;
|
|
3463
|
+
borderFocusSecondary: string;
|
|
3464
|
+
arrowColorActiveSecondary: string;
|
|
3465
|
+
clearColorActiveSecondary: string;
|
|
3466
|
+
colorActiveSecondary: string;
|
|
3467
|
+
textColorActiveSecondary: string;
|
|
3468
|
+
borderActiveSecondary: string;
|
|
3469
|
+
}, {
|
|
3470
|
+
Popover: import("../../_mixins").Theme<"Popover", {
|
|
3471
|
+
space: string;
|
|
3472
|
+
spaceArrow: string;
|
|
3473
|
+
arrowOffset: string;
|
|
3474
|
+
arrowOffsetVertical: string;
|
|
3475
|
+
arrowHeight: string;
|
|
3476
|
+
padding: string;
|
|
3477
|
+
fontSize: string;
|
|
3478
|
+
borderRadius: string;
|
|
3479
|
+
color: string;
|
|
3480
|
+
dividerColor: string;
|
|
3481
|
+
textColor: string;
|
|
3482
|
+
boxShadow: string;
|
|
3483
|
+
}, any>;
|
|
3484
|
+
}>;
|
|
2983
3485
|
}>>;
|
|
2984
3486
|
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
|
|
2985
3487
|
itemColor: string;
|
|
@@ -3689,48 +4191,171 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3689
4191
|
railInsetVerticalLeft: string;
|
|
3690
4192
|
railColor: string;
|
|
3691
4193
|
}, any>;
|
|
3692
|
-
|
|
3693
|
-
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
|
|
4194
|
+
Select: import("../../_mixins").Theme<"InternalSelection", {
|
|
4195
|
+
paddingTiny: string;
|
|
4196
|
+
paddingSmall: string;
|
|
4197
|
+
paddingMedium: string;
|
|
4198
|
+
paddingLarge: string;
|
|
4199
|
+
paddingHuge: string;
|
|
4200
|
+
clearSizeTiny: string;
|
|
4201
|
+
clearSizeSmall: string;
|
|
4202
|
+
clearSizeMedium: string;
|
|
4203
|
+
clearSizeLarge: string;
|
|
4204
|
+
clearSizeHuge: string;
|
|
4205
|
+
arrowSizeTiny: string;
|
|
4206
|
+
arrowSizeSmall: string;
|
|
4207
|
+
arrowSizeMedium: string;
|
|
4208
|
+
arrowSizeLarge: string;
|
|
4209
|
+
arrowSizeHuge: string;
|
|
4210
|
+
fontSizeTiny: string;
|
|
4211
|
+
fontSizeSmall: string;
|
|
4212
|
+
fontSizeMedium: string;
|
|
4213
|
+
fontSizeLarge: string;
|
|
4214
|
+
fontSizeHuge: string;
|
|
4215
|
+
lineHeightTiny: string;
|
|
4216
|
+
lineHeightSmall: string;
|
|
4217
|
+
lineHeightMedium: string;
|
|
4218
|
+
lineHeightLarge: string;
|
|
4219
|
+
lineHeightHuge: string;
|
|
4220
|
+
heightTiny: string;
|
|
4221
|
+
heightSmall: string;
|
|
4222
|
+
heightMedium: string;
|
|
4223
|
+
heightLarge: string;
|
|
4224
|
+
heightHuge: string;
|
|
4225
|
+
borderRadiusTiny: string;
|
|
4226
|
+
borderRadiusSmall: string;
|
|
4227
|
+
borderRadiusMedium: string;
|
|
4228
|
+
borderRadiusLarge: string;
|
|
4229
|
+
borderRadiusHuge: string;
|
|
4230
|
+
textColor: string;
|
|
4231
|
+
textColorDisabled: string;
|
|
4232
|
+
placeholderColor: string;
|
|
4233
|
+
placeholderColorDisabled: string;
|
|
4234
|
+
color: string;
|
|
4235
|
+
colorFilled: string;
|
|
4236
|
+
colorDisabled: string;
|
|
4237
|
+
colorActive: string;
|
|
4238
|
+
border: string;
|
|
4239
|
+
borderFilled: string;
|
|
4240
|
+
borderHover: string;
|
|
4241
|
+
borderActive: string;
|
|
4242
|
+
borderFocus: string;
|
|
4243
|
+
borderDisabled: string;
|
|
4244
|
+
boxShadowHover: string;
|
|
4245
|
+
boxShadowActive: string;
|
|
4246
|
+
boxShadowFocus: string;
|
|
4247
|
+
caretColor: string;
|
|
4248
|
+
arrowColor: string;
|
|
4249
|
+
arrowColorHover: string;
|
|
4250
|
+
arrowColorDisabled: string;
|
|
4251
|
+
loadingColor: string;
|
|
4252
|
+
borderWarning: string;
|
|
4253
|
+
borderHoverWarning: string;
|
|
4254
|
+
borderActiveWarning: string;
|
|
4255
|
+
borderFocusWarning: string;
|
|
4256
|
+
boxShadowHoverWarning: string;
|
|
4257
|
+
boxShadowActiveWarning: string;
|
|
4258
|
+
boxShadowFocusWarning: string;
|
|
4259
|
+
colorActiveWarning: string;
|
|
4260
|
+
caretColorWarning: string;
|
|
4261
|
+
borderError: string;
|
|
4262
|
+
borderHoverError: string;
|
|
4263
|
+
borderActiveError: string;
|
|
4264
|
+
borderFocusError: string;
|
|
4265
|
+
boxShadowHoverError: string;
|
|
4266
|
+
boxShadowActiveError: string;
|
|
4267
|
+
boxShadowFocusError: string;
|
|
4268
|
+
colorActiveError: string;
|
|
4269
|
+
caretColorError: string;
|
|
4270
|
+
clearColor: string;
|
|
4271
|
+
clearColorHover: string;
|
|
4272
|
+
clearColorPressed: string;
|
|
4273
|
+
caretColorSecondary: string;
|
|
4274
|
+
filterCounterTextColor: string;
|
|
4275
|
+
filterCounterTextColorDisabled: string;
|
|
4276
|
+
arrowColorSecondary: string;
|
|
4277
|
+
clearColorSecondary: string;
|
|
4278
|
+
colorSecondary: string;
|
|
4279
|
+
textColorSecondary: string;
|
|
4280
|
+
borderSecondary: string;
|
|
4281
|
+
arrowColorDisabledSecondary: string;
|
|
4282
|
+
clearColorDisabledSecondary: string;
|
|
4283
|
+
colorDisabledSecondary: string;
|
|
4284
|
+
textColorDisabledSecondary: string;
|
|
4285
|
+
borderDisabledSecondary: string;
|
|
4286
|
+
arrowColorHoverSecondary: string;
|
|
4287
|
+
clearColorHoverSecondary: string;
|
|
4288
|
+
colorHoverSecondary: string;
|
|
4289
|
+
textColorHoverSecondary: string;
|
|
4290
|
+
borderHoverSecondary: string;
|
|
4291
|
+
arrowColorFocusSecondary: string;
|
|
4292
|
+
clearColorFocusSecondary: string;
|
|
4293
|
+
colorFocusSecondary: string;
|
|
4294
|
+
textColorFocusSecondary: string;
|
|
4295
|
+
borderFocusSecondary: string;
|
|
4296
|
+
arrowColorActiveSecondary: string;
|
|
4297
|
+
clearColorActiveSecondary: string;
|
|
4298
|
+
colorActiveSecondary: string;
|
|
4299
|
+
textColorActiveSecondary: string;
|
|
4300
|
+
borderActiveSecondary: string;
|
|
4301
|
+
}, {
|
|
4302
|
+
Popover: import("../../_mixins").Theme<"Popover", {
|
|
4303
|
+
space: string;
|
|
4304
|
+
spaceArrow: string;
|
|
4305
|
+
arrowOffset: string;
|
|
4306
|
+
arrowOffsetVertical: string;
|
|
4307
|
+
arrowHeight: string;
|
|
4308
|
+
padding: string;
|
|
4309
|
+
fontSize: string;
|
|
4310
|
+
borderRadius: string;
|
|
4311
|
+
color: string;
|
|
4312
|
+
dividerColor: string;
|
|
4313
|
+
textColor: string;
|
|
4314
|
+
boxShadow: string;
|
|
4315
|
+
}, any>;
|
|
4316
|
+
}>;
|
|
4317
|
+
}>>>;
|
|
4318
|
+
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
|
|
4319
|
+
itemColor: string;
|
|
4320
|
+
itemColorHover: string;
|
|
4321
|
+
itemColorPressed: string;
|
|
4322
|
+
itemColorDisabled: string;
|
|
4323
|
+
itemTextColor: string;
|
|
4324
|
+
itemTextColorHover: string;
|
|
4325
|
+
itemTextColorPressed: string;
|
|
4326
|
+
itemTextColorDisabled: string;
|
|
4327
|
+
itemColorActive: string;
|
|
4328
|
+
itemColorActiveHover: string;
|
|
4329
|
+
itemColorActivePressed: string;
|
|
4330
|
+
itemColorActiveDisabled: string;
|
|
4331
|
+
itemTextColorActive: string;
|
|
4332
|
+
itemTextColorActiveHover: string;
|
|
4333
|
+
itemTextColorActivePressed: string;
|
|
4334
|
+
itemTextColorActiveDisabled: string;
|
|
4335
|
+
itemColorCurrent: string;
|
|
4336
|
+
itemColorCurrentHover: string;
|
|
4337
|
+
itemColorCurrentPressed: string;
|
|
4338
|
+
itemColorCurrentDisabled: string;
|
|
4339
|
+
itemTextColorCurrent: string;
|
|
4340
|
+
itemTextColorCurrentHover: string;
|
|
4341
|
+
itemTextColorCurrentPressed: string;
|
|
4342
|
+
itemTextColorCurrentDisabled: string;
|
|
4343
|
+
itemColorIncluded: string;
|
|
4344
|
+
itemColorIncludedHover: string;
|
|
4345
|
+
itemColorIncludedPressed: string;
|
|
4346
|
+
itemColorIncludedDisabled: string;
|
|
4347
|
+
itemTextColorIncluded: string;
|
|
4348
|
+
itemTextColorIncludedHover: string;
|
|
4349
|
+
itemTextColorIncludedPressed: string;
|
|
4350
|
+
itemTextColorIncludedDisabled: string;
|
|
4351
|
+
itemColorExcluded: string;
|
|
4352
|
+
itemTextColorExcluded: string;
|
|
4353
|
+
arrowSize: string;
|
|
4354
|
+
arrowColor: string;
|
|
4355
|
+
itemFontSize: string;
|
|
4356
|
+
itemFontWeight: string;
|
|
4357
|
+
itemBorderRadius: string;
|
|
4358
|
+
calendarDaysFontSize: string;
|
|
3734
4359
|
calendarTitleFontSize: string;
|
|
3735
4360
|
monthItemTextColorActive: string;
|
|
3736
4361
|
monthItemColorActive: string;
|
|
@@ -4398,6 +5023,129 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4398
5023
|
railInsetVerticalLeft: string;
|
|
4399
5024
|
railColor: string;
|
|
4400
5025
|
}, any>;
|
|
5026
|
+
Select: import("../../_mixins").Theme<"InternalSelection", {
|
|
5027
|
+
paddingTiny: string;
|
|
5028
|
+
paddingSmall: string;
|
|
5029
|
+
paddingMedium: string;
|
|
5030
|
+
paddingLarge: string;
|
|
5031
|
+
paddingHuge: string;
|
|
5032
|
+
clearSizeTiny: string;
|
|
5033
|
+
clearSizeSmall: string;
|
|
5034
|
+
clearSizeMedium: string;
|
|
5035
|
+
clearSizeLarge: string;
|
|
5036
|
+
clearSizeHuge: string;
|
|
5037
|
+
arrowSizeTiny: string;
|
|
5038
|
+
arrowSizeSmall: string;
|
|
5039
|
+
arrowSizeMedium: string;
|
|
5040
|
+
arrowSizeLarge: string;
|
|
5041
|
+
arrowSizeHuge: string;
|
|
5042
|
+
fontSizeTiny: string;
|
|
5043
|
+
fontSizeSmall: string;
|
|
5044
|
+
fontSizeMedium: string;
|
|
5045
|
+
fontSizeLarge: string;
|
|
5046
|
+
fontSizeHuge: string;
|
|
5047
|
+
lineHeightTiny: string;
|
|
5048
|
+
lineHeightSmall: string;
|
|
5049
|
+
lineHeightMedium: string;
|
|
5050
|
+
lineHeightLarge: string;
|
|
5051
|
+
lineHeightHuge: string;
|
|
5052
|
+
heightTiny: string;
|
|
5053
|
+
heightSmall: string;
|
|
5054
|
+
heightMedium: string;
|
|
5055
|
+
heightLarge: string;
|
|
5056
|
+
heightHuge: string;
|
|
5057
|
+
borderRadiusTiny: string;
|
|
5058
|
+
borderRadiusSmall: string;
|
|
5059
|
+
borderRadiusMedium: string;
|
|
5060
|
+
borderRadiusLarge: string;
|
|
5061
|
+
borderRadiusHuge: string;
|
|
5062
|
+
textColor: string;
|
|
5063
|
+
textColorDisabled: string;
|
|
5064
|
+
placeholderColor: string;
|
|
5065
|
+
placeholderColorDisabled: string;
|
|
5066
|
+
color: string;
|
|
5067
|
+
colorFilled: string;
|
|
5068
|
+
colorDisabled: string;
|
|
5069
|
+
colorActive: string;
|
|
5070
|
+
border: string;
|
|
5071
|
+
borderFilled: string;
|
|
5072
|
+
borderHover: string;
|
|
5073
|
+
borderActive: string;
|
|
5074
|
+
borderFocus: string;
|
|
5075
|
+
borderDisabled: string;
|
|
5076
|
+
boxShadowHover: string;
|
|
5077
|
+
boxShadowActive: string;
|
|
5078
|
+
boxShadowFocus: string;
|
|
5079
|
+
caretColor: string;
|
|
5080
|
+
arrowColor: string;
|
|
5081
|
+
arrowColorHover: string;
|
|
5082
|
+
arrowColorDisabled: string;
|
|
5083
|
+
loadingColor: string;
|
|
5084
|
+
borderWarning: string;
|
|
5085
|
+
borderHoverWarning: string;
|
|
5086
|
+
borderActiveWarning: string;
|
|
5087
|
+
borderFocusWarning: string;
|
|
5088
|
+
boxShadowHoverWarning: string;
|
|
5089
|
+
boxShadowActiveWarning: string;
|
|
5090
|
+
boxShadowFocusWarning: string;
|
|
5091
|
+
colorActiveWarning: string;
|
|
5092
|
+
caretColorWarning: string;
|
|
5093
|
+
borderError: string;
|
|
5094
|
+
borderHoverError: string;
|
|
5095
|
+
borderActiveError: string;
|
|
5096
|
+
borderFocusError: string;
|
|
5097
|
+
boxShadowHoverError: string;
|
|
5098
|
+
boxShadowActiveError: string;
|
|
5099
|
+
boxShadowFocusError: string;
|
|
5100
|
+
colorActiveError: string;
|
|
5101
|
+
caretColorError: string;
|
|
5102
|
+
clearColor: string;
|
|
5103
|
+
clearColorHover: string;
|
|
5104
|
+
clearColorPressed: string;
|
|
5105
|
+
caretColorSecondary: string;
|
|
5106
|
+
filterCounterTextColor: string;
|
|
5107
|
+
filterCounterTextColorDisabled: string;
|
|
5108
|
+
arrowColorSecondary: string;
|
|
5109
|
+
clearColorSecondary: string;
|
|
5110
|
+
colorSecondary: string;
|
|
5111
|
+
textColorSecondary: string;
|
|
5112
|
+
borderSecondary: string;
|
|
5113
|
+
arrowColorDisabledSecondary: string;
|
|
5114
|
+
clearColorDisabledSecondary: string;
|
|
5115
|
+
colorDisabledSecondary: string;
|
|
5116
|
+
textColorDisabledSecondary: string;
|
|
5117
|
+
borderDisabledSecondary: string;
|
|
5118
|
+
arrowColorHoverSecondary: string;
|
|
5119
|
+
clearColorHoverSecondary: string;
|
|
5120
|
+
colorHoverSecondary: string;
|
|
5121
|
+
textColorHoverSecondary: string;
|
|
5122
|
+
borderHoverSecondary: string;
|
|
5123
|
+
arrowColorFocusSecondary: string;
|
|
5124
|
+
clearColorFocusSecondary: string;
|
|
5125
|
+
colorFocusSecondary: string;
|
|
5126
|
+
textColorFocusSecondary: string;
|
|
5127
|
+
borderFocusSecondary: string;
|
|
5128
|
+
arrowColorActiveSecondary: string;
|
|
5129
|
+
clearColorActiveSecondary: string;
|
|
5130
|
+
colorActiveSecondary: string;
|
|
5131
|
+
textColorActiveSecondary: string;
|
|
5132
|
+
borderActiveSecondary: string;
|
|
5133
|
+
}, {
|
|
5134
|
+
Popover: import("../../_mixins").Theme<"Popover", {
|
|
5135
|
+
space: string;
|
|
5136
|
+
spaceArrow: string;
|
|
5137
|
+
arrowOffset: string;
|
|
5138
|
+
arrowOffsetVertical: string;
|
|
5139
|
+
arrowHeight: string;
|
|
5140
|
+
padding: string;
|
|
5141
|
+
fontSize: string;
|
|
5142
|
+
borderRadius: string;
|
|
5143
|
+
color: string;
|
|
5144
|
+
dividerColor: string;
|
|
5145
|
+
textColor: string;
|
|
5146
|
+
boxShadow: string;
|
|
5147
|
+
}, any>;
|
|
5148
|
+
}>;
|
|
4401
5149
|
}>>>;
|
|
4402
5150
|
}, {
|
|
4403
5151
|
rangeTypes: DatePickerType[];
|
|
@@ -5241,6 +5989,129 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5241
5989
|
railInsetVerticalLeft: string;
|
|
5242
5990
|
railColor: string;
|
|
5243
5991
|
}, any>;
|
|
5992
|
+
Select: import("../../_mixins").Theme<"InternalSelection", {
|
|
5993
|
+
paddingTiny: string;
|
|
5994
|
+
paddingSmall: string;
|
|
5995
|
+
paddingMedium: string;
|
|
5996
|
+
paddingLarge: string;
|
|
5997
|
+
paddingHuge: string;
|
|
5998
|
+
clearSizeTiny: string;
|
|
5999
|
+
clearSizeSmall: string;
|
|
6000
|
+
clearSizeMedium: string;
|
|
6001
|
+
clearSizeLarge: string;
|
|
6002
|
+
clearSizeHuge: string;
|
|
6003
|
+
arrowSizeTiny: string;
|
|
6004
|
+
arrowSizeSmall: string;
|
|
6005
|
+
arrowSizeMedium: string;
|
|
6006
|
+
arrowSizeLarge: string;
|
|
6007
|
+
arrowSizeHuge: string;
|
|
6008
|
+
fontSizeTiny: string;
|
|
6009
|
+
fontSizeSmall: string;
|
|
6010
|
+
fontSizeMedium: string;
|
|
6011
|
+
fontSizeLarge: string;
|
|
6012
|
+
fontSizeHuge: string;
|
|
6013
|
+
lineHeightTiny: string;
|
|
6014
|
+
lineHeightSmall: string;
|
|
6015
|
+
lineHeightMedium: string;
|
|
6016
|
+
lineHeightLarge: string;
|
|
6017
|
+
lineHeightHuge: string;
|
|
6018
|
+
heightTiny: string;
|
|
6019
|
+
heightSmall: string;
|
|
6020
|
+
heightMedium: string;
|
|
6021
|
+
heightLarge: string;
|
|
6022
|
+
heightHuge: string;
|
|
6023
|
+
borderRadiusTiny: string;
|
|
6024
|
+
borderRadiusSmall: string;
|
|
6025
|
+
borderRadiusMedium: string;
|
|
6026
|
+
borderRadiusLarge: string;
|
|
6027
|
+
borderRadiusHuge: string;
|
|
6028
|
+
textColor: string;
|
|
6029
|
+
textColorDisabled: string;
|
|
6030
|
+
placeholderColor: string;
|
|
6031
|
+
placeholderColorDisabled: string;
|
|
6032
|
+
color: string;
|
|
6033
|
+
colorFilled: string;
|
|
6034
|
+
colorDisabled: string;
|
|
6035
|
+
colorActive: string;
|
|
6036
|
+
border: string;
|
|
6037
|
+
borderFilled: string;
|
|
6038
|
+
borderHover: string;
|
|
6039
|
+
borderActive: string;
|
|
6040
|
+
borderFocus: string;
|
|
6041
|
+
borderDisabled: string;
|
|
6042
|
+
boxShadowHover: string;
|
|
6043
|
+
boxShadowActive: string;
|
|
6044
|
+
boxShadowFocus: string;
|
|
6045
|
+
caretColor: string;
|
|
6046
|
+
arrowColor: string;
|
|
6047
|
+
arrowColorHover: string;
|
|
6048
|
+
arrowColorDisabled: string;
|
|
6049
|
+
loadingColor: string;
|
|
6050
|
+
borderWarning: string;
|
|
6051
|
+
borderHoverWarning: string;
|
|
6052
|
+
borderActiveWarning: string;
|
|
6053
|
+
borderFocusWarning: string;
|
|
6054
|
+
boxShadowHoverWarning: string;
|
|
6055
|
+
boxShadowActiveWarning: string;
|
|
6056
|
+
boxShadowFocusWarning: string;
|
|
6057
|
+
colorActiveWarning: string;
|
|
6058
|
+
caretColorWarning: string;
|
|
6059
|
+
borderError: string;
|
|
6060
|
+
borderHoverError: string;
|
|
6061
|
+
borderActiveError: string;
|
|
6062
|
+
borderFocusError: string;
|
|
6063
|
+
boxShadowHoverError: string;
|
|
6064
|
+
boxShadowActiveError: string;
|
|
6065
|
+
boxShadowFocusError: string;
|
|
6066
|
+
colorActiveError: string;
|
|
6067
|
+
caretColorError: string;
|
|
6068
|
+
clearColor: string;
|
|
6069
|
+
clearColorHover: string;
|
|
6070
|
+
clearColorPressed: string;
|
|
6071
|
+
caretColorSecondary: string;
|
|
6072
|
+
filterCounterTextColor: string;
|
|
6073
|
+
filterCounterTextColorDisabled: string;
|
|
6074
|
+
arrowColorSecondary: string;
|
|
6075
|
+
clearColorSecondary: string;
|
|
6076
|
+
colorSecondary: string;
|
|
6077
|
+
textColorSecondary: string;
|
|
6078
|
+
borderSecondary: string;
|
|
6079
|
+
arrowColorDisabledSecondary: string;
|
|
6080
|
+
clearColorDisabledSecondary: string;
|
|
6081
|
+
colorDisabledSecondary: string;
|
|
6082
|
+
textColorDisabledSecondary: string;
|
|
6083
|
+
borderDisabledSecondary: string;
|
|
6084
|
+
arrowColorHoverSecondary: string;
|
|
6085
|
+
clearColorHoverSecondary: string;
|
|
6086
|
+
colorHoverSecondary: string;
|
|
6087
|
+
textColorHoverSecondary: string;
|
|
6088
|
+
borderHoverSecondary: string;
|
|
6089
|
+
arrowColorFocusSecondary: string;
|
|
6090
|
+
clearColorFocusSecondary: string;
|
|
6091
|
+
colorFocusSecondary: string;
|
|
6092
|
+
textColorFocusSecondary: string;
|
|
6093
|
+
borderFocusSecondary: string;
|
|
6094
|
+
arrowColorActiveSecondary: string;
|
|
6095
|
+
clearColorActiveSecondary: string;
|
|
6096
|
+
colorActiveSecondary: string;
|
|
6097
|
+
textColorActiveSecondary: string;
|
|
6098
|
+
borderActiveSecondary: string;
|
|
6099
|
+
}, {
|
|
6100
|
+
Popover: import("../../_mixins").Theme<"Popover", {
|
|
6101
|
+
space: string;
|
|
6102
|
+
spaceArrow: string;
|
|
6103
|
+
arrowOffset: string;
|
|
6104
|
+
arrowOffsetVertical: string;
|
|
6105
|
+
arrowHeight: string;
|
|
6106
|
+
padding: string;
|
|
6107
|
+
fontSize: string;
|
|
6108
|
+
borderRadius: string;
|
|
6109
|
+
color: string;
|
|
6110
|
+
dividerColor: string;
|
|
6111
|
+
textColor: string;
|
|
6112
|
+
boxShadow: string;
|
|
6113
|
+
}, any>;
|
|
6114
|
+
}>;
|
|
5244
6115
|
};
|
|
5245
6116
|
peerOverrides: {
|
|
5246
6117
|
Input?: {
|
|
@@ -5557,6 +6428,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5557
6428
|
[x: string]: any;
|
|
5558
6429
|
} | undefined;
|
|
5559
6430
|
} | undefined;
|
|
6431
|
+
Select?: {
|
|
6432
|
+
peers?: {
|
|
6433
|
+
Popover?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Popover", {
|
|
6434
|
+
space: string;
|
|
6435
|
+
spaceArrow: string;
|
|
6436
|
+
arrowOffset: string;
|
|
6437
|
+
arrowOffsetVertical: string;
|
|
6438
|
+
arrowHeight: string;
|
|
6439
|
+
padding: string;
|
|
6440
|
+
fontSize: string;
|
|
6441
|
+
borderRadius: string;
|
|
6442
|
+
color: string;
|
|
6443
|
+
dividerColor: string;
|
|
6444
|
+
textColor: string;
|
|
6445
|
+
boxShadow: string;
|
|
6446
|
+
}, any>> | undefined;
|
|
6447
|
+
} | undefined;
|
|
6448
|
+
} | undefined;
|
|
5560
6449
|
};
|
|
5561
6450
|
}>;
|
|
5562
6451
|
actions: import("vue").ComputedRef<string[] | undefined>;
|
|
@@ -5659,6 +6548,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5659
6548
|
readonly default: undefined;
|
|
5660
6549
|
};
|
|
5661
6550
|
readonly clearable: BooleanConstructor;
|
|
6551
|
+
readonly round: BooleanConstructor;
|
|
5662
6552
|
readonly updateValueOnClose: BooleanConstructor;
|
|
5663
6553
|
readonly defaultValue: PropType<Value | null>;
|
|
5664
6554
|
readonly defaultFormattedValue: PropType<FormattedValue | null>;
|
|
@@ -5708,6 +6598,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5708
6598
|
readonly defaultCalendarStartTime: NumberConstructor;
|
|
5709
6599
|
readonly defaultCalendarEndTime: NumberConstructor;
|
|
5710
6600
|
readonly bindCalendarMonths: BooleanConstructor;
|
|
6601
|
+
readonly triggerPreset: {
|
|
6602
|
+
readonly type: PropType<TriggerPreset>;
|
|
6603
|
+
readonly default: "input";
|
|
6604
|
+
};
|
|
5711
6605
|
readonly 'onUpdate:show': PropType<MaybeArray<(show: boolean) => void>>;
|
|
5712
6606
|
readonly onUpdateShow: PropType<MaybeArray<(show: boolean) => void>>;
|
|
5713
6607
|
readonly 'onUpdate:formattedValue': PropType<MaybeArray<OnUpdateFormattedValue>>;
|
|
@@ -6425,6 +7319,129 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6425
7319
|
railInsetVerticalLeft: string;
|
|
6426
7320
|
railColor: string;
|
|
6427
7321
|
}, any>;
|
|
7322
|
+
Select: import("../../_mixins").Theme<"InternalSelection", {
|
|
7323
|
+
paddingTiny: string;
|
|
7324
|
+
paddingSmall: string;
|
|
7325
|
+
paddingMedium: string;
|
|
7326
|
+
paddingLarge: string;
|
|
7327
|
+
paddingHuge: string;
|
|
7328
|
+
clearSizeTiny: string;
|
|
7329
|
+
clearSizeSmall: string;
|
|
7330
|
+
clearSizeMedium: string;
|
|
7331
|
+
clearSizeLarge: string;
|
|
7332
|
+
clearSizeHuge: string;
|
|
7333
|
+
arrowSizeTiny: string;
|
|
7334
|
+
arrowSizeSmall: string;
|
|
7335
|
+
arrowSizeMedium: string;
|
|
7336
|
+
arrowSizeLarge: string;
|
|
7337
|
+
arrowSizeHuge: string;
|
|
7338
|
+
fontSizeTiny: string;
|
|
7339
|
+
fontSizeSmall: string;
|
|
7340
|
+
fontSizeMedium: string;
|
|
7341
|
+
fontSizeLarge: string;
|
|
7342
|
+
fontSizeHuge: string;
|
|
7343
|
+
lineHeightTiny: string;
|
|
7344
|
+
lineHeightSmall: string;
|
|
7345
|
+
lineHeightMedium: string;
|
|
7346
|
+
lineHeightLarge: string;
|
|
7347
|
+
lineHeightHuge: string;
|
|
7348
|
+
heightTiny: string;
|
|
7349
|
+
heightSmall: string;
|
|
7350
|
+
heightMedium: string;
|
|
7351
|
+
heightLarge: string;
|
|
7352
|
+
heightHuge: string;
|
|
7353
|
+
borderRadiusTiny: string;
|
|
7354
|
+
borderRadiusSmall: string;
|
|
7355
|
+
borderRadiusMedium: string;
|
|
7356
|
+
borderRadiusLarge: string;
|
|
7357
|
+
borderRadiusHuge: string;
|
|
7358
|
+
textColor: string;
|
|
7359
|
+
textColorDisabled: string;
|
|
7360
|
+
placeholderColor: string;
|
|
7361
|
+
placeholderColorDisabled: string;
|
|
7362
|
+
color: string;
|
|
7363
|
+
colorFilled: string;
|
|
7364
|
+
colorDisabled: string;
|
|
7365
|
+
colorActive: string;
|
|
7366
|
+
border: string;
|
|
7367
|
+
borderFilled: string;
|
|
7368
|
+
borderHover: string;
|
|
7369
|
+
borderActive: string;
|
|
7370
|
+
borderFocus: string;
|
|
7371
|
+
borderDisabled: string;
|
|
7372
|
+
boxShadowHover: string;
|
|
7373
|
+
boxShadowActive: string;
|
|
7374
|
+
boxShadowFocus: string;
|
|
7375
|
+
caretColor: string;
|
|
7376
|
+
arrowColor: string;
|
|
7377
|
+
arrowColorHover: string;
|
|
7378
|
+
arrowColorDisabled: string;
|
|
7379
|
+
loadingColor: string;
|
|
7380
|
+
borderWarning: string;
|
|
7381
|
+
borderHoverWarning: string;
|
|
7382
|
+
borderActiveWarning: string;
|
|
7383
|
+
borderFocusWarning: string;
|
|
7384
|
+
boxShadowHoverWarning: string;
|
|
7385
|
+
boxShadowActiveWarning: string;
|
|
7386
|
+
boxShadowFocusWarning: string;
|
|
7387
|
+
colorActiveWarning: string;
|
|
7388
|
+
caretColorWarning: string;
|
|
7389
|
+
borderError: string;
|
|
7390
|
+
borderHoverError: string;
|
|
7391
|
+
borderActiveError: string;
|
|
7392
|
+
borderFocusError: string;
|
|
7393
|
+
boxShadowHoverError: string;
|
|
7394
|
+
boxShadowActiveError: string;
|
|
7395
|
+
boxShadowFocusError: string;
|
|
7396
|
+
colorActiveError: string;
|
|
7397
|
+
caretColorError: string;
|
|
7398
|
+
clearColor: string;
|
|
7399
|
+
clearColorHover: string;
|
|
7400
|
+
clearColorPressed: string;
|
|
7401
|
+
caretColorSecondary: string;
|
|
7402
|
+
filterCounterTextColor: string;
|
|
7403
|
+
filterCounterTextColorDisabled: string;
|
|
7404
|
+
arrowColorSecondary: string;
|
|
7405
|
+
clearColorSecondary: string;
|
|
7406
|
+
colorSecondary: string;
|
|
7407
|
+
textColorSecondary: string;
|
|
7408
|
+
borderSecondary: string;
|
|
7409
|
+
arrowColorDisabledSecondary: string;
|
|
7410
|
+
clearColorDisabledSecondary: string;
|
|
7411
|
+
colorDisabledSecondary: string;
|
|
7412
|
+
textColorDisabledSecondary: string;
|
|
7413
|
+
borderDisabledSecondary: string;
|
|
7414
|
+
arrowColorHoverSecondary: string;
|
|
7415
|
+
clearColorHoverSecondary: string;
|
|
7416
|
+
colorHoverSecondary: string;
|
|
7417
|
+
textColorHoverSecondary: string;
|
|
7418
|
+
borderHoverSecondary: string;
|
|
7419
|
+
arrowColorFocusSecondary: string;
|
|
7420
|
+
clearColorFocusSecondary: string;
|
|
7421
|
+
colorFocusSecondary: string;
|
|
7422
|
+
textColorFocusSecondary: string;
|
|
7423
|
+
borderFocusSecondary: string;
|
|
7424
|
+
arrowColorActiveSecondary: string;
|
|
7425
|
+
clearColorActiveSecondary: string;
|
|
7426
|
+
colorActiveSecondary: string;
|
|
7427
|
+
textColorActiveSecondary: string;
|
|
7428
|
+
borderActiveSecondary: string;
|
|
7429
|
+
}, {
|
|
7430
|
+
Popover: import("../../_mixins").Theme<"Popover", {
|
|
7431
|
+
space: string;
|
|
7432
|
+
spaceArrow: string;
|
|
7433
|
+
arrowOffset: string;
|
|
7434
|
+
arrowOffsetVertical: string;
|
|
7435
|
+
arrowHeight: string;
|
|
7436
|
+
padding: string;
|
|
7437
|
+
fontSize: string;
|
|
7438
|
+
borderRadius: string;
|
|
7439
|
+
color: string;
|
|
7440
|
+
dividerColor: string;
|
|
7441
|
+
textColor: string;
|
|
7442
|
+
boxShadow: string;
|
|
7443
|
+
}, any>;
|
|
7444
|
+
}>;
|
|
6428
7445
|
}>>;
|
|
6429
7446
|
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
|
|
6430
7447
|
itemColor: string;
|
|
@@ -7134,6 +8151,129 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7134
8151
|
railInsetVerticalLeft: string;
|
|
7135
8152
|
railColor: string;
|
|
7136
8153
|
}, any>;
|
|
8154
|
+
Select: import("../../_mixins").Theme<"InternalSelection", {
|
|
8155
|
+
paddingTiny: string;
|
|
8156
|
+
paddingSmall: string;
|
|
8157
|
+
paddingMedium: string;
|
|
8158
|
+
paddingLarge: string;
|
|
8159
|
+
paddingHuge: string;
|
|
8160
|
+
clearSizeTiny: string;
|
|
8161
|
+
clearSizeSmall: string;
|
|
8162
|
+
clearSizeMedium: string;
|
|
8163
|
+
clearSizeLarge: string;
|
|
8164
|
+
clearSizeHuge: string;
|
|
8165
|
+
arrowSizeTiny: string;
|
|
8166
|
+
arrowSizeSmall: string;
|
|
8167
|
+
arrowSizeMedium: string;
|
|
8168
|
+
arrowSizeLarge: string;
|
|
8169
|
+
arrowSizeHuge: string;
|
|
8170
|
+
fontSizeTiny: string;
|
|
8171
|
+
fontSizeSmall: string;
|
|
8172
|
+
fontSizeMedium: string;
|
|
8173
|
+
fontSizeLarge: string;
|
|
8174
|
+
fontSizeHuge: string;
|
|
8175
|
+
lineHeightTiny: string;
|
|
8176
|
+
lineHeightSmall: string;
|
|
8177
|
+
lineHeightMedium: string;
|
|
8178
|
+
lineHeightLarge: string;
|
|
8179
|
+
lineHeightHuge: string;
|
|
8180
|
+
heightTiny: string;
|
|
8181
|
+
heightSmall: string;
|
|
8182
|
+
heightMedium: string;
|
|
8183
|
+
heightLarge: string;
|
|
8184
|
+
heightHuge: string;
|
|
8185
|
+
borderRadiusTiny: string;
|
|
8186
|
+
borderRadiusSmall: string;
|
|
8187
|
+
borderRadiusMedium: string;
|
|
8188
|
+
borderRadiusLarge: string;
|
|
8189
|
+
borderRadiusHuge: string;
|
|
8190
|
+
textColor: string;
|
|
8191
|
+
textColorDisabled: string;
|
|
8192
|
+
placeholderColor: string;
|
|
8193
|
+
placeholderColorDisabled: string;
|
|
8194
|
+
color: string;
|
|
8195
|
+
colorFilled: string;
|
|
8196
|
+
colorDisabled: string;
|
|
8197
|
+
colorActive: string;
|
|
8198
|
+
border: string;
|
|
8199
|
+
borderFilled: string;
|
|
8200
|
+
borderHover: string;
|
|
8201
|
+
borderActive: string;
|
|
8202
|
+
borderFocus: string;
|
|
8203
|
+
borderDisabled: string;
|
|
8204
|
+
boxShadowHover: string;
|
|
8205
|
+
boxShadowActive: string;
|
|
8206
|
+
boxShadowFocus: string;
|
|
8207
|
+
caretColor: string;
|
|
8208
|
+
arrowColor: string;
|
|
8209
|
+
arrowColorHover: string;
|
|
8210
|
+
arrowColorDisabled: string;
|
|
8211
|
+
loadingColor: string;
|
|
8212
|
+
borderWarning: string;
|
|
8213
|
+
borderHoverWarning: string;
|
|
8214
|
+
borderActiveWarning: string;
|
|
8215
|
+
borderFocusWarning: string;
|
|
8216
|
+
boxShadowHoverWarning: string;
|
|
8217
|
+
boxShadowActiveWarning: string;
|
|
8218
|
+
boxShadowFocusWarning: string;
|
|
8219
|
+
colorActiveWarning: string;
|
|
8220
|
+
caretColorWarning: string;
|
|
8221
|
+
borderError: string;
|
|
8222
|
+
borderHoverError: string;
|
|
8223
|
+
borderActiveError: string;
|
|
8224
|
+
borderFocusError: string;
|
|
8225
|
+
boxShadowHoverError: string;
|
|
8226
|
+
boxShadowActiveError: string;
|
|
8227
|
+
boxShadowFocusError: string;
|
|
8228
|
+
colorActiveError: string;
|
|
8229
|
+
caretColorError: string;
|
|
8230
|
+
clearColor: string;
|
|
8231
|
+
clearColorHover: string;
|
|
8232
|
+
clearColorPressed: string;
|
|
8233
|
+
caretColorSecondary: string;
|
|
8234
|
+
filterCounterTextColor: string;
|
|
8235
|
+
filterCounterTextColorDisabled: string;
|
|
8236
|
+
arrowColorSecondary: string;
|
|
8237
|
+
clearColorSecondary: string;
|
|
8238
|
+
colorSecondary: string;
|
|
8239
|
+
textColorSecondary: string;
|
|
8240
|
+
borderSecondary: string;
|
|
8241
|
+
arrowColorDisabledSecondary: string;
|
|
8242
|
+
clearColorDisabledSecondary: string;
|
|
8243
|
+
colorDisabledSecondary: string;
|
|
8244
|
+
textColorDisabledSecondary: string;
|
|
8245
|
+
borderDisabledSecondary: string;
|
|
8246
|
+
arrowColorHoverSecondary: string;
|
|
8247
|
+
clearColorHoverSecondary: string;
|
|
8248
|
+
colorHoverSecondary: string;
|
|
8249
|
+
textColorHoverSecondary: string;
|
|
8250
|
+
borderHoverSecondary: string;
|
|
8251
|
+
arrowColorFocusSecondary: string;
|
|
8252
|
+
clearColorFocusSecondary: string;
|
|
8253
|
+
colorFocusSecondary: string;
|
|
8254
|
+
textColorFocusSecondary: string;
|
|
8255
|
+
borderFocusSecondary: string;
|
|
8256
|
+
arrowColorActiveSecondary: string;
|
|
8257
|
+
clearColorActiveSecondary: string;
|
|
8258
|
+
colorActiveSecondary: string;
|
|
8259
|
+
textColorActiveSecondary: string;
|
|
8260
|
+
borderActiveSecondary: string;
|
|
8261
|
+
}, {
|
|
8262
|
+
Popover: import("../../_mixins").Theme<"Popover", {
|
|
8263
|
+
space: string;
|
|
8264
|
+
spaceArrow: string;
|
|
8265
|
+
arrowOffset: string;
|
|
8266
|
+
arrowOffsetVertical: string;
|
|
8267
|
+
arrowHeight: string;
|
|
8268
|
+
padding: string;
|
|
8269
|
+
fontSize: string;
|
|
8270
|
+
borderRadius: string;
|
|
8271
|
+
color: string;
|
|
8272
|
+
dividerColor: string;
|
|
8273
|
+
textColor: string;
|
|
8274
|
+
boxShadow: string;
|
|
8275
|
+
}, any>;
|
|
8276
|
+
}>;
|
|
7137
8277
|
}>>>;
|
|
7138
8278
|
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
|
|
7139
8279
|
itemColor: string;
|
|
@@ -7843,11 +8983,135 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7843
8983
|
railInsetVerticalLeft: string;
|
|
7844
8984
|
railColor: string;
|
|
7845
8985
|
}, any>;
|
|
8986
|
+
Select: import("../../_mixins").Theme<"InternalSelection", {
|
|
8987
|
+
paddingTiny: string;
|
|
8988
|
+
paddingSmall: string;
|
|
8989
|
+
paddingMedium: string;
|
|
8990
|
+
paddingLarge: string;
|
|
8991
|
+
paddingHuge: string;
|
|
8992
|
+
clearSizeTiny: string;
|
|
8993
|
+
clearSizeSmall: string;
|
|
8994
|
+
clearSizeMedium: string;
|
|
8995
|
+
clearSizeLarge: string;
|
|
8996
|
+
clearSizeHuge: string;
|
|
8997
|
+
arrowSizeTiny: string;
|
|
8998
|
+
arrowSizeSmall: string;
|
|
8999
|
+
arrowSizeMedium: string;
|
|
9000
|
+
arrowSizeLarge: string;
|
|
9001
|
+
arrowSizeHuge: string;
|
|
9002
|
+
fontSizeTiny: string;
|
|
9003
|
+
fontSizeSmall: string;
|
|
9004
|
+
fontSizeMedium: string;
|
|
9005
|
+
fontSizeLarge: string;
|
|
9006
|
+
fontSizeHuge: string;
|
|
9007
|
+
lineHeightTiny: string;
|
|
9008
|
+
lineHeightSmall: string;
|
|
9009
|
+
lineHeightMedium: string;
|
|
9010
|
+
lineHeightLarge: string;
|
|
9011
|
+
lineHeightHuge: string;
|
|
9012
|
+
heightTiny: string;
|
|
9013
|
+
heightSmall: string;
|
|
9014
|
+
heightMedium: string;
|
|
9015
|
+
heightLarge: string;
|
|
9016
|
+
heightHuge: string;
|
|
9017
|
+
borderRadiusTiny: string;
|
|
9018
|
+
borderRadiusSmall: string;
|
|
9019
|
+
borderRadiusMedium: string;
|
|
9020
|
+
borderRadiusLarge: string;
|
|
9021
|
+
borderRadiusHuge: string;
|
|
9022
|
+
textColor: string;
|
|
9023
|
+
textColorDisabled: string;
|
|
9024
|
+
placeholderColor: string;
|
|
9025
|
+
placeholderColorDisabled: string;
|
|
9026
|
+
color: string;
|
|
9027
|
+
colorFilled: string;
|
|
9028
|
+
colorDisabled: string;
|
|
9029
|
+
colorActive: string;
|
|
9030
|
+
border: string;
|
|
9031
|
+
borderFilled: string;
|
|
9032
|
+
borderHover: string;
|
|
9033
|
+
borderActive: string;
|
|
9034
|
+
borderFocus: string;
|
|
9035
|
+
borderDisabled: string;
|
|
9036
|
+
boxShadowHover: string;
|
|
9037
|
+
boxShadowActive: string;
|
|
9038
|
+
boxShadowFocus: string;
|
|
9039
|
+
caretColor: string;
|
|
9040
|
+
arrowColor: string;
|
|
9041
|
+
arrowColorHover: string;
|
|
9042
|
+
arrowColorDisabled: string;
|
|
9043
|
+
loadingColor: string;
|
|
9044
|
+
borderWarning: string;
|
|
9045
|
+
borderHoverWarning: string;
|
|
9046
|
+
borderActiveWarning: string;
|
|
9047
|
+
borderFocusWarning: string;
|
|
9048
|
+
boxShadowHoverWarning: string;
|
|
9049
|
+
boxShadowActiveWarning: string;
|
|
9050
|
+
boxShadowFocusWarning: string;
|
|
9051
|
+
colorActiveWarning: string;
|
|
9052
|
+
caretColorWarning: string;
|
|
9053
|
+
borderError: string;
|
|
9054
|
+
borderHoverError: string;
|
|
9055
|
+
borderActiveError: string;
|
|
9056
|
+
borderFocusError: string;
|
|
9057
|
+
boxShadowHoverError: string;
|
|
9058
|
+
boxShadowActiveError: string;
|
|
9059
|
+
boxShadowFocusError: string;
|
|
9060
|
+
colorActiveError: string;
|
|
9061
|
+
caretColorError: string;
|
|
9062
|
+
clearColor: string;
|
|
9063
|
+
clearColorHover: string;
|
|
9064
|
+
clearColorPressed: string;
|
|
9065
|
+
caretColorSecondary: string;
|
|
9066
|
+
filterCounterTextColor: string;
|
|
9067
|
+
filterCounterTextColorDisabled: string;
|
|
9068
|
+
arrowColorSecondary: string;
|
|
9069
|
+
clearColorSecondary: string;
|
|
9070
|
+
colorSecondary: string;
|
|
9071
|
+
textColorSecondary: string;
|
|
9072
|
+
borderSecondary: string;
|
|
9073
|
+
arrowColorDisabledSecondary: string;
|
|
9074
|
+
clearColorDisabledSecondary: string;
|
|
9075
|
+
colorDisabledSecondary: string;
|
|
9076
|
+
textColorDisabledSecondary: string;
|
|
9077
|
+
borderDisabledSecondary: string;
|
|
9078
|
+
arrowColorHoverSecondary: string;
|
|
9079
|
+
clearColorHoverSecondary: string;
|
|
9080
|
+
colorHoverSecondary: string;
|
|
9081
|
+
textColorHoverSecondary: string;
|
|
9082
|
+
borderHoverSecondary: string;
|
|
9083
|
+
arrowColorFocusSecondary: string;
|
|
9084
|
+
clearColorFocusSecondary: string;
|
|
9085
|
+
colorFocusSecondary: string;
|
|
9086
|
+
textColorFocusSecondary: string;
|
|
9087
|
+
borderFocusSecondary: string;
|
|
9088
|
+
arrowColorActiveSecondary: string;
|
|
9089
|
+
clearColorActiveSecondary: string;
|
|
9090
|
+
colorActiveSecondary: string;
|
|
9091
|
+
textColorActiveSecondary: string;
|
|
9092
|
+
borderActiveSecondary: string;
|
|
9093
|
+
}, {
|
|
9094
|
+
Popover: import("../../_mixins").Theme<"Popover", {
|
|
9095
|
+
space: string;
|
|
9096
|
+
spaceArrow: string;
|
|
9097
|
+
arrowOffset: string;
|
|
9098
|
+
arrowOffsetVertical: string;
|
|
9099
|
+
arrowHeight: string;
|
|
9100
|
+
padding: string;
|
|
9101
|
+
fontSize: string;
|
|
9102
|
+
borderRadius: string;
|
|
9103
|
+
color: string;
|
|
9104
|
+
dividerColor: string;
|
|
9105
|
+
textColor: string;
|
|
9106
|
+
boxShadow: string;
|
|
9107
|
+
}, any>;
|
|
9108
|
+
}>;
|
|
7846
9109
|
}>>>;
|
|
7847
9110
|
}>>, {
|
|
7848
9111
|
readonly type: DatePickerType;
|
|
7849
9112
|
readonly disabled: boolean | undefined;
|
|
7850
9113
|
readonly bordered: boolean | undefined;
|
|
9114
|
+
readonly round: boolean;
|
|
7851
9115
|
readonly to: string | boolean | HTMLElement;
|
|
7852
9116
|
readonly show: boolean | undefined;
|
|
7853
9117
|
readonly placement: FollowerPlacement;
|
|
@@ -7858,5 +9122,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7858
9122
|
readonly defaultShortcuts: boolean;
|
|
7859
9123
|
readonly closeOnSelect: boolean;
|
|
7860
9124
|
readonly bindCalendarMonths: boolean;
|
|
9125
|
+
readonly triggerPreset: TriggerPreset;
|
|
7861
9126
|
}, {}>;
|
|
7862
9127
|
export default _default;
|