@webitel/ui-sdk 3.2.61 → 3.2.62
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/index.js +1 -1
- package/dist/img/sprite/options.svg +5 -0
- package/dist/ui-sdk.css +1 -1
- package/package.json +1 -1
- package/src/css/components/atoms/wt-avatar/_variables.scss +4 -2
- package/src/locale/en/en.js +2 -1
- package/src/locale/ru/ru.js +1 -0
- package/src/locale/ua/ua.js +1 -0
package/package.json
CHANGED
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
--avatar-size--size-xs: calc(var(--_spacing-multiplicator) * 3);
|
|
3
3
|
--avatar-size--size-sm: calc(var(--_spacing-multiplicator) * 4);
|
|
4
4
|
--avatar-size--size-md: calc(var(--_spacing-multiplicator) * 5);
|
|
5
|
-
--avatar-size--size-lg: calc(var(--_spacing-multiplicator) *
|
|
6
|
-
--avatar-size--size-xl: calc(var(--_spacing-multiplicator) *
|
|
5
|
+
--avatar-size--size-lg: calc(var(--_spacing-multiplicator) * 7);
|
|
6
|
+
--avatar-size--size-xl: calc(var(--_spacing-multiplicator) * 9);
|
|
7
|
+
--avatar-size--size-2xl: calc(var(--_spacing-multiplicator) * 12);
|
|
8
|
+
--avatar-size--size-3xl: calc(var(--_spacing-multiplicator) * 16);
|
|
7
9
|
|
|
8
10
|
--avatar-size: var(--avatar-size--size-md);
|
|
9
11
|
|
package/src/locale/en/en.js
CHANGED
|
@@ -92,11 +92,12 @@ export default {
|
|
|
92
92
|
reset: 'Reset',
|
|
93
93
|
errors: 'Error | Errors',
|
|
94
94
|
labels: 'Label | Labels',
|
|
95
|
+
permissions: 'Permission | Permissions',
|
|
95
96
|
},
|
|
96
97
|
// date-related texts
|
|
97
98
|
date: {
|
|
98
99
|
sec: 'Sec',
|
|
99
|
-
timezone: '
|
|
100
|
+
timezone: 'Time zone | Time zones',
|
|
100
101
|
},
|
|
101
102
|
// describes Webitel system entities
|
|
102
103
|
objects: {
|
package/src/locale/ru/ru.js
CHANGED