@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
|
@@ -218,6 +218,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
218
218
|
borderFocus: string;
|
|
219
219
|
boxShadowFocus: string;
|
|
220
220
|
loadingColor: string;
|
|
221
|
+
loadingColorSuccess: string;
|
|
222
|
+
borderSuccess: string;
|
|
223
|
+
borderHoverSuccess: string;
|
|
224
|
+
colorFocusSuccess: string;
|
|
225
|
+
borderFocusSuccess: string;
|
|
226
|
+
boxShadowFocusSuccess: string;
|
|
227
|
+
caretColorSuccess: string;
|
|
221
228
|
loadingColorWarning: string;
|
|
222
229
|
borderWarning: string;
|
|
223
230
|
borderHoverWarning: string;
|
|
@@ -750,6 +757,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
750
757
|
borderFocus: string;
|
|
751
758
|
boxShadowFocus: string;
|
|
752
759
|
loadingColor: string;
|
|
760
|
+
loadingColorSuccess: string;
|
|
761
|
+
borderSuccess: string;
|
|
762
|
+
borderHoverSuccess: string;
|
|
763
|
+
colorFocusSuccess: string;
|
|
764
|
+
borderFocusSuccess: string;
|
|
765
|
+
boxShadowFocusSuccess: string;
|
|
766
|
+
caretColorSuccess: string;
|
|
753
767
|
loadingColorWarning: string;
|
|
754
768
|
borderWarning: string;
|
|
755
769
|
borderHoverWarning: string;
|
|
@@ -1195,6 +1209,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1195
1209
|
borderFocus: string;
|
|
1196
1210
|
boxShadowFocus: string;
|
|
1197
1211
|
loadingColor: string;
|
|
1212
|
+
loadingColorSuccess: string;
|
|
1213
|
+
borderSuccess: string;
|
|
1214
|
+
borderHoverSuccess: string;
|
|
1215
|
+
colorFocusSuccess: string;
|
|
1216
|
+
borderFocusSuccess: string;
|
|
1217
|
+
boxShadowFocusSuccess: string;
|
|
1218
|
+
caretColorSuccess: string;
|
|
1198
1219
|
loadingColorWarning: string;
|
|
1199
1220
|
borderWarning: string;
|
|
1200
1221
|
borderHoverWarning: string;
|
|
@@ -1387,6 +1408,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1387
1408
|
borderFocus: string;
|
|
1388
1409
|
boxShadowFocus: string;
|
|
1389
1410
|
loadingColor: string;
|
|
1411
|
+
loadingColorSuccess: string;
|
|
1412
|
+
borderSuccess: string;
|
|
1413
|
+
borderHoverSuccess: string;
|
|
1414
|
+
colorFocusSuccess: string;
|
|
1415
|
+
borderFocusSuccess: string;
|
|
1416
|
+
boxShadowFocusSuccess: string;
|
|
1417
|
+
caretColorSuccess: string;
|
|
1390
1418
|
loadingColorWarning: string;
|
|
1391
1419
|
borderWarning: string;
|
|
1392
1420
|
borderHoverWarning: string;
|
|
@@ -1919,6 +1947,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1919
1947
|
borderFocus: string;
|
|
1920
1948
|
boxShadowFocus: string;
|
|
1921
1949
|
loadingColor: string;
|
|
1950
|
+
loadingColorSuccess: string;
|
|
1951
|
+
borderSuccess: string;
|
|
1952
|
+
borderHoverSuccess: string;
|
|
1953
|
+
colorFocusSuccess: string;
|
|
1954
|
+
borderFocusSuccess: string;
|
|
1955
|
+
boxShadowFocusSuccess: string;
|
|
1956
|
+
caretColorSuccess: string;
|
|
1922
1957
|
loadingColorWarning: string;
|
|
1923
1958
|
borderWarning: string;
|
|
1924
1959
|
borderHoverWarning: string;
|
|
@@ -2364,6 +2399,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2364
2399
|
borderFocus: string;
|
|
2365
2400
|
boxShadowFocus: string;
|
|
2366
2401
|
loadingColor: string;
|
|
2402
|
+
loadingColorSuccess: string;
|
|
2403
|
+
borderSuccess: string;
|
|
2404
|
+
borderHoverSuccess: string;
|
|
2405
|
+
colorFocusSuccess: string;
|
|
2406
|
+
borderFocusSuccess: string;
|
|
2407
|
+
boxShadowFocusSuccess: string;
|
|
2408
|
+
caretColorSuccess: string;
|
|
2367
2409
|
loadingColorWarning: string;
|
|
2368
2410
|
borderWarning: string;
|
|
2369
2411
|
borderHoverWarning: string;
|
|
@@ -2729,6 +2771,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2729
2771
|
borderFocus: string;
|
|
2730
2772
|
boxShadowFocus: string;
|
|
2731
2773
|
loadingColor: string;
|
|
2774
|
+
loadingColorSuccess: string;
|
|
2775
|
+
borderSuccess: string;
|
|
2776
|
+
borderHoverSuccess: string;
|
|
2777
|
+
colorFocusSuccess: string;
|
|
2778
|
+
borderFocusSuccess: string;
|
|
2779
|
+
boxShadowFocusSuccess: string;
|
|
2780
|
+
caretColorSuccess: string;
|
|
2732
2781
|
loadingColorWarning: string;
|
|
2733
2782
|
borderWarning: string;
|
|
2734
2783
|
borderHoverWarning: string;
|
|
@@ -3261,6 +3310,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3261
3310
|
borderFocus: string;
|
|
3262
3311
|
boxShadowFocus: string;
|
|
3263
3312
|
loadingColor: string;
|
|
3313
|
+
loadingColorSuccess: string;
|
|
3314
|
+
borderSuccess: string;
|
|
3315
|
+
borderHoverSuccess: string;
|
|
3316
|
+
colorFocusSuccess: string;
|
|
3317
|
+
borderFocusSuccess: string;
|
|
3318
|
+
boxShadowFocusSuccess: string;
|
|
3319
|
+
caretColorSuccess: string;
|
|
3264
3320
|
loadingColorWarning: string;
|
|
3265
3321
|
borderWarning: string;
|
|
3266
3322
|
borderHoverWarning: string;
|
|
@@ -3706,6 +3762,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3706
3762
|
borderFocus: string;
|
|
3707
3763
|
boxShadowFocus: string;
|
|
3708
3764
|
loadingColor: string;
|
|
3765
|
+
loadingColorSuccess: string;
|
|
3766
|
+
borderSuccess: string;
|
|
3767
|
+
borderHoverSuccess: string;
|
|
3768
|
+
colorFocusSuccess: string;
|
|
3769
|
+
borderFocusSuccess: string;
|
|
3770
|
+
boxShadowFocusSuccess: string;
|
|
3771
|
+
caretColorSuccess: string;
|
|
3709
3772
|
loadingColorWarning: string;
|
|
3710
3773
|
borderWarning: string;
|
|
3711
3774
|
borderHoverWarning: string;
|
|
@@ -3898,6 +3961,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3898
3961
|
borderFocus: string;
|
|
3899
3962
|
boxShadowFocus: string;
|
|
3900
3963
|
loadingColor: string;
|
|
3964
|
+
loadingColorSuccess: string;
|
|
3965
|
+
borderSuccess: string;
|
|
3966
|
+
borderHoverSuccess: string;
|
|
3967
|
+
colorFocusSuccess: string;
|
|
3968
|
+
borderFocusSuccess: string;
|
|
3969
|
+
boxShadowFocusSuccess: string;
|
|
3970
|
+
caretColorSuccess: string;
|
|
3901
3971
|
loadingColorWarning: string;
|
|
3902
3972
|
borderWarning: string;
|
|
3903
3973
|
borderHoverWarning: string;
|
|
@@ -4430,6 +4500,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4430
4500
|
borderFocus: string;
|
|
4431
4501
|
boxShadowFocus: string;
|
|
4432
4502
|
loadingColor: string;
|
|
4503
|
+
loadingColorSuccess: string;
|
|
4504
|
+
borderSuccess: string;
|
|
4505
|
+
borderHoverSuccess: string;
|
|
4506
|
+
colorFocusSuccess: string;
|
|
4507
|
+
borderFocusSuccess: string;
|
|
4508
|
+
boxShadowFocusSuccess: string;
|
|
4509
|
+
caretColorSuccess: string;
|
|
4433
4510
|
loadingColorWarning: string;
|
|
4434
4511
|
borderWarning: string;
|
|
4435
4512
|
borderHoverWarning: string;
|
|
@@ -4875,6 +4952,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4875
4952
|
borderFocus: string;
|
|
4876
4953
|
boxShadowFocus: string;
|
|
4877
4954
|
loadingColor: string;
|
|
4955
|
+
loadingColorSuccess: string;
|
|
4956
|
+
borderSuccess: string;
|
|
4957
|
+
borderHoverSuccess: string;
|
|
4958
|
+
colorFocusSuccess: string;
|
|
4959
|
+
borderFocusSuccess: string;
|
|
4960
|
+
boxShadowFocusSuccess: string;
|
|
4961
|
+
caretColorSuccess: string;
|
|
4878
4962
|
loadingColorWarning: string;
|
|
4879
4963
|
borderWarning: string;
|
|
4880
4964
|
borderHoverWarning: string;
|
|
@@ -5233,6 +5317,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5233
5317
|
borderFocus: string;
|
|
5234
5318
|
boxShadowFocus: string;
|
|
5235
5319
|
loadingColor: string;
|
|
5320
|
+
loadingColorSuccess: string;
|
|
5321
|
+
borderSuccess: string;
|
|
5322
|
+
borderHoverSuccess: string;
|
|
5323
|
+
colorFocusSuccess: string;
|
|
5324
|
+
borderFocusSuccess: string;
|
|
5325
|
+
boxShadowFocusSuccess: string;
|
|
5326
|
+
caretColorSuccess: string;
|
|
5236
5327
|
loadingColorWarning: string;
|
|
5237
5328
|
borderWarning: string;
|
|
5238
5329
|
borderHoverWarning: string;
|
|
@@ -5765,6 +5856,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5765
5856
|
borderFocus: string;
|
|
5766
5857
|
boxShadowFocus: string;
|
|
5767
5858
|
loadingColor: string;
|
|
5859
|
+
loadingColorSuccess: string;
|
|
5860
|
+
borderSuccess: string;
|
|
5861
|
+
borderHoverSuccess: string;
|
|
5862
|
+
colorFocusSuccess: string;
|
|
5863
|
+
borderFocusSuccess: string;
|
|
5864
|
+
boxShadowFocusSuccess: string;
|
|
5865
|
+
caretColorSuccess: string;
|
|
5768
5866
|
loadingColorWarning: string;
|
|
5769
5867
|
borderWarning: string;
|
|
5770
5868
|
borderHoverWarning: string;
|
|
@@ -6210,6 +6308,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6210
6308
|
borderFocus: string;
|
|
6211
6309
|
boxShadowFocus: string;
|
|
6212
6310
|
loadingColor: string;
|
|
6311
|
+
loadingColorSuccess: string;
|
|
6312
|
+
borderSuccess: string;
|
|
6313
|
+
borderHoverSuccess: string;
|
|
6314
|
+
colorFocusSuccess: string;
|
|
6315
|
+
borderFocusSuccess: string;
|
|
6316
|
+
boxShadowFocusSuccess: string;
|
|
6317
|
+
caretColorSuccess: string;
|
|
6213
6318
|
loadingColorWarning: string;
|
|
6214
6319
|
borderWarning: string;
|
|
6215
6320
|
borderHoverWarning: string;
|
|
@@ -6402,6 +6507,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6402
6507
|
borderFocus: string;
|
|
6403
6508
|
boxShadowFocus: string;
|
|
6404
6509
|
loadingColor: string;
|
|
6510
|
+
loadingColorSuccess: string;
|
|
6511
|
+
borderSuccess: string;
|
|
6512
|
+
borderHoverSuccess: string;
|
|
6513
|
+
colorFocusSuccess: string;
|
|
6514
|
+
borderFocusSuccess: string;
|
|
6515
|
+
boxShadowFocusSuccess: string;
|
|
6516
|
+
caretColorSuccess: string;
|
|
6405
6517
|
loadingColorWarning: string;
|
|
6406
6518
|
borderWarning: string;
|
|
6407
6519
|
borderHoverWarning: string;
|
|
@@ -6934,6 +7046,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6934
7046
|
borderFocus: string;
|
|
6935
7047
|
boxShadowFocus: string;
|
|
6936
7048
|
loadingColor: string;
|
|
7049
|
+
loadingColorSuccess: string;
|
|
7050
|
+
borderSuccess: string;
|
|
7051
|
+
borderHoverSuccess: string;
|
|
7052
|
+
colorFocusSuccess: string;
|
|
7053
|
+
borderFocusSuccess: string;
|
|
7054
|
+
boxShadowFocusSuccess: string;
|
|
7055
|
+
caretColorSuccess: string;
|
|
6937
7056
|
loadingColorWarning: string;
|
|
6938
7057
|
borderWarning: string;
|
|
6939
7058
|
borderHoverWarning: string;
|
|
@@ -7379,6 +7498,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7379
7498
|
borderFocus: string;
|
|
7380
7499
|
boxShadowFocus: string;
|
|
7381
7500
|
loadingColor: string;
|
|
7501
|
+
loadingColorSuccess: string;
|
|
7502
|
+
borderSuccess: string;
|
|
7503
|
+
borderHoverSuccess: string;
|
|
7504
|
+
colorFocusSuccess: string;
|
|
7505
|
+
borderFocusSuccess: string;
|
|
7506
|
+
boxShadowFocusSuccess: string;
|
|
7507
|
+
caretColorSuccess: string;
|
|
7382
7508
|
loadingColorWarning: string;
|
|
7383
7509
|
borderWarning: string;
|
|
7384
7510
|
borderHoverWarning: string;
|
|
@@ -7744,6 +7870,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7744
7870
|
borderFocus: string;
|
|
7745
7871
|
boxShadowFocus: string;
|
|
7746
7872
|
loadingColor: string;
|
|
7873
|
+
loadingColorSuccess: string;
|
|
7874
|
+
borderSuccess: string;
|
|
7875
|
+
borderHoverSuccess: string;
|
|
7876
|
+
colorFocusSuccess: string;
|
|
7877
|
+
borderFocusSuccess: string;
|
|
7878
|
+
boxShadowFocusSuccess: string;
|
|
7879
|
+
caretColorSuccess: string;
|
|
7747
7880
|
loadingColorWarning: string;
|
|
7748
7881
|
borderWarning: string;
|
|
7749
7882
|
borderHoverWarning: string;
|
|
@@ -8276,6 +8409,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8276
8409
|
borderFocus: string;
|
|
8277
8410
|
boxShadowFocus: string;
|
|
8278
8411
|
loadingColor: string;
|
|
8412
|
+
loadingColorSuccess: string;
|
|
8413
|
+
borderSuccess: string;
|
|
8414
|
+
borderHoverSuccess: string;
|
|
8415
|
+
colorFocusSuccess: string;
|
|
8416
|
+
borderFocusSuccess: string;
|
|
8417
|
+
boxShadowFocusSuccess: string;
|
|
8418
|
+
caretColorSuccess: string;
|
|
8279
8419
|
loadingColorWarning: string;
|
|
8280
8420
|
borderWarning: string;
|
|
8281
8421
|
borderHoverWarning: string;
|
|
@@ -8721,6 +8861,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8721
8861
|
borderFocus: string;
|
|
8722
8862
|
boxShadowFocus: string;
|
|
8723
8863
|
loadingColor: string;
|
|
8864
|
+
loadingColorSuccess: string;
|
|
8865
|
+
borderSuccess: string;
|
|
8866
|
+
borderHoverSuccess: string;
|
|
8867
|
+
colorFocusSuccess: string;
|
|
8868
|
+
borderFocusSuccess: string;
|
|
8869
|
+
boxShadowFocusSuccess: string;
|
|
8870
|
+
caretColorSuccess: string;
|
|
8724
8871
|
loadingColorWarning: string;
|
|
8725
8872
|
borderWarning: string;
|
|
8726
8873
|
borderHoverWarning: string;
|
|
@@ -8913,6 +9060,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8913
9060
|
borderFocus: string;
|
|
8914
9061
|
boxShadowFocus: string;
|
|
8915
9062
|
loadingColor: string;
|
|
9063
|
+
loadingColorSuccess: string;
|
|
9064
|
+
borderSuccess: string;
|
|
9065
|
+
borderHoverSuccess: string;
|
|
9066
|
+
colorFocusSuccess: string;
|
|
9067
|
+
borderFocusSuccess: string;
|
|
9068
|
+
boxShadowFocusSuccess: string;
|
|
9069
|
+
caretColorSuccess: string;
|
|
8916
9070
|
loadingColorWarning: string;
|
|
8917
9071
|
borderWarning: string;
|
|
8918
9072
|
borderHoverWarning: string;
|
|
@@ -9445,6 +9599,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
9445
9599
|
borderFocus: string;
|
|
9446
9600
|
boxShadowFocus: string;
|
|
9447
9601
|
loadingColor: string;
|
|
9602
|
+
loadingColorSuccess: string;
|
|
9603
|
+
borderSuccess: string;
|
|
9604
|
+
borderHoverSuccess: string;
|
|
9605
|
+
colorFocusSuccess: string;
|
|
9606
|
+
borderFocusSuccess: string;
|
|
9607
|
+
boxShadowFocusSuccess: string;
|
|
9608
|
+
caretColorSuccess: string;
|
|
9448
9609
|
loadingColorWarning: string;
|
|
9449
9610
|
borderWarning: string;
|
|
9450
9611
|
borderHoverWarning: string;
|
|
@@ -9890,6 +10051,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
9890
10051
|
borderFocus: string;
|
|
9891
10052
|
boxShadowFocus: string;
|
|
9892
10053
|
loadingColor: string;
|
|
10054
|
+
loadingColorSuccess: string;
|
|
10055
|
+
borderSuccess: string;
|
|
10056
|
+
borderHoverSuccess: string;
|
|
10057
|
+
colorFocusSuccess: string;
|
|
10058
|
+
borderFocusSuccess: string;
|
|
10059
|
+
boxShadowFocusSuccess: string;
|
|
10060
|
+
caretColorSuccess: string;
|
|
9893
10061
|
loadingColorWarning: string;
|
|
9894
10062
|
borderWarning: string;
|
|
9895
10063
|
borderHoverWarning: string;
|
|
@@ -200,6 +200,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
200
200
|
borderFocus: string;
|
|
201
201
|
boxShadowFocus: string;
|
|
202
202
|
loadingColor: string;
|
|
203
|
+
loadingColorSuccess: string;
|
|
204
|
+
borderSuccess: string;
|
|
205
|
+
borderHoverSuccess: string;
|
|
206
|
+
colorFocusSuccess: string;
|
|
207
|
+
borderFocusSuccess: string;
|
|
208
|
+
boxShadowFocusSuccess: string;
|
|
209
|
+
caretColorSuccess: string;
|
|
203
210
|
loadingColorWarning: string;
|
|
204
211
|
borderWarning: string;
|
|
205
212
|
borderHoverWarning: string;
|
|
@@ -732,6 +739,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
732
739
|
borderFocus: string;
|
|
733
740
|
boxShadowFocus: string;
|
|
734
741
|
loadingColor: string;
|
|
742
|
+
loadingColorSuccess: string;
|
|
743
|
+
borderSuccess: string;
|
|
744
|
+
borderHoverSuccess: string;
|
|
745
|
+
colorFocusSuccess: string;
|
|
746
|
+
borderFocusSuccess: string;
|
|
747
|
+
boxShadowFocusSuccess: string;
|
|
748
|
+
caretColorSuccess: string;
|
|
735
749
|
loadingColorWarning: string;
|
|
736
750
|
borderWarning: string;
|
|
737
751
|
borderHoverWarning: string;
|
|
@@ -1177,6 +1191,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1177
1191
|
borderFocus: string;
|
|
1178
1192
|
boxShadowFocus: string;
|
|
1179
1193
|
loadingColor: string;
|
|
1194
|
+
loadingColorSuccess: string;
|
|
1195
|
+
borderSuccess: string;
|
|
1196
|
+
borderHoverSuccess: string;
|
|
1197
|
+
colorFocusSuccess: string;
|
|
1198
|
+
borderFocusSuccess: string;
|
|
1199
|
+
boxShadowFocusSuccess: string;
|
|
1200
|
+
caretColorSuccess: string;
|
|
1180
1201
|
loadingColorWarning: string;
|
|
1181
1202
|
borderWarning: string;
|
|
1182
1203
|
borderHoverWarning: string;
|
|
@@ -1369,6 +1390,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1369
1390
|
borderFocus: string;
|
|
1370
1391
|
boxShadowFocus: string;
|
|
1371
1392
|
loadingColor: string;
|
|
1393
|
+
loadingColorSuccess: string;
|
|
1394
|
+
borderSuccess: string;
|
|
1395
|
+
borderHoverSuccess: string;
|
|
1396
|
+
colorFocusSuccess: string;
|
|
1397
|
+
borderFocusSuccess: string;
|
|
1398
|
+
boxShadowFocusSuccess: string;
|
|
1399
|
+
caretColorSuccess: string;
|
|
1372
1400
|
loadingColorWarning: string;
|
|
1373
1401
|
borderWarning: string;
|
|
1374
1402
|
borderHoverWarning: string;
|
|
@@ -1901,6 +1929,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1901
1929
|
borderFocus: string;
|
|
1902
1930
|
boxShadowFocus: string;
|
|
1903
1931
|
loadingColor: string;
|
|
1932
|
+
loadingColorSuccess: string;
|
|
1933
|
+
borderSuccess: string;
|
|
1934
|
+
borderHoverSuccess: string;
|
|
1935
|
+
colorFocusSuccess: string;
|
|
1936
|
+
borderFocusSuccess: string;
|
|
1937
|
+
boxShadowFocusSuccess: string;
|
|
1938
|
+
caretColorSuccess: string;
|
|
1904
1939
|
loadingColorWarning: string;
|
|
1905
1940
|
borderWarning: string;
|
|
1906
1941
|
borderHoverWarning: string;
|
|
@@ -2346,6 +2381,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2346
2381
|
borderFocus: string;
|
|
2347
2382
|
boxShadowFocus: string;
|
|
2348
2383
|
loadingColor: string;
|
|
2384
|
+
loadingColorSuccess: string;
|
|
2385
|
+
borderSuccess: string;
|
|
2386
|
+
borderHoverSuccess: string;
|
|
2387
|
+
colorFocusSuccess: string;
|
|
2388
|
+
borderFocusSuccess: string;
|
|
2389
|
+
boxShadowFocusSuccess: string;
|
|
2390
|
+
caretColorSuccess: string;
|
|
2349
2391
|
loadingColorWarning: string;
|
|
2350
2392
|
borderWarning: string;
|
|
2351
2393
|
borderHoverWarning: string;
|