@uzum-tech/ui 2.0.0-beta.7 → 2.0.0-beta.9
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 +268 -180
- package/dist/index.mjs +268 -180
- package/dist/index.prod.js +2 -2
- package/dist/index.prod.mjs +2 -2
- package/es/_internal/select-menu/src/SelectOption.mjs +12 -4
- package/es/_utils/wrap-component.mjs +3 -1
- package/es/auto-complete/src/AutoComplete.d.ts +70 -0
- package/es/auto-complete/styles/light.d.ts +7 -0
- package/es/carousel/src/Carousel.mjs +39 -13
- package/es/chat/src/Chat.d.ts +70 -0
- package/es/chat/src/ChatListItems.d.ts +84 -0
- package/es/chat/src/ChatMessages.d.ts +84 -0
- package/es/chat/src/ChatParts/MainArea.mjs +104 -112
- package/es/chat/src/ChatParts/Sidebar.d.ts +14 -0
- package/es/chat/src/styles/index.cssr.mjs +24 -10
- package/es/chat/styles/dark.d.ts +7 -0
- package/es/chat/styles/light.d.ts +7 -0
- package/es/chat/styles/light.mjs +1 -0
- package/es/color-picker/src/ColorInputUnit.d.ts +7 -0
- package/es/color-picker/src/ColorPicker.d.ts +63 -0
- package/es/color-picker/styles/light.d.ts +7 -0
- package/es/components.d.ts +1042 -5
- package/es/data-table/src/DataTable.d.ts +56 -0
- package/es/data-table/src/HeaderButton/FilterButton.d.ts +28 -0
- package/es/data-table/src/HeaderButton/FilterMenu.d.ts +28 -0
- package/es/data-table/src/TableParts/Body.d.ts +28 -0
- package/es/data-table/src/TableParts/Header.d.ts +28 -0
- package/es/data-table/src/interface.d.ts +21 -0
- package/es/data-table/styles/light.d.ts +7 -0
- package/es/date-picker/src/DatePicker.d.ts +147 -0
- package/es/date-picker/src/panel/date.d.ts +42 -0
- package/es/date-picker/src/panel/daterange.d.ts +42 -0
- package/es/date-picker/src/panel/datetime.d.ts +42 -0
- package/es/date-picker/src/panel/datetimerange.d.ts +42 -0
- package/es/date-picker/src/panel/panelMonth.d.ts +168 -0
- package/es/date-picker/src/panel/panelMonthContent.d.ts +42 -0
- package/es/date-picker/src/panel/panelYear.d.ts +168 -0
- package/es/date-picker/src/panel/panelYearContent.d.ts +42 -0
- package/es/date-picker/src/panel/use-calendar.d.ts +42 -0
- package/es/date-picker/src/panel/use-dual-calendar.d.ts +42 -0
- package/es/date-picker/src/panel/use-panel-common.d.ts +42 -0
- package/es/date-picker/styles/light.d.ts +14 -0
- package/es/date-picker-v2/src/DatePickerV2.d.ts +70 -0
- package/es/date-picker-v2/styles/dark.d.ts +7 -0
- package/es/date-picker-v2/styles/light.d.ts +7 -0
- package/es/dialog/src/DialogEnvironment.mjs +1 -2
- package/es/dynamic-input/src/DynamicInput.d.ts +70 -0
- package/es/dynamic-input/src/InputPreset.d.ts +14 -0
- package/es/dynamic-input/src/PairPreset.d.ts +14 -0
- package/es/dynamic-input/styles/light.d.ts +7 -0
- package/es/dynamic-tags/src/DynamicTags.d.ts +70 -0
- package/es/dynamic-tags/styles/light.d.ts +7 -0
- package/es/input/src/Input.d.ts +77 -0
- package/es/input/src/Input.mjs +15 -0
- package/es/input/src/InputGroupLabel.d.ts +63 -0
- package/es/input/src/styles/input.cssr.mjs +1 -1
- package/es/input/styles/light.d.ts +7 -0
- package/es/input/styles/light.mjs +11 -0
- package/es/input-number/src/InputNumber.d.ts +70 -0
- package/es/input-number/styles/light.d.ts +7 -0
- package/es/input-otp/src/InputOtp.d.ts +70 -0
- package/es/input-otp/styles/light.d.ts +7 -0
- package/es/legacy-transfer/src/Transfer.d.ts +70 -0
- package/es/legacy-transfer/src/TransferFilter.d.ts +14 -0
- package/es/legacy-transfer/src/TransferList.d.ts +14 -0
- package/es/legacy-transfer/src/TransferListItem.d.ts +14 -0
- package/es/legacy-transfer/styles/light.d.ts +7 -0
- package/es/mapping-card/src/MappingCard.d.ts +9 -0
- package/es/mapping-card/src/MappingCardParts/Header.mjs +1 -1
- package/es/mapping-card/src/interface.d.ts +5 -0
- package/es/mapping-card/src/interface.mjs +4 -0
- package/es/mention/src/Mention.d.ts +70 -0
- package/es/mention/styles/light.d.ts +7 -0
- package/es/modal/src/BodyWrapper.d.ts +0 -3
- package/es/modal/src/Modal.d.ts +13 -7
- package/es/modal/src/Modal.mjs +5 -2
- package/es/modal/src/ModalEnvironment.d.ts +9 -5
- package/es/modal/src/presetProps.d.ts +1 -2
- package/es/modal/src/presetProps.mjs +0 -1
- package/es/pagination/src/Pagination.d.ts +70 -0
- package/es/pagination/styles/light.d.ts +7 -0
- package/es/time-picker/src/Panel.d.ts +14 -0
- package/es/time-picker/src/TimePicker.d.ts +70 -0
- package/es/time-picker/styles/light.d.ts +7 -0
- package/es/tooltip/index.d.ts +1 -1
- package/es/tooltip/src/Tooltip.d.ts +84 -70
- package/es/tooltip/src/Tooltip.mjs +18 -3
- package/es/transfer/src/Transfer.d.ts +70 -0
- package/es/transfer/src/TransferFilter.d.ts +14 -0
- package/es/transfer/src/TransferList.d.ts +14 -0
- package/es/transfer/src/TransferListItem.d.ts +14 -0
- package/es/transfer/styles/light.d.ts +7 -0
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/_internal/select-menu/src/SelectOption.js +8 -4
- package/lib/_utils/wrap-component.js +3 -1
- package/lib/auto-complete/src/AutoComplete.d.ts +70 -0
- package/lib/auto-complete/styles/light.d.ts +7 -0
- package/lib/carousel/src/Carousel.js +26 -13
- package/lib/chat/src/Chat.d.ts +70 -0
- package/lib/chat/src/ChatListItems.d.ts +84 -0
- package/lib/chat/src/ChatMessages.d.ts +84 -0
- package/lib/chat/src/ChatParts/MainArea.js +53 -61
- package/lib/chat/src/ChatParts/Sidebar.d.ts +14 -0
- package/lib/chat/src/styles/index.cssr.js +24 -10
- package/lib/chat/styles/dark.d.ts +7 -0
- package/lib/chat/styles/light.d.ts +7 -0
- package/lib/chat/styles/light.js +1 -1
- package/lib/color-picker/src/ColorInputUnit.d.ts +7 -0
- package/lib/color-picker/src/ColorPicker.d.ts +63 -0
- package/lib/color-picker/styles/light.d.ts +7 -0
- package/lib/components.d.ts +1042 -5
- package/lib/data-table/src/DataTable.d.ts +56 -0
- package/lib/data-table/src/HeaderButton/FilterButton.d.ts +28 -0
- package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +28 -0
- package/lib/data-table/src/TableParts/Body.d.ts +28 -0
- package/lib/data-table/src/TableParts/Header.d.ts +28 -0
- package/lib/data-table/src/interface.d.ts +21 -0
- package/lib/data-table/styles/light.d.ts +7 -0
- package/lib/date-picker/src/DatePicker.d.ts +147 -0
- package/lib/date-picker/src/panel/date.d.ts +42 -0
- package/lib/date-picker/src/panel/daterange.d.ts +42 -0
- package/lib/date-picker/src/panel/datetime.d.ts +42 -0
- package/lib/date-picker/src/panel/datetimerange.d.ts +42 -0
- package/lib/date-picker/src/panel/panelMonth.d.ts +168 -0
- package/lib/date-picker/src/panel/panelMonthContent.d.ts +42 -0
- package/lib/date-picker/src/panel/panelYear.d.ts +168 -0
- package/lib/date-picker/src/panel/panelYearContent.d.ts +42 -0
- package/lib/date-picker/src/panel/use-calendar.d.ts +42 -0
- package/lib/date-picker/src/panel/use-dual-calendar.d.ts +42 -0
- package/lib/date-picker/src/panel/use-panel-common.d.ts +42 -0
- package/lib/date-picker/styles/light.d.ts +14 -0
- package/lib/date-picker-v2/src/DatePickerV2.d.ts +70 -0
- package/lib/date-picker-v2/styles/dark.d.ts +7 -0
- package/lib/date-picker-v2/styles/light.d.ts +7 -0
- package/lib/dialog/src/DialogEnvironment.js +1 -1
- package/lib/dynamic-input/src/DynamicInput.d.ts +70 -0
- package/lib/dynamic-input/src/InputPreset.d.ts +14 -0
- package/lib/dynamic-input/src/PairPreset.d.ts +14 -0
- package/lib/dynamic-input/styles/light.d.ts +7 -0
- package/lib/dynamic-tags/src/DynamicTags.d.ts +70 -0
- package/lib/dynamic-tags/styles/light.d.ts +7 -0
- package/lib/input/src/Input.d.ts +77 -0
- package/lib/input/src/Input.js +9 -1
- package/lib/input/src/InputGroupLabel.d.ts +63 -0
- package/lib/input/src/styles/input.cssr.js +1 -1
- package/lib/input/styles/light.d.ts +7 -0
- package/lib/input/styles/light.js +11 -1
- package/lib/input-number/src/InputNumber.d.ts +70 -0
- package/lib/input-number/styles/light.d.ts +7 -0
- package/lib/input-otp/src/InputOtp.d.ts +70 -0
- package/lib/input-otp/styles/light.d.ts +7 -0
- package/lib/legacy-transfer/src/Transfer.d.ts +70 -0
- package/lib/legacy-transfer/src/TransferFilter.d.ts +14 -0
- package/lib/legacy-transfer/src/TransferList.d.ts +14 -0
- package/lib/legacy-transfer/src/TransferListItem.d.ts +14 -0
- package/lib/legacy-transfer/styles/light.d.ts +7 -0
- package/lib/mapping-card/src/MappingCard.d.ts +9 -0
- package/lib/mapping-card/src/MappingCardParts/Header.js +2 -2
- package/lib/mapping-card/src/interface.d.ts +5 -0
- package/lib/mapping-card/src/interface.js +4 -0
- package/lib/mention/src/Mention.d.ts +70 -0
- package/lib/mention/styles/light.d.ts +7 -0
- package/lib/modal/src/BodyWrapper.d.ts +0 -3
- package/lib/modal/src/Modal.d.ts +13 -7
- package/lib/modal/src/Modal.js +5 -2
- package/lib/modal/src/ModalEnvironment.d.ts +9 -5
- package/lib/modal/src/presetProps.d.ts +1 -2
- package/lib/modal/src/presetProps.js +1 -1
- package/lib/pagination/src/Pagination.d.ts +70 -0
- package/lib/pagination/styles/light.d.ts +7 -0
- package/lib/time-picker/src/Panel.d.ts +14 -0
- package/lib/time-picker/src/TimePicker.d.ts +70 -0
- package/lib/time-picker/styles/light.d.ts +7 -0
- package/lib/tooltip/index.d.ts +1 -1
- package/lib/tooltip/src/Tooltip.d.ts +84 -70
- package/lib/tooltip/src/Tooltip.js +9 -3
- package/lib/transfer/src/Transfer.d.ts +70 -0
- package/lib/transfer/src/TransferFilter.d.ts +14 -0
- package/lib/transfer/src/TransferList.d.ts +14 -0
- package/lib/transfer/src/TransferListItem.d.ts +14 -0
- package/lib/transfer/styles/light.d.ts +7 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/web-types.json +39 -3
|
@@ -813,6 +813,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
813
813
|
borderFocus: string;
|
|
814
814
|
boxShadowFocus: string;
|
|
815
815
|
loadingColor: string;
|
|
816
|
+
loadingColorSuccess: string;
|
|
817
|
+
borderSuccess: string;
|
|
818
|
+
borderHoverSuccess: string;
|
|
819
|
+
colorFocusSuccess: string;
|
|
820
|
+
borderFocusSuccess: string;
|
|
821
|
+
boxShadowFocusSuccess: string;
|
|
822
|
+
caretColorSuccess: string;
|
|
816
823
|
loadingColorWarning: string;
|
|
817
824
|
borderWarning: string;
|
|
818
825
|
borderHoverWarning: string;
|
|
@@ -1761,6 +1768,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1761
1768
|
borderFocus: string;
|
|
1762
1769
|
boxShadowFocus: string;
|
|
1763
1770
|
loadingColor: string;
|
|
1771
|
+
loadingColorSuccess: string;
|
|
1772
|
+
borderSuccess: string;
|
|
1773
|
+
borderHoverSuccess: string;
|
|
1774
|
+
colorFocusSuccess: string;
|
|
1775
|
+
borderFocusSuccess: string;
|
|
1776
|
+
boxShadowFocusSuccess: string;
|
|
1777
|
+
caretColorSuccess: string;
|
|
1764
1778
|
loadingColorWarning: string;
|
|
1765
1779
|
borderWarning: string;
|
|
1766
1780
|
borderHoverWarning: string;
|
|
@@ -2709,6 +2723,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2709
2723
|
borderFocus: string;
|
|
2710
2724
|
boxShadowFocus: string;
|
|
2711
2725
|
loadingColor: string;
|
|
2726
|
+
loadingColorSuccess: string;
|
|
2727
|
+
borderSuccess: string;
|
|
2728
|
+
borderHoverSuccess: string;
|
|
2729
|
+
colorFocusSuccess: string;
|
|
2730
|
+
borderFocusSuccess: string;
|
|
2731
|
+
boxShadowFocusSuccess: string;
|
|
2732
|
+
caretColorSuccess: string;
|
|
2712
2733
|
loadingColorWarning: string;
|
|
2713
2734
|
borderWarning: string;
|
|
2714
2735
|
borderHoverWarning: string;
|
|
@@ -3685,6 +3706,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3685
3706
|
borderFocus: string;
|
|
3686
3707
|
boxShadowFocus: string;
|
|
3687
3708
|
loadingColor: string;
|
|
3709
|
+
loadingColorSuccess: string;
|
|
3710
|
+
borderSuccess: string;
|
|
3711
|
+
borderHoverSuccess: string;
|
|
3712
|
+
colorFocusSuccess: string;
|
|
3713
|
+
borderFocusSuccess: string;
|
|
3714
|
+
boxShadowFocusSuccess: string;
|
|
3715
|
+
caretColorSuccess: string;
|
|
3688
3716
|
loadingColorWarning: string;
|
|
3689
3717
|
borderWarning: string;
|
|
3690
3718
|
borderHoverWarning: string;
|
|
@@ -4194,6 +4222,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4194
4222
|
borderFocus: string;
|
|
4195
4223
|
boxShadowFocus: string;
|
|
4196
4224
|
loadingColor: string;
|
|
4225
|
+
loadingColorSuccess: string;
|
|
4226
|
+
borderSuccess: string;
|
|
4227
|
+
borderHoverSuccess: string;
|
|
4228
|
+
colorFocusSuccess: string;
|
|
4229
|
+
borderFocusSuccess: string;
|
|
4230
|
+
boxShadowFocusSuccess: string;
|
|
4231
|
+
caretColorSuccess: string;
|
|
4197
4232
|
loadingColorWarning: string;
|
|
4198
4233
|
borderWarning: string;
|
|
4199
4234
|
borderHoverWarning: string;
|
|
@@ -5243,6 +5278,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5243
5278
|
borderFocus: string;
|
|
5244
5279
|
boxShadowFocus: string;
|
|
5245
5280
|
loadingColor: string;
|
|
5281
|
+
loadingColorSuccess: string;
|
|
5282
|
+
borderSuccess: string;
|
|
5283
|
+
borderHoverSuccess: string;
|
|
5284
|
+
colorFocusSuccess: string;
|
|
5285
|
+
borderFocusSuccess: string;
|
|
5286
|
+
boxShadowFocusSuccess: string;
|
|
5287
|
+
caretColorSuccess: string;
|
|
5246
5288
|
loadingColorWarning: string;
|
|
5247
5289
|
borderWarning: string;
|
|
5248
5290
|
borderHoverWarning: string;
|
|
@@ -6191,6 +6233,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6191
6233
|
borderFocus: string;
|
|
6192
6234
|
boxShadowFocus: string;
|
|
6193
6235
|
loadingColor: string;
|
|
6236
|
+
loadingColorSuccess: string;
|
|
6237
|
+
borderSuccess: string;
|
|
6238
|
+
borderHoverSuccess: string;
|
|
6239
|
+
colorFocusSuccess: string;
|
|
6240
|
+
borderFocusSuccess: string;
|
|
6241
|
+
boxShadowFocusSuccess: string;
|
|
6242
|
+
caretColorSuccess: string;
|
|
6194
6243
|
loadingColorWarning: string;
|
|
6195
6244
|
borderWarning: string;
|
|
6196
6245
|
borderHoverWarning: string;
|
|
@@ -7139,6 +7188,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7139
7188
|
borderFocus: string;
|
|
7140
7189
|
boxShadowFocus: string;
|
|
7141
7190
|
loadingColor: string;
|
|
7191
|
+
loadingColorSuccess: string;
|
|
7192
|
+
borderSuccess: string;
|
|
7193
|
+
borderHoverSuccess: string;
|
|
7194
|
+
colorFocusSuccess: string;
|
|
7195
|
+
borderFocusSuccess: string;
|
|
7196
|
+
boxShadowFocusSuccess: string;
|
|
7197
|
+
caretColorSuccess: string;
|
|
7142
7198
|
loadingColorWarning: string;
|
|
7143
7199
|
borderWarning: string;
|
|
7144
7200
|
borderHoverWarning: string;
|
|
@@ -702,6 +702,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
702
702
|
borderFocus: string;
|
|
703
703
|
boxShadowFocus: string;
|
|
704
704
|
loadingColor: string;
|
|
705
|
+
loadingColorSuccess: string;
|
|
706
|
+
borderSuccess: string;
|
|
707
|
+
borderHoverSuccess: string;
|
|
708
|
+
colorFocusSuccess: string;
|
|
709
|
+
borderFocusSuccess: string;
|
|
710
|
+
boxShadowFocusSuccess: string;
|
|
711
|
+
caretColorSuccess: string;
|
|
705
712
|
loadingColorWarning: string;
|
|
706
713
|
borderWarning: string;
|
|
707
714
|
borderHoverWarning: string;
|
|
@@ -1211,6 +1218,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1211
1218
|
borderFocus: string;
|
|
1212
1219
|
boxShadowFocus: string;
|
|
1213
1220
|
loadingColor: string;
|
|
1221
|
+
loadingColorSuccess: string;
|
|
1222
|
+
borderSuccess: string;
|
|
1223
|
+
borderHoverSuccess: string;
|
|
1224
|
+
colorFocusSuccess: string;
|
|
1225
|
+
borderFocusSuccess: string;
|
|
1226
|
+
boxShadowFocusSuccess: string;
|
|
1227
|
+
caretColorSuccess: string;
|
|
1214
1228
|
loadingColorWarning: string;
|
|
1215
1229
|
borderWarning: string;
|
|
1216
1230
|
borderHoverWarning: string;
|
|
@@ -2082,6 +2096,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2082
2096
|
borderFocus: string;
|
|
2083
2097
|
boxShadowFocus: string;
|
|
2084
2098
|
loadingColor: string;
|
|
2099
|
+
loadingColorSuccess: string;
|
|
2100
|
+
borderSuccess: string;
|
|
2101
|
+
borderHoverSuccess: string;
|
|
2102
|
+
colorFocusSuccess: string;
|
|
2103
|
+
borderFocusSuccess: string;
|
|
2104
|
+
boxShadowFocusSuccess: string;
|
|
2105
|
+
caretColorSuccess: string;
|
|
2085
2106
|
loadingColorWarning: string;
|
|
2086
2107
|
borderWarning: string;
|
|
2087
2108
|
borderHoverWarning: string;
|
|
@@ -2591,6 +2612,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2591
2612
|
borderFocus: string;
|
|
2592
2613
|
boxShadowFocus: string;
|
|
2593
2614
|
loadingColor: string;
|
|
2615
|
+
loadingColorSuccess: string;
|
|
2616
|
+
borderSuccess: string;
|
|
2617
|
+
borderHoverSuccess: string;
|
|
2618
|
+
colorFocusSuccess: string;
|
|
2619
|
+
borderFocusSuccess: string;
|
|
2620
|
+
boxShadowFocusSuccess: string;
|
|
2621
|
+
caretColorSuccess: string;
|
|
2594
2622
|
loadingColorWarning: string;
|
|
2595
2623
|
borderWarning: string;
|
|
2596
2624
|
borderHoverWarning: string;
|
|
@@ -727,6 +727,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
727
727
|
borderFocus: string;
|
|
728
728
|
boxShadowFocus: string;
|
|
729
729
|
loadingColor: string;
|
|
730
|
+
loadingColorSuccess: string;
|
|
731
|
+
borderSuccess: string;
|
|
732
|
+
borderHoverSuccess: string;
|
|
733
|
+
colorFocusSuccess: string;
|
|
734
|
+
borderFocusSuccess: string;
|
|
735
|
+
boxShadowFocusSuccess: string;
|
|
736
|
+
caretColorSuccess: string;
|
|
730
737
|
loadingColorWarning: string;
|
|
731
738
|
borderWarning: string;
|
|
732
739
|
borderHoverWarning: string;
|
|
@@ -1236,6 +1243,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1236
1243
|
borderFocus: string;
|
|
1237
1244
|
boxShadowFocus: string;
|
|
1238
1245
|
loadingColor: string;
|
|
1246
|
+
loadingColorSuccess: string;
|
|
1247
|
+
borderSuccess: string;
|
|
1248
|
+
borderHoverSuccess: string;
|
|
1249
|
+
colorFocusSuccess: string;
|
|
1250
|
+
borderFocusSuccess: string;
|
|
1251
|
+
boxShadowFocusSuccess: string;
|
|
1252
|
+
caretColorSuccess: string;
|
|
1239
1253
|
loadingColorWarning: string;
|
|
1240
1254
|
borderWarning: string;
|
|
1241
1255
|
borderHoverWarning: string;
|
|
@@ -2107,6 +2121,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2107
2121
|
borderFocus: string;
|
|
2108
2122
|
boxShadowFocus: string;
|
|
2109
2123
|
loadingColor: string;
|
|
2124
|
+
loadingColorSuccess: string;
|
|
2125
|
+
borderSuccess: string;
|
|
2126
|
+
borderHoverSuccess: string;
|
|
2127
|
+
colorFocusSuccess: string;
|
|
2128
|
+
borderFocusSuccess: string;
|
|
2129
|
+
boxShadowFocusSuccess: string;
|
|
2130
|
+
caretColorSuccess: string;
|
|
2110
2131
|
loadingColorWarning: string;
|
|
2111
2132
|
borderWarning: string;
|
|
2112
2133
|
borderHoverWarning: string;
|
|
@@ -2616,6 +2637,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2616
2637
|
borderFocus: string;
|
|
2617
2638
|
boxShadowFocus: string;
|
|
2618
2639
|
loadingColor: string;
|
|
2640
|
+
loadingColorSuccess: string;
|
|
2641
|
+
borderSuccess: string;
|
|
2642
|
+
borderHoverSuccess: string;
|
|
2643
|
+
colorFocusSuccess: string;
|
|
2644
|
+
borderFocusSuccess: string;
|
|
2645
|
+
boxShadowFocusSuccess: string;
|
|
2646
|
+
caretColorSuccess: string;
|
|
2619
2647
|
loadingColorWarning: string;
|
|
2620
2648
|
borderWarning: string;
|
|
2621
2649
|
borderHoverWarning: string;
|
|
@@ -751,6 +751,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
751
751
|
borderFocus: string;
|
|
752
752
|
boxShadowFocus: string;
|
|
753
753
|
loadingColor: string;
|
|
754
|
+
loadingColorSuccess: string;
|
|
755
|
+
borderSuccess: string;
|
|
756
|
+
borderHoverSuccess: string;
|
|
757
|
+
colorFocusSuccess: string;
|
|
758
|
+
borderFocusSuccess: string;
|
|
759
|
+
boxShadowFocusSuccess: string;
|
|
760
|
+
caretColorSuccess: string;
|
|
754
761
|
loadingColorWarning: string;
|
|
755
762
|
borderWarning: string;
|
|
756
763
|
borderHoverWarning: string;
|
|
@@ -1260,6 +1267,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1260
1267
|
borderFocus: string;
|
|
1261
1268
|
boxShadowFocus: string;
|
|
1262
1269
|
loadingColor: string;
|
|
1270
|
+
loadingColorSuccess: string;
|
|
1271
|
+
borderSuccess: string;
|
|
1272
|
+
borderHoverSuccess: string;
|
|
1273
|
+
colorFocusSuccess: string;
|
|
1274
|
+
borderFocusSuccess: string;
|
|
1275
|
+
boxShadowFocusSuccess: string;
|
|
1276
|
+
caretColorSuccess: string;
|
|
1263
1277
|
loadingColorWarning: string;
|
|
1264
1278
|
borderWarning: string;
|
|
1265
1279
|
borderHoverWarning: string;
|
|
@@ -2131,6 +2145,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2131
2145
|
borderFocus: string;
|
|
2132
2146
|
boxShadowFocus: string;
|
|
2133
2147
|
loadingColor: string;
|
|
2148
|
+
loadingColorSuccess: string;
|
|
2149
|
+
borderSuccess: string;
|
|
2150
|
+
borderHoverSuccess: string;
|
|
2151
|
+
colorFocusSuccess: string;
|
|
2152
|
+
borderFocusSuccess: string;
|
|
2153
|
+
boxShadowFocusSuccess: string;
|
|
2154
|
+
caretColorSuccess: string;
|
|
2134
2155
|
loadingColorWarning: string;
|
|
2135
2156
|
borderWarning: string;
|
|
2136
2157
|
borderHoverWarning: string;
|
|
@@ -2640,6 +2661,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2640
2661
|
borderFocus: string;
|
|
2641
2662
|
boxShadowFocus: string;
|
|
2642
2663
|
loadingColor: string;
|
|
2664
|
+
loadingColorSuccess: string;
|
|
2665
|
+
borderSuccess: string;
|
|
2666
|
+
borderHoverSuccess: string;
|
|
2667
|
+
colorFocusSuccess: string;
|
|
2668
|
+
borderFocusSuccess: string;
|
|
2669
|
+
boxShadowFocusSuccess: string;
|
|
2670
|
+
caretColorSuccess: string;
|
|
2643
2671
|
loadingColorWarning: string;
|
|
2644
2672
|
borderWarning: string;
|
|
2645
2673
|
borderHoverWarning: string;
|
|
@@ -721,6 +721,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
721
721
|
borderFocus: string;
|
|
722
722
|
boxShadowFocus: string;
|
|
723
723
|
loadingColor: string;
|
|
724
|
+
loadingColorSuccess: string;
|
|
725
|
+
borderSuccess: string;
|
|
726
|
+
borderHoverSuccess: string;
|
|
727
|
+
colorFocusSuccess: string;
|
|
728
|
+
borderFocusSuccess: string;
|
|
729
|
+
boxShadowFocusSuccess: string;
|
|
730
|
+
caretColorSuccess: string;
|
|
724
731
|
loadingColorWarning: string;
|
|
725
732
|
borderWarning: string;
|
|
726
733
|
borderHoverWarning: string;
|
|
@@ -1230,6 +1237,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1230
1237
|
borderFocus: string;
|
|
1231
1238
|
boxShadowFocus: string;
|
|
1232
1239
|
loadingColor: string;
|
|
1240
|
+
loadingColorSuccess: string;
|
|
1241
|
+
borderSuccess: string;
|
|
1242
|
+
borderHoverSuccess: string;
|
|
1243
|
+
colorFocusSuccess: string;
|
|
1244
|
+
borderFocusSuccess: string;
|
|
1245
|
+
boxShadowFocusSuccess: string;
|
|
1246
|
+
caretColorSuccess: string;
|
|
1233
1247
|
loadingColorWarning: string;
|
|
1234
1248
|
borderWarning: string;
|
|
1235
1249
|
borderHoverWarning: string;
|
|
@@ -2101,6 +2115,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2101
2115
|
borderFocus: string;
|
|
2102
2116
|
boxShadowFocus: string;
|
|
2103
2117
|
loadingColor: string;
|
|
2118
|
+
loadingColorSuccess: string;
|
|
2119
|
+
borderSuccess: string;
|
|
2120
|
+
borderHoverSuccess: string;
|
|
2121
|
+
colorFocusSuccess: string;
|
|
2122
|
+
borderFocusSuccess: string;
|
|
2123
|
+
boxShadowFocusSuccess: string;
|
|
2124
|
+
caretColorSuccess: string;
|
|
2104
2125
|
loadingColorWarning: string;
|
|
2105
2126
|
borderWarning: string;
|
|
2106
2127
|
borderHoverWarning: string;
|
|
@@ -2610,6 +2631,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2610
2631
|
borderFocus: string;
|
|
2611
2632
|
boxShadowFocus: string;
|
|
2612
2633
|
loadingColor: string;
|
|
2634
|
+
loadingColorSuccess: string;
|
|
2635
|
+
borderSuccess: string;
|
|
2636
|
+
borderHoverSuccess: string;
|
|
2637
|
+
colorFocusSuccess: string;
|
|
2638
|
+
borderFocusSuccess: string;
|
|
2639
|
+
boxShadowFocusSuccess: string;
|
|
2640
|
+
caretColorSuccess: string;
|
|
2613
2641
|
loadingColorWarning: string;
|
|
2614
2642
|
borderWarning: string;
|
|
2615
2643
|
borderHoverWarning: string;
|
|
@@ -825,6 +825,13 @@ export declare const dataTableProps: {
|
|
|
825
825
|
borderFocus: string;
|
|
826
826
|
boxShadowFocus: string;
|
|
827
827
|
loadingColor: string;
|
|
828
|
+
loadingColorSuccess: string;
|
|
829
|
+
borderSuccess: string;
|
|
830
|
+
borderHoverSuccess: string;
|
|
831
|
+
colorFocusSuccess: string;
|
|
832
|
+
borderFocusSuccess: string;
|
|
833
|
+
boxShadowFocusSuccess: string;
|
|
834
|
+
caretColorSuccess: string;
|
|
828
835
|
loadingColorWarning: string;
|
|
829
836
|
borderWarning: string;
|
|
830
837
|
borderHoverWarning: string;
|
|
@@ -1773,6 +1780,13 @@ export declare const dataTableProps: {
|
|
|
1773
1780
|
borderFocus: string;
|
|
1774
1781
|
boxShadowFocus: string;
|
|
1775
1782
|
loadingColor: string;
|
|
1783
|
+
loadingColorSuccess: string;
|
|
1784
|
+
borderSuccess: string;
|
|
1785
|
+
borderHoverSuccess: string;
|
|
1786
|
+
colorFocusSuccess: string;
|
|
1787
|
+
borderFocusSuccess: string;
|
|
1788
|
+
boxShadowFocusSuccess: string;
|
|
1789
|
+
caretColorSuccess: string;
|
|
1776
1790
|
loadingColorWarning: string;
|
|
1777
1791
|
borderWarning: string;
|
|
1778
1792
|
borderHoverWarning: string;
|
|
@@ -2721,6 +2735,13 @@ export declare const dataTableProps: {
|
|
|
2721
2735
|
borderFocus: string;
|
|
2722
2736
|
boxShadowFocus: string;
|
|
2723
2737
|
loadingColor: string;
|
|
2738
|
+
loadingColorSuccess: string;
|
|
2739
|
+
borderSuccess: string;
|
|
2740
|
+
borderHoverSuccess: string;
|
|
2741
|
+
colorFocusSuccess: string;
|
|
2742
|
+
borderFocusSuccess: string;
|
|
2743
|
+
boxShadowFocusSuccess: string;
|
|
2744
|
+
caretColorSuccess: string;
|
|
2724
2745
|
loadingColorWarning: string;
|
|
2725
2746
|
borderWarning: string;
|
|
2726
2747
|
borderHoverWarning: string;
|
|
@@ -749,6 +749,13 @@ declare const dataTableLight: import("../../_mixins").Theme<"DataTable", {
|
|
|
749
749
|
borderFocus: string;
|
|
750
750
|
boxShadowFocus: string;
|
|
751
751
|
loadingColor: string;
|
|
752
|
+
loadingColorSuccess: string;
|
|
753
|
+
borderSuccess: string;
|
|
754
|
+
borderHoverSuccess: string;
|
|
755
|
+
colorFocusSuccess: string;
|
|
756
|
+
borderFocusSuccess: string;
|
|
757
|
+
boxShadowFocusSuccess: string;
|
|
758
|
+
caretColorSuccess: string;
|
|
752
759
|
loadingColorWarning: string;
|
|
753
760
|
borderWarning: string;
|
|
754
761
|
borderHoverWarning: string;
|
|
@@ -220,6 +220,13 @@ export declare const datePickerProps: {
|
|
|
220
220
|
borderFocus: string;
|
|
221
221
|
boxShadowFocus: string;
|
|
222
222
|
loadingColor: string;
|
|
223
|
+
loadingColorSuccess: string;
|
|
224
|
+
borderSuccess: string;
|
|
225
|
+
borderHoverSuccess: string;
|
|
226
|
+
colorFocusSuccess: string;
|
|
227
|
+
borderFocusSuccess: string;
|
|
228
|
+
boxShadowFocusSuccess: string;
|
|
229
|
+
caretColorSuccess: string;
|
|
223
230
|
loadingColorWarning: string;
|
|
224
231
|
borderWarning: string;
|
|
225
232
|
borderHoverWarning: string;
|
|
@@ -752,6 +759,13 @@ export declare const datePickerProps: {
|
|
|
752
759
|
borderFocus: string;
|
|
753
760
|
boxShadowFocus: string;
|
|
754
761
|
loadingColor: string;
|
|
762
|
+
loadingColorSuccess: string;
|
|
763
|
+
borderSuccess: string;
|
|
764
|
+
borderHoverSuccess: string;
|
|
765
|
+
colorFocusSuccess: string;
|
|
766
|
+
borderFocusSuccess: string;
|
|
767
|
+
boxShadowFocusSuccess: string;
|
|
768
|
+
caretColorSuccess: string;
|
|
755
769
|
loadingColorWarning: string;
|
|
756
770
|
borderWarning: string;
|
|
757
771
|
borderHoverWarning: string;
|
|
@@ -1052,6 +1066,13 @@ export declare const datePickerProps: {
|
|
|
1052
1066
|
borderFocus: string;
|
|
1053
1067
|
boxShadowFocus: string;
|
|
1054
1068
|
loadingColor: string;
|
|
1069
|
+
loadingColorSuccess: string;
|
|
1070
|
+
borderSuccess: string;
|
|
1071
|
+
borderHoverSuccess: string;
|
|
1072
|
+
colorFocusSuccess: string;
|
|
1073
|
+
borderFocusSuccess: string;
|
|
1074
|
+
boxShadowFocusSuccess: string;
|
|
1075
|
+
caretColorSuccess: string;
|
|
1055
1076
|
loadingColorWarning: string;
|
|
1056
1077
|
borderWarning: string;
|
|
1057
1078
|
borderHoverWarning: string;
|
|
@@ -1584,6 +1605,13 @@ export declare const datePickerProps: {
|
|
|
1584
1605
|
borderFocus: string;
|
|
1585
1606
|
boxShadowFocus: string;
|
|
1586
1607
|
loadingColor: string;
|
|
1608
|
+
loadingColorSuccess: string;
|
|
1609
|
+
borderSuccess: string;
|
|
1610
|
+
borderHoverSuccess: string;
|
|
1611
|
+
colorFocusSuccess: string;
|
|
1612
|
+
borderFocusSuccess: string;
|
|
1613
|
+
boxShadowFocusSuccess: string;
|
|
1614
|
+
caretColorSuccess: string;
|
|
1587
1615
|
loadingColorWarning: string;
|
|
1588
1616
|
borderWarning: string;
|
|
1589
1617
|
borderHoverWarning: string;
|
|
@@ -1884,6 +1912,13 @@ export declare const datePickerProps: {
|
|
|
1884
1912
|
borderFocus: string;
|
|
1885
1913
|
boxShadowFocus: string;
|
|
1886
1914
|
loadingColor: string;
|
|
1915
|
+
loadingColorSuccess: string;
|
|
1916
|
+
borderSuccess: string;
|
|
1917
|
+
borderHoverSuccess: string;
|
|
1918
|
+
colorFocusSuccess: string;
|
|
1919
|
+
borderFocusSuccess: string;
|
|
1920
|
+
boxShadowFocusSuccess: string;
|
|
1921
|
+
caretColorSuccess: string;
|
|
1887
1922
|
loadingColorWarning: string;
|
|
1888
1923
|
borderWarning: string;
|
|
1889
1924
|
borderHoverWarning: string;
|
|
@@ -2416,6 +2451,13 @@ export declare const datePickerProps: {
|
|
|
2416
2451
|
borderFocus: string;
|
|
2417
2452
|
boxShadowFocus: string;
|
|
2418
2453
|
loadingColor: string;
|
|
2454
|
+
loadingColorSuccess: string;
|
|
2455
|
+
borderSuccess: string;
|
|
2456
|
+
borderHoverSuccess: string;
|
|
2457
|
+
colorFocusSuccess: string;
|
|
2458
|
+
borderFocusSuccess: string;
|
|
2459
|
+
boxShadowFocusSuccess: string;
|
|
2460
|
+
caretColorSuccess: string;
|
|
2419
2461
|
loadingColorWarning: string;
|
|
2420
2462
|
borderWarning: string;
|
|
2421
2463
|
borderHoverWarning: string;
|
|
@@ -2810,6 +2852,13 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
2810
2852
|
borderFocus: string;
|
|
2811
2853
|
boxShadowFocus: string;
|
|
2812
2854
|
loadingColor: string;
|
|
2855
|
+
loadingColorSuccess: string;
|
|
2856
|
+
borderSuccess: string;
|
|
2857
|
+
borderHoverSuccess: string;
|
|
2858
|
+
colorFocusSuccess: string;
|
|
2859
|
+
borderFocusSuccess: string;
|
|
2860
|
+
boxShadowFocusSuccess: string;
|
|
2861
|
+
caretColorSuccess: string;
|
|
2813
2862
|
loadingColorWarning: string;
|
|
2814
2863
|
borderWarning: string;
|
|
2815
2864
|
borderHoverWarning: string;
|
|
@@ -3342,6 +3391,13 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
3342
3391
|
borderFocus: string;
|
|
3343
3392
|
boxShadowFocus: string;
|
|
3344
3393
|
loadingColor: string;
|
|
3394
|
+
loadingColorSuccess: string;
|
|
3395
|
+
borderSuccess: string;
|
|
3396
|
+
borderHoverSuccess: string;
|
|
3397
|
+
colorFocusSuccess: string;
|
|
3398
|
+
borderFocusSuccess: string;
|
|
3399
|
+
boxShadowFocusSuccess: string;
|
|
3400
|
+
caretColorSuccess: string;
|
|
3345
3401
|
loadingColorWarning: string;
|
|
3346
3402
|
borderWarning: string;
|
|
3347
3403
|
borderHoverWarning: string;
|
|
@@ -3642,6 +3698,13 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
3642
3698
|
borderFocus: string;
|
|
3643
3699
|
boxShadowFocus: string;
|
|
3644
3700
|
loadingColor: string;
|
|
3701
|
+
loadingColorSuccess: string;
|
|
3702
|
+
borderSuccess: string;
|
|
3703
|
+
borderHoverSuccess: string;
|
|
3704
|
+
colorFocusSuccess: string;
|
|
3705
|
+
borderFocusSuccess: string;
|
|
3706
|
+
boxShadowFocusSuccess: string;
|
|
3707
|
+
caretColorSuccess: string;
|
|
3645
3708
|
loadingColorWarning: string;
|
|
3646
3709
|
borderWarning: string;
|
|
3647
3710
|
borderHoverWarning: string;
|
|
@@ -4174,6 +4237,13 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
4174
4237
|
borderFocus: string;
|
|
4175
4238
|
boxShadowFocus: string;
|
|
4176
4239
|
loadingColor: string;
|
|
4240
|
+
loadingColorSuccess: string;
|
|
4241
|
+
borderSuccess: string;
|
|
4242
|
+
borderHoverSuccess: string;
|
|
4243
|
+
colorFocusSuccess: string;
|
|
4244
|
+
borderFocusSuccess: string;
|
|
4245
|
+
boxShadowFocusSuccess: string;
|
|
4246
|
+
caretColorSuccess: string;
|
|
4177
4247
|
loadingColorWarning: string;
|
|
4178
4248
|
borderWarning: string;
|
|
4179
4249
|
borderHoverWarning: string;
|
|
@@ -4474,6 +4544,13 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
4474
4544
|
borderFocus: string;
|
|
4475
4545
|
boxShadowFocus: string;
|
|
4476
4546
|
loadingColor: string;
|
|
4547
|
+
loadingColorSuccess: string;
|
|
4548
|
+
borderSuccess: string;
|
|
4549
|
+
borderHoverSuccess: string;
|
|
4550
|
+
colorFocusSuccess: string;
|
|
4551
|
+
borderFocusSuccess: string;
|
|
4552
|
+
boxShadowFocusSuccess: string;
|
|
4553
|
+
caretColorSuccess: string;
|
|
4477
4554
|
loadingColorWarning: string;
|
|
4478
4555
|
borderWarning: string;
|
|
4479
4556
|
borderHoverWarning: string;
|
|
@@ -5006,6 +5083,13 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
5006
5083
|
borderFocus: string;
|
|
5007
5084
|
boxShadowFocus: string;
|
|
5008
5085
|
loadingColor: string;
|
|
5086
|
+
loadingColorSuccess: string;
|
|
5087
|
+
borderSuccess: string;
|
|
5088
|
+
borderHoverSuccess: string;
|
|
5089
|
+
colorFocusSuccess: string;
|
|
5090
|
+
borderFocusSuccess: string;
|
|
5091
|
+
boxShadowFocusSuccess: string;
|
|
5092
|
+
caretColorSuccess: string;
|
|
5009
5093
|
loadingColorWarning: string;
|
|
5010
5094
|
borderWarning: string;
|
|
5011
5095
|
borderHoverWarning: string;
|
|
@@ -5542,6 +5626,13 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
5542
5626
|
borderFocus: string;
|
|
5543
5627
|
boxShadowFocus: string;
|
|
5544
5628
|
loadingColor: string;
|
|
5629
|
+
loadingColorSuccess: string;
|
|
5630
|
+
borderSuccess: string;
|
|
5631
|
+
borderHoverSuccess: string;
|
|
5632
|
+
colorFocusSuccess: string;
|
|
5633
|
+
borderFocusSuccess: string;
|
|
5634
|
+
boxShadowFocusSuccess: string;
|
|
5635
|
+
caretColorSuccess: string;
|
|
5545
5636
|
loadingColorWarning: string;
|
|
5546
5637
|
borderWarning: string;
|
|
5547
5638
|
borderHoverWarning: string;
|
|
@@ -6074,6 +6165,13 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
6074
6165
|
borderFocus: string;
|
|
6075
6166
|
boxShadowFocus: string;
|
|
6076
6167
|
loadingColor: string;
|
|
6168
|
+
loadingColorSuccess: string;
|
|
6169
|
+
borderSuccess: string;
|
|
6170
|
+
borderHoverSuccess: string;
|
|
6171
|
+
colorFocusSuccess: string;
|
|
6172
|
+
borderFocusSuccess: string;
|
|
6173
|
+
boxShadowFocusSuccess: string;
|
|
6174
|
+
caretColorSuccess: string;
|
|
6077
6175
|
loadingColorWarning: string;
|
|
6078
6176
|
borderWarning: string;
|
|
6079
6177
|
borderHoverWarning: string;
|
|
@@ -6519,6 +6617,13 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
6519
6617
|
borderFocus: string;
|
|
6520
6618
|
boxShadowFocus: string;
|
|
6521
6619
|
loadingColor: string;
|
|
6620
|
+
loadingColorSuccess: string;
|
|
6621
|
+
borderSuccess: string;
|
|
6622
|
+
borderHoverSuccess: string;
|
|
6623
|
+
colorFocusSuccess: string;
|
|
6624
|
+
borderFocusSuccess: string;
|
|
6625
|
+
boxShadowFocusSuccess: string;
|
|
6626
|
+
caretColorSuccess: string;
|
|
6522
6627
|
loadingColorWarning: string;
|
|
6523
6628
|
borderWarning: string;
|
|
6524
6629
|
borderHoverWarning: string;
|
|
@@ -6873,6 +6978,13 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
6873
6978
|
borderFocus: string;
|
|
6874
6979
|
boxShadowFocus: string;
|
|
6875
6980
|
loadingColor: string;
|
|
6981
|
+
loadingColorSuccess: string;
|
|
6982
|
+
borderSuccess: string;
|
|
6983
|
+
borderHoverSuccess: string;
|
|
6984
|
+
colorFocusSuccess: string;
|
|
6985
|
+
borderFocusSuccess: string;
|
|
6986
|
+
boxShadowFocusSuccess: string;
|
|
6987
|
+
caretColorSuccess: string;
|
|
6876
6988
|
loadingColorWarning: string;
|
|
6877
6989
|
borderWarning: string;
|
|
6878
6990
|
borderHoverWarning: string;
|
|
@@ -7405,6 +7517,13 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
7405
7517
|
borderFocus: string;
|
|
7406
7518
|
boxShadowFocus: string;
|
|
7407
7519
|
loadingColor: string;
|
|
7520
|
+
loadingColorSuccess: string;
|
|
7521
|
+
borderSuccess: string;
|
|
7522
|
+
borderHoverSuccess: string;
|
|
7523
|
+
colorFocusSuccess: string;
|
|
7524
|
+
borderFocusSuccess: string;
|
|
7525
|
+
boxShadowFocusSuccess: string;
|
|
7526
|
+
caretColorSuccess: string;
|
|
7408
7527
|
loadingColorWarning: string;
|
|
7409
7528
|
borderWarning: string;
|
|
7410
7529
|
borderHoverWarning: string;
|
|
@@ -7705,6 +7824,13 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
7705
7824
|
borderFocus: string;
|
|
7706
7825
|
boxShadowFocus: string;
|
|
7707
7826
|
loadingColor: string;
|
|
7827
|
+
loadingColorSuccess: string;
|
|
7828
|
+
borderSuccess: string;
|
|
7829
|
+
borderHoverSuccess: string;
|
|
7830
|
+
colorFocusSuccess: string;
|
|
7831
|
+
borderFocusSuccess: string;
|
|
7832
|
+
boxShadowFocusSuccess: string;
|
|
7833
|
+
caretColorSuccess: string;
|
|
7708
7834
|
loadingColorWarning: string;
|
|
7709
7835
|
borderWarning: string;
|
|
7710
7836
|
borderHoverWarning: string;
|
|
@@ -8237,6 +8363,13 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
8237
8363
|
borderFocus: string;
|
|
8238
8364
|
boxShadowFocus: string;
|
|
8239
8365
|
loadingColor: string;
|
|
8366
|
+
loadingColorSuccess: string;
|
|
8367
|
+
borderSuccess: string;
|
|
8368
|
+
borderHoverSuccess: string;
|
|
8369
|
+
colorFocusSuccess: string;
|
|
8370
|
+
borderFocusSuccess: string;
|
|
8371
|
+
boxShadowFocusSuccess: string;
|
|
8372
|
+
caretColorSuccess: string;
|
|
8240
8373
|
loadingColorWarning: string;
|
|
8241
8374
|
borderWarning: string;
|
|
8242
8375
|
borderHoverWarning: string;
|
|
@@ -8537,6 +8670,13 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
8537
8670
|
borderFocus: string;
|
|
8538
8671
|
boxShadowFocus: string;
|
|
8539
8672
|
loadingColor: string;
|
|
8673
|
+
loadingColorSuccess: string;
|
|
8674
|
+
borderSuccess: string;
|
|
8675
|
+
borderHoverSuccess: string;
|
|
8676
|
+
colorFocusSuccess: string;
|
|
8677
|
+
borderFocusSuccess: string;
|
|
8678
|
+
boxShadowFocusSuccess: string;
|
|
8679
|
+
caretColorSuccess: string;
|
|
8540
8680
|
loadingColorWarning: string;
|
|
8541
8681
|
borderWarning: string;
|
|
8542
8682
|
borderHoverWarning: string;
|
|
@@ -9069,6 +9209,13 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
9069
9209
|
borderFocus: string;
|
|
9070
9210
|
boxShadowFocus: string;
|
|
9071
9211
|
loadingColor: string;
|
|
9212
|
+
loadingColorSuccess: string;
|
|
9213
|
+
borderSuccess: string;
|
|
9214
|
+
borderHoverSuccess: string;
|
|
9215
|
+
colorFocusSuccess: string;
|
|
9216
|
+
borderFocusSuccess: string;
|
|
9217
|
+
boxShadowFocusSuccess: string;
|
|
9218
|
+
caretColorSuccess: string;
|
|
9072
9219
|
loadingColorWarning: string;
|
|
9073
9220
|
borderWarning: string;
|
|
9074
9221
|
borderHoverWarning: string;
|