@uzum-tech/ui 2.0.0-beta.8 → 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 +246 -177
- package/dist/index.mjs +246 -177
- 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 +1033 -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/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 +1033 -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/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 +8 -1
|
@@ -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;
|
|
@@ -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;
|