@uzum-tech/ui 2.0.0-beta.8 → 2.0.0
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 +485 -373
- package/dist/index.mjs +485 -373
- package/dist/index.prod.js +2 -2
- package/dist/index.prod.mjs +2 -2
- package/es/_internal/icon/index.d.ts +2 -0
- package/es/_internal/icon/index.mjs +2 -1
- package/es/_internal/icon/src/UIcon.d.ts +126 -0
- package/es/_internal/icon/src/UIcon.mjs +131 -0
- package/es/_internal/select-menu/src/SelectOption.mjs +12 -4
- package/es/_mixins/use-config.d.ts +2 -1
- package/es/_mixins/use-config.mjs +1 -0
- 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 +1146 -39
- package/es/config-provider/src/ConfigProvider.d.ts +4 -1
- package/es/config-provider/src/ConfigProvider.mjs +8 -0
- package/es/config-provider/src/interface.d.ts +1 -1
- package/es/config-provider/src/internal-interface.d.ts +8 -0
- 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/icon/src/Icon.d.ts +2 -109
- package/es/icon/src/Icon.mjs +1 -93
- 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/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/icon/index.d.ts +2 -0
- package/lib/_internal/icon/index.js +4 -1
- package/lib/_internal/icon/src/UIcon.d.ts +126 -0
- package/lib/_internal/icon/src/UIcon.js +108 -0
- package/lib/_internal/select-menu/src/SelectOption.js +8 -4
- package/lib/_mixins/use-config.d.ts +2 -1
- package/lib/_mixins/use-config.js +1 -0
- 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 +1146 -39
- package/lib/config-provider/src/ConfigProvider.d.ts +4 -1
- package/lib/config-provider/src/ConfigProvider.js +8 -0
- package/lib/config-provider/src/interface.d.ts +1 -1
- package/lib/config-provider/src/internal-interface.d.ts +8 -0
- 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/icon/src/Icon.d.ts +2 -109
- package/lib/icon/src/Icon.js +3 -73
- 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/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 +8 -1
- package/web-types.json +18 -1
|
@@ -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;
|
|
@@ -203,6 +203,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
203
203
|
borderFocus: string;
|
|
204
204
|
boxShadowFocus: string;
|
|
205
205
|
loadingColor: string;
|
|
206
|
+
loadingColorSuccess: string;
|
|
207
|
+
borderSuccess: string;
|
|
208
|
+
borderHoverSuccess: string;
|
|
209
|
+
colorFocusSuccess: string;
|
|
210
|
+
borderFocusSuccess: string;
|
|
211
|
+
boxShadowFocusSuccess: string;
|
|
212
|
+
caretColorSuccess: string;
|
|
206
213
|
loadingColorWarning: string;
|
|
207
214
|
borderWarning: string;
|
|
208
215
|
borderHoverWarning: string;
|
|
@@ -735,6 +742,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
735
742
|
borderFocus: string;
|
|
736
743
|
boxShadowFocus: string;
|
|
737
744
|
loadingColor: string;
|
|
745
|
+
loadingColorSuccess: string;
|
|
746
|
+
borderSuccess: string;
|
|
747
|
+
borderHoverSuccess: string;
|
|
748
|
+
colorFocusSuccess: string;
|
|
749
|
+
borderFocusSuccess: string;
|
|
750
|
+
boxShadowFocusSuccess: string;
|
|
751
|
+
caretColorSuccess: string;
|
|
738
752
|
loadingColorWarning: string;
|
|
739
753
|
borderWarning: string;
|
|
740
754
|
borderHoverWarning: string;
|
|
@@ -1180,6 +1194,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1180
1194
|
borderFocus: string;
|
|
1181
1195
|
boxShadowFocus: string;
|
|
1182
1196
|
loadingColor: string;
|
|
1197
|
+
loadingColorSuccess: string;
|
|
1198
|
+
borderSuccess: string;
|
|
1199
|
+
borderHoverSuccess: string;
|
|
1200
|
+
colorFocusSuccess: string;
|
|
1201
|
+
borderFocusSuccess: string;
|
|
1202
|
+
boxShadowFocusSuccess: string;
|
|
1203
|
+
caretColorSuccess: string;
|
|
1183
1204
|
loadingColorWarning: string;
|
|
1184
1205
|
borderWarning: string;
|
|
1185
1206
|
borderHoverWarning: string;
|
|
@@ -1372,6 +1393,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1372
1393
|
borderFocus: string;
|
|
1373
1394
|
boxShadowFocus: string;
|
|
1374
1395
|
loadingColor: string;
|
|
1396
|
+
loadingColorSuccess: string;
|
|
1397
|
+
borderSuccess: string;
|
|
1398
|
+
borderHoverSuccess: string;
|
|
1399
|
+
colorFocusSuccess: string;
|
|
1400
|
+
borderFocusSuccess: string;
|
|
1401
|
+
boxShadowFocusSuccess: string;
|
|
1402
|
+
caretColorSuccess: string;
|
|
1375
1403
|
loadingColorWarning: string;
|
|
1376
1404
|
borderWarning: string;
|
|
1377
1405
|
borderHoverWarning: string;
|
|
@@ -1904,6 +1932,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1904
1932
|
borderFocus: string;
|
|
1905
1933
|
boxShadowFocus: string;
|
|
1906
1934
|
loadingColor: string;
|
|
1935
|
+
loadingColorSuccess: string;
|
|
1936
|
+
borderSuccess: string;
|
|
1937
|
+
borderHoverSuccess: string;
|
|
1938
|
+
colorFocusSuccess: string;
|
|
1939
|
+
borderFocusSuccess: string;
|
|
1940
|
+
boxShadowFocusSuccess: string;
|
|
1941
|
+
caretColorSuccess: string;
|
|
1907
1942
|
loadingColorWarning: string;
|
|
1908
1943
|
borderWarning: string;
|
|
1909
1944
|
borderHoverWarning: string;
|
|
@@ -2349,6 +2384,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2349
2384
|
borderFocus: string;
|
|
2350
2385
|
boxShadowFocus: string;
|
|
2351
2386
|
loadingColor: string;
|
|
2387
|
+
loadingColorSuccess: string;
|
|
2388
|
+
borderSuccess: string;
|
|
2389
|
+
borderHoverSuccess: string;
|
|
2390
|
+
colorFocusSuccess: string;
|
|
2391
|
+
borderFocusSuccess: string;
|
|
2392
|
+
boxShadowFocusSuccess: string;
|
|
2393
|
+
caretColorSuccess: string;
|
|
2352
2394
|
loadingColorWarning: string;
|
|
2353
2395
|
borderWarning: string;
|
|
2354
2396
|
borderHoverWarning: string;
|
|
@@ -231,6 +231,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
231
231
|
borderFocus: string;
|
|
232
232
|
boxShadowFocus: string;
|
|
233
233
|
loadingColor: string;
|
|
234
|
+
loadingColorSuccess: string;
|
|
235
|
+
borderSuccess: string;
|
|
236
|
+
borderHoverSuccess: string;
|
|
237
|
+
colorFocusSuccess: string;
|
|
238
|
+
borderFocusSuccess: string;
|
|
239
|
+
boxShadowFocusSuccess: string;
|
|
240
|
+
caretColorSuccess: string;
|
|
234
241
|
loadingColorWarning: string;
|
|
235
242
|
borderWarning: string;
|
|
236
243
|
borderHoverWarning: string;
|
|
@@ -763,6 +770,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
763
770
|
borderFocus: string;
|
|
764
771
|
boxShadowFocus: string;
|
|
765
772
|
loadingColor: string;
|
|
773
|
+
loadingColorSuccess: string;
|
|
774
|
+
borderSuccess: string;
|
|
775
|
+
borderHoverSuccess: string;
|
|
776
|
+
colorFocusSuccess: string;
|
|
777
|
+
borderFocusSuccess: string;
|
|
778
|
+
boxShadowFocusSuccess: string;
|
|
779
|
+
caretColorSuccess: string;
|
|
766
780
|
loadingColorWarning: string;
|
|
767
781
|
borderWarning: string;
|
|
768
782
|
borderHoverWarning: string;
|
|
@@ -1208,6 +1222,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1208
1222
|
borderFocus: string;
|
|
1209
1223
|
boxShadowFocus: string;
|
|
1210
1224
|
loadingColor: string;
|
|
1225
|
+
loadingColorSuccess: string;
|
|
1226
|
+
borderSuccess: string;
|
|
1227
|
+
borderHoverSuccess: string;
|
|
1228
|
+
colorFocusSuccess: string;
|
|
1229
|
+
borderFocusSuccess: string;
|
|
1230
|
+
boxShadowFocusSuccess: string;
|
|
1231
|
+
caretColorSuccess: string;
|
|
1211
1232
|
loadingColorWarning: string;
|
|
1212
1233
|
borderWarning: string;
|
|
1213
1234
|
borderHoverWarning: string;
|
|
@@ -1400,6 +1421,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1400
1421
|
borderFocus: string;
|
|
1401
1422
|
boxShadowFocus: string;
|
|
1402
1423
|
loadingColor: string;
|
|
1424
|
+
loadingColorSuccess: string;
|
|
1425
|
+
borderSuccess: string;
|
|
1426
|
+
borderHoverSuccess: string;
|
|
1427
|
+
colorFocusSuccess: string;
|
|
1428
|
+
borderFocusSuccess: string;
|
|
1429
|
+
boxShadowFocusSuccess: string;
|
|
1430
|
+
caretColorSuccess: string;
|
|
1403
1431
|
loadingColorWarning: string;
|
|
1404
1432
|
borderWarning: string;
|
|
1405
1433
|
borderHoverWarning: string;
|
|
@@ -1932,6 +1960,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1932
1960
|
borderFocus: string;
|
|
1933
1961
|
boxShadowFocus: string;
|
|
1934
1962
|
loadingColor: string;
|
|
1963
|
+
loadingColorSuccess: string;
|
|
1964
|
+
borderSuccess: string;
|
|
1965
|
+
borderHoverSuccess: string;
|
|
1966
|
+
colorFocusSuccess: string;
|
|
1967
|
+
borderFocusSuccess: string;
|
|
1968
|
+
boxShadowFocusSuccess: string;
|
|
1969
|
+
caretColorSuccess: string;
|
|
1935
1970
|
loadingColorWarning: string;
|
|
1936
1971
|
borderWarning: string;
|
|
1937
1972
|
borderHoverWarning: string;
|
|
@@ -2377,6 +2412,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2377
2412
|
borderFocus: string;
|
|
2378
2413
|
boxShadowFocus: string;
|
|
2379
2414
|
loadingColor: string;
|
|
2415
|
+
loadingColorSuccess: string;
|
|
2416
|
+
borderSuccess: string;
|
|
2417
|
+
borderHoverSuccess: string;
|
|
2418
|
+
colorFocusSuccess: string;
|
|
2419
|
+
borderFocusSuccess: string;
|
|
2420
|
+
boxShadowFocusSuccess: string;
|
|
2421
|
+
caretColorSuccess: string;
|
|
2380
2422
|
loadingColorWarning: string;
|
|
2381
2423
|
borderWarning: string;
|
|
2382
2424
|
borderHoverWarning: string;
|
|
@@ -196,6 +196,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
196
196
|
borderFocus: string;
|
|
197
197
|
boxShadowFocus: string;
|
|
198
198
|
loadingColor: string;
|
|
199
|
+
loadingColorSuccess: string;
|
|
200
|
+
borderSuccess: string;
|
|
201
|
+
borderHoverSuccess: string;
|
|
202
|
+
colorFocusSuccess: string;
|
|
203
|
+
borderFocusSuccess: string;
|
|
204
|
+
boxShadowFocusSuccess: string;
|
|
205
|
+
caretColorSuccess: string;
|
|
199
206
|
loadingColorWarning: string;
|
|
200
207
|
borderWarning: string;
|
|
201
208
|
borderHoverWarning: string;
|
|
@@ -728,6 +735,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
728
735
|
borderFocus: string;
|
|
729
736
|
boxShadowFocus: string;
|
|
730
737
|
loadingColor: string;
|
|
738
|
+
loadingColorSuccess: string;
|
|
739
|
+
borderSuccess: string;
|
|
740
|
+
borderHoverSuccess: string;
|
|
741
|
+
colorFocusSuccess: string;
|
|
742
|
+
borderFocusSuccess: string;
|
|
743
|
+
boxShadowFocusSuccess: string;
|
|
744
|
+
caretColorSuccess: string;
|
|
731
745
|
loadingColorWarning: string;
|
|
732
746
|
borderWarning: string;
|
|
733
747
|
borderHoverWarning: string;
|
|
@@ -1173,6 +1187,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1173
1187
|
borderFocus: string;
|
|
1174
1188
|
boxShadowFocus: string;
|
|
1175
1189
|
loadingColor: string;
|
|
1190
|
+
loadingColorSuccess: string;
|
|
1191
|
+
borderSuccess: string;
|
|
1192
|
+
borderHoverSuccess: string;
|
|
1193
|
+
colorFocusSuccess: string;
|
|
1194
|
+
borderFocusSuccess: string;
|
|
1195
|
+
boxShadowFocusSuccess: string;
|
|
1196
|
+
caretColorSuccess: string;
|
|
1176
1197
|
loadingColorWarning: string;
|
|
1177
1198
|
borderWarning: string;
|
|
1178
1199
|
borderHoverWarning: string;
|
|
@@ -1365,6 +1386,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1365
1386
|
borderFocus: string;
|
|
1366
1387
|
boxShadowFocus: string;
|
|
1367
1388
|
loadingColor: string;
|
|
1389
|
+
loadingColorSuccess: string;
|
|
1390
|
+
borderSuccess: string;
|
|
1391
|
+
borderHoverSuccess: string;
|
|
1392
|
+
colorFocusSuccess: string;
|
|
1393
|
+
borderFocusSuccess: string;
|
|
1394
|
+
boxShadowFocusSuccess: string;
|
|
1395
|
+
caretColorSuccess: string;
|
|
1368
1396
|
loadingColorWarning: string;
|
|
1369
1397
|
borderWarning: string;
|
|
1370
1398
|
borderHoverWarning: string;
|
|
@@ -1897,6 +1925,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1897
1925
|
borderFocus: string;
|
|
1898
1926
|
boxShadowFocus: string;
|
|
1899
1927
|
loadingColor: string;
|
|
1928
|
+
loadingColorSuccess: string;
|
|
1929
|
+
borderSuccess: string;
|
|
1930
|
+
borderHoverSuccess: string;
|
|
1931
|
+
colorFocusSuccess: string;
|
|
1932
|
+
borderFocusSuccess: string;
|
|
1933
|
+
boxShadowFocusSuccess: string;
|
|
1934
|
+
caretColorSuccess: string;
|
|
1900
1935
|
loadingColorWarning: string;
|
|
1901
1936
|
borderWarning: string;
|
|
1902
1937
|
borderHoverWarning: string;
|
|
@@ -2342,6 +2377,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2342
2377
|
borderFocus: string;
|
|
2343
2378
|
boxShadowFocus: string;
|
|
2344
2379
|
loadingColor: string;
|
|
2380
|
+
loadingColorSuccess: string;
|
|
2381
|
+
borderSuccess: string;
|
|
2382
|
+
borderHoverSuccess: string;
|
|
2383
|
+
colorFocusSuccess: string;
|
|
2384
|
+
borderFocusSuccess: string;
|
|
2385
|
+
boxShadowFocusSuccess: string;
|
|
2386
|
+
caretColorSuccess: string;
|
|
2345
2387
|
loadingColorWarning: string;
|
|
2346
2388
|
borderWarning: string;
|
|
2347
2389
|
borderHoverWarning: string;
|
|
@@ -222,6 +222,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
222
222
|
borderFocus: string;
|
|
223
223
|
boxShadowFocus: string;
|
|
224
224
|
loadingColor: string;
|
|
225
|
+
loadingColorSuccess: string;
|
|
226
|
+
borderSuccess: string;
|
|
227
|
+
borderHoverSuccess: string;
|
|
228
|
+
colorFocusSuccess: string;
|
|
229
|
+
borderFocusSuccess: string;
|
|
230
|
+
boxShadowFocusSuccess: string;
|
|
231
|
+
caretColorSuccess: string;
|
|
225
232
|
loadingColorWarning: string;
|
|
226
233
|
borderWarning: string;
|
|
227
234
|
borderHoverWarning: string;
|
|
@@ -754,6 +761,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
754
761
|
borderFocus: string;
|
|
755
762
|
boxShadowFocus: string;
|
|
756
763
|
loadingColor: string;
|
|
764
|
+
loadingColorSuccess: string;
|
|
765
|
+
borderSuccess: string;
|
|
766
|
+
borderHoverSuccess: string;
|
|
767
|
+
colorFocusSuccess: string;
|
|
768
|
+
borderFocusSuccess: string;
|
|
769
|
+
boxShadowFocusSuccess: string;
|
|
770
|
+
caretColorSuccess: string;
|
|
757
771
|
loadingColorWarning: string;
|
|
758
772
|
borderWarning: string;
|
|
759
773
|
borderHoverWarning: string;
|
|
@@ -1199,6 +1213,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1199
1213
|
borderFocus: string;
|
|
1200
1214
|
boxShadowFocus: string;
|
|
1201
1215
|
loadingColor: string;
|
|
1216
|
+
loadingColorSuccess: string;
|
|
1217
|
+
borderSuccess: string;
|
|
1218
|
+
borderHoverSuccess: string;
|
|
1219
|
+
colorFocusSuccess: string;
|
|
1220
|
+
borderFocusSuccess: string;
|
|
1221
|
+
boxShadowFocusSuccess: string;
|
|
1222
|
+
caretColorSuccess: string;
|
|
1202
1223
|
loadingColorWarning: string;
|
|
1203
1224
|
borderWarning: string;
|
|
1204
1225
|
borderHoverWarning: string;
|
|
@@ -1391,6 +1412,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1391
1412
|
borderFocus: string;
|
|
1392
1413
|
boxShadowFocus: string;
|
|
1393
1414
|
loadingColor: string;
|
|
1415
|
+
loadingColorSuccess: string;
|
|
1416
|
+
borderSuccess: string;
|
|
1417
|
+
borderHoverSuccess: string;
|
|
1418
|
+
colorFocusSuccess: string;
|
|
1419
|
+
borderFocusSuccess: string;
|
|
1420
|
+
boxShadowFocusSuccess: string;
|
|
1421
|
+
caretColorSuccess: string;
|
|
1394
1422
|
loadingColorWarning: string;
|
|
1395
1423
|
borderWarning: string;
|
|
1396
1424
|
borderHoverWarning: string;
|
|
@@ -1923,6 +1951,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1923
1951
|
borderFocus: string;
|
|
1924
1952
|
boxShadowFocus: string;
|
|
1925
1953
|
loadingColor: string;
|
|
1954
|
+
loadingColorSuccess: string;
|
|
1955
|
+
borderSuccess: string;
|
|
1956
|
+
borderHoverSuccess: string;
|
|
1957
|
+
colorFocusSuccess: string;
|
|
1958
|
+
borderFocusSuccess: string;
|
|
1959
|
+
boxShadowFocusSuccess: string;
|
|
1960
|
+
caretColorSuccess: string;
|
|
1926
1961
|
loadingColorWarning: string;
|
|
1927
1962
|
borderWarning: string;
|
|
1928
1963
|
borderHoverWarning: string;
|
|
@@ -2368,6 +2403,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2368
2403
|
borderFocus: string;
|
|
2369
2404
|
boxShadowFocus: string;
|
|
2370
2405
|
loadingColor: string;
|
|
2406
|
+
loadingColorSuccess: string;
|
|
2407
|
+
borderSuccess: string;
|
|
2408
|
+
borderHoverSuccess: string;
|
|
2409
|
+
colorFocusSuccess: string;
|
|
2410
|
+
borderFocusSuccess: string;
|
|
2411
|
+
boxShadowFocusSuccess: string;
|
|
2412
|
+
caretColorSuccess: string;
|
|
2371
2413
|
loadingColorWarning: string;
|
|
2372
2414
|
borderWarning: string;
|
|
2373
2415
|
borderHoverWarning: string;
|