@webitel/ui-sdk 25.8.55 → 25.8.56
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/img/sprite/bread-crumbs.svg +3 -0
- package/dist/img/sprite/index.js +2 -0
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +20043 -18531
- package/dist/ui-sdk.umd.cjs +538 -130
- package/package.json +2 -2
- package/src/assets/icons/sprite/bread-crumbs.svg +3 -0
- package/src/assets/icons/sprite/index.js +2 -0
- package/src/components/index.js +3 -3
- package/src/components/{wt-headline-nav/__tests__/wt-headline-nav.spec.js → wt-breadcrumb/__tests__/wt-breadcrumb.spec.js} +3 -3
- package/src/components/wt-breadcrumb/_variables.scss +7 -0
- package/src/components/wt-breadcrumb/wt-breadcrumb.vue +41 -0
- package/src/components/wt-divider/wt-divider.vue +13 -13
- package/src/components/wt-headline/wt-headline.vue +1 -1
- package/src/components/wt-icon-btn/wt-icon-btn.vue +1 -0
- package/src/components/wt-radio/wt-radio.vue +40 -112
- package/src/components/wt-slider/wt-slider.vue +37 -190
- package/src/modules/AgentStatusSelect/components/_internals/wt-cc-pause-cause-popup.vue +1 -1
- package/src/modules/AuditForm/components/form-questions/options/audit-form-question-options.vue +1 -1
- package/src/modules/AuditForm/components/form-questions/score/audit-form-question-score.vue +1 -1
- package/src/plugins/primevue/primevue.plugin.js +8 -0
- package/src/plugins/primevue/primevue.scss +1 -0
- package/src/plugins/primevue/theme/components/breadcrumb/breadcrumb.js +28 -0
- package/src/plugins/primevue/theme/components/breadcrumb/breadcrumb.scss +9 -0
- package/src/plugins/primevue/theme/components/components.js +8 -0
- package/src/plugins/primevue/theme/components/divider/divider.js +8 -0
- package/src/plugins/primevue/theme/components/radio/radio.js +17 -0
- package/src/plugins/primevue/theme/components/slider/slider.js +8 -0
- package/types/components/index.d.ts +3 -3
- package/types/components/wt-breadcrumb/wt-breadcrumb.vue.d.ts +9 -0
- package/types/components/wt-divider/wt-divider.vue.d.ts +6 -12
- package/types/components/wt-radio/wt-radio.vue.d.ts +49 -60
- package/types/components/wt-slider/wt-slider.vue.d.ts +19 -66
- package/types/plugins/primevue/theme/components/breadcrumb/breadcrumb.d.ts +67 -0
- package/types/plugins/primevue/theme/components/components.d.ts +8 -0
- package/types/plugins/primevue/theme/components/divider/divider.d.ts +37 -0
- package/types/plugins/primevue/theme/components/radio/radio.d.ts +91 -0
- package/types/plugins/primevue/theme/components/slider/slider.d.ts +69 -0
- package/src/components/wt-headline-nav/_variables.scss +0 -7
- package/src/components/wt-headline-nav/wt-headline-nav.vue +0 -106
- package/types/components/wt-headline-nav/wt-headline-nav.vue.d.ts +0 -7
- /package/types/components/{wt-headline-nav/__tests__/wt-headline-nav.spec.d.ts → wt-breadcrumb/__tests__/wt-breadcrumb.spec.d.ts} +0 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { BreadcrumbScheme } from '@webitel/styleguide/component-schemes';
|
|
2
|
+
|
|
3
|
+
const breadcrumb = {
|
|
4
|
+
...BreadcrumbScheme.sizes,
|
|
5
|
+
colorScheme: BreadcrumbScheme.colorScheme,
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
css: ({ dt }) => `
|
|
9
|
+
.p-breadcrumb .p-breadcrumb-list .p-breadcrumb-item .wt-breadcrumb__text {
|
|
10
|
+
color: ${dt(`breadcrumb.item.color`)};
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.p-breadcrumb .p-breadcrumb-list .p-breadcrumb-separator .wt-icon {
|
|
14
|
+
width: ${dt(`breadcrumb.separator.size`)};
|
|
15
|
+
height: ${dt(`breadcrumb.separator.size`)};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.p-breadcrumb .p-breadcrumb-list .p-breadcrumb-separator .wt-icon {
|
|
19
|
+
fill: ${dt(`breadcrumb.separator.color`)};
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.p-breadcrumb .p-breadcrumb-list .p-breadcrumb-separator:has(+ .p-breadcrumb-item:last-child) .wt-icon {
|
|
23
|
+
fill: ${dt(`breadcrumb.separator.lastItemColor`)};
|
|
24
|
+
}
|
|
25
|
+
`,
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export default breadcrumb;
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import autocomplete from './autocomplete/autocomplete.js';
|
|
2
|
+
import breadcrumb from './breadcrumb/breadcrumb.js';
|
|
2
3
|
import button from './button/button.js';
|
|
3
4
|
import checkbox from './checkbox/checkbox.js';
|
|
4
5
|
import chip from './chip/chip.js';
|
|
6
|
+
import divider from './divider/divider.js';
|
|
5
7
|
import popover from './popover/popover.js';
|
|
8
|
+
import radio from './radio/radio.js';
|
|
9
|
+
import slider from './slider/slider.js'
|
|
6
10
|
import tooltip from './tooltip/tooltip.js';
|
|
7
11
|
|
|
8
12
|
const components = {
|
|
@@ -12,6 +16,10 @@ const components = {
|
|
|
12
16
|
tooltip,
|
|
13
17
|
chip,
|
|
14
18
|
checkbox,
|
|
19
|
+
breadcrumb,
|
|
20
|
+
slider,
|
|
21
|
+
divider,
|
|
22
|
+
radiobutton: radio,
|
|
15
23
|
};
|
|
16
24
|
|
|
17
25
|
export default components;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { RadioScheme } from '@webitel/styleguide/component-schemes';
|
|
2
|
+
|
|
3
|
+
const radio = {
|
|
4
|
+
...RadioScheme.sizes,
|
|
5
|
+
colorScheme: RadioScheme.colorScheme,
|
|
6
|
+
|
|
7
|
+
css: ({dt}) => `
|
|
8
|
+
.p-radiobutton {
|
|
9
|
+
width: ${dt('radiobutton.root.wrapperWidth')};
|
|
10
|
+
height: ${dt('radiobutton.root.wrapperHeight')};
|
|
11
|
+
align-items: center;
|
|
12
|
+
justify-content: center;
|
|
13
|
+
}
|
|
14
|
+
`
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export default radio;
|
|
@@ -4,6 +4,7 @@ import WtAppHeader from './wt-app-header/wt-app-header.vue';
|
|
|
4
4
|
import WtAppNavigator from './wt-app-header/wt-app-navigator.vue';
|
|
5
5
|
import WtAvatar from './wt-avatar/wt-avatar.vue';
|
|
6
6
|
import WtBadge from './wt-badge/wt-badge.vue';
|
|
7
|
+
import WtBreadcrumb from './wt-breadcrumb/wt-breadcrumb.vue';
|
|
7
8
|
import WtButton from './wt-button/wt-button.vue';
|
|
8
9
|
import WtButtonSelect from './wt-button-select/wt-button-select.vue';
|
|
9
10
|
import WtCheckbox from './wt-checkbox/wt-checkbox.vue';
|
|
@@ -22,7 +23,6 @@ import WtExpansionPanel from './wt-expansion-panel/wt-expansion-panel.vue';
|
|
|
22
23
|
import WtFiltersPanelWrapper from './wt-filters-panel-wrapper/wt-filters-panel-wrapper.vue';
|
|
23
24
|
import WtHeaderActions from './wt-app-header/wt-header-actions.vue';
|
|
24
25
|
import WtHeadline from './wt-headline/wt-headline.vue';
|
|
25
|
-
import WtHeadlineNav from './wt-headline-nav/wt-headline-nav.vue';
|
|
26
26
|
import WtHint from './wt-hint/wt-hint.vue';
|
|
27
27
|
import WtIcon from './wt-icon/wt-icon.vue';
|
|
28
28
|
import WtIconAction from './wt-icon-action/wt-icon-action.vue';
|
|
@@ -111,7 +111,7 @@ declare namespace Components {
|
|
|
111
111
|
export { WtTextarea };
|
|
112
112
|
export { WtAppHeader };
|
|
113
113
|
export { WtHeadline };
|
|
114
|
-
export {
|
|
114
|
+
export { WtBreadcrumb };
|
|
115
115
|
export { WtNavigationBar };
|
|
116
116
|
export { WtAppNavigator };
|
|
117
117
|
export { WtFiltersPanelWrapper };
|
|
@@ -144,4 +144,4 @@ declare namespace Components {
|
|
|
144
144
|
export { WtSelectionPopup };
|
|
145
145
|
export { WtDisplayChipItems };
|
|
146
146
|
}
|
|
147
|
-
export { WtActionBar, WtAppHeader, WtAppNavigator, WtAvatar, WtBadge, WtButton, WtButtonSelect, WtCheckbox, WtChip, WtConfirmDialog, WtContextMenu, WtCopyAction, WtDatepicker, WtDisplayChipItems, WtDivider, WtDualPanel, WtDummy, WtEmpty, WtErrorPage, WtExpansionPanel, WtFiltersPanelWrapper, WtHeaderActions, WtHeadline,
|
|
147
|
+
export { WtActionBar, WtAppHeader, WtAppNavigator, WtAvatar, WtBadge, WtBreadcrumb, WtButton, WtButtonSelect, WtCheckbox, WtChip, WtConfirmDialog, WtContextMenu, WtCopyAction, WtDatepicker, WtDisplayChipItems, WtDivider, WtDualPanel, WtDummy, WtEmpty, WtErrorPage, WtExpansionPanel, WtFiltersPanelWrapper, WtHeaderActions, WtHeadline, WtHint, WtIcon, WtIconAction, WtIconBtn, WtImage, WtIndicator, WtInput, WtInputInfo, WtIntersectionObserver, WtItemLink, WtLabel, WtLoadBar, WtLoader, WtLogo, WtNavigationBar, WtNavigationMenu, WtNotification, WtNotificationsBar, WtPageHeader, WtPageWrapper, WtPagination, WtPlayer, WtPopover, WtPopup, WtProgressBar, WtRadio, WtReplaceTransition, WtRoundedAction, WtSearchBar, WtSelect, WtSelectionPopup, WtSlider, WtStartPage, WtStatusSelect, WtStepper, WtSwitcher, WtTable, WtTableActions, WtTableColumnSelect, WtTabs, WtTagsInput, WtTextarea, WtTimeInput, WtTimepicker, WtTooltip, WtTree, WtTreeTable, WtTypeExtensionValueInput };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { BreadcrumbProps } from 'primevue';
|
|
2
|
+
interface Props extends BreadcrumbProps {
|
|
3
|
+
path?: Array<{
|
|
4
|
+
name: string;
|
|
5
|
+
route?: string | object;
|
|
6
|
+
}>;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
|
+
export default _default;
|
|
@@ -1,14 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
variant: {
|
|
8
|
-
type: StringConstructor;
|
|
9
|
-
default: string;
|
|
10
|
-
};
|
|
11
|
-
}>> & Readonly<{}>, {
|
|
12
|
-
variant: string;
|
|
1
|
+
import type { DividerProps } from 'primevue';
|
|
2
|
+
interface Props extends DividerProps {
|
|
3
|
+
variant?: 'horizontal' | 'vertical';
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
6
|
+
variant: "horizontal" | "vertical";
|
|
13
7
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
8
|
export default _default;
|
|
@@ -1,66 +1,55 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}, {
|
|
30
|
-
|
|
31
|
-
},
|
|
32
|
-
value:
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
};
|
|
44
|
-
required: {
|
|
45
|
-
type: BooleanConstructor;
|
|
46
|
-
default: boolean;
|
|
47
|
-
};
|
|
48
|
-
disabled: {
|
|
49
|
-
type: BooleanConstructor;
|
|
50
|
-
default: boolean;
|
|
51
|
-
};
|
|
52
|
-
outline: {
|
|
53
|
-
type: BooleanConstructor;
|
|
54
|
-
default: boolean;
|
|
55
|
-
};
|
|
56
|
-
}>> & Readonly<{
|
|
57
|
-
onInput?: (...args: any[]) => any;
|
|
1
|
+
import type { RadioButtonProps } from 'primevue/radiobutton';
|
|
2
|
+
interface Props extends RadioButtonProps {
|
|
3
|
+
value: string | number | boolean | object;
|
|
4
|
+
label?: string;
|
|
5
|
+
required?: boolean;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
outline?: boolean;
|
|
8
|
+
}
|
|
9
|
+
type __VLS_Props = Props;
|
|
10
|
+
declare const model: import("vue").ModelRef<string | number | boolean | object, string, string | number | boolean | object, string | number | boolean | object>;
|
|
11
|
+
declare const radioId: string;
|
|
12
|
+
declare const isChecked: import("vue").ComputedRef<boolean>;
|
|
13
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
14
|
+
'selected': string | number | boolean | object;
|
|
15
|
+
};
|
|
16
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
17
|
+
declare var __VLS_9: {
|
|
18
|
+
label: string;
|
|
19
|
+
isChecked: boolean;
|
|
20
|
+
disabled: boolean;
|
|
21
|
+
};
|
|
22
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
23
|
+
label?: (props: typeof __VLS_9) => any;
|
|
24
|
+
}>;
|
|
25
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
26
|
+
model: typeof model;
|
|
27
|
+
radioId: typeof radioId;
|
|
28
|
+
isChecked: typeof isChecked;
|
|
29
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
30
|
+
"update:selected": (value: string | number | boolean | object) => any;
|
|
31
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
32
|
+
"onUpdate:selected"?: (value: string | number | boolean | object) => any;
|
|
33
|
+
}>, {
|
|
34
|
+
label: string;
|
|
35
|
+
required: boolean;
|
|
36
|
+
disabled: boolean;
|
|
37
|
+
outline: boolean;
|
|
38
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
39
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
40
|
+
"update:selected": (value: string | number | boolean | object) => any;
|
|
41
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
42
|
+
"onUpdate:selected"?: (value: string | number | boolean | object) => any;
|
|
58
43
|
}>, {
|
|
59
|
-
value: string | number | boolean | Record<string, any>;
|
|
60
44
|
label: string;
|
|
61
45
|
required: boolean;
|
|
62
|
-
selected: string | number | boolean | Record<string, any>;
|
|
63
46
|
disabled: boolean;
|
|
64
47
|
outline: boolean;
|
|
65
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions,
|
|
48
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
49
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
66
50
|
export default _default;
|
|
51
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
52
|
+
new (): {
|
|
53
|
+
$slots: S;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
@@ -1,73 +1,26 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
type: NumberConstructor;
|
|
20
|
-
default: number;
|
|
21
|
-
};
|
|
22
|
-
step: {
|
|
23
|
-
type: NumberConstructor;
|
|
24
|
-
default: number;
|
|
25
|
-
};
|
|
26
|
-
height: {
|
|
27
|
-
type: NumberConstructor;
|
|
28
|
-
default: number;
|
|
29
|
-
};
|
|
30
|
-
}>, {}, {}, {
|
|
31
|
-
progressStyle(): string;
|
|
32
|
-
verticalHeight(): string;
|
|
33
|
-
}, {
|
|
34
|
-
inputHandler(event: any): void;
|
|
35
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "input"[], "input", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
36
|
-
value: {
|
|
37
|
-
type: NumberConstructor;
|
|
38
|
-
default: number;
|
|
39
|
-
};
|
|
40
|
-
disabled: {
|
|
41
|
-
type: BooleanConstructor;
|
|
42
|
-
default: boolean;
|
|
43
|
-
};
|
|
44
|
-
vertical: {
|
|
45
|
-
type: BooleanConstructor;
|
|
46
|
-
default: boolean;
|
|
47
|
-
};
|
|
48
|
-
min: {
|
|
49
|
-
type: NumberConstructor;
|
|
50
|
-
default: number;
|
|
51
|
-
};
|
|
52
|
-
max: {
|
|
53
|
-
type: NumberConstructor;
|
|
54
|
-
default: number;
|
|
55
|
-
};
|
|
56
|
-
step: {
|
|
57
|
-
type: NumberConstructor;
|
|
58
|
-
default: number;
|
|
59
|
-
};
|
|
60
|
-
height: {
|
|
61
|
-
type: NumberConstructor;
|
|
62
|
-
default: number;
|
|
63
|
-
};
|
|
64
|
-
}>> & Readonly<{
|
|
65
|
-
onInput?: (...args: any[]) => any;
|
|
1
|
+
import type { SliderProps } from 'primevue/slider';
|
|
2
|
+
interface Props extends SliderProps {
|
|
3
|
+
disabled?: boolean;
|
|
4
|
+
vertical?: boolean;
|
|
5
|
+
min?: number;
|
|
6
|
+
max?: number;
|
|
7
|
+
step?: number;
|
|
8
|
+
height?: number;
|
|
9
|
+
width?: number;
|
|
10
|
+
}
|
|
11
|
+
type __VLS_Props = Props;
|
|
12
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
13
|
+
modelValue?: number;
|
|
14
|
+
};
|
|
15
|
+
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
|
+
"update:modelValue": (value: number) => any;
|
|
17
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
18
|
+
"onUpdate:modelValue"?: (value: number) => any;
|
|
66
19
|
}>, {
|
|
67
|
-
value: number;
|
|
68
20
|
disabled: boolean;
|
|
69
21
|
step: number;
|
|
70
22
|
vertical: boolean;
|
|
23
|
+
width: number;
|
|
71
24
|
min: number;
|
|
72
25
|
max: number;
|
|
73
26
|
height: number;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
export default breadcrumb;
|
|
2
|
+
declare const breadcrumb: {
|
|
3
|
+
colorScheme: {
|
|
4
|
+
light: {
|
|
5
|
+
root: {
|
|
6
|
+
background: string;
|
|
7
|
+
};
|
|
8
|
+
item: {
|
|
9
|
+
color: string;
|
|
10
|
+
hoverColor: string;
|
|
11
|
+
icon: {
|
|
12
|
+
color: string;
|
|
13
|
+
hoverColor: string;
|
|
14
|
+
};
|
|
15
|
+
focusRing: {
|
|
16
|
+
color: string;
|
|
17
|
+
shadow: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
separator: {
|
|
21
|
+
color: string;
|
|
22
|
+
lastItemColor: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
dark: {
|
|
26
|
+
root: {
|
|
27
|
+
background: string;
|
|
28
|
+
};
|
|
29
|
+
item: {
|
|
30
|
+
color: string;
|
|
31
|
+
hoverColor: string;
|
|
32
|
+
icon: {
|
|
33
|
+
color: string;
|
|
34
|
+
hoverColor: string;
|
|
35
|
+
};
|
|
36
|
+
focusRing: {
|
|
37
|
+
color: string;
|
|
38
|
+
shadow: string;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
separator: {
|
|
42
|
+
color: string;
|
|
43
|
+
lastItemColor: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
css: ({ dt }: {
|
|
48
|
+
dt: any;
|
|
49
|
+
}) => string;
|
|
50
|
+
root: {
|
|
51
|
+
padding: string;
|
|
52
|
+
gap: string;
|
|
53
|
+
transitionDuration: string;
|
|
54
|
+
};
|
|
55
|
+
item: {
|
|
56
|
+
borderRadius: string;
|
|
57
|
+
gap: string;
|
|
58
|
+
focusRing: {
|
|
59
|
+
width: string;
|
|
60
|
+
style: string;
|
|
61
|
+
offset: string;
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
separator: {
|
|
65
|
+
size: string;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
@@ -6,6 +6,10 @@ declare namespace components {
|
|
|
6
6
|
export { tooltip };
|
|
7
7
|
export { chip };
|
|
8
8
|
export { checkbox };
|
|
9
|
+
export { breadcrumb };
|
|
10
|
+
export { slider };
|
|
11
|
+
export { divider };
|
|
12
|
+
export { radio as radiobutton };
|
|
9
13
|
}
|
|
10
14
|
import button from './button/button.js';
|
|
11
15
|
import autocomplete from './autocomplete/autocomplete.js';
|
|
@@ -13,3 +17,7 @@ import popover from './popover/popover.js';
|
|
|
13
17
|
import tooltip from './tooltip/tooltip.js';
|
|
14
18
|
import chip from './chip/chip.js';
|
|
15
19
|
import checkbox from './checkbox/checkbox.js';
|
|
20
|
+
import breadcrumb from './breadcrumb/breadcrumb.js';
|
|
21
|
+
import slider from './slider/slider.js';
|
|
22
|
+
import divider from './divider/divider.js';
|
|
23
|
+
import radio from './radio/radio.js';
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export default divider;
|
|
2
|
+
declare const divider: {
|
|
3
|
+
colorScheme: {
|
|
4
|
+
light: {
|
|
5
|
+
root: {
|
|
6
|
+
borderColor: string;
|
|
7
|
+
};
|
|
8
|
+
content: {
|
|
9
|
+
background: string;
|
|
10
|
+
color: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
dark: {
|
|
14
|
+
root: {
|
|
15
|
+
borderColor: string;
|
|
16
|
+
};
|
|
17
|
+
content: {
|
|
18
|
+
background: string;
|
|
19
|
+
color: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
horizontal: {
|
|
24
|
+
margin: string;
|
|
25
|
+
padding: string;
|
|
26
|
+
content: {
|
|
27
|
+
padding: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
vertical: {
|
|
31
|
+
margin: string;
|
|
32
|
+
padding: string;
|
|
33
|
+
content: {
|
|
34
|
+
padding: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
export default radio;
|
|
2
|
+
declare const radio: {
|
|
3
|
+
colorScheme: {
|
|
4
|
+
light: {
|
|
5
|
+
root: {
|
|
6
|
+
background: string;
|
|
7
|
+
checkedBackground: string;
|
|
8
|
+
checkedHoverBackground: string;
|
|
9
|
+
disabledBackground: string;
|
|
10
|
+
filledBackground: string;
|
|
11
|
+
borderColor: string;
|
|
12
|
+
hoverBorderColor: string;
|
|
13
|
+
focusBorderColor: string;
|
|
14
|
+
checkedBorderColor: string;
|
|
15
|
+
checkedHoverBorderColor: string;
|
|
16
|
+
checkedFocusBorderColor: string;
|
|
17
|
+
checkedDisabledBorderColor: string;
|
|
18
|
+
invalidBorderColor: string;
|
|
19
|
+
shadow: string;
|
|
20
|
+
focusRing: {
|
|
21
|
+
color: string;
|
|
22
|
+
shadow: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
icon: {
|
|
26
|
+
checkedColor: string;
|
|
27
|
+
checkedHoverColor: string;
|
|
28
|
+
disabledColor: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
dark: {
|
|
32
|
+
root: {
|
|
33
|
+
background: string;
|
|
34
|
+
checkedBackground: string;
|
|
35
|
+
checkedHoverBackground: string;
|
|
36
|
+
disabledBackground: string;
|
|
37
|
+
filledBackground: string;
|
|
38
|
+
borderColor: string;
|
|
39
|
+
hoverBorderColor: string;
|
|
40
|
+
focusBorderColor: string;
|
|
41
|
+
checkedBorderColor: string;
|
|
42
|
+
checkedHoverBorderColor: string;
|
|
43
|
+
checkedFocusBorderColor: string;
|
|
44
|
+
checkedDisabledBorderColor: string;
|
|
45
|
+
invalidBorderColor: string;
|
|
46
|
+
shadow: string;
|
|
47
|
+
focusRing: {
|
|
48
|
+
color: string;
|
|
49
|
+
shadow: string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
icon: {
|
|
53
|
+
checkedColor: string;
|
|
54
|
+
checkedHoverColor: string;
|
|
55
|
+
disabledColor: string;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
css: ({ dt }: {
|
|
60
|
+
dt: any;
|
|
61
|
+
}) => string;
|
|
62
|
+
root: {
|
|
63
|
+
width: string;
|
|
64
|
+
height: string;
|
|
65
|
+
focusRing: {
|
|
66
|
+
width: string;
|
|
67
|
+
style: string;
|
|
68
|
+
offset: string;
|
|
69
|
+
};
|
|
70
|
+
transitionDuration: string;
|
|
71
|
+
sm: {
|
|
72
|
+
width: string;
|
|
73
|
+
height: string;
|
|
74
|
+
};
|
|
75
|
+
lg: {
|
|
76
|
+
width: string;
|
|
77
|
+
height: string;
|
|
78
|
+
};
|
|
79
|
+
wrapperWidth: string;
|
|
80
|
+
wrapperHeight: string;
|
|
81
|
+
};
|
|
82
|
+
icon: {
|
|
83
|
+
size: string;
|
|
84
|
+
sm: {
|
|
85
|
+
size: string;
|
|
86
|
+
};
|
|
87
|
+
lg: {
|
|
88
|
+
size: string;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
export default slider;
|
|
2
|
+
declare const slider: {
|
|
3
|
+
colorScheme: {
|
|
4
|
+
light: {
|
|
5
|
+
track: {
|
|
6
|
+
background: string;
|
|
7
|
+
};
|
|
8
|
+
range: {
|
|
9
|
+
background: string;
|
|
10
|
+
};
|
|
11
|
+
handle: {
|
|
12
|
+
background: string;
|
|
13
|
+
hoverBackground: string;
|
|
14
|
+
content: {
|
|
15
|
+
background: string;
|
|
16
|
+
hoverBackground: string;
|
|
17
|
+
shadow: string;
|
|
18
|
+
};
|
|
19
|
+
focusRing: {
|
|
20
|
+
color: string;
|
|
21
|
+
shadow: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
dark: {
|
|
26
|
+
track: {
|
|
27
|
+
background: string;
|
|
28
|
+
};
|
|
29
|
+
range: {
|
|
30
|
+
background: string;
|
|
31
|
+
};
|
|
32
|
+
handle: {
|
|
33
|
+
background: string;
|
|
34
|
+
hoverBackground: string;
|
|
35
|
+
content: {
|
|
36
|
+
background: string;
|
|
37
|
+
hoverBackground: string;
|
|
38
|
+
shadow: string;
|
|
39
|
+
};
|
|
40
|
+
focusRing: {
|
|
41
|
+
color: string;
|
|
42
|
+
shadow: string;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
root: {
|
|
48
|
+
transitionDuration: string;
|
|
49
|
+
};
|
|
50
|
+
track: {
|
|
51
|
+
borderRadius: string;
|
|
52
|
+
size: string;
|
|
53
|
+
};
|
|
54
|
+
handle: {
|
|
55
|
+
width: string;
|
|
56
|
+
height: string;
|
|
57
|
+
borderRadius: string;
|
|
58
|
+
content: {
|
|
59
|
+
borderRadius: string;
|
|
60
|
+
width: string;
|
|
61
|
+
height: string;
|
|
62
|
+
};
|
|
63
|
+
focusRing: {
|
|
64
|
+
width: string;
|
|
65
|
+
style: string;
|
|
66
|
+
offset: string;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
};
|