@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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ExtractPropTypes, PropType } from 'vue';
|
|
2
2
|
import type { Hljs } from '../../_mixins';
|
|
3
3
|
import type { UDateLocale, ULocale } from '../../locales';
|
|
4
|
-
import type { GlobalComponentConfig, GlobalIconConfig, GlobalTheme, GlobalThemeOverrides } from './interface';
|
|
4
|
+
import type { GlobalComponentConfig, GlobalIconConfig, GlobalTheme, GlobalThemeOverrides, IconPacksConfig } from './interface';
|
|
5
5
|
import type { BreakpointMode, BreakpointProps, Breakpoints, BreakpointThemeOverrides, RtlProp } from './internal-interface';
|
|
6
6
|
import type { Katex } from './katex';
|
|
7
7
|
export declare const configProviderProps: {
|
|
@@ -28,6 +28,7 @@ export declare const configProviderProps: {
|
|
|
28
28
|
readonly themeOverrides: PropType<GlobalThemeOverrides | null>;
|
|
29
29
|
readonly componentOptions: PropType<GlobalComponentConfig>;
|
|
30
30
|
readonly icons: PropType<GlobalIconConfig>;
|
|
31
|
+
readonly iconPacks: PropType<IconPacksConfig>;
|
|
31
32
|
readonly breakpoints: PropType<Breakpoints>;
|
|
32
33
|
readonly breakpointProps: PropType<BreakpointProps>;
|
|
33
34
|
readonly breakpointThemeOverrides: PropType<BreakpointThemeOverrides>;
|
|
@@ -73,6 +74,7 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
73
74
|
readonly themeOverrides: PropType<GlobalThemeOverrides | null>;
|
|
74
75
|
readonly componentOptions: PropType<GlobalComponentConfig>;
|
|
75
76
|
readonly icons: PropType<GlobalIconConfig>;
|
|
77
|
+
readonly iconPacks: PropType<IconPacksConfig>;
|
|
76
78
|
readonly breakpoints: PropType<Breakpoints>;
|
|
77
79
|
readonly breakpointProps: PropType<BreakpointProps>;
|
|
78
80
|
readonly breakpointThemeOverrides: PropType<BreakpointThemeOverrides>;
|
|
@@ -122,6 +124,7 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
122
124
|
readonly themeOverrides: PropType<GlobalThemeOverrides | null>;
|
|
123
125
|
readonly componentOptions: PropType<GlobalComponentConfig>;
|
|
124
126
|
readonly icons: PropType<GlobalIconConfig>;
|
|
127
|
+
readonly iconPacks: PropType<IconPacksConfig>;
|
|
125
128
|
readonly breakpoints: PropType<Breakpoints>;
|
|
126
129
|
readonly breakpointProps: PropType<BreakpointProps>;
|
|
127
130
|
readonly breakpointThemeOverrides: PropType<BreakpointThemeOverrides>;
|
|
@@ -29,6 +29,7 @@ exports.configProviderProps = {
|
|
|
29
29
|
themeOverrides: Object,
|
|
30
30
|
componentOptions: Object,
|
|
31
31
|
icons: Object,
|
|
32
|
+
iconPacks: Object,
|
|
32
33
|
breakpoints: Object,
|
|
33
34
|
breakpointProps: Object,
|
|
34
35
|
breakpointThemeOverrides: Object,
|
|
@@ -184,6 +185,12 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
184
185
|
const { icons } = props;
|
|
185
186
|
return icons === undefined ? UConfigProvider === null || UConfigProvider === void 0 ? void 0 : UConfigProvider.mergedIconsRef.value : icons;
|
|
186
187
|
});
|
|
188
|
+
const mergedIconPacksRef = (0, vue_1.computed)(() => {
|
|
189
|
+
const { iconPacks } = props;
|
|
190
|
+
return iconPacks === undefined
|
|
191
|
+
? UConfigProvider === null || UConfigProvider === void 0 ? void 0 : UConfigProvider.mergedIconPacksRef.value
|
|
192
|
+
: iconPacks;
|
|
193
|
+
});
|
|
187
194
|
const updateWindowWidth = () => {
|
|
188
195
|
if (_utils_1.isBrowser) {
|
|
189
196
|
windowWidthRef.value = window.innerWidth;
|
|
@@ -286,6 +293,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
286
293
|
mergedSsrBreakpointWidthRef,
|
|
287
294
|
mergedRtlRef,
|
|
288
295
|
mergedIconsRef,
|
|
296
|
+
mergedIconPacksRef,
|
|
289
297
|
mergedComponentPropsRef,
|
|
290
298
|
mergedBreakpointPropsRef,
|
|
291
299
|
mergedBreakpointThemeOverridesRef,
|
|
@@ -13,4 +13,4 @@ export type GlobalThemeOverrides = {
|
|
|
13
13
|
} & {
|
|
14
14
|
[key in keyof GlobalThemeWithoutCommon]?: ExtractThemeOverrides<GlobalThemeWithoutCommon[key]>;
|
|
15
15
|
};
|
|
16
|
-
export type { BreakpointMode, BreakpointProps, BreakpointThemeOverrides, GlobalComponentConfig, GlobalIconConfig } from './internal-interface';
|
|
16
|
+
export type { BreakpointMode, BreakpointProps, BreakpointThemeOverrides, GlobalComponentConfig, GlobalIconConfig, IconPackName, IconPacksConfig } from './internal-interface';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { AnyIconPack, IconPackRegistry } from '@uzum-tech/icons';
|
|
1
2
|
import type { CNode } from 'css-render';
|
|
2
3
|
import type { Ref, VNodeChild } from 'vue';
|
|
3
4
|
import type { AccountOptionTheme } from '../../_internal/account-option/styles';
|
|
@@ -406,6 +407,12 @@ export interface GlobalComponentConfig {
|
|
|
406
407
|
Header?: HeaderProps;
|
|
407
408
|
InputOtp?: InputOtpProps;
|
|
408
409
|
}
|
|
410
|
+
export type IconPackName = keyof IconPackRegistry extends never ? string : keyof IconPackRegistry & string;
|
|
411
|
+
export interface IconPacksConfig {
|
|
412
|
+
packs: AnyIconPack[];
|
|
413
|
+
defaultPackName: IconPackName;
|
|
414
|
+
async?: boolean;
|
|
415
|
+
}
|
|
409
416
|
export interface GlobalIconConfig {
|
|
410
417
|
attach?: () => VNodeChild;
|
|
411
418
|
cancel?: () => VNodeChild;
|
|
@@ -461,6 +468,7 @@ export interface ConfigProviderInjection {
|
|
|
461
468
|
mergedKatexRef: Ref<Katex | undefined>;
|
|
462
469
|
mergedComponentPropsRef: Ref<GlobalComponentConfig | undefined>;
|
|
463
470
|
mergedIconsRef: Ref<GlobalIconConfig | undefined>;
|
|
471
|
+
mergedIconPacksRef: Ref<IconPacksConfig | undefined>;
|
|
464
472
|
mergedThemeRef: Ref<GlobalTheme | undefined>;
|
|
465
473
|
mergedThemeOverridesRef: Ref<GlobalThemeOverrides | undefined>;
|
|
466
474
|
mergedRtlRef: Ref<RtlEnabledState | undefined>;
|
|
@@ -813,6 +813,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
813
813
|
borderFocus: string;
|
|
814
814
|
boxShadowFocus: string;
|
|
815
815
|
loadingColor: string;
|
|
816
|
+
loadingColorSuccess: string;
|
|
817
|
+
borderSuccess: string;
|
|
818
|
+
borderHoverSuccess: string;
|
|
819
|
+
colorFocusSuccess: string;
|
|
820
|
+
borderFocusSuccess: string;
|
|
821
|
+
boxShadowFocusSuccess: string;
|
|
822
|
+
caretColorSuccess: string;
|
|
816
823
|
loadingColorWarning: string;
|
|
817
824
|
borderWarning: string;
|
|
818
825
|
borderHoverWarning: string;
|
|
@@ -1761,6 +1768,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1761
1768
|
borderFocus: string;
|
|
1762
1769
|
boxShadowFocus: string;
|
|
1763
1770
|
loadingColor: string;
|
|
1771
|
+
loadingColorSuccess: string;
|
|
1772
|
+
borderSuccess: string;
|
|
1773
|
+
borderHoverSuccess: string;
|
|
1774
|
+
colorFocusSuccess: string;
|
|
1775
|
+
borderFocusSuccess: string;
|
|
1776
|
+
boxShadowFocusSuccess: string;
|
|
1777
|
+
caretColorSuccess: string;
|
|
1764
1778
|
loadingColorWarning: string;
|
|
1765
1779
|
borderWarning: string;
|
|
1766
1780
|
borderHoverWarning: string;
|
|
@@ -2709,6 +2723,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2709
2723
|
borderFocus: string;
|
|
2710
2724
|
boxShadowFocus: string;
|
|
2711
2725
|
loadingColor: string;
|
|
2726
|
+
loadingColorSuccess: string;
|
|
2727
|
+
borderSuccess: string;
|
|
2728
|
+
borderHoverSuccess: string;
|
|
2729
|
+
colorFocusSuccess: string;
|
|
2730
|
+
borderFocusSuccess: string;
|
|
2731
|
+
boxShadowFocusSuccess: string;
|
|
2732
|
+
caretColorSuccess: string;
|
|
2712
2733
|
loadingColorWarning: string;
|
|
2713
2734
|
borderWarning: string;
|
|
2714
2735
|
borderHoverWarning: string;
|
|
@@ -3685,6 +3706,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3685
3706
|
borderFocus: string;
|
|
3686
3707
|
boxShadowFocus: string;
|
|
3687
3708
|
loadingColor: string;
|
|
3709
|
+
loadingColorSuccess: string;
|
|
3710
|
+
borderSuccess: string;
|
|
3711
|
+
borderHoverSuccess: string;
|
|
3712
|
+
colorFocusSuccess: string;
|
|
3713
|
+
borderFocusSuccess: string;
|
|
3714
|
+
boxShadowFocusSuccess: string;
|
|
3715
|
+
caretColorSuccess: string;
|
|
3688
3716
|
loadingColorWarning: string;
|
|
3689
3717
|
borderWarning: string;
|
|
3690
3718
|
borderHoverWarning: string;
|
|
@@ -4194,6 +4222,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4194
4222
|
borderFocus: string;
|
|
4195
4223
|
boxShadowFocus: string;
|
|
4196
4224
|
loadingColor: string;
|
|
4225
|
+
loadingColorSuccess: string;
|
|
4226
|
+
borderSuccess: string;
|
|
4227
|
+
borderHoverSuccess: string;
|
|
4228
|
+
colorFocusSuccess: string;
|
|
4229
|
+
borderFocusSuccess: string;
|
|
4230
|
+
boxShadowFocusSuccess: string;
|
|
4231
|
+
caretColorSuccess: string;
|
|
4197
4232
|
loadingColorWarning: string;
|
|
4198
4233
|
borderWarning: string;
|
|
4199
4234
|
borderHoverWarning: string;
|
|
@@ -5243,6 +5278,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5243
5278
|
borderFocus: string;
|
|
5244
5279
|
boxShadowFocus: string;
|
|
5245
5280
|
loadingColor: string;
|
|
5281
|
+
loadingColorSuccess: string;
|
|
5282
|
+
borderSuccess: string;
|
|
5283
|
+
borderHoverSuccess: string;
|
|
5284
|
+
colorFocusSuccess: string;
|
|
5285
|
+
borderFocusSuccess: string;
|
|
5286
|
+
boxShadowFocusSuccess: string;
|
|
5287
|
+
caretColorSuccess: string;
|
|
5246
5288
|
loadingColorWarning: string;
|
|
5247
5289
|
borderWarning: string;
|
|
5248
5290
|
borderHoverWarning: string;
|
|
@@ -6191,6 +6233,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6191
6233
|
borderFocus: string;
|
|
6192
6234
|
boxShadowFocus: string;
|
|
6193
6235
|
loadingColor: string;
|
|
6236
|
+
loadingColorSuccess: string;
|
|
6237
|
+
borderSuccess: string;
|
|
6238
|
+
borderHoverSuccess: string;
|
|
6239
|
+
colorFocusSuccess: string;
|
|
6240
|
+
borderFocusSuccess: string;
|
|
6241
|
+
boxShadowFocusSuccess: string;
|
|
6242
|
+
caretColorSuccess: string;
|
|
6194
6243
|
loadingColorWarning: string;
|
|
6195
6244
|
borderWarning: string;
|
|
6196
6245
|
borderHoverWarning: string;
|
|
@@ -7139,6 +7188,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7139
7188
|
borderFocus: string;
|
|
7140
7189
|
boxShadowFocus: string;
|
|
7141
7190
|
loadingColor: string;
|
|
7191
|
+
loadingColorSuccess: string;
|
|
7192
|
+
borderSuccess: string;
|
|
7193
|
+
borderHoverSuccess: string;
|
|
7194
|
+
colorFocusSuccess: string;
|
|
7195
|
+
borderFocusSuccess: string;
|
|
7196
|
+
boxShadowFocusSuccess: string;
|
|
7197
|
+
caretColorSuccess: string;
|
|
7142
7198
|
loadingColorWarning: string;
|
|
7143
7199
|
borderWarning: string;
|
|
7144
7200
|
borderHoverWarning: string;
|
|
@@ -702,6 +702,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
702
702
|
borderFocus: string;
|
|
703
703
|
boxShadowFocus: string;
|
|
704
704
|
loadingColor: string;
|
|
705
|
+
loadingColorSuccess: string;
|
|
706
|
+
borderSuccess: string;
|
|
707
|
+
borderHoverSuccess: string;
|
|
708
|
+
colorFocusSuccess: string;
|
|
709
|
+
borderFocusSuccess: string;
|
|
710
|
+
boxShadowFocusSuccess: string;
|
|
711
|
+
caretColorSuccess: string;
|
|
705
712
|
loadingColorWarning: string;
|
|
706
713
|
borderWarning: string;
|
|
707
714
|
borderHoverWarning: string;
|
|
@@ -1211,6 +1218,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1211
1218
|
borderFocus: string;
|
|
1212
1219
|
boxShadowFocus: string;
|
|
1213
1220
|
loadingColor: string;
|
|
1221
|
+
loadingColorSuccess: string;
|
|
1222
|
+
borderSuccess: string;
|
|
1223
|
+
borderHoverSuccess: string;
|
|
1224
|
+
colorFocusSuccess: string;
|
|
1225
|
+
borderFocusSuccess: string;
|
|
1226
|
+
boxShadowFocusSuccess: string;
|
|
1227
|
+
caretColorSuccess: string;
|
|
1214
1228
|
loadingColorWarning: string;
|
|
1215
1229
|
borderWarning: string;
|
|
1216
1230
|
borderHoverWarning: string;
|
|
@@ -2082,6 +2096,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2082
2096
|
borderFocus: string;
|
|
2083
2097
|
boxShadowFocus: string;
|
|
2084
2098
|
loadingColor: string;
|
|
2099
|
+
loadingColorSuccess: string;
|
|
2100
|
+
borderSuccess: string;
|
|
2101
|
+
borderHoverSuccess: string;
|
|
2102
|
+
colorFocusSuccess: string;
|
|
2103
|
+
borderFocusSuccess: string;
|
|
2104
|
+
boxShadowFocusSuccess: string;
|
|
2105
|
+
caretColorSuccess: string;
|
|
2085
2106
|
loadingColorWarning: string;
|
|
2086
2107
|
borderWarning: string;
|
|
2087
2108
|
borderHoverWarning: string;
|
|
@@ -2591,6 +2612,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2591
2612
|
borderFocus: string;
|
|
2592
2613
|
boxShadowFocus: string;
|
|
2593
2614
|
loadingColor: string;
|
|
2615
|
+
loadingColorSuccess: string;
|
|
2616
|
+
borderSuccess: string;
|
|
2617
|
+
borderHoverSuccess: string;
|
|
2618
|
+
colorFocusSuccess: string;
|
|
2619
|
+
borderFocusSuccess: string;
|
|
2620
|
+
boxShadowFocusSuccess: string;
|
|
2621
|
+
caretColorSuccess: string;
|
|
2594
2622
|
loadingColorWarning: string;
|
|
2595
2623
|
borderWarning: string;
|
|
2596
2624
|
borderHoverWarning: string;
|
|
@@ -727,6 +727,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
727
727
|
borderFocus: string;
|
|
728
728
|
boxShadowFocus: string;
|
|
729
729
|
loadingColor: string;
|
|
730
|
+
loadingColorSuccess: string;
|
|
731
|
+
borderSuccess: string;
|
|
732
|
+
borderHoverSuccess: string;
|
|
733
|
+
colorFocusSuccess: string;
|
|
734
|
+
borderFocusSuccess: string;
|
|
735
|
+
boxShadowFocusSuccess: string;
|
|
736
|
+
caretColorSuccess: string;
|
|
730
737
|
loadingColorWarning: string;
|
|
731
738
|
borderWarning: string;
|
|
732
739
|
borderHoverWarning: string;
|
|
@@ -1236,6 +1243,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1236
1243
|
borderFocus: string;
|
|
1237
1244
|
boxShadowFocus: string;
|
|
1238
1245
|
loadingColor: string;
|
|
1246
|
+
loadingColorSuccess: string;
|
|
1247
|
+
borderSuccess: string;
|
|
1248
|
+
borderHoverSuccess: string;
|
|
1249
|
+
colorFocusSuccess: string;
|
|
1250
|
+
borderFocusSuccess: string;
|
|
1251
|
+
boxShadowFocusSuccess: string;
|
|
1252
|
+
caretColorSuccess: string;
|
|
1239
1253
|
loadingColorWarning: string;
|
|
1240
1254
|
borderWarning: string;
|
|
1241
1255
|
borderHoverWarning: string;
|
|
@@ -2107,6 +2121,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2107
2121
|
borderFocus: string;
|
|
2108
2122
|
boxShadowFocus: string;
|
|
2109
2123
|
loadingColor: string;
|
|
2124
|
+
loadingColorSuccess: string;
|
|
2125
|
+
borderSuccess: string;
|
|
2126
|
+
borderHoverSuccess: string;
|
|
2127
|
+
colorFocusSuccess: string;
|
|
2128
|
+
borderFocusSuccess: string;
|
|
2129
|
+
boxShadowFocusSuccess: string;
|
|
2130
|
+
caretColorSuccess: string;
|
|
2110
2131
|
loadingColorWarning: string;
|
|
2111
2132
|
borderWarning: string;
|
|
2112
2133
|
borderHoverWarning: string;
|
|
@@ -2616,6 +2637,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2616
2637
|
borderFocus: string;
|
|
2617
2638
|
boxShadowFocus: string;
|
|
2618
2639
|
loadingColor: string;
|
|
2640
|
+
loadingColorSuccess: string;
|
|
2641
|
+
borderSuccess: string;
|
|
2642
|
+
borderHoverSuccess: string;
|
|
2643
|
+
colorFocusSuccess: string;
|
|
2644
|
+
borderFocusSuccess: string;
|
|
2645
|
+
boxShadowFocusSuccess: string;
|
|
2646
|
+
caretColorSuccess: string;
|
|
2619
2647
|
loadingColorWarning: string;
|
|
2620
2648
|
borderWarning: string;
|
|
2621
2649
|
borderHoverWarning: string;
|
|
@@ -751,6 +751,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
751
751
|
borderFocus: string;
|
|
752
752
|
boxShadowFocus: string;
|
|
753
753
|
loadingColor: string;
|
|
754
|
+
loadingColorSuccess: string;
|
|
755
|
+
borderSuccess: string;
|
|
756
|
+
borderHoverSuccess: string;
|
|
757
|
+
colorFocusSuccess: string;
|
|
758
|
+
borderFocusSuccess: string;
|
|
759
|
+
boxShadowFocusSuccess: string;
|
|
760
|
+
caretColorSuccess: string;
|
|
754
761
|
loadingColorWarning: string;
|
|
755
762
|
borderWarning: string;
|
|
756
763
|
borderHoverWarning: string;
|
|
@@ -1260,6 +1267,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1260
1267
|
borderFocus: string;
|
|
1261
1268
|
boxShadowFocus: string;
|
|
1262
1269
|
loadingColor: string;
|
|
1270
|
+
loadingColorSuccess: string;
|
|
1271
|
+
borderSuccess: string;
|
|
1272
|
+
borderHoverSuccess: string;
|
|
1273
|
+
colorFocusSuccess: string;
|
|
1274
|
+
borderFocusSuccess: string;
|
|
1275
|
+
boxShadowFocusSuccess: string;
|
|
1276
|
+
caretColorSuccess: string;
|
|
1263
1277
|
loadingColorWarning: string;
|
|
1264
1278
|
borderWarning: string;
|
|
1265
1279
|
borderHoverWarning: string;
|
|
@@ -2131,6 +2145,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2131
2145
|
borderFocus: string;
|
|
2132
2146
|
boxShadowFocus: string;
|
|
2133
2147
|
loadingColor: string;
|
|
2148
|
+
loadingColorSuccess: string;
|
|
2149
|
+
borderSuccess: string;
|
|
2150
|
+
borderHoverSuccess: string;
|
|
2151
|
+
colorFocusSuccess: string;
|
|
2152
|
+
borderFocusSuccess: string;
|
|
2153
|
+
boxShadowFocusSuccess: string;
|
|
2154
|
+
caretColorSuccess: string;
|
|
2134
2155
|
loadingColorWarning: string;
|
|
2135
2156
|
borderWarning: string;
|
|
2136
2157
|
borderHoverWarning: string;
|
|
@@ -2640,6 +2661,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2640
2661
|
borderFocus: string;
|
|
2641
2662
|
boxShadowFocus: string;
|
|
2642
2663
|
loadingColor: string;
|
|
2664
|
+
loadingColorSuccess: string;
|
|
2665
|
+
borderSuccess: string;
|
|
2666
|
+
borderHoverSuccess: string;
|
|
2667
|
+
colorFocusSuccess: string;
|
|
2668
|
+
borderFocusSuccess: string;
|
|
2669
|
+
boxShadowFocusSuccess: string;
|
|
2670
|
+
caretColorSuccess: string;
|
|
2643
2671
|
loadingColorWarning: string;
|
|
2644
2672
|
borderWarning: string;
|
|
2645
2673
|
borderHoverWarning: string;
|
|
@@ -721,6 +721,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
721
721
|
borderFocus: string;
|
|
722
722
|
boxShadowFocus: string;
|
|
723
723
|
loadingColor: string;
|
|
724
|
+
loadingColorSuccess: string;
|
|
725
|
+
borderSuccess: string;
|
|
726
|
+
borderHoverSuccess: string;
|
|
727
|
+
colorFocusSuccess: string;
|
|
728
|
+
borderFocusSuccess: string;
|
|
729
|
+
boxShadowFocusSuccess: string;
|
|
730
|
+
caretColorSuccess: string;
|
|
724
731
|
loadingColorWarning: string;
|
|
725
732
|
borderWarning: string;
|
|
726
733
|
borderHoverWarning: string;
|
|
@@ -1230,6 +1237,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1230
1237
|
borderFocus: string;
|
|
1231
1238
|
boxShadowFocus: string;
|
|
1232
1239
|
loadingColor: string;
|
|
1240
|
+
loadingColorSuccess: string;
|
|
1241
|
+
borderSuccess: string;
|
|
1242
|
+
borderHoverSuccess: string;
|
|
1243
|
+
colorFocusSuccess: string;
|
|
1244
|
+
borderFocusSuccess: string;
|
|
1245
|
+
boxShadowFocusSuccess: string;
|
|
1246
|
+
caretColorSuccess: string;
|
|
1233
1247
|
loadingColorWarning: string;
|
|
1234
1248
|
borderWarning: string;
|
|
1235
1249
|
borderHoverWarning: string;
|
|
@@ -2101,6 +2115,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2101
2115
|
borderFocus: string;
|
|
2102
2116
|
boxShadowFocus: string;
|
|
2103
2117
|
loadingColor: string;
|
|
2118
|
+
loadingColorSuccess: string;
|
|
2119
|
+
borderSuccess: string;
|
|
2120
|
+
borderHoverSuccess: string;
|
|
2121
|
+
colorFocusSuccess: string;
|
|
2122
|
+
borderFocusSuccess: string;
|
|
2123
|
+
boxShadowFocusSuccess: string;
|
|
2124
|
+
caretColorSuccess: string;
|
|
2104
2125
|
loadingColorWarning: string;
|
|
2105
2126
|
borderWarning: string;
|
|
2106
2127
|
borderHoverWarning: string;
|
|
@@ -2610,6 +2631,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2610
2631
|
borderFocus: string;
|
|
2611
2632
|
boxShadowFocus: string;
|
|
2612
2633
|
loadingColor: string;
|
|
2634
|
+
loadingColorSuccess: string;
|
|
2635
|
+
borderSuccess: string;
|
|
2636
|
+
borderHoverSuccess: string;
|
|
2637
|
+
colorFocusSuccess: string;
|
|
2638
|
+
borderFocusSuccess: string;
|
|
2639
|
+
boxShadowFocusSuccess: string;
|
|
2640
|
+
caretColorSuccess: string;
|
|
2613
2641
|
loadingColorWarning: string;
|
|
2614
2642
|
borderWarning: string;
|
|
2615
2643
|
borderHoverWarning: string;
|
|
@@ -825,6 +825,13 @@ export declare const dataTableProps: {
|
|
|
825
825
|
borderFocus: string;
|
|
826
826
|
boxShadowFocus: string;
|
|
827
827
|
loadingColor: string;
|
|
828
|
+
loadingColorSuccess: string;
|
|
829
|
+
borderSuccess: string;
|
|
830
|
+
borderHoverSuccess: string;
|
|
831
|
+
colorFocusSuccess: string;
|
|
832
|
+
borderFocusSuccess: string;
|
|
833
|
+
boxShadowFocusSuccess: string;
|
|
834
|
+
caretColorSuccess: string;
|
|
828
835
|
loadingColorWarning: string;
|
|
829
836
|
borderWarning: string;
|
|
830
837
|
borderHoverWarning: string;
|
|
@@ -1773,6 +1780,13 @@ export declare const dataTableProps: {
|
|
|
1773
1780
|
borderFocus: string;
|
|
1774
1781
|
boxShadowFocus: string;
|
|
1775
1782
|
loadingColor: string;
|
|
1783
|
+
loadingColorSuccess: string;
|
|
1784
|
+
borderSuccess: string;
|
|
1785
|
+
borderHoverSuccess: string;
|
|
1786
|
+
colorFocusSuccess: string;
|
|
1787
|
+
borderFocusSuccess: string;
|
|
1788
|
+
boxShadowFocusSuccess: string;
|
|
1789
|
+
caretColorSuccess: string;
|
|
1776
1790
|
loadingColorWarning: string;
|
|
1777
1791
|
borderWarning: string;
|
|
1778
1792
|
borderHoverWarning: string;
|
|
@@ -2721,6 +2735,13 @@ export declare const dataTableProps: {
|
|
|
2721
2735
|
borderFocus: string;
|
|
2722
2736
|
boxShadowFocus: string;
|
|
2723
2737
|
loadingColor: string;
|
|
2738
|
+
loadingColorSuccess: string;
|
|
2739
|
+
borderSuccess: string;
|
|
2740
|
+
borderHoverSuccess: string;
|
|
2741
|
+
colorFocusSuccess: string;
|
|
2742
|
+
borderFocusSuccess: string;
|
|
2743
|
+
boxShadowFocusSuccess: string;
|
|
2744
|
+
caretColorSuccess: string;
|
|
2724
2745
|
loadingColorWarning: string;
|
|
2725
2746
|
borderWarning: string;
|
|
2726
2747
|
borderHoverWarning: string;
|
|
@@ -749,6 +749,13 @@ declare const dataTableLight: import("../../_mixins").Theme<"DataTable", {
|
|
|
749
749
|
borderFocus: string;
|
|
750
750
|
boxShadowFocus: string;
|
|
751
751
|
loadingColor: string;
|
|
752
|
+
loadingColorSuccess: string;
|
|
753
|
+
borderSuccess: string;
|
|
754
|
+
borderHoverSuccess: string;
|
|
755
|
+
colorFocusSuccess: string;
|
|
756
|
+
borderFocusSuccess: string;
|
|
757
|
+
boxShadowFocusSuccess: string;
|
|
758
|
+
caretColorSuccess: string;
|
|
752
759
|
loadingColorWarning: string;
|
|
753
760
|
borderWarning: string;
|
|
754
761
|
borderHoverWarning: string;
|