@webitel/ui-sdk 24.10.39 → 24.10.40

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "24.10.39",
3
+ "version": "24.10.40",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -124,10 +124,18 @@ const badgeColorVar = computed(() => {
124
124
 
125
125
  <style lang="scss" scoped>
126
126
 
127
+ %wt-avatar-typo-xs {
128
+ font-size: 10px;
129
+ }
130
+
127
131
  %wt-avatar-typo-sm {
128
132
  font-size: 12px;
129
133
  }
130
134
 
135
+ %wt-avatar-typo-md {
136
+ font-size: 14px;
137
+ }
138
+
131
139
  %wt-avatar-typo-lg {
132
140
  font-size: 20px;
133
141
  }
@@ -163,6 +171,7 @@ const badgeColorVar = computed(() => {
163
171
  }
164
172
 
165
173
  &--size-xs {
174
+ @extend %wt-avatar-typo-xs;
166
175
  width: var(--wt-avatar-size--size-xs);
167
176
  height: var(--wt-avatar-size--size-xs);
168
177
  }
@@ -174,6 +183,7 @@ const badgeColorVar = computed(() => {
174
183
  }
175
184
 
176
185
  &--size-md {
186
+ @extend %wt-avatar-typo-md;
177
187
  width: var(--wt-avatar-size--size-md);
178
188
  height: var(--wt-avatar-size--size-md);
179
189
  }