plugin-ui-for-kzt 0.0.19 → 0.0.20

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.
Files changed (41) hide show
  1. package/dist/components/BaseButton/BaseButton.vue.d.ts +0 -2
  2. package/dist/components/BaseCalendar/BaseCalendar.vue.d.ts +9 -1
  3. package/dist/components/BaseCheckbox/BaseCheckbox.vue.d.ts +0 -2
  4. package/dist/components/BaseDropdown/BaseDropdown.vue.d.ts +0 -2
  5. package/dist/components/BaseField/BaseField.vue.d.ts +98 -0
  6. package/dist/components/BaseInput/BaseInput.vue.d.ts +16 -14
  7. package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +13 -15
  8. package/dist/components/BaseInputCurrency/BaseInputCurrency.vue.d.ts +7 -9
  9. package/dist/components/BaseInputEmail/BaseInputEmail.vue.d.ts +7 -12
  10. package/dist/components/BaseInputPhone/BaseInputPhone.vue.d.ts +7 -12
  11. package/dist/components/BaseOpenedListItem/BaseOpenedListItem.vue.d.ts +0 -2
  12. package/dist/components/BaseRadio/BaseRadio.vue.d.ts +0 -2
  13. package/dist/components/BaseSegmentedButtons/BaseSegmentedButtons.vue.d.ts +0 -2
  14. package/dist/components/BaseSiteInput/BaseSiteInput.vue.d.ts +11 -7
  15. package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +7 -12
  16. package/dist/components/BaseToggle/BaseToggle.vue.d.ts +0 -2
  17. package/dist/components/BaseTooltip/BaseTooltip.vue.d.ts +1 -1
  18. package/dist/composables/kit/state.d.ts +1 -2
  19. package/dist/index.d.ts +2 -1
  20. package/dist/index.js +1 -1
  21. package/example/App.vue +170 -128
  22. package/package.json +1 -1
  23. package/src/components/BaseField/BaseField.vue +184 -0
  24. package/src/components/BaseField/README.md +85 -0
  25. package/src/components/BaseInput/BaseInput.vue +162 -228
  26. package/src/components/BaseInputCalendar/BaseInputCalendar.vue +10 -7
  27. package/src/components/BaseInputCurrency/BaseInputCurrency.vue +39 -78
  28. package/src/components/BaseInputEmail/BaseInputEmail.vue +2 -4
  29. package/src/components/BaseInputPhone/BaseInputPhone.vue +29 -89
  30. package/src/components/BaseSelect/BaseSelect.vue +9 -52
  31. package/src/components/BaseSiteInput/BaseSiteInput.vue +11 -63
  32. package/src/components/BaseTextarea/BaseTextarea.vue +3 -30
  33. package/src/composables/kit/state.ts +1 -2
  34. package/src/index.ts +5 -2
  35. package/src/styles/index.scss +87 -2
  36. package/src/styles/root.scss +1 -0
  37. package/src/styles/variables.scss +2 -1
  38. package/src/types/calendar.d.ts +2 -0
  39. package/src/types/field.d.ts +12 -0
  40. package/src/types/input.d.ts +26 -8
  41. package/src/types/utils.d.ts +0 -1
@@ -1,30 +1,32 @@
1
1
  <template>
2
2
  <div :class="classList">
3
3
  <div class="base-input-currency__wrapper">
4
- <div class="base-input-currency__input-container">
5
- <span class="base-input-currency__symbol">{{ selectedOption.symbol }}</span>
6
- <base-input
7
- id="input-currency"
8
- type="text"
9
- :modelValue="modelValue"
10
- v-bind="componentAttrs"
11
- v-maska
12
- :data-maska="selectedOption.mask"
13
- :size="size"
14
- :placeholder="placeholder || '0.00'"
15
- class="base-input-currency__input"
16
- @update:modelValue="handleInput"
17
- ></base-input>
18
- </div>
19
- <base-select
20
- id="select-currency"
21
- v-model="selectedOptionId"
22
- :options="optionsCurrency"
4
+ <div class="base-input-currency__input-container">
5
+ <span class="base-input-currency__symbol">{{ selectedOption.symbol }}</span>
6
+ <base-input
7
+ type="text"
8
+ :id="id"
9
+ :modelValue="modelValue"
10
+ v-bind="componentAttrs"
11
+ v-maska
12
+ :data-maska="selectedOption.mask"
23
13
  :size="size"
