@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
package/es/modal/src/Modal.d.ts
CHANGED
|
@@ -23,7 +23,6 @@ export declare const modalProps: {
|
|
|
23
23
|
onBeforeHide: PropType<() => void>;
|
|
24
24
|
onAfterHide: PropType<() => void>;
|
|
25
25
|
onHide: PropType<(value: false) => void>;
|
|
26
|
-
presetDisabled: BooleanConstructor;
|
|
27
26
|
size: {
|
|
28
27
|
type: PropType<"small" | "medium" | "large">;
|
|
29
28
|
default: string;
|
|
@@ -61,7 +60,10 @@ export declare const modalProps: {
|
|
|
61
60
|
type: BooleanConstructor;
|
|
62
61
|
default: boolean;
|
|
63
62
|
};
|
|
64
|
-
preset:
|
|
63
|
+
preset: {
|
|
64
|
+
type: PropType<"confirm" | "dialog" | "card">;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
65
67
|
to: PropType<string | HTMLElement>;
|
|
66
68
|
displayDirective: {
|
|
67
69
|
type: PropType<"if" | "show">;
|
|
@@ -1067,7 +1069,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1067
1069
|
onBeforeHide: PropType<() => void>;
|
|
1068
1070
|
onAfterHide: PropType<() => void>;
|
|
1069
1071
|
onHide: PropType<(value: false) => void>;
|
|
1070
|
-
presetDisabled: BooleanConstructor;
|
|
1071
1072
|
size: {
|
|
1072
1073
|
type: PropType<"small" | "medium" | "large">;
|
|
1073
1074
|
default: string;
|
|
@@ -1105,7 +1106,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1105
1106
|
type: BooleanConstructor;
|
|
1106
1107
|
default: boolean;
|
|
1107
1108
|
};
|
|
1108
|
-
preset:
|
|
1109
|
+
preset: {
|
|
1110
|
+
type: PropType<"confirm" | "dialog" | "card">;
|
|
1111
|
+
default: string;
|
|
1112
|
+
};
|
|
1109
1113
|
to: PropType<string | HTMLElement>;
|
|
1110
1114
|
displayDirective: {
|
|
1111
1115
|
type: PropType<"if" | "show">;
|
|
@@ -2127,7 +2131,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2127
2131
|
onBeforeHide: PropType<() => void>;
|
|
2128
2132
|
onAfterHide: PropType<() => void>;
|
|
2129
2133
|
onHide: PropType<(value: false) => void>;
|
|
2130
|
-
presetDisabled: BooleanConstructor;
|
|
2131
2134
|
size: {
|
|
2132
2135
|
type: PropType<"small" | "medium" | "large">;
|
|
2133
2136
|
default: string;
|
|
@@ -2165,7 +2168,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2165
2168
|
type: BooleanConstructor;
|
|
2166
2169
|
default: boolean;
|
|
2167
2170
|
};
|
|
2168
|
-
preset:
|
|
2171
|
+
preset: {
|
|
2172
|
+
type: PropType<"confirm" | "dialog" | "card">;
|
|
2173
|
+
default: string;
|
|
2174
|
+
};
|
|
2169
2175
|
to: PropType<string | HTMLElement>;
|
|
2170
2176
|
displayDirective: {
|
|
2171
2177
|
type: PropType<"if" | "show">;
|
|
@@ -3158,9 +3164,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3158
3164
|
autoFocus: boolean;
|
|
3159
3165
|
closeOnEsc: boolean;
|
|
3160
3166
|
blockScroll: boolean;
|
|
3167
|
+
preset: "card" | "dialog" | "confirm";
|
|
3161
3168
|
internalDialog: boolean;
|
|
3162
3169
|
internalAppear: boolean | undefined;
|
|
3163
|
-
presetDisabled: boolean;
|
|
3164
3170
|
unstableShowMask: boolean;
|
|
3165
3171
|
transformOrigin: "mouse" | "center";
|
|
3166
3172
|
}, SlotsType<ModalSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
package/es/modal/src/Modal.mjs
CHANGED
|
@@ -21,7 +21,10 @@ export const modalProps = Object.assign(Object.assign(Object.assign(Object.assig
|
|
|
21
21
|
type: Boolean,
|
|
22
22
|
default: true
|
|
23
23
|
},
|
|
24
|
-
preset:
|
|
24
|
+
preset: {
|
|
25
|
+
type: String,
|
|
26
|
+
default: 'dialog'
|
|
27
|
+
},
|
|
25
28
|
to: [String, Object],
|
|
26
29
|
displayDirective: {
|
|
27
30
|
type: String,
|
|
@@ -300,7 +303,7 @@ export default defineComponent({
|
|
|
300
303
|
ref: "bodyWrapper",
|
|
301
304
|
displayDirective: this.displayDirective,
|
|
302
305
|
show: this.show,
|
|
303
|
-
preset: this.preset,
|
|
306
|
+
preset: this.internalDialog ? undefined : this.preset,
|
|
304
307
|
autoFocus: this.autoFocus,
|
|
305
308
|
trapFocus: this.trapFocus,
|
|
306
309
|
draggable: this.draggable,
|
|
@@ -27,7 +27,6 @@ export declare const UModalEnvironment: import("vue").DefineComponent<import("vu
|
|
|
27
27
|
onBeforeHide: PropType<() => void>;
|
|
28
28
|
onAfterHide: PropType<() => void>;
|
|
29
29
|
onHide: PropType<(value: false) => void>;
|
|
30
|
-
presetDisabled: BooleanConstructor;
|
|
31
30
|
size: {
|
|
32
31
|
type: PropType<"small" | "medium" | "large">;
|
|
33
32
|
default: string;
|
|
@@ -65,7 +64,10 @@ export declare const UModalEnvironment: import("vue").DefineComponent<import("vu
|
|
|
65
64
|
type: BooleanConstructor;
|
|
66
65
|
default: boolean;
|
|
67
66
|
};
|
|
68
|
-
preset:
|
|
67
|
+
preset: {
|
|
68
|
+
type: PropType<"confirm" | "dialog" | "card">;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
69
71
|
to: PropType<string | HTMLElement>;
|
|
70
72
|
displayDirective: {
|
|
71
73
|
type: PropType<"if" | "show">;
|
|
@@ -1082,7 +1084,6 @@ export declare const UModalEnvironment: import("vue").DefineComponent<import("vu
|
|
|
1082
1084
|
onBeforeHide: PropType<() => void>;
|
|
1083
1085
|
onAfterHide: PropType<() => void>;
|
|
1084
1086
|
onHide: PropType<(value: false) => void>;
|
|
1085
|
-
presetDisabled: BooleanConstructor;
|
|
1086
1087
|
size: {
|
|
1087
1088
|
type: PropType<"small" | "medium" | "large">;
|
|
1088
1089
|
default: string;
|
|
@@ -1120,7 +1121,10 @@ export declare const UModalEnvironment: import("vue").DefineComponent<import("vu
|
|
|
1120
1121
|
type: BooleanConstructor;
|
|
1121
1122
|
default: boolean;
|
|
1122
1123
|
};
|
|
1123
|
-
preset:
|
|
1124
|
+
preset: {
|
|
1125
|
+
type: PropType<"confirm" | "dialog" | "card">;
|
|
1126
|
+
default: string;
|
|
1127
|
+
};
|
|
1124
1128
|
to: PropType<string | HTMLElement>;
|
|
1125
1129
|
displayDirective: {
|
|
1126
1130
|
type: PropType<"if" | "show">;
|
|
@@ -2113,9 +2117,9 @@ export declare const UModalEnvironment: import("vue").DefineComponent<import("vu
|
|
|
2113
2117
|
autoFocus: boolean;
|
|
2114
2118
|
closeOnEsc: boolean;
|
|
2115
2119
|
blockScroll: boolean;
|
|
2120
|
+
preset: "card" | "dialog" | "confirm";
|
|
2116
2121
|
internalDialog: boolean;
|
|
2117
2122
|
internalAppear: boolean | undefined;
|
|
2118
|
-
presetDisabled: boolean;
|
|
2119
2123
|
unstableShowMask: boolean;
|
|
2120
2124
|
transformOrigin: "mouse" | "center";
|
|
2121
2125
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
declare const presetProps: {
|
|
3
|
-
presetDisabled: BooleanConstructor;
|
|
4
3
|
size: {
|
|
5
4
|
type: PropType<"small" | "medium" | "large">;
|
|
6
5
|
default: string;
|
|
@@ -33,5 +32,5 @@ declare const presetProps: {
|
|
|
33
32
|
onNegativeClick: PropType<(e: MouseEvent) => void>;
|
|
34
33
|
onClose: PropType<() => void>;
|
|
35
34
|
};
|
|
36
|
-
declare const presetPropsKeys: ("bordered" | "icon" | "type" | "content" | "body" | "title" | "size" | "positiveText" | "negativeText" | "loading" | "showIcon" | "closable" | "onClose" | "iconPlacement" | "positiveButtonProps" | "negativeButtonProps" | "action" | "onPositiveClick" | "onNegativeClick"
|
|
35
|
+
declare const presetPropsKeys: ("bordered" | "icon" | "type" | "content" | "body" | "title" | "size" | "positiveText" | "negativeText" | "loading" | "showIcon" | "closable" | "onClose" | "iconPlacement" | "positiveButtonProps" | "negativeButtonProps" | "action" | "onPositiveClick" | "onNegativeClick")[];
|
|
37
36
|
export { presetProps, presetPropsKeys };
|
|
@@ -365,6 +365,13 @@ export declare const paginationProps: {
|
|
|
365
365
|
borderFocus: string;
|
|
366
366
|
boxShadowFocus: string;
|
|
367
367
|
loadingColor: string;
|
|
368
|
+
loadingColorSuccess: string;
|
|
369
|
+
borderSuccess: string;
|
|
370
|
+
borderHoverSuccess: string;
|
|
371
|
+
colorFocusSuccess: string;
|
|
372
|
+
borderFocusSuccess: string;
|
|
373
|
+
boxShadowFocusSuccess: string;
|
|
374
|
+
caretColorSuccess: string;
|
|
368
375
|
loadingColorWarning: string;
|
|
369
376
|
borderWarning: string;
|
|
370
377
|
borderHoverWarning: string;
|
|
@@ -779,6 +786,13 @@ export declare const paginationProps: {
|
|
|
779
786
|
borderFocus: string;
|
|
780
787
|
boxShadowFocus: string;
|
|
781
788
|
loadingColor: string;
|
|
789
|
+
loadingColorSuccess: string;
|
|
790
|
+
borderSuccess: string;
|
|
791
|
+
borderHoverSuccess: string;
|
|
792
|
+
colorFocusSuccess: string;
|
|
793
|
+
borderFocusSuccess: string;
|
|
794
|
+
boxShadowFocusSuccess: string;
|
|
795
|
+
caretColorSuccess: string;
|
|
782
796
|
loadingColorWarning: string;
|
|
783
797
|
borderWarning: string;
|
|
784
798
|
borderHoverWarning: string;
|
|
@@ -1193,6 +1207,13 @@ export declare const paginationProps: {
|
|
|
1193
1207
|
borderFocus: string;
|
|
1194
1208
|
boxShadowFocus: string;
|
|
1195
1209
|
loadingColor: string;
|
|
1210
|
+
loadingColorSuccess: string;
|
|
1211
|
+
borderSuccess: string;
|
|
1212
|
+
borderHoverSuccess: string;
|
|
1213
|
+
colorFocusSuccess: string;
|
|
1214
|
+
borderFocusSuccess: string;
|
|
1215
|
+
boxShadowFocusSuccess: string;
|
|
1216
|
+
caretColorSuccess: string;
|
|
1196
1217
|
loadingColorWarning: string;
|
|
1197
1218
|
borderWarning: string;
|
|
1198
1219
|
borderHoverWarning: string;
|
|
@@ -1672,6 +1693,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1672
1693
|
borderFocus: string;
|
|
1673
1694
|
boxShadowFocus: string;
|
|
1674
1695
|
loadingColor: string;
|
|
1696
|
+
loadingColorSuccess: string;
|
|
1697
|
+
borderSuccess: string;
|
|
1698
|
+
borderHoverSuccess: string;
|
|
1699
|
+
colorFocusSuccess: string;
|
|
1700
|
+
borderFocusSuccess: string;
|
|
1701
|
+
boxShadowFocusSuccess: string;
|
|
1702
|
+
caretColorSuccess: string;
|
|
1675
1703
|
loadingColorWarning: string;
|
|
1676
1704
|
borderWarning: string;
|
|
1677
1705
|
borderHoverWarning: string;
|
|
@@ -2086,6 +2114,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2086
2114
|
borderFocus: string;
|
|
2087
2115
|
boxShadowFocus: string;
|
|
2088
2116
|
loadingColor: string;
|
|
2117
|
+
loadingColorSuccess: string;
|
|
2118
|
+
borderSuccess: string;
|
|
2119
|
+
borderHoverSuccess: string;
|
|
2120
|
+
colorFocusSuccess: string;
|
|
2121
|
+
borderFocusSuccess: string;
|
|
2122
|
+
boxShadowFocusSuccess: string;
|
|
2123
|
+
caretColorSuccess: string;
|
|
2089
2124
|
loadingColorWarning: string;
|
|
2090
2125
|
borderWarning: string;
|
|
2091
2126
|
borderHoverWarning: string;
|
|
@@ -2500,6 +2535,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2500
2535
|
borderFocus: string;
|
|
2501
2536
|
boxShadowFocus: string;
|
|
2502
2537
|
loadingColor: string;
|
|
2538
|
+
loadingColorSuccess: string;
|
|
2539
|
+
borderSuccess: string;
|
|
2540
|
+
borderHoverSuccess: string;
|
|
2541
|
+
colorFocusSuccess: string;
|
|
2542
|
+
borderFocusSuccess: string;
|
|
2543
|
+
boxShadowFocusSuccess: string;
|
|
2544
|
+
caretColorSuccess: string;
|
|
2503
2545
|
loadingColorWarning: string;
|
|
2504
2546
|
borderWarning: string;
|
|
2505
2547
|
borderHoverWarning: string;
|
|
@@ -2936,6 +2978,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2936
2978
|
borderFocus: string;
|
|
2937
2979
|
boxShadowFocus: string;
|
|
2938
2980
|
loadingColor: string;
|
|
2981
|
+
loadingColorSuccess: string;
|
|
2982
|
+
borderSuccess: string;
|
|
2983
|
+
borderHoverSuccess: string;
|
|
2984
|
+
colorFocusSuccess: string;
|
|
2985
|
+
borderFocusSuccess: string;
|
|
2986
|
+
boxShadowFocusSuccess: string;
|
|
2987
|
+
caretColorSuccess: string;
|
|
2939
2988
|
loadingColorWarning: string;
|
|
2940
2989
|
borderWarning: string;
|
|
2941
2990
|
borderHoverWarning: string;
|
|
@@ -3754,6 +3803,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3754
3803
|
borderFocus: string;
|
|
3755
3804
|
boxShadowFocus: string;
|
|
3756
3805
|
loadingColor: string;
|
|
3806
|
+
loadingColorSuccess: string;
|
|
3807
|
+
borderSuccess: string;
|
|
3808
|
+
borderHoverSuccess: string;
|
|
3809
|
+
colorFocusSuccess: string;
|
|
3810
|
+
borderFocusSuccess: string;
|
|
3811
|
+
boxShadowFocusSuccess: string;
|
|
3812
|
+
caretColorSuccess: string;
|
|
3757
3813
|
loadingColorWarning: string;
|
|
3758
3814
|
borderWarning: string;
|
|
3759
3815
|
borderHoverWarning: string;
|
|
@@ -4168,6 +4224,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4168
4224
|
borderFocus: string;
|
|
4169
4225
|
boxShadowFocus: string;
|
|
4170
4226
|
loadingColor: string;
|
|
4227
|
+
loadingColorSuccess: string;
|
|
4228
|
+
borderSuccess: string;
|
|
4229
|
+
borderHoverSuccess: string;
|
|
4230
|
+
colorFocusSuccess: string;
|
|
4231
|
+
borderFocusSuccess: string;
|
|
4232
|
+
boxShadowFocusSuccess: string;
|
|
4233
|
+
caretColorSuccess: string;
|
|
4171
4234
|
loadingColorWarning: string;
|
|
4172
4235
|
borderWarning: string;
|
|
4173
4236
|
borderHoverWarning: string;
|
|
@@ -4582,6 +4645,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4582
4645
|
borderFocus: string;
|
|
4583
4646
|
boxShadowFocus: string;
|
|
4584
4647
|
loadingColor: string;
|
|
4648
|
+
loadingColorSuccess: string;
|
|
4649
|
+
borderSuccess: string;
|
|
4650
|
+
borderHoverSuccess: string;
|
|
4651
|
+
colorFocusSuccess: string;
|
|
4652
|
+
borderFocusSuccess: string;
|
|
4653
|
+
boxShadowFocusSuccess: string;
|
|
4654
|
+
caretColorSuccess: string;
|
|
4585
4655
|
loadingColorWarning: string;
|
|
4586
4656
|
borderWarning: string;
|
|
4587
4657
|
borderHoverWarning: string;
|
|
@@ -380,6 +380,13 @@ declare const paginationLight: import("../../_mixins").Theme<"Pagination", {
|
|
|
380
380
|
borderFocus: string;
|
|
381
381
|
boxShadowFocus: string;
|
|
382
382
|
loadingColor: string;
|
|
383
|
+
loadingColorSuccess: string;
|
|
384
|
+
borderSuccess: string;
|
|
385
|
+
borderHoverSuccess: string;
|
|
386
|
+
colorFocusSuccess: string;
|
|
387
|
+
borderFocusSuccess: string;
|
|
388
|
+
boxShadowFocusSuccess: string;
|
|
389
|
+
caretColorSuccess: string;
|
|
383
390
|
loadingColorWarning: string;
|
|
384
391
|
borderWarning: string;
|
|
385
392
|
borderHoverWarning: string;
|
|
@@ -370,6 +370,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
370
370
|
borderFocus: string;
|
|
371
371
|
boxShadowFocus: string;
|
|
372
372
|
loadingColor: string;
|
|
373
|
+
loadingColorSuccess: string;
|
|
374
|
+
borderSuccess: string;
|
|
375
|
+
borderHoverSuccess: string;
|
|
376
|
+
colorFocusSuccess: string;
|
|
377
|
+
borderFocusSuccess: string;
|
|
378
|
+
boxShadowFocusSuccess: string;
|
|
379
|
+
caretColorSuccess: string;
|
|
373
380
|
loadingColorWarning: string;
|
|
374
381
|
borderWarning: string;
|
|
375
382
|
borderHoverWarning: string;
|
|
@@ -704,6 +711,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
704
711
|
borderFocus: string;
|
|
705
712
|
boxShadowFocus: string;
|
|
706
713
|
loadingColor: string;
|
|
714
|
+
loadingColorSuccess: string;
|
|
715
|
+
borderSuccess: string;
|
|
716
|
+
borderHoverSuccess: string;
|
|
717
|
+
colorFocusSuccess: string;
|
|
718
|
+
borderFocusSuccess: string;
|
|
719
|
+
boxShadowFocusSuccess: string;
|
|
720
|
+
caretColorSuccess: string;
|
|
707
721
|
loadingColorWarning: string;
|
|
708
722
|
borderWarning: string;
|
|
709
723
|
borderHoverWarning: string;
|
|
@@ -368,6 +368,13 @@ export declare const timePickerProps: {
|
|
|
368
368
|
borderFocus: string;
|
|
369
369
|
boxShadowFocus: string;
|
|
370
370
|
loadingColor: string;
|
|
371
|
+
loadingColorSuccess: string;
|
|
372
|
+
borderSuccess: string;
|
|
373
|
+
borderHoverSuccess: string;
|
|
374
|
+
colorFocusSuccess: string;
|
|
375
|
+
borderFocusSuccess: string;
|
|
376
|
+
boxShadowFocusSuccess: string;
|
|
377
|
+
caretColorSuccess: string;
|
|
371
378
|
loadingColorWarning: string;
|
|
372
379
|
borderWarning: string;
|
|
373
380
|
borderHoverWarning: string;
|
|
@@ -682,6 +689,13 @@ export declare const timePickerProps: {
|
|
|
682
689
|
borderFocus: string;
|
|
683
690
|
boxShadowFocus: string;
|
|
684
691
|
loadingColor: string;
|
|
692
|
+
loadingColorSuccess: string;
|
|
693
|
+
borderSuccess: string;
|
|
694
|
+
borderHoverSuccess: string;
|
|
695
|
+
colorFocusSuccess: string;
|
|
696
|
+
borderFocusSuccess: string;
|
|
697
|
+
boxShadowFocusSuccess: string;
|
|
698
|
+
caretColorSuccess: string;
|
|
685
699
|
loadingColorWarning: string;
|
|
686
700
|
borderWarning: string;
|
|
687
701
|
borderHoverWarning: string;
|
|
@@ -996,6 +1010,13 @@ export declare const timePickerProps: {
|
|
|
996
1010
|
borderFocus: string;
|
|
997
1011
|
boxShadowFocus: string;
|
|
998
1012
|
loadingColor: string;
|
|
1013
|
+
loadingColorSuccess: string;
|
|
1014
|
+
borderSuccess: string;
|
|
1015
|
+
borderHoverSuccess: string;
|
|
1016
|
+
colorFocusSuccess: string;
|
|
1017
|
+
borderFocusSuccess: string;
|
|
1018
|
+
boxShadowFocusSuccess: string;
|
|
1019
|
+
caretColorSuccess: string;
|
|
999
1020
|
loadingColorWarning: string;
|
|
1000
1021
|
borderWarning: string;
|
|
1001
1022
|
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;
|
|
@@ -1705,6 +1733,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1705
1733
|
borderFocus: string;
|
|
1706
1734
|
boxShadowFocus: string;
|
|
1707
1735
|
loadingColor: string;
|
|
1736
|
+
loadingColorSuccess: string;
|
|
1737
|
+
borderSuccess: string;
|
|
1738
|
+
borderHoverSuccess: string;
|
|
1739
|
+
colorFocusSuccess: string;
|
|
1740
|
+
borderFocusSuccess: string;
|
|
1741
|
+
boxShadowFocusSuccess: string;
|
|
1742
|
+
caretColorSuccess: string;
|
|
1708
1743
|
loadingColorWarning: string;
|
|
1709
1744
|
borderWarning: string;
|
|
1710
1745
|
borderHoverWarning: string;
|
|
@@ -2019,6 +2054,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2019
2054
|
borderFocus: string;
|
|
2020
2055
|
boxShadowFocus: string;
|
|
2021
2056
|
loadingColor: string;
|
|
2057
|
+
loadingColorSuccess: string;
|
|
2058
|
+
borderSuccess: string;
|
|
2059
|
+
borderHoverSuccess: string;
|
|
2060
|
+
colorFocusSuccess: string;
|
|
2061
|
+
borderFocusSuccess: string;
|
|
2062
|
+
boxShadowFocusSuccess: string;
|
|
2063
|
+
caretColorSuccess: string;
|
|
2022
2064
|
loadingColorWarning: string;
|
|
2023
2065
|
borderWarning: string;
|
|
2024
2066
|
borderHoverWarning: string;
|
|
@@ -2526,6 +2568,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2526
2568
|
borderFocus: string;
|
|
2527
2569
|
boxShadowFocus: string;
|
|
2528
2570
|
loadingColor: string;
|
|
2571
|
+
loadingColorSuccess: string;
|
|
2572
|
+
borderSuccess: string;
|
|
2573
|
+
borderHoverSuccess: string;
|
|
2574
|
+
colorFocusSuccess: string;
|
|
2575
|
+
borderFocusSuccess: string;
|
|
2576
|
+
boxShadowFocusSuccess: string;
|
|
2577
|
+
caretColorSuccess: string;
|
|
2529
2578
|
loadingColorWarning: string;
|
|
2530
2579
|
borderWarning: string;
|
|
2531
2580
|
borderHoverWarning: string;
|
|
@@ -2960,6 +3009,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2960
3009
|
borderFocus: string;
|
|
2961
3010
|
boxShadowFocus: string;
|
|
2962
3011
|
loadingColor: string;
|
|
3012
|
+
loadingColorSuccess: string;
|
|
3013
|
+
borderSuccess: string;
|
|
3014
|
+
borderHoverSuccess: string;
|
|
3015
|
+
colorFocusSuccess: string;
|
|
3016
|
+
borderFocusSuccess: string;
|
|
3017
|
+
boxShadowFocusSuccess: string;
|
|
3018
|
+
caretColorSuccess: string;
|
|
2963
3019
|
loadingColorWarning: string;
|
|
2964
3020
|
borderWarning: string;
|
|
2965
3021
|
borderHoverWarning: string;
|
|
@@ -3274,6 +3330,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3274
3330
|
borderFocus: string;
|
|
3275
3331
|
boxShadowFocus: string;
|
|
3276
3332
|
loadingColor: string;
|
|
3333
|
+
loadingColorSuccess: string;
|
|
3334
|
+
borderSuccess: string;
|
|
3335
|
+
borderHoverSuccess: string;
|
|
3336
|
+
colorFocusSuccess: string;
|
|
3337
|
+
borderFocusSuccess: string;
|
|
3338
|
+
boxShadowFocusSuccess: string;
|
|
3339
|
+
caretColorSuccess: string;
|
|
3277
3340
|
loadingColorWarning: string;
|
|
3278
3341
|
borderWarning: string;
|
|
3279
3342
|
borderHoverWarning: string;
|
|
@@ -3588,6 +3651,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3588
3651
|
borderFocus: string;
|
|
3589
3652
|
boxShadowFocus: string;
|
|
3590
3653
|
loadingColor: string;
|
|
3654
|
+
loadingColorSuccess: string;
|
|
3655
|
+
borderSuccess: string;
|
|
3656
|
+
borderHoverSuccess: string;
|
|
3657
|
+
colorFocusSuccess: string;
|
|
3658
|
+
borderFocusSuccess: string;
|
|
3659
|
+
boxShadowFocusSuccess: string;
|
|
3660
|
+
caretColorSuccess: string;
|
|
3591
3661
|
loadingColorWarning: string;
|
|
3592
3662
|
borderWarning: string;
|
|
3593
3663
|
borderHoverWarning: string;
|
|
@@ -307,6 +307,13 @@ declare const timePickerLight: import("../../_mixins").Theme<"TimePicker", {
|
|
|
307
307
|
borderFocus: string;
|
|
308
308
|
boxShadowFocus: string;
|
|
309
309
|
loadingColor: string;
|
|
310
|
+
loadingColorSuccess: string;
|
|
311
|
+
borderSuccess: string;
|
|
312
|
+
borderHoverSuccess: string;
|
|
313
|
+
colorFocusSuccess: string;
|
|
314
|
+
borderFocusSuccess: string;
|
|
315
|
+
boxShadowFocusSuccess: string;
|
|
316
|
+
caretColorSuccess: string;
|
|
310
317
|
loadingColorWarning: string;
|
|
311
318
|
borderWarning: string;
|
|
312
319
|
borderHoverWarning: string;
|
|
@@ -185,6 +185,13 @@ export declare const transferProps: {
|
|
|
185
185
|
borderFocus: string;
|
|
186
186
|
boxShadowFocus: string;
|
|
187
187
|
loadingColor: string;
|
|
188
|
+
loadingColorSuccess: string;
|
|
189
|
+
borderSuccess: string;
|
|
190
|
+
borderHoverSuccess: string;
|
|
191
|
+
colorFocusSuccess: string;
|
|
192
|
+
borderFocusSuccess: string;
|
|
193
|
+
boxShadowFocusSuccess: string;
|
|
194
|
+
caretColorSuccess: string;
|
|
188
195
|
loadingColorWarning: string;
|
|
189
196
|
borderWarning: string;
|
|
190
197
|
borderHoverWarning: string;
|
|
@@ -589,6 +596,13 @@ export declare const transferProps: {
|
|
|
589
596
|
borderFocus: string;
|
|
590
597
|
boxShadowFocus: string;
|
|
591
598
|
loadingColor: string;
|
|
599
|
+
loadingColorSuccess: string;
|
|
600
|
+
borderSuccess: string;
|
|
601
|
+
borderHoverSuccess: string;
|
|
602
|
+
colorFocusSuccess: string;
|
|
603
|
+
borderFocusSuccess: string;
|
|
604
|
+
boxShadowFocusSuccess: string;
|
|
605
|
+
caretColorSuccess: string;
|
|
592
606
|
loadingColorWarning: string;
|
|
593
607
|
borderWarning: string;
|
|
594
608
|
borderHoverWarning: string;
|
|
@@ -993,6 +1007,13 @@ export declare const transferProps: {
|
|
|
993
1007
|
borderFocus: string;
|
|
994
1008
|
boxShadowFocus: string;
|
|
995
1009
|
loadingColor: string;
|
|
1010
|
+
loadingColorSuccess: string;
|
|
1011
|
+
borderSuccess: string;
|
|
1012
|
+
borderHoverSuccess: string;
|
|
1013
|
+
colorFocusSuccess: string;
|
|
1014
|
+
borderFocusSuccess: string;
|
|
1015
|
+
boxShadowFocusSuccess: string;
|
|
1016
|
+
caretColorSuccess: string;
|
|
996
1017
|
loadingColorWarning: string;
|
|
997
1018
|
borderWarning: string;
|
|
998
1019
|
borderHoverWarning: string;
|
|
@@ -1442,6 +1463,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1442
1463
|
borderFocus: string;
|
|
1443
1464
|
boxShadowFocus: string;
|
|
1444
1465
|
loadingColor: string;
|
|
1466
|
+
loadingColorSuccess: string;
|
|
1467
|
+
borderSuccess: string;
|
|
1468
|
+
borderHoverSuccess: string;
|
|
1469
|
+
colorFocusSuccess: string;
|
|
1470
|
+
borderFocusSuccess: string;
|
|
1471
|
+
boxShadowFocusSuccess: string;
|
|
1472
|
+
caretColorSuccess: string;
|
|
1445
1473
|
loadingColorWarning: string;
|
|
1446
1474
|
borderWarning: string;
|
|
1447
1475
|
borderHoverWarning: string;
|
|
@@ -1846,6 +1874,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1846
1874
|
borderFocus: string;
|
|
1847
1875
|
boxShadowFocus: string;
|
|
1848
1876
|
loadingColor: string;
|
|
1877
|
+
loadingColorSuccess: string;
|
|
1878
|
+
borderSuccess: string;
|
|
1879
|
+
borderHoverSuccess: string;
|
|
1880
|
+
colorFocusSuccess: string;
|
|
1881
|
+
borderFocusSuccess: string;
|
|
1882
|
+
boxShadowFocusSuccess: string;
|
|
1883
|
+
caretColorSuccess: string;
|
|
1849
1884
|
loadingColorWarning: string;
|
|
1850
1885
|
borderWarning: string;
|
|
1851
1886
|
borderHoverWarning: string;
|
|
@@ -2250,6 +2285,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2250
2285
|
borderFocus: string;
|
|
2251
2286
|
boxShadowFocus: string;
|
|
2252
2287
|
loadingColor: string;
|
|
2288
|
+
loadingColorSuccess: string;
|
|
2289
|
+
borderSuccess: string;
|
|
2290
|
+
borderHoverSuccess: string;
|
|
2291
|
+
colorFocusSuccess: string;
|
|
2292
|
+
borderFocusSuccess: string;
|
|
2293
|
+
boxShadowFocusSuccess: string;
|
|
2294
|
+
caretColorSuccess: string;
|
|
2253
2295
|
loadingColorWarning: string;
|
|
2254
2296
|
borderWarning: string;
|
|
2255
2297
|
borderHoverWarning: string;
|
|
@@ -2662,6 +2704,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2662
2704
|
borderFocus: string;
|
|
2663
2705
|
boxShadowFocus: string;
|
|
2664
2706
|
loadingColor: string;
|
|
2707
|
+
loadingColorSuccess: string;
|
|
2708
|
+
borderSuccess: string;
|
|
2709
|
+
borderHoverSuccess: string;
|
|
2710
|
+
colorFocusSuccess: string;
|
|
2711
|
+
borderFocusSuccess: string;
|
|
2712
|
+
boxShadowFocusSuccess: string;
|
|
2713
|
+
caretColorSuccess: string;
|
|
2665
2714
|
loadingColorWarning: string;
|
|
2666
2715
|
borderWarning: string;
|
|
2667
2716
|
borderHoverWarning: string;
|
|
@@ -3177,6 +3226,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3177
3226
|
borderFocus: string;
|
|
3178
3227
|
boxShadowFocus: string;
|
|
3179
3228
|
loadingColor: string;
|
|
3229
|
+
loadingColorSuccess: string;
|
|
3230
|
+
borderSuccess: string;
|
|
3231
|
+
borderHoverSuccess: string;
|
|
3232
|
+
colorFocusSuccess: string;
|
|
3233
|
+
borderFocusSuccess: string;
|
|
3234
|
+
boxShadowFocusSuccess: string;
|
|
3235
|
+
caretColorSuccess: string;
|
|
3180
3236
|
loadingColorWarning: string;
|
|
3181
3237
|
borderWarning: string;
|
|
3182
3238
|
borderHoverWarning: string;
|
|
@@ -3581,6 +3637,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3581
3637
|
borderFocus: string;
|
|
3582
3638
|
boxShadowFocus: string;
|
|
3583
3639
|
loadingColor: string;
|
|
3640
|
+
loadingColorSuccess: string;
|
|
3641
|
+
borderSuccess: string;
|
|
3642
|
+
borderHoverSuccess: string;
|
|
3643
|
+
colorFocusSuccess: string;
|
|
3644
|
+
borderFocusSuccess: string;
|
|
3645
|
+
boxShadowFocusSuccess: string;
|
|
3646
|
+
caretColorSuccess: string;
|
|
3584
3647
|
loadingColorWarning: string;
|
|
3585
3648
|
borderWarning: string;
|
|
3586
3649
|
borderHoverWarning: string;
|
|
@@ -3985,6 +4048,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3985
4048
|
borderFocus: string;
|
|
3986
4049
|
boxShadowFocus: string;
|
|
3987
4050
|
loadingColor: string;
|
|
4051
|
+
loadingColorSuccess: string;
|
|
4052
|
+
borderSuccess: string;
|
|
4053
|
+
borderHoverSuccess: string;
|
|
4054
|
+
colorFocusSuccess: string;
|
|
4055
|
+
borderFocusSuccess: string;
|
|
4056
|
+
boxShadowFocusSuccess: string;
|
|
4057
|
+
caretColorSuccess: string;
|
|
3988
4058
|
loadingColorWarning: string;
|
|
3989
4059
|
borderWarning: string;
|
|
3990
4060
|
borderHoverWarning: string;
|
|
@@ -153,6 +153,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
153
153
|
borderFocus: string;
|
|
154
154
|
boxShadowFocus: string;
|
|
155
155
|
loadingColor: string;
|
|
156
|
+
loadingColorSuccess: string;
|
|
157
|
+
borderSuccess: string;
|
|
158
|
+
borderHoverSuccess: string;
|
|
159
|
+
colorFocusSuccess: string;
|
|
160
|
+
borderFocusSuccess: string;
|
|
161
|
+
boxShadowFocusSuccess: string;
|
|
162
|
+
caretColorSuccess: string;
|
|
156
163
|
loadingColorWarning: string;
|
|
157
164
|
borderWarning: string;
|
|
158
165
|
borderHoverWarning: string;
|
|
@@ -587,6 +594,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
587
594
|
borderFocus: string;
|
|
588
595
|
boxShadowFocus: string;
|
|
589
596
|
loadingColor: string;
|
|
597
|
+
loadingColorSuccess: string;
|
|
598
|
+
borderSuccess: string;
|
|
599
|
+
borderHoverSuccess: string;
|
|
600
|
+
colorFocusSuccess: string;
|
|
601
|
+
borderFocusSuccess: string;
|
|
602
|
+
boxShadowFocusSuccess: string;
|
|
603
|
+
caretColorSuccess: string;
|
|
590
604
|
loadingColorWarning: string;
|
|
591
605
|
borderWarning: string;
|
|
592
606
|
borderHoverWarning: string;
|