@webitel/ui-sdk 25.8.54 → 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/modules/Userinfo/v2/stores/accessStore.ts +1 -4
- 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,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
|
+
};
|
|
@@ -1,106 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<nav class="wt-headline-nav">
|
|
3
|
-
<div
|
|
4
|
-
v-for="(singlePath, key) of path"
|
|
5
|
-
:key="key"
|
|
6
|
-
class="wt-headline-nav__wrapper"
|
|
7
|
-
>
|
|
8
|
-
<span
|
|
9
|
-
v-if="key !== 0"
|
|
10
|
-
class="wt-headline-nav__indicator"
|
|
11
|
-
/>
|
|
12
|
-
<h1 class="wt-headline-nav__title">
|
|
13
|
-
<router-link
|
|
14
|
-
v-if="singlePath.route"
|
|
15
|
-
:to="singlePath.route"
|
|
16
|
-
class="wt-headline-nav__text wt-headline-nav__text--link"
|
|
17
|
-
>
|
|
18
|
-
{{ singlePath.name }}
|
|
19
|
-
</router-link>
|
|
20
|
-
<span
|
|
21
|
-
v-else
|
|
22
|
-
class="wt-headline-nav__text"
|
|
23
|
-
>{{ singlePath.name }}</span
|
|
24
|
-
>
|
|
25
|
-
</h1>
|
|
26
|
-
</div>
|
|
27
|
-
</nav>
|
|
28
|
-
</template>
|
|
29
|
-
|
|
30
|
-
<script setup>
|
|
31
|
-
const props = defineProps({
|
|
32
|
-
/**
|
|
33
|
-
* PATH EXAMPLE
|
|
34
|
-
* default: () => [
|
|
35
|
-
* { name: 'directory' },
|
|
36
|
-
* { name: 'users', route: '/directory/users' },
|
|
37
|
-
* { name: 'adm', route: '/directory/users/3' },
|
|
38
|
-
* ],
|
|
39
|
-
*/
|
|
40
|
-
path: {
|
|
41
|
-
type: Array,
|
|
42
|
-
required: true,
|
|
43
|
-
},
|
|
44
|
-
});
|
|
45
|
-
</script>
|
|
46
|
-
|
|
47
|
-
<style lang="scss">
|
|
48
|
-
@use './variables.scss';
|
|
49
|
-
</style>
|
|
50
|
-
|
|
51
|
-
<style lang="scss" scoped>
|
|
52
|
-
@use '@webitel/styleguide/typography' as *;
|
|
53
|
-
|
|
54
|
-
.wt-headline-nav {
|
|
55
|
-
display: flex;
|
|
56
|
-
align-items: center;
|
|
57
|
-
gap: var(--headline-nav-gap);
|
|
58
|
-
max-width: 100%;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.wt-headline-nav__wrapper {
|
|
62
|
-
display: flex;
|
|
63
|
-
align-items: center;
|
|
64
|
-
gap: var(--headline-nav-dot-gap);
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.wt-headline-nav__indicator {
|
|
68
|
-
display: flex;
|
|
69
|
-
flex-shrink: 0;
|
|
70
|
-
justify-content: center;
|
|
71
|
-
align-items: center;
|
|
72
|
-
width: var(--icon-md-size);
|
|
73
|
-
height: var(--icon-md-size);
|
|
74
|
-
|
|
75
|
-
&:before {
|
|
76
|
-
display: block;
|
|
77
|
-
border-radius: 50%;
|
|
78
|
-
background: var(--headline-nav-indicator-color);
|
|
79
|
-
width: var(--headline-nav-indicator-size);
|
|
80
|
-
height: var(--headline-nav-indicator-size);
|
|
81
|
-
content: '';
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.wt-headline-nav__title {
|
|
86
|
-
@extend %typo-subtitle-1;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.wt-headline-nav__text {
|
|
90
|
-
color: var(--text-main-color);
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.wt-headline-nav__wrapper:last-child {
|
|
94
|
-
min-width: 0;
|
|
95
|
-
|
|
96
|
-
.wt-headline-nav__indicator {
|
|
97
|
-
&:before {
|
|
98
|
-
background: var(--headline-nav-accent-indicator-color);
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.wt-headline-nav__title {
|
|
103
|
-
word-break: break-word;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
</style>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
-
path: unknown[];
|
|
3
|
-
$props: {
|
|
4
|
-
readonly path?: unknown[];
|
|
5
|
-
};
|
|
6
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7
|
-
export default _default;
|