@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
package/lib/input/src/Input.d.ts
CHANGED
|
@@ -150,6 +150,13 @@ export declare const inputProps: {
|
|
|
150
150
|
borderFocus: string;
|
|
151
151
|
boxShadowFocus: string;
|
|
152
152
|
loadingColor: string;
|
|
153
|
+
loadingColorSuccess: string;
|
|
154
|
+
borderSuccess: string;
|
|
155
|
+
borderHoverSuccess: string;
|
|
156
|
+
colorFocusSuccess: string;
|
|
157
|
+
borderFocusSuccess: string;
|
|
158
|
+
boxShadowFocusSuccess: string;
|
|
159
|
+
caretColorSuccess: string;
|
|
153
160
|
loadingColorWarning: string;
|
|
154
161
|
borderWarning: string;
|
|
155
162
|
borderHoverWarning: string;
|
|
@@ -214,6 +221,13 @@ export declare const inputProps: {
|
|
|
214
221
|
borderFocus: string;
|
|
215
222
|
boxShadowFocus: string;
|
|
216
223
|
loadingColor: string;
|
|
224
|
+
loadingColorSuccess: string;
|
|
225
|
+
borderSuccess: string;
|
|
226
|
+
borderHoverSuccess: string;
|
|
227
|
+
colorFocusSuccess: string;
|
|
228
|
+
borderFocusSuccess: string;
|
|
229
|
+
boxShadowFocusSuccess: string;
|
|
230
|
+
caretColorSuccess: string;
|
|
217
231
|
loadingColorWarning: string;
|
|
218
232
|
borderWarning: string;
|
|
219
233
|
borderHoverWarning: string;
|
|
@@ -278,6 +292,13 @@ export declare const inputProps: {
|
|
|
278
292
|
borderFocus: string;
|
|
279
293
|
boxShadowFocus: string;
|
|
280
294
|
loadingColor: string;
|
|
295
|
+
loadingColorSuccess: string;
|
|
296
|
+
borderSuccess: string;
|
|
297
|
+
borderHoverSuccess: string;
|
|
298
|
+
colorFocusSuccess: string;
|
|
299
|
+
borderFocusSuccess: string;
|
|
300
|
+
boxShadowFocusSuccess: string;
|
|
301
|
+
caretColorSuccess: string;
|
|
281
302
|
loadingColorWarning: string;
|
|
282
303
|
borderWarning: string;
|
|
283
304
|
borderHoverWarning: string;
|
|
@@ -461,6 +482,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
461
482
|
borderFocus: string;
|
|
462
483
|
boxShadowFocus: string;
|
|
463
484
|
loadingColor: string;
|
|
485
|
+
loadingColorSuccess: string;
|
|
486
|
+
borderSuccess: string;
|
|
487
|
+
borderHoverSuccess: string;
|
|
488
|
+
colorFocusSuccess: string;
|
|
489
|
+
borderFocusSuccess: string;
|
|
490
|
+
boxShadowFocusSuccess: string;
|
|
491
|
+
caretColorSuccess: string;
|
|
464
492
|
loadingColorWarning: string;
|
|
465
493
|
borderWarning: string;
|
|
466
494
|
borderHoverWarning: string;
|
|
@@ -525,6 +553,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
525
553
|
borderFocus: string;
|
|
526
554
|
boxShadowFocus: string;
|
|
527
555
|
loadingColor: string;
|
|
556
|
+
loadingColorSuccess: string;
|
|
557
|
+
borderSuccess: string;
|
|
558
|
+
borderHoverSuccess: string;
|
|
559
|
+
colorFocusSuccess: string;
|
|
560
|
+
borderFocusSuccess: string;
|
|
561
|
+
boxShadowFocusSuccess: string;
|
|
562
|
+
caretColorSuccess: string;
|
|
528
563
|
loadingColorWarning: string;
|
|
529
564
|
borderWarning: string;
|
|
530
565
|
borderHoverWarning: string;
|
|
@@ -589,6 +624,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
589
624
|
borderFocus: string;
|
|
590
625
|
boxShadowFocus: string;
|
|
591
626
|
loadingColor: string;
|
|
627
|
+
loadingColorSuccess: string;
|
|
628
|
+
borderSuccess: string;
|
|
629
|
+
borderHoverSuccess: string;
|
|
630
|
+
colorFocusSuccess: string;
|
|
631
|
+
borderFocusSuccess: string;
|
|
632
|
+
boxShadowFocusSuccess: string;
|
|
633
|
+
caretColorSuccess: string;
|
|
592
634
|
loadingColorWarning: string;
|
|
593
635
|
borderWarning: string;
|
|
594
636
|
borderHoverWarning: string;
|
|
@@ -735,6 +777,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
735
777
|
borderFocus: string;
|
|
736
778
|
boxShadowFocus: string;
|
|
737
779
|
loadingColor: string;
|
|
780
|
+
loadingColorSuccess: string;
|
|
781
|
+
borderSuccess: string;
|
|
782
|
+
borderHoverSuccess: string;
|
|
783
|
+
colorFocusSuccess: string;
|
|
784
|
+
borderFocusSuccess: string;
|
|
785
|
+
boxShadowFocusSuccess: string;
|
|
786
|
+
caretColorSuccess: string;
|
|
738
787
|
loadingColorWarning: string;
|
|
739
788
|
borderWarning: string;
|
|
740
789
|
borderHoverWarning: string;
|
|
@@ -793,6 +842,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
793
842
|
'--u-text-color-disabled': string;
|
|
794
843
|
'--u-box-shadow-focus': string;
|
|
795
844
|
'--u-loading-color': string;
|
|
845
|
+
'--u-caret-color-success': string;
|
|
846
|
+
'--u-color-focus-success': string;
|
|
847
|
+
'--u-box-shadow-focus-success': string;
|
|
848
|
+
'--u-border-success': string;
|
|
849
|
+
'--u-border-focus-success': string;
|
|
850
|
+
'--u-border-hover-success': string;
|
|
851
|
+
'--u-loading-color-success': string;
|
|
796
852
|
'--u-caret-color-warning': string;
|
|
797
853
|
'--u-color-focus-warning': string;
|
|
798
854
|
'--u-box-shadow-focus-warning': string;
|
|
@@ -973,6 +1029,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
973
1029
|
borderFocus: string;
|
|
974
1030
|
boxShadowFocus: string;
|
|
975
1031
|
loadingColor: string;
|
|
1032
|
+
loadingColorSuccess: string;
|
|
1033
|
+
borderSuccess: string;
|
|
1034
|
+
borderHoverSuccess: string;
|
|
1035
|
+
colorFocusSuccess: string;
|
|
1036
|
+
borderFocusSuccess: string;
|
|
1037
|
+
boxShadowFocusSuccess: string;
|
|
1038
|
+
caretColorSuccess: string;
|
|
976
1039
|
loadingColorWarning: string;
|
|
977
1040
|
borderWarning: string;
|
|
978
1041
|
borderHoverWarning: string;
|
|
@@ -1037,6 +1100,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1037
1100
|
borderFocus: string;
|
|
1038
1101
|
boxShadowFocus: string;
|
|
1039
1102
|
loadingColor: string;
|
|
1103
|
+
loadingColorSuccess: string;
|
|
1104
|
+
borderSuccess: string;
|
|
1105
|
+
borderHoverSuccess: string;
|
|
1106
|
+
colorFocusSuccess: string;
|
|
1107
|
+
borderFocusSuccess: string;
|
|
1108
|
+
boxShadowFocusSuccess: string;
|
|
1109
|
+
caretColorSuccess: string;
|
|
1040
1110
|
loadingColorWarning: string;
|
|
1041
1111
|
borderWarning: string;
|
|
1042
1112
|
borderHoverWarning: string;
|
|
@@ -1101,6 +1171,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1101
1171
|
borderFocus: string;
|
|
1102
1172
|
boxShadowFocus: string;
|
|
1103
1173
|
loadingColor: string;
|
|
1174
|
+
loadingColorSuccess: string;
|
|
1175
|
+
borderSuccess: string;
|
|
1176
|
+
borderHoverSuccess: string;
|
|
1177
|
+
colorFocusSuccess: string;
|
|
1178
|
+
borderFocusSuccess: string;
|
|
1179
|
+
boxShadowFocusSuccess: string;
|
|
1180
|
+
caretColorSuccess: string;
|
|
1104
1181
|
loadingColorWarning: string;
|
|
1105
1182
|
borderWarning: string;
|
|
1106
1183
|
borderHoverWarning: string;
|
package/lib/input/src/Input.js
CHANGED
|
@@ -786,7 +786,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
786
786
|
const rtlEnabledRef = (0, use_rtl_1.useRtl)('Input', mergedRtlRef, mergedClsPrefixRef);
|
|
787
787
|
const cssVarsRef = (0, vue_1.computed)(() => {
|
|
788
788
|
const { value: size } = mergedSizeRef;
|
|
789
|
-
const { common: { cubicBezierEaseInOut, fontWeightStrong, fontWeight }, self: { color, borderRadius, textColor, caretColor, caretColorError, caretColorWarning, textDecorationColor, border, borderDisabled, borderHover, borderFocus, placeholderColor, placeholderColorDisabled, lineHeightTextarea, colorDisabled, colorFocus, textColorDisabled, boxShadowFocus, iconSize, colorFocusWarning, boxShadowFocusWarning, borderWarning, borderFocusWarning, borderHoverWarning, colorFocusError, boxShadowFocusError, borderError, borderFocusError, borderHoverError, clearSize, clearColor, clearColorHover, clearColorPressed, iconColor, iconColorDisabled, suffixTextColor, countTextColor, countTextColorDisabled, iconColorHover, iconColorPressed, loadingColor, loadingColorError, loadingColorWarning, selectionColor, [(0, _utils_1.createKey)('padding', size)]: padding, [(0, _utils_1.createKey)('fontSize', size)]: fontSize, [(0, _utils_1.createKey)('height', size)]: height } } = themeRef.value;
|
|
789
|
+
const { common: { cubicBezierEaseInOut, fontWeightStrong, fontWeight }, self: { color, borderRadius, textColor, caretColor, caretColorSuccess, caretColorError, caretColorWarning, textDecorationColor, border, borderDisabled, borderHover, borderFocus, placeholderColor, placeholderColorDisabled, lineHeightTextarea, colorDisabled, colorFocus, textColorDisabled, boxShadowFocus, iconSize, colorFocusSuccess, boxShadowFocusSuccess, borderSuccess, borderFocusSuccess, borderHoverSuccess, colorFocusWarning, boxShadowFocusWarning, borderWarning, borderFocusWarning, borderHoverWarning, colorFocusError, boxShadowFocusError, borderError, borderFocusError, borderHoverError, clearSize, clearColor, clearColorHover, clearColorPressed, iconColor, iconColorDisabled, suffixTextColor, countTextColor, countTextColorDisabled, iconColorHover, iconColorPressed, loadingColor, loadingColorSuccess, loadingColorError, loadingColorWarning, selectionColor, [(0, _utils_1.createKey)('padding', size)]: padding, [(0, _utils_1.createKey)('fontSize', size)]: fontSize, [(0, _utils_1.createKey)('height', size)]: height } } = themeRef.value;
|
|
790
790
|
const { left: paddingLeft, right: paddingRight } = (0, seemly_1.getPadding)(padding);
|
|
791
791
|
return {
|
|
792
792
|
'--u-bezier': cubicBezierEaseInOut,
|
|
@@ -817,6 +817,14 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
817
817
|
'--u-text-color-disabled': textColorDisabled,
|
|
818
818
|
'--u-box-shadow-focus': boxShadowFocus,
|
|
819
819
|
'--u-loading-color': loadingColor,
|
|
820
|
+
// form success
|
|
821
|
+
'--u-caret-color-success': caretColorSuccess,
|
|
822
|
+
'--u-color-focus-success': colorFocusSuccess,
|
|
823
|
+
'--u-box-shadow-focus-success': boxShadowFocusSuccess,
|
|
824
|
+
'--u-border-success': borderSuccess,
|
|
825
|
+
'--u-border-focus-success': borderFocusSuccess,
|
|
826
|
+
'--u-border-hover-success': borderHoverSuccess,
|
|
827
|
+
'--u-loading-color-success': loadingColorSuccess,
|
|
820
828
|
// form warning
|
|
821
829
|
'--u-caret-color-warning': caretColorWarning,
|
|
822
830
|
'--u-color-focus-warning': colorFocusWarning,
|
|
@@ -47,6 +47,13 @@ export declare const inputGroupLabelProps: {
|
|
|
47
47
|
borderFocus: string;
|
|
48
48
|
boxShadowFocus: string;
|
|
49
49
|
loadingColor: string;
|
|
50
|
+
loadingColorSuccess: string;
|
|
51
|
+
borderSuccess: string;
|
|
52
|
+
borderHoverSuccess: string;
|
|
53
|
+
colorFocusSuccess: string;
|
|
54
|
+
borderFocusSuccess: string;
|
|
55
|
+
boxShadowFocusSuccess: string;
|
|
56
|
+
caretColorSuccess: string;
|
|
50
57
|
loadingColorWarning: string;
|
|
51
58
|
borderWarning: string;
|
|
52
59
|
borderHoverWarning: string;
|
|
@@ -111,6 +118,13 @@ export declare const inputGroupLabelProps: {
|
|
|
111
118
|
borderFocus: string;
|
|
112
119
|
boxShadowFocus: string;
|
|
113
120
|
loadingColor: string;
|
|
121
|
+
loadingColorSuccess: string;
|
|
122
|
+
borderSuccess: string;
|
|
123
|
+
borderHoverSuccess: string;
|
|
124
|
+
colorFocusSuccess: string;
|
|
125
|
+
borderFocusSuccess: string;
|
|
126
|
+
boxShadowFocusSuccess: string;
|
|
127
|
+
caretColorSuccess: string;
|
|
114
128
|
loadingColorWarning: string;
|
|
115
129
|
borderWarning: string;
|
|
116
130
|
borderHoverWarning: string;
|
|
@@ -175,6 +189,13 @@ export declare const inputGroupLabelProps: {
|
|
|
175
189
|
borderFocus: string;
|
|
176
190
|
boxShadowFocus: string;
|
|
177
191
|
loadingColor: string;
|
|
192
|
+
loadingColorSuccess: string;
|
|
193
|
+
borderSuccess: string;
|
|
194
|
+
borderHoverSuccess: string;
|
|
195
|
+
colorFocusSuccess: string;
|
|
196
|
+
borderFocusSuccess: string;
|
|
197
|
+
boxShadowFocusSuccess: string;
|
|
198
|
+
caretColorSuccess: string;
|
|
178
199
|
loadingColorWarning: string;
|
|
179
200
|
borderWarning: string;
|
|
180
201
|
borderHoverWarning: string;
|
|
@@ -247,6 +268,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
247
268
|
borderFocus: string;
|
|
248
269
|
boxShadowFocus: string;
|
|
249
270
|
loadingColor: string;
|
|
271
|
+
loadingColorSuccess: string;
|
|
272
|
+
borderSuccess: string;
|
|
273
|
+
borderHoverSuccess: string;
|
|
274
|
+
colorFocusSuccess: string;
|
|
275
|
+
borderFocusSuccess: string;
|
|
276
|
+
boxShadowFocusSuccess: string;
|
|
277
|
+
caretColorSuccess: string;
|
|
250
278
|
loadingColorWarning: string;
|
|
251
279
|
borderWarning: string;
|
|
252
280
|
borderHoverWarning: string;
|
|
@@ -311,6 +339,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
311
339
|
borderFocus: string;
|
|
312
340
|
boxShadowFocus: string;
|
|
313
341
|
loadingColor: string;
|
|
342
|
+
loadingColorSuccess: string;
|
|
343
|
+
borderSuccess: string;
|
|
344
|
+
borderHoverSuccess: string;
|
|
345
|
+
colorFocusSuccess: string;
|
|
346
|
+
borderFocusSuccess: string;
|
|
347
|
+
boxShadowFocusSuccess: string;
|
|
348
|
+
caretColorSuccess: string;
|
|
314
349
|
loadingColorWarning: string;
|
|
315
350
|
borderWarning: string;
|
|
316
351
|
borderHoverWarning: string;
|
|
@@ -375,6 +410,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
375
410
|
borderFocus: string;
|
|
376
411
|
boxShadowFocus: string;
|
|
377
412
|
loadingColor: string;
|
|
413
|
+
loadingColorSuccess: string;
|
|
414
|
+
borderSuccess: string;
|
|
415
|
+
borderHoverSuccess: string;
|
|
416
|
+
colorFocusSuccess: string;
|
|
417
|
+
borderFocusSuccess: string;
|
|
418
|
+
boxShadowFocusSuccess: string;
|
|
419
|
+
caretColorSuccess: string;
|
|
378
420
|
loadingColorWarning: string;
|
|
379
421
|
borderWarning: string;
|
|
380
422
|
borderHoverWarning: string;
|
|
@@ -461,6 +503,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
461
503
|
borderFocus: string;
|
|
462
504
|
boxShadowFocus: string;
|
|
463
505
|
loadingColor: string;
|
|
506
|
+
loadingColorSuccess: string;
|
|
507
|
+
borderSuccess: string;
|
|
508
|
+
borderHoverSuccess: string;
|
|
509
|
+
colorFocusSuccess: string;
|
|
510
|
+
borderFocusSuccess: string;
|
|
511
|
+
boxShadowFocusSuccess: string;
|
|
512
|
+
caretColorSuccess: string;
|
|
464
513
|
loadingColorWarning: string;
|
|
465
514
|
borderWarning: string;
|
|
466
515
|
borderHoverWarning: string;
|
|
@@ -525,6 +574,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
525
574
|
borderFocus: string;
|
|
526
575
|
boxShadowFocus: string;
|
|
527
576
|
loadingColor: string;
|
|
577
|
+
loadingColorSuccess: string;
|
|
578
|
+
borderSuccess: string;
|
|
579
|
+
borderHoverSuccess: string;
|
|
580
|
+
colorFocusSuccess: string;
|
|
581
|
+
borderFocusSuccess: string;
|
|
582
|
+
boxShadowFocusSuccess: string;
|
|
583
|
+
caretColorSuccess: string;
|
|
528
584
|
loadingColorWarning: string;
|
|
529
585
|
borderWarning: string;
|
|
530
586
|
borderHoverWarning: string;
|
|
@@ -589,6 +645,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
589
645
|
borderFocus: string;
|
|
590
646
|
boxShadowFocus: string;
|
|
591
647
|
loadingColor: string;
|
|
648
|
+
loadingColorSuccess: string;
|
|
649
|
+
borderSuccess: string;
|
|
650
|
+
borderHoverSuccess: string;
|
|
651
|
+
colorFocusSuccess: string;
|
|
652
|
+
borderFocusSuccess: string;
|
|
653
|
+
boxShadowFocusSuccess: string;
|
|
654
|
+
caretColorSuccess: string;
|
|
592
655
|
loadingColorWarning: string;
|
|
593
656
|
borderWarning: string;
|
|
594
657
|
borderHoverWarning: string;
|
|
@@ -276,7 +276,7 @@ exports.default = (0, cssr_1.cB)('input', `
|
|
|
276
276
|
transition: color .3s var(--u-bezier);
|
|
277
277
|
margin-left: 4px;
|
|
278
278
|
font-variant: tabular-nums;
|
|
279
|
-
`), ['warning', 'error'].map(status => (0, cssr_1.cM)(`${status}-status`, [(0, cssr_1.cNotM)('disabled', [(0, cssr_1.cB)('base-loading', `
|
|
279
|
+
`), ['warning', 'error', 'success'].map(status => (0, cssr_1.cM)(`${status}-status`, [(0, cssr_1.cNotM)('disabled', [(0, cssr_1.cB)('base-loading', `
|
|
280
280
|
color: var(--u-loading-color-${status})
|
|
281
281
|
`), (0, cssr_1.cE)('input-el, textarea-el', `
|
|
282
282
|
caret-color: var(--u-caret-color-${status});
|
|
@@ -40,6 +40,13 @@ export declare function self(vars: ThemeCommonVars): {
|
|
|
40
40
|
borderFocus: string;
|
|
41
41
|
boxShadowFocus: string;
|
|
42
42
|
loadingColor: string;
|
|
43
|
+
loadingColorSuccess: string;
|
|
44
|
+
borderSuccess: string;
|
|
45
|
+
borderHoverSuccess: string;
|
|
46
|
+
colorFocusSuccess: string;
|
|
47
|
+
borderFocusSuccess: string;
|
|
48
|
+
boxShadowFocusSuccess: string;
|
|
49
|
+
caretColorSuccess: string;
|
|
43
50
|
loadingColorWarning: string;
|
|
44
51
|
borderWarning: string;
|
|
45
52
|
borderHoverWarning: string;
|
|
@@ -4,7 +4,7 @@ exports.self = self;
|
|
|
4
4
|
const seemly_1 = require("seemly");
|
|
5
5
|
const common_1 = require("../../_styles/common");
|
|
6
6
|
function self(vars) {
|
|
7
|
-
const { iconMedium, textSecondary, elementsTertiary, textPrimary, fontBodyMedium, fontBodyLarge, lineHeightBodyLarge, borderRadius, containerPrimary, elementsQuaternary, elementsPrimary, staticOrange, staticRed, elementsQuinary, brandPrimary500, heightTiny, heightSmall, heightMedium, heightLarge, heightHuge, fontTitleMedium } = vars;
|
|
7
|
+
const { iconMedium, textSecondary, elementsTertiary, textPrimary, fontBodyMedium, fontBodyLarge, lineHeightBodyLarge, borderRadius, containerPrimary, elementsQuaternary, elementsPrimary, staticGreen, staticOrange, staticRed, elementsQuinary, brandPrimary500, heightTiny, heightSmall, heightMedium, heightLarge, heightHuge, fontTitleMedium } = vars;
|
|
8
8
|
return {
|
|
9
9
|
paddingTiny: '0 12px',
|
|
10
10
|
paddingSmall: '0 12px',
|
|
@@ -45,6 +45,16 @@ function self(vars) {
|
|
|
45
45
|
borderFocus: `2px solid ${elementsPrimary}`,
|
|
46
46
|
boxShadowFocus: `0 0 0 4px ${(0, seemly_1.changeColor)(elementsPrimary, { alpha: 0.1 })}`,
|
|
47
47
|
loadingColor: elementsPrimary,
|
|
48
|
+
// success
|
|
49
|
+
loadingColorSuccess: staticGreen,
|
|
50
|
+
borderSuccess: `2px solid ${staticGreen}`,
|
|
51
|
+
borderHoverSuccess: `2px solid ${staticGreen}`,
|
|
52
|
+
colorFocusSuccess: containerPrimary,
|
|
53
|
+
borderFocusSuccess: `2px solid ${staticGreen}`,
|
|
54
|
+
boxShadowFocusSuccess: `0 0 0 4px ${(0, seemly_1.changeColor)(staticGreen, {
|
|
55
|
+
alpha: 0.1
|
|
56
|
+
})}`,
|
|
57
|
+
caretColorSuccess: elementsPrimary,
|
|
48
58
|
// warning
|
|
49
59
|
loadingColorWarning: staticOrange,
|
|
50
60
|
borderWarning: `2px solid ${staticOrange}`,
|
|
@@ -324,6 +324,13 @@ export declare const inputNumberProps: {
|
|
|
324
324
|
borderFocus: string;
|
|
325
325
|
boxShadowFocus: string;
|
|
326
326
|
loadingColor: string;
|
|
327
|
+
loadingColorSuccess: string;
|
|
328
|
+
borderSuccess: string;
|
|
329
|
+
borderHoverSuccess: string;
|
|
330
|
+
colorFocusSuccess: string;
|
|
331
|
+
borderFocusSuccess: string;
|
|
332
|
+
boxShadowFocusSuccess: string;
|
|
333
|
+
caretColorSuccess: string;
|
|
327
334
|
loadingColorWarning: string;
|
|
328
335
|
borderWarning: string;
|
|
329
336
|
borderHoverWarning: string;
|
|
@@ -611,6 +618,13 @@ export declare const inputNumberProps: {
|
|
|
611
618
|
borderFocus: string;
|
|
612
619
|
boxShadowFocus: string;
|
|
613
620
|
loadingColor: string;
|
|
621
|
+
loadingColorSuccess: string;
|
|
622
|
+
borderSuccess: string;
|
|
623
|
+
borderHoverSuccess: string;
|
|
624
|
+
colorFocusSuccess: string;
|
|
625
|
+
borderFocusSuccess: string;
|
|
626
|
+
boxShadowFocusSuccess: string;
|
|
627
|
+
caretColorSuccess: string;
|
|
614
628
|
loadingColorWarning: string;
|
|
615
629
|
borderWarning: string;
|
|
616
630
|
borderHoverWarning: string;
|
|
@@ -898,6 +912,13 @@ export declare const inputNumberProps: {
|
|
|
898
912
|
borderFocus: string;
|
|
899
913
|
boxShadowFocus: string;
|
|
900
914
|
loadingColor: string;
|
|
915
|
+
loadingColorSuccess: string;
|
|
916
|
+
borderSuccess: string;
|
|
917
|
+
borderHoverSuccess: string;
|
|
918
|
+
colorFocusSuccess: string;
|
|
919
|
+
borderFocusSuccess: string;
|
|
920
|
+
boxShadowFocusSuccess: string;
|
|
921
|
+
caretColorSuccess: string;
|
|
901
922
|
loadingColorWarning: string;
|
|
902
923
|
borderWarning: string;
|
|
903
924
|
borderHoverWarning: string;
|
|
@@ -1252,6 +1273,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1252
1273
|
borderFocus: string;
|
|
1253
1274
|
boxShadowFocus: string;
|
|
1254
1275
|
loadingColor: string;
|
|
1276
|
+
loadingColorSuccess: string;
|
|
1277
|
+
borderSuccess: string;
|
|
1278
|
+
borderHoverSuccess: string;
|
|
1279
|
+
colorFocusSuccess: string;
|
|
1280
|
+
borderFocusSuccess: string;
|
|
1281
|
+
boxShadowFocusSuccess: string;
|
|
1282
|
+
caretColorSuccess: string;
|
|
1255
1283
|
loadingColorWarning: string;
|
|
1256
1284
|
borderWarning: string;
|
|
1257
1285
|
borderHoverWarning: string;
|
|
@@ -1539,6 +1567,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1539
1567
|
borderFocus: string;
|
|
1540
1568
|
boxShadowFocus: string;
|
|
1541
1569
|
loadingColor: string;
|
|
1570
|
+
loadingColorSuccess: string;
|
|
1571
|
+
borderSuccess: string;
|
|
1572
|
+
borderHoverSuccess: string;
|
|
1573
|
+
colorFocusSuccess: string;
|
|
1574
|
+
borderFocusSuccess: string;
|
|
1575
|
+
boxShadowFocusSuccess: string;
|
|
1576
|
+
caretColorSuccess: string;
|
|
1542
1577
|
loadingColorWarning: string;
|
|
1543
1578
|
borderWarning: string;
|
|
1544
1579
|
borderHoverWarning: string;
|
|
@@ -1826,6 +1861,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1826
1861
|
borderFocus: string;
|
|
1827
1862
|
boxShadowFocus: string;
|
|
1828
1863
|
loadingColor: string;
|
|
1864
|
+
loadingColorSuccess: string;
|
|
1865
|
+
borderSuccess: string;
|
|
1866
|
+
borderHoverSuccess: string;
|
|
1867
|
+
colorFocusSuccess: string;
|
|
1868
|
+
borderFocusSuccess: string;
|
|
1869
|
+
boxShadowFocusSuccess: string;
|
|
1870
|
+
caretColorSuccess: string;
|
|
1829
1871
|
loadingColorWarning: string;
|
|
1830
1872
|
borderWarning: string;
|
|
1831
1873
|
borderHoverWarning: string;
|
|
@@ -2191,6 +2233,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2191
2233
|
borderFocus: string;
|
|
2192
2234
|
boxShadowFocus: string;
|
|
2193
2235
|
loadingColor: string;
|
|
2236
|
+
loadingColorSuccess: string;
|
|
2237
|
+
borderSuccess: string;
|
|
2238
|
+
borderHoverSuccess: string;
|
|
2239
|
+
colorFocusSuccess: string;
|
|
2240
|
+
borderFocusSuccess: string;
|
|
2241
|
+
boxShadowFocusSuccess: string;
|
|
2242
|
+
caretColorSuccess: string;
|
|
2194
2243
|
loadingColorWarning: string;
|
|
2195
2244
|
borderWarning: string;
|
|
2196
2245
|
borderHoverWarning: string;
|
|
@@ -2558,6 +2607,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2558
2607
|
borderFocus: string;
|
|
2559
2608
|
boxShadowFocus: string;
|
|
2560
2609
|
loadingColor: string;
|
|
2610
|
+
loadingColorSuccess: string;
|
|
2611
|
+
borderSuccess: string;
|
|
2612
|
+
borderHoverSuccess: string;
|
|
2613
|
+
colorFocusSuccess: string;
|
|
2614
|
+
borderFocusSuccess: string;
|
|
2615
|
+
boxShadowFocusSuccess: string;
|
|
2616
|
+
caretColorSuccess: string;
|
|
2561
2617
|
loadingColorWarning: string;
|
|
2562
2618
|
borderWarning: string;
|
|
2563
2619
|
borderHoverWarning: string;
|
|
@@ -2845,6 +2901,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2845
2901
|
borderFocus: string;
|
|
2846
2902
|
boxShadowFocus: string;
|
|
2847
2903
|
loadingColor: string;
|
|
2904
|
+
loadingColorSuccess: string;
|
|
2905
|
+
borderSuccess: string;
|
|
2906
|
+
borderHoverSuccess: string;
|
|
2907
|
+
colorFocusSuccess: string;
|
|
2908
|
+
borderFocusSuccess: string;
|
|
2909
|
+
boxShadowFocusSuccess: string;
|
|
2910
|
+
caretColorSuccess: string;
|
|
2848
2911
|
loadingColorWarning: string;
|
|
2849
2912
|
borderWarning: string;
|
|
2850
2913
|
borderHoverWarning: string;
|
|
@@ -3132,6 +3195,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3132
3195
|
borderFocus: string;
|
|
3133
3196
|
boxShadowFocus: string;
|
|
3134
3197
|
loadingColor: string;
|
|
3198
|
+
loadingColorSuccess: string;
|
|
3199
|
+
borderSuccess: string;
|
|
3200
|
+
borderHoverSuccess: string;
|
|
3201
|
+
colorFocusSuccess: string;
|
|
3202
|
+
borderFocusSuccess: string;
|
|
3203
|
+
boxShadowFocusSuccess: string;
|
|
3204
|
+
caretColorSuccess: string;
|
|
3135
3205
|
loadingColorWarning: string;
|
|
3136
3206
|
borderWarning: string;
|
|
3137
3207
|
borderHoverWarning: string;
|
|
@@ -265,6 +265,13 @@ declare const inputNumberLight: import("../../_mixins").Theme<"InputNumber", {
|
|
|
265
265
|
borderFocus: string;
|
|
266
266
|
boxShadowFocus: string;
|
|
267
267
|
loadingColor: string;
|
|
268
|
+
loadingColorSuccess: string;
|
|
269
|
+
borderSuccess: string;
|
|
270
|
+
borderHoverSuccess: string;
|
|
271
|
+
colorFocusSuccess: string;
|
|
272
|
+
borderFocusSuccess: string;
|
|
273
|
+
boxShadowFocusSuccess: string;
|
|
274
|
+
caretColorSuccess: string;
|
|
268
275
|
loadingColorWarning: string;
|
|
269
276
|
borderWarning: string;
|
|
270
277
|
borderHoverWarning: string;
|
|
@@ -77,6 +77,13 @@ export declare const inputOtpProps: {
|
|
|
77
77
|
borderFocus: string;
|
|
78
78
|
boxShadowFocus: string;
|
|
79
79
|
loadingColor: string;
|
|
80
|
+
loadingColorSuccess: string;
|
|
81
|
+
borderSuccess: string;
|
|
82
|
+
borderHoverSuccess: string;
|
|
83
|
+
colorFocusSuccess: string;
|
|
84
|
+
borderFocusSuccess: string;
|
|
85
|
+
boxShadowFocusSuccess: string;
|
|
86
|
+
caretColorSuccess: string;
|
|
80
87
|
loadingColorWarning: string;
|
|
81
88
|
borderWarning: string;
|
|
82
89
|
borderHoverWarning: string;
|
|
@@ -150,6 +157,13 @@ export declare const inputOtpProps: {
|
|
|
150
157
|
borderFocus: string;
|
|
151
158
|
boxShadowFocus: string;
|
|
152
159
|
loadingColor: string;
|
|
160
|
+
loadingColorSuccess: string;
|
|
161
|
+
borderSuccess: string;
|
|
162
|
+
borderHoverSuccess: string;
|
|
163
|
+
colorFocusSuccess: string;
|
|
164
|
+
borderFocusSuccess: string;
|
|
165
|
+
boxShadowFocusSuccess: string;
|
|
166
|
+
caretColorSuccess: string;
|
|
153
167
|
loadingColorWarning: string;
|
|
154
168
|
borderWarning: string;
|
|
155
169
|
borderHoverWarning: string;
|
|
@@ -223,6 +237,13 @@ export declare const inputOtpProps: {
|
|
|
223
237
|
borderFocus: string;
|
|
224
238
|
boxShadowFocus: string;
|
|
225
239
|
loadingColor: string;
|
|
240
|
+
loadingColorSuccess: string;
|
|
241
|
+
borderSuccess: string;
|
|
242
|
+
borderHoverSuccess: string;
|
|
243
|
+
colorFocusSuccess: string;
|
|
244
|
+
borderFocusSuccess: string;
|
|
245
|
+
boxShadowFocusSuccess: string;
|
|
246
|
+
caretColorSuccess: string;
|
|
226
247
|
loadingColorWarning: string;
|
|
227
248
|
borderWarning: string;
|
|
228
249
|
borderHoverWarning: string;
|
|
@@ -325,6 +346,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
325
346
|
borderFocus: string;
|
|
326
347
|
boxShadowFocus: string;
|
|
327
348
|
loadingColor: string;
|
|
349
|
+
loadingColorSuccess: string;
|
|
350
|
+
borderSuccess: string;
|
|
351
|
+
borderHoverSuccess: string;
|
|
352
|
+
colorFocusSuccess: string;
|
|
353
|
+
borderFocusSuccess: string;
|
|
354
|
+
boxShadowFocusSuccess: string;
|
|
355
|
+
caretColorSuccess: string;
|
|
328
356
|
loadingColorWarning: string;
|
|
329
357
|
borderWarning: string;
|
|
330
358
|
borderHoverWarning: string;
|
|
@@ -398,6 +426,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
398
426
|
borderFocus: string;
|
|
399
427
|
boxShadowFocus: string;
|
|
400
428
|
loadingColor: string;
|
|
429
|
+
loadingColorSuccess: string;
|
|
430
|
+
borderSuccess: string;
|
|
431
|
+
borderHoverSuccess: string;
|
|
432
|
+
colorFocusSuccess: string;
|
|
433
|
+
borderFocusSuccess: string;
|
|
434
|
+
boxShadowFocusSuccess: string;
|
|
435
|
+
caretColorSuccess: string;
|
|
401
436
|
loadingColorWarning: string;
|
|
402
437
|
borderWarning: string;
|
|
403
438
|
borderHoverWarning: string;
|
|
@@ -471,6 +506,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
471
506
|
borderFocus: string;
|
|
472
507
|
boxShadowFocus: string;
|
|
473
508
|
loadingColor: string;
|
|
509
|
+
loadingColorSuccess: string;
|
|
510
|
+
borderSuccess: string;
|
|
511
|
+
borderHoverSuccess: string;
|
|
512
|
+
colorFocusSuccess: string;
|
|
513
|
+
borderFocusSuccess: string;
|
|
514
|
+
boxShadowFocusSuccess: string;
|
|
515
|
+
caretColorSuccess: string;
|
|
474
516
|
loadingColorWarning: string;
|
|
475
517
|
borderWarning: string;
|
|
476
518
|
borderHoverWarning: string;
|
|
@@ -549,6 +591,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
549
591
|
borderFocus: string;
|
|
550
592
|
boxShadowFocus: string;
|
|
551
593
|
loadingColor: string;
|
|
594
|
+
loadingColorSuccess: string;
|
|
595
|
+
borderSuccess: string;
|
|
596
|
+
borderHoverSuccess: string;
|
|
597
|
+
colorFocusSuccess: string;
|
|
598
|
+
borderFocusSuccess: string;
|
|
599
|
+
boxShadowFocusSuccess: string;
|
|
600
|
+
caretColorSuccess: string;
|
|
552
601
|
loadingColorWarning: string;
|
|
553
602
|
borderWarning: string;
|
|
554
603
|
borderHoverWarning: string;
|
|
@@ -713,6 +762,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
713
762
|
borderFocus: string;
|
|
714
763
|
boxShadowFocus: string;
|
|
715
764
|
loadingColor: string;
|
|
765
|
+
loadingColorSuccess: string;
|
|
766
|
+
borderSuccess: string;
|
|
767
|
+
borderHoverSuccess: string;
|
|
768
|
+
colorFocusSuccess: string;
|
|
769
|
+
borderFocusSuccess: string;
|
|
770
|
+
boxShadowFocusSuccess: string;
|
|
771
|
+
caretColorSuccess: string;
|
|
716
772
|
loadingColorWarning: string;
|
|
717
773
|
borderWarning: string;
|
|
718
774
|
borderHoverWarning: string;
|
|
@@ -786,6 +842,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
786
842
|
borderFocus: string;
|
|
787
843
|
boxShadowFocus: string;
|
|
788
844
|
loadingColor: string;
|
|
845
|
+
loadingColorSuccess: string;
|
|
846
|
+
borderSuccess: string;
|
|
847
|
+
borderHoverSuccess: string;
|
|
848
|
+
colorFocusSuccess: string;
|
|
849
|
+
borderFocusSuccess: string;
|
|
850
|
+
boxShadowFocusSuccess: string;
|
|
851
|
+
caretColorSuccess: string;
|
|
789
852
|
loadingColorWarning: string;
|
|
790
853
|
borderWarning: string;
|
|
791
854
|
borderHoverWarning: string;
|
|
@@ -859,6 +922,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
859
922
|
borderFocus: string;
|
|
860
923
|
boxShadowFocus: string;
|
|
861
924
|
loadingColor: string;
|
|
925
|
+
loadingColorSuccess: string;
|
|
926
|
+
borderSuccess: string;
|
|
927
|
+
borderHoverSuccess: string;
|
|
928
|
+
colorFocusSuccess: string;
|
|
929
|
+
borderFocusSuccess: string;
|
|
930
|
+
boxShadowFocusSuccess: string;
|
|
931
|
+
caretColorSuccess: string;
|
|
862
932
|
loadingColorWarning: string;
|
|
863
933
|
borderWarning: string;
|
|
864
934
|
borderHoverWarning: string;
|
|
@@ -54,6 +54,13 @@ declare const inputOtpLight: import("../../_mixins").Theme<"InputOtp", {
|
|
|
54
54
|
borderFocus: string;
|
|
55
55
|
boxShadowFocus: string;
|
|
56
56
|
loadingColor: string;
|
|
57
|
+
loadingColorSuccess: string;
|
|
58
|
+
borderSuccess: string;
|
|
59
|
+
borderHoverSuccess: string;
|
|
60
|
+
colorFocusSuccess: string;
|
|
61
|
+
borderFocusSuccess: string;
|
|
62
|
+
boxShadowFocusSuccess: string;
|
|
63
|
+
caretColorSuccess: string;
|
|
57
64
|
loadingColorWarning: string;
|
|
58
65
|
borderWarning: string;
|
|
59
66
|
borderHoverWarning: string;
|