24
- :error="error"
25
- class="base-input-currency__select"
14
+ :placeholder="placeholder || '0.00'"
15
+ :focusable="false"
16
+ class="base-input-currency__input"
17
+ @update:modelValue="handleInput"
26
18
  />
27
19
  </div>
20
+ <base-select
21
+ id="select-currency"
22
+ v-model="selectedOptionId"
23
+ :options="optionsCurrency"
24
+ :size="size"
25
+ :error="error"
26
+ class="base-input-currency__select"
27
+ >
28
+ </base-select>
29
+ </div>
28
30
  </div>
29
31
  </template>
30
32
 
@@ -35,7 +37,7 @@ import BaseInput from '../BaseInput/BaseInput.vue';
35
37
  import BaseSelect from '../BaseSelect/BaseSelect.vue';
36
38
  import { useKitState } from '../../composables/kit/state';
37
39
  import { useKitSize } from '../../composables/kit/size';
38
- import type { ICoreInputProps } from '../../types/input';
40
+ import type { ICoreInputProps, IOptionsCurrency } from '../../types/input';
39
41
 
40
42
  const props = withDefaults(defineProps<ICoreInputProps>(), {
41
43
  size: 'medium',
@@ -43,24 +45,23 @@ const props = withDefaults(defineProps<ICoreInputProps>(), {
43
45
  modelValue: '',
44
46
  placeholder: '0.00',
45
47
  error: '',
46
- hint: '',
47
48
  });
48
49
 
49
50
  const emit: (event: 'update:modelValue', value: string) => void = defineEmits();
50
51
 
51
- const optionsCurrency = ref([
52
- { id: '1', name: 'KZT', value: 'kzt', mask: '# ##0.##', symbol: '₸' },
53
- { id: '2', name: 'RUB', value: 'rub', mask: '# ##0.##', symbol: '₽' },
54
- { id: '3', name: 'KGS', value: 'kgs', mask: '# ##0.##', symbol: '⃀' },
55
- { id: '4', name: 'UZS', value: 'uzs', mask: '# ##0.##', symbol: 'сў' },
52
+ const optionsCurrency = ref<IOptionsCurrency[]>([
53
+ { id: '1', name: 'KZT', value: 'KZT', mask: '# ##0.##', symbol: '₸' },
54
+ { id: '2', name: 'RUB', value: 'RUB', mask: '# ##0.##', symbol: '₽' },
55
+ { id: '3', name: 'KGS', value: 'KGS', mask: '# ##0.##', symbol: '⃀' },
56
+ { id: '4', name: 'UZS', value: 'UZS', mask: '# ##0.##', symbol: 'сў' },
56
57
  ]);
57
58
 
58
- const selectedOption = ref(optionsCurrency.value[0]);
59
+ const selectedOption = ref<IOptionsCurrency>(optionsCurrency.value[0]);
59
60
 
60
- const selectedOptionId = ref(selectedOption.value.id);
61
+ const selectedOptionId = ref<IOptionsCurrency['id']>(selectedOption.value.id);
61
62
 
62
- watch(selectedOptionId, (newId) => {
63
- const newOption = optionsCurrency.value.find((option) => option.id === newId);
63
+ watch(selectedOptionId, (newId: IOptionsCurrency['id']) => {
64
+ const newOption = optionsCurrency.value.find((option: IOptionsCurrency) => option.id === newId);
64
65
  if (newOption) {
65
66
  selectedOption.value = newOption;
66
67
  }
@@ -71,21 +72,16 @@ const { sizeClassList } = useKitSize(props);
71
72
  const attrs = useAttrs();
72
73
 
73
74
  const componentAttrs = computed(() => ({
74
- ...attrs,
75
- ...stateAttrs.value,
76
- label: props.label,
77
- error: props.error,
78
- hint: props.hint,
79
- placeholder: props.placeholder,
75
+ ...attrs,
76
+ ...stateAttrs.value,
77
+ error: props.error,
78
+ placeholder: props.placeholder,
80
79
  }));
81
80
 
82
81
  const classList = computed(() => [
83
82
  stateClassList.value,
84
83
  sizeClassList.value,
85
- 'base-input-currency',
86
- {
87
- '--is-has-hint': !!props.hint,
88
- }
84
+ 'base-input-currency'
89
85
  ]);
90
86
 
91
87
  const modelValue = computed({
@@ -116,6 +112,7 @@ width: 100%;
116
112
  &__input-container {
117
113
  display: flex;
118
114
  align-items: center;
115
+ flex-grow: 1;
119
116
  }
120
117
 
121
118
  &__symbol {
@@ -153,14 +150,6 @@ width: 100%;
153
150
  }
154
151
 
155
152
  &.--small-size {
156
- &.--is-has-hint {
157
- #{$input} {
158
- &__select {
159
- margin-bottom: 26px;
160
- }
161
- }
162
- }
163
-
164
153
  #{$input} {
165
154
  :deep(.base-select) {
166
155
  width: 71px;
@@ -169,10 +158,6 @@ width: 100%;
169
158
  &__symbol {
170
159
  font-size: var(--typography-text-s-regular);
171
160
  }
172
-
173
- &.--is-error {
174
- margin-bottom: 26px;
175
- }
176
161
  }
177
162
 
178
163
  :deep(.base-input__field) {
@@ -181,14 +166,6 @@ width: 100%;
181
166
  }
182
167
 
183
168
  &.--medium-size {
184
- &.--is-has-hint {
185
- #{$input} {
186
- &__select {
187
- margin-bottom: 26px;
188
- }
189
- }
190
- }
191
-
192
169
  #{$input} {
193
170
  :deep(.base-select) {
194
171
  width: 75px;
@@ -197,10 +174,6 @@ width: 100%;
197
174
  &__symbol {
198
175
  font-size: var(--typography-text-m-regular);
199
176
  }
200
-
201
- &.--is-error {
202
- margin-bottom: 26px;
203
- }
204
177
  }
205
178
 
206
179
  :deep(.base-input__field) {
@@ -209,14 +182,6 @@ width: 100%;
209
182
  }
210
183
 
211
184
  &.--large-size {
212
- &.--is-has-hint {
213
- #{$input} {
214
- &__select {
215
- margin-bottom: 30px;
216
- }
217
- }
218
- }
219
-
220
185
  #{$input} {
221
186
  :deep(.base-select) {
222
187
  width: 87px;
@@ -225,10 +190,6 @@ width: 100%;
225
190
  &__symbol {
226
191
  font-size: var(--typography-text-l-regular);
227
192
  }
228
-
229
- &.--is-error {
230
- margin-bottom: 30px;
231
- }
232
193
  }
233
194
 
234
195
  :deep(.base-input__field) {
@@ -47,8 +47,6 @@ const props = withDefaults(defineProps<ICoreInputProps>(), {
47
47
  type: 'email',
48
48
  modelValue: '',
49
49
  placeholder: '' as string,
50
- error: '',
51
- hint: '',
52
50
  });
53
51
 
54
52
  const emit = defineEmits<{
@@ -64,7 +62,7 @@ function onUpdateModelValue(value: string) {
64
62
  emit('update:modelValue', value);
65
63
  }
66
64
 
67
- const emailError = ref('');
65
+ const emailError = ref<string>('');
68
66
 
69
67
  watch(modelValue, (value) => {
70
68
  if (!/^[\w\-.]+@(?:[\w\-]+\.)+[\w\-]{2,4}$/.test(String(value))) {
@@ -77,7 +75,7 @@ watch(modelValue, (value) => {
77
75
 
78
76
  <style scoped lang="scss">
79
77
  .base-input-email {
80
- width: max-content;
78
+ width: 100%;
81
79
 
82
80
  &__tooltip-container {
83
81
  position: relative;
@@ -9,11 +9,11 @@
9
9
  :error="error"
10
10
  class="base-input-phone__select"
11
11
  >
12
- <template #iconItem="{ item }: ICoreButtonProps">
13
- <base-icon
14
- :name="item.icon"
15
- :size="size"
16
- />
12
+ <template #iconItem="{ item }: IIconProps">
13
+ <base-icon
14
+ :name="item.icon"
15
+ :size="size"
16
+ />
17
17
  </template>
18
18
  </base-select>
19
19
  <base-input
@@ -24,6 +24,7 @@
24
24
  :mask="selectedOption.mask"
25
25
  :size="size"
26
26
  :placeholder="placeholder || ''"
27
+ :focusable="false"
27
28
  class="base-input-phone__input"
28
29
  @update:modelValue="handleInput"
29
30
  ></base-input>
@@ -37,40 +38,39 @@ import BaseInput from '../BaseInput/BaseInput.vue';
37
38
  import BaseSelect from '../BaseSelect/BaseSelect.vue';
38
39
  import { useKitState } from '../../composables/kit/state';
39
40
  import { useKitSize } from '../../composables/kit/size';
40
- import type { ICoreInputProps } from '../../types/input';
41
+ import type { ICoreInputProps, IOptionsPhone } from '../../types/input';
41
42
 
42
- interface ICoreButtonProps {
43
- item:{
44
- icon:string
45
- }
43
+ interface IIconProps {
44
+ item:{
45
+ icon:string
46
+ }
46
47
  }
48
+
47
49
  const props = withDefaults(defineProps<ICoreInputProps>(), {
48
50
  size: 'medium',
49
51
  type: 'text',
50
52
  modelValue: '',
51
- placeholder: '' as string,
52
- error: '',
53
- hint: '',
53
+ placeholder: '',
54
54
  });
55
55
 
56
56
  const emit: (event: 'update:modelValue', value: string) => void = defineEmits();
57
57
 
58
- const optionsPhone = ref([
59
- { id: '1', name: 'KZ', value: 'kz', mask: '+7 (###) ###-##-##', icon: 'kz' },
60
- { id: '2', name: 'RU', value: 'ru', mask: '+7 (###) ###-##-##', icon: 'ru' },
61
- { id: '3', name: 'KG', value: 'kg', mask:'+996 (###) ###-###', icon: 'kg' },
62
- { id: '4', name: 'UZ', value: 'uz', mask: '+998 (##) ###-##-##', icon: 'uz' },
58
+ const optionsPhone = ref<IOptionsPhone[]>([
59
+ { id: '1', name: 'KZ', value: 'KZ', mask: '+7 (###) ###-##-##', icon: 'KZ' },
60
+ { id: '2', name: 'RU', value: 'RU', mask: '+7 (###) ###-##-##', icon: 'RU' },
61
+ { id: '3', name: 'KG', value: 'KG', mask:'+996 (###) ###-###', icon: 'KG' },
62
+ { id: '4', name: 'UZ', value: 'UZ', mask: '+998 (##) ###-##-##', icon: 'UZ' },
63
63
  ]);
64
64
 
65
- const selectedOption = ref(optionsPhone.value[0]);
65
+ const selectedOption = ref<IOptionsPhone>(optionsPhone.value[0]);
66
66
 
67
- const selectedOptionId = ref(selectedOption.value.id);
67
+ const selectedOptionId = ref<IOptionsPhone['id']>(selectedOption.value.id);
68
68
 
69
69
  watch(selectedOptionId, (newId) => {
70
- const newOption = optionsPhone.value.find((option) => option.id === newId);
71
- if (newOption) {
72
- selectedOption.value = newOption;
73
- }
70
+ const newOption = optionsPhone.value.find((option) => option.id === newId);
71
+ if (newOption) {
72
+ selectedOption.value = newOption;
73
+ }
74
74
  });
75
75
 
76
76
  const { stateClassList, stateAttrs } = useKitState(props);
@@ -80,24 +80,20 @@ const attrs = useAttrs();
80
80
  const componentAttrs = computed(() => ({
81
81
  ...attrs,
82
82
  ...stateAttrs.value,
83
- label: props.label,
84
83
  error: props.error,
85
- hint: props.hint,
84
+ focusable: props.focusable,
86
85
  placeholder: props.placeholder,
87
86
  }));
88
87
 
89
88
  const classList = computed(() => [
90
89
  stateClassList.value,
91
90
  sizeClassList.value,
92
- 'base-input-phone',
93
- {
94
- '--is-has-hint': !!props.hint,
95
- }
91
+ 'base-input-phone'
96
92
  ]);
97
93
 
98
94
  const modelValue = computed({
99
- get: () => props.modelValue,
100
- set: value => emit('update:modelValue', value),
95
+ get: () => props.modelValue,
96
+ set: value => emit('update:modelValue', value),
101
97
  });
102
98
  const handleInput = (value: string) => {
103
99
  emit('update:modelValue', value);
@@ -126,11 +122,7 @@ const handleInput = (value: string) => {
126
122
  :deep(.base-input__field) {
127
123
  border-top-left-radius: 0 !important;
128
124
  border-bottom-left-radius: 0 !important;
129
- border-left: none;
130
- }
131
-
132
- :deep(.base-select__hint) {
133
- display: none;
125
+ border-left: none !important;
134
126
  }
135
127
  }
136
128
 
@@ -143,79 +135,27 @@ const handleInput = (value: string) => {
143
135
  }
144
136
 
145
137
  &.--small-size {
146
- &.--is-has-hint {
147
- #{$input} {
148
- &__select {
149
- margin-bottom: 26px;
150
- }
151
- }
152
- }
153
-
154
138
  #{$input} {
155
139
  :deep(.base-select) {
156
140
  width: 71px;
157
141
  }
158
-
159
- &__select {
160
- &.--is-error {
161
- margin-bottom: 26px;
162
- }
163
- }
164
- }
165
- :deep(.base-input__label-text),
166
- :deep(.base-input__hint) {
167
- transform: translateX(-54px);
168
142
  }
169
143
  }
170
144
 
171
145
  &.--medium-size {
172
- &.--is-has-hint {
173
- #{$input} {
174
- &__select {
175
- margin-bottom: 26px;
176
- }
177
- }
178
- }
179
-
180
146
  #{$input} {
181
147
  &__select {
182
148
  width: 75px;
183
-
184
- &.--is-error {
185
- margin-bottom: 26px;
186
- }
187
149
  }
188
150
  }
189
-
190
- :deep(.base-input__label-text),
191
- :deep(.base-input__hint) {
192
- transform: translateX(-75px);
193
- }
194
151
  }
195
152
 
196
153
  &.--large-size {
197
- &.--is-has-hint {
198
- #{$input} {
199
- &__select {
200
- margin-bottom: 30px;
201
- }
202
- }
203
- }
204
-
205
154
  #{$input} {
206
155
  &__select {
207
156
  width: 87px;
208
-
209
- &.--is-error {
210
- margin-bottom: 30px;
211
- }
212
157
  }
213
158
  }
214
-
215
- :deep(.base-input__label-text),
216
- :deep(.base-input__hint) {
217
- transform: translateX(-86px);
218
- }
219
159
  }
220
160
  }
221
161
  </style>
@@ -1,8 +1,6 @@
1
1
  <template>
2
2
  <div class="base-select" :class="[classList]">
3
3
  <div class="base-select__wrapper">
4
- <label v-if="label" :for="id" class="base-select__label">{{ label }}</label>
5
-
6
4
  <base-dropdown
7
5
  v-model="dropdownVisible"
8
6
  transition-name="top"
@@ -17,7 +15,7 @@
17
15
  >
18
16
  <slot
19
17
  name="header"
20
- :value="actualOption"
18
+ :value="actualOption ? [actualOption] : undefined"
21
19
  >
22
20
  <div v-if="$slots.headerIcon" class="base-select__header_prefix_icon">
23
21
  <slot name="headerIcon" />
@@ -63,7 +61,7 @@
63
61
  key-field="id"
64
62
  class="base-select__list"
65
63
  >
66
- <template #default="{ item, index, active } : SlotProps">
64
+ <template #default="{ item, index, active } : ISelectSlotProps">
67
65
  <dynamic-scroller-item
68
66
  :item="item"
69
67
  :active="active"
@@ -90,10 +88,6 @@
90
88
  </div>
91
89
  </template>
92
90
  </base-dropdown>
93
-
94
- <div v-if="(error && typeof error === 'string') || hint" class="base-select__hint">
95
- {{ error || hint }}
96
- </div>
97
91
  </div>
98
92
  </div>
99
93
  </template>
@@ -102,20 +96,13 @@
102
96
  import { computed, ref, watch } from 'vue';
103
97
  import 'vue-virtual-scroller/dist/vue-virtual-scroller.css';
104
98
  import { DynamicScroller, DynamicScrollerItem } from 'vue-virtual-scroller';
105
- import type { ICoreSelectProps, TSelectValue, ICoreSelectBaseProps } from '../../types/input';
99
+ import type { ICoreSelectProps, TSelectValue, ICoreSelectBaseProps, ICoreSelectOption, ISelectSlotProps } from '../../types/input';
106
100
  import BaseDropdown from '../BaseDropdown/BaseDropdown.vue';
107
101
  import BaseOpenedListItem from '../BaseOpenedListItem/BaseOpenedListItem.vue';
108
102
  import { useKitSize } from '../../composables/kit/size';
109
103
  import { useKitState } from '../../composables/kit/state';
110
104
  import { useKitStyle } from '../../composables/kit/style';
111
105
 
112
- // Определяем тип для slotProps
113
- interface SlotProps {
114
- item: ICoreSelectBaseProps;
115
- index: number;
116
- active: boolean;
117
- }
118
-
119
106
  const props = withDefaults(defineProps<ICoreSelectProps & {
120
107
  modelValue?: TSelectValue
121
108
  }>(), {
@@ -130,11 +117,11 @@ const emit = defineEmits<{
130
117
 
131
118
  const actualValue = ref<TSelectValue>(props.modelValue ?? '');
132
119
  const actualOption = computed(() =>
133
- props.options?.find((item: ICoreSelectBaseProps) => item.id === actualValue.value) || null
120
+ props.options?.find((item: ICoreSelectOption) => item?.id === actualValue.value) || null
134
121
  );
135
122
 
136
123
  watch(() => props.modelValue, (val) => {
137
- actualValue.value = val;
124
+ actualValue.value = val ?? '';
138
125
  }, { immediate: true });
139
126
 
140
127
  function handleInput(value: TSelectValue) {
@@ -152,7 +139,7 @@ const { styleClassList } = useKitStyle(props);
152
139
  const listItemAttrs = computed(() => (item: ICoreSelectBaseProps) => ({
153
140
  icon: item.icon,
154
141
  active: actualValue.value === item.id,
155
- title: item.name || item.label || '',
142
+ title: item.name || '',
156
143
  style: item.style,
157
144
  disabled: item.disabled,
158
145
  class: 'base-select__item',
@@ -170,8 +157,10 @@ const classList = computed(() => [
170
157
  ]);
171
158
 
172
159
  defineSlots<{
173
- default(props: SlotProps): any;
160
+ default(props: ISelectSlotProps): any;
174
161
  iconItem(props: { item: ICoreSelectBaseProps }): any;
162
+ header(props: { value: ICoreSelectProps['options'] }): any;
163
+ headerIcon(): any;
175
164
  }>();
176
165
  </script>
177
166
 
@@ -205,14 +194,6 @@ defineSlots<{
205
194
  }
206
195
 
207
196
  &.--is-error {
208
- #{$select}__hint {
209
- color: var(--error-red);
210
- }
211
-
212
- #{$select}__label {
213
- border-color: var(--error-red-light-01);
214
- }
215
-
216
197
  #{$select}__arrow > * {
217
198
  color: var(--error-red);
218
199
  }
@@ -276,14 +257,6 @@ defineSlots<{
276
257
 
277
258
  &.--small-size {
278
259
  #{$select} {
279
- &__label {
280
- font: var(--typography-text-s-medium);
281
- }
282
-
283
- &__hint {
284
- font: var(--typography-text-s-regular);
285
- }
286
-
287
260
  &__header_value {
288
261
  font: var(--typography-text-m-regular);
289
262
  }
@@ -307,14 +280,6 @@ defineSlots<{
307
280
 
308
281
  &.--medium-size {
309
282
  #{$select} {
310
- &__label {
311
- font: var(--typography-text-s-medium);
312
- }
313
-
314
- &__hint {
315
- font: var(--typography-text-s-regular);
316
- }
317
-
318
283
  &__header_value {
319
284
  font: var(--typography-text-m-regular);
320
285
  }
@@ -333,14 +298,6 @@ defineSlots<{
333
298
 
334
299
  &.--large-size {
335
300
  #{$select} {
336
- &__label {
337
- font: var(--typography-text-m-medium);
338
- }
339
-
340
- &__hint {
341
- font: var(--typography-text-m-regular);
342
- }
343
-
344
301
  &__header_value {
345
302
  font: var(--typography-text-l-regular);
346
303
  }