@salutejs/sdds-dfa 0.323.0-canary.2237.17801180282.0 → 0.323.0-canary.2237.17941275054.0
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/CHANGELOG.md +122 -0
- package/components/Avatar/Avatar.d.ts +4 -4
- package/components/Chip/Chip.config.js +6 -6
- package/components/Combobox/Combobox.config.js +4 -4
- package/components/Select/Select.config.js +1 -1
- package/components/TextField/TextField.config.js +7 -6
- package/es/components/Chip/Chip.config.js +6 -6
- package/es/components/Combobox/Combobox.config.js +4 -4
- package/es/components/Select/Select.config.js +1 -1
- package/es/components/TextField/TextField.config.js +7 -6
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,125 @@
|
|
1
|
+
## 0.322.0 (18 сентября 2025)
|
2
|
+
|
3
|
+
## Функциональные изменения в компонентах
|
4
|
+
|
5
|
+
### Drawer
|
6
|
+
|
7
|
+
* исправлен баг, при котором `unmount` компонента не очищал свойство `overflow` у `body`;
|
8
|
+
|
9
|
+
[PR](https://github.com/salute-developers/plasma/pull/2208)
|
10
|
+
|
11
|
+
* добавлена возможность задавать кастомные анимации в компоненте
|
12
|
+
|
13
|
+
[PR](https://github.com/salute-developers/plasma/pull/2222)
|
14
|
+
|
15
|
+
### Autocomplete
|
16
|
+
|
17
|
+
* добавлен дженерик для гибкой настройки `SuggestionItem`;
|
18
|
+
|
19
|
+
[PR](https://github.com/salute-developers/plasma/pull/2211)
|
20
|
+
|
21
|
+
### Dropdown
|
22
|
+
|
23
|
+
* в коллбэк `onHover` добавлен вторым аргументом `item` наведенного элемента;
|
24
|
+
|
25
|
+
[PR](https://github.com/salute-developers/plasma/pull/2212)
|
26
|
+
|
27
|
+
### Select, Combobox
|
28
|
+
|
29
|
+
* добавлено свойство `mode` со значениями `default` и `radio`;
|
30
|
+
|
31
|
+
[PR](https://github.com/salute-developers/plasma/pull/2213)
|
32
|
+
|
33
|
+
### Engine
|
34
|
+
|
35
|
+
* добавлена проверка свойств на nullable значения. Например если значение для свойства типа `view` или `size` будет указано, как `undefined`, то применится значение по-умолчанию, взятое из конфигурации компонента.
|
36
|
+
|
37
|
+
[PR](https://github.com/salute-developers/plasma/pull/2202)
|
38
|
+
|
39
|
+
### CodeField
|
40
|
+
|
41
|
+
* добавлена поддержка чтения OTP из смс
|
42
|
+
|
43
|
+
* исправлен `controlled` вариант компонента
|
44
|
+
|
45
|
+
[PR](https://github.com/salute-developers/plasma/pull/2210)
|
46
|
+
|
47
|
+
### Combobox, Select
|
48
|
+
|
49
|
+
* переработана логика работы с disabled-элементами. Теперь взаимодействие с ними изнутри компонента невозможно;
|
50
|
+
|
51
|
+
[PR](https://github.com/salute-developers/plasma/pull/2220)
|
52
|
+
|
53
|
+
* при закрытии выпадающего списка происходит скролл всех чипов в начало.
|
54
|
+
|
55
|
+
[PR](https://github.com/salute-developers/plasma/pull/2231)
|
56
|
+
|
57
|
+
### Combobox, Select, Dropdown
|
58
|
+
|
59
|
+
* разработан функционал, позволяющий корректно позиционировать вложенные выпадающие списки в контейнерах со скроллом;
|
60
|
+
|
61
|
+
[PR](https://github.com/salute-developers/plasma/pull/2205)
|
62
|
+
|
63
|
+
### Range
|
64
|
+
|
65
|
+
* добавлен размер `xl`
|
66
|
+
|
67
|
+
[PR](https://github.com/salute-developers/plasma/pull/2227)
|
68
|
+
|
69
|
+
### DatePicker
|
70
|
+
|
71
|
+
* удален автофокус инпута при закрытии выпадающего календаря
|
72
|
+
* исправлен вызов `callback` внутри `onBlur`
|
73
|
+
|
74
|
+
[PR](https://github.com/salute-developers/plasma/pull/2216)
|
75
|
+
|
76
|
+
### Popover
|
77
|
+
|
78
|
+
* исправлена генерация `id` портала
|
79
|
+
|
80
|
+
[PR](https://github.com/salute-developers/plasma/pull/2216)
|
81
|
+
|
82
|
+
### Pagination
|
83
|
+
|
84
|
+
* Добавлен пропс `helperText`
|
85
|
+
|
86
|
+
[PR](https://github.com/salute-developers/plasma/pull/2163)
|
87
|
+
|
88
|
+
### Switch
|
89
|
+
|
90
|
+
* Добавлен новый параметр `singleLine`, который влияет на перенос строки текста `label`
|
91
|
+
|
92
|
+
[PR](https://github.com/salute-developers/plasma/pull/2224)
|
93
|
+
|
94
|
+
### Tree
|
95
|
+
|
96
|
+
* добавлен DragAndDrop
|
97
|
+
|
98
|
+
[PR](https://github.com/salute-developers/plasma/pull/2214)
|
99
|
+
|
100
|
+
### Attach
|
101
|
+
|
102
|
+
* добавлен обработчик `onClick`
|
103
|
+
|
104
|
+
* добавлена возможность скрывать кнопку после прикрепления файла, с помощью `hideButtonOnAttach`
|
105
|
+
|
106
|
+
[PR](https://github.com/salute-developers/plasma/pull/2228)
|
107
|
+
|
108
|
+
### Avatar
|
109
|
+
|
110
|
+
* Добавлен новый параметр `shape`
|
111
|
+
|
112
|
+
* Обновлены тесты и документация
|
113
|
+
|
114
|
+
[PR](https://github.com/salute-developers/plasma/pull/2209)
|
115
|
+
|
116
|
+
### Skeleton
|
117
|
+
|
118
|
+
* Добавлено новое значение для `view` - `lighter`
|
119
|
+
|
120
|
+
[PR](https://github.com/salute-developers/plasma/pull/2238)
|
121
|
+
|
122
|
+
|
1
123
|
## 0.321.0 (4 сентября 2025)
|
2
124
|
|
3
125
|
## Функциональные изменения в компонентах
|
@@ -65,7 +65,7 @@ declare const mergedConfig: import("@salutejs/plasma-new-hope/styled-components"
|
|
65
65
|
light: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
66
66
|
};
|
67
67
|
}>, (import("react").HTMLAttributes<HTMLDivElement> & {
|
68
|
-
shape?:
|
68
|
+
shape?: string;
|
69
69
|
size?: string;
|
70
70
|
name?: string;
|
71
71
|
url?: string;
|
@@ -90,7 +90,7 @@ declare const mergedConfig: import("@salutejs/plasma-new-hope/styled-components"
|
|
90
90
|
count?: undefined;
|
91
91
|
maxCount?: undefined;
|
92
92
|
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & {
|
93
|
-
shape?:
|
93
|
+
shape?: string;
|
94
94
|
size?: string;
|
95
95
|
name?: string;
|
96
96
|
url?: string;
|
@@ -149,7 +149,7 @@ declare const Avatar: import("react").FunctionComponent<import("@salutejs/plasma
|
|
149
149
|
light: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
150
150
|
};
|
151
151
|
}> & ((import("react").HTMLAttributes<HTMLDivElement> & {
|
152
|
-
shape?:
|
152
|
+
shape?: string;
|
153
153
|
size?: string;
|
154
154
|
name?: string;
|
155
155
|
url?: string;
|
@@ -174,7 +174,7 @@ declare const Avatar: import("react").FunctionComponent<import("@salutejs/plasma
|
|
174
174
|
count?: undefined;
|
175
175
|
maxCount?: undefined;
|
176
176
|
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & {
|
177
|
-
shape?:
|
177
|
+
shape?: string;
|
178
178
|
size?: string;
|
179
179
|
name?: string;
|
180
180
|
url?: string;
|
@@ -33,7 +33,7 @@ function _templateObject() {
|
|
33
33
|
": var(--surface-solid-default);\n ",
|
34
34
|
": var(--inverse-text-primary);\n ",
|
35
35
|
": var(--inverse-text-secondary);\n ",
|
36
|
-
": var(--inverse-text-
|
36
|
+
": var(--inverse-text-secondary-hover);\n ",
|
37
37
|
": var(--inverse-text-primary);\n "
|
38
38
|
]);
|
39
39
|
_templateObject = function _templateObject() {
|
@@ -55,7 +55,7 @@ function _templateObject1() {
|
|
55
55
|
": var(--surface-transparent-secondary);\n ",
|
56
56
|
": var(--text-primary);\n ",
|
57
57
|
": var(--text-secondary);\n ",
|
58
|
-
": var(--text-
|
58
|
+
": var(--text-secondary-hover);\n ",
|
59
59
|
": var(--text-primary);\n "
|
60
60
|
]);
|
61
61
|
_templateObject1 = function _templateObject() {
|
@@ -77,7 +77,7 @@ function _templateObject2() {
|
|
77
77
|
": var(--surface-accent);\n ",
|
78
78
|
": var(--on-dark-text-primary);\n ",
|
79
79
|
": var(--on-dark-text-secondary);\n ",
|
80
|
-
": var(--on-dark-text-
|
80
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
81
81
|
": var(--on-dark-text-primary);\n "
|
82
82
|
]);
|
83
83
|
_templateObject2 = function _templateObject() {
|
@@ -99,7 +99,7 @@ function _templateObject3() {
|
|
99
99
|
": var(--surface-positive);\n ",
|
100
100
|
": var(--on-dark-text-primary);\n ",
|
101
101
|
": var(--on-dark-text-secondary);\n ",
|
102
|
-
": var(--on-dark-text-
|
102
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
103
103
|
": var(--on-dark-text-primary);\n "
|
104
104
|
]);
|
105
105
|
_templateObject3 = function _templateObject() {
|
@@ -121,7 +121,7 @@ function _templateObject4() {
|
|
121
121
|
": var(--surface-warning);\n ",
|
122
122
|
": var(--on-dark-text-primary);\n ",
|
123
123
|
": var(--on-dark-text-secondary);\n ",
|
124
|
-
": var(--on-dark-text-
|
124
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
125
125
|
": var(--on-dark-text-primary);\n "
|
126
126
|
]);
|
127
127
|
_templateObject4 = function _templateObject() {
|
@@ -143,7 +143,7 @@ function _templateObject5() {
|
|
143
143
|
": var(--surface-negative);\n ",
|
144
144
|
": var(--on-dark-text-primary);\n ",
|
145
145
|
": var(--on-dark-text-secondary);\n ",
|
146
|
-
": var(--on-dark-text-
|
146
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
147
147
|
": var(--on-dark-text-primary);\n "
|
148
148
|
]);
|
149
149
|
_templateObject5 = function _templateObject() {
|
@@ -42,7 +42,7 @@ function _templateObject() {
|
|
42
42
|
": var(--surface-negative);\n ",
|
43
43
|
": var(--text-tertiary);\n\n ",
|
44
44
|
": var(--text-secondary);\n ",
|
45
|
-
": var(--text-
|
45
|
+
": var(--text-secondary-hover);\n ",
|
46
46
|
": var(--text-primary);\n ",
|
47
47
|
": var(--surface-transparent-secondary);\n ",
|
48
48
|
": var(--text-primary);\n ",
|
@@ -93,7 +93,7 @@ function _templateObject1() {
|
|
93
93
|
": var(--surface-negative);\n ",
|
94
94
|
": var(--text-tertiary);\n\n ",
|
95
95
|
": var(--text-secondary);\n ",
|
96
|
-
": var(--text-
|
96
|
+
": var(--text-secondary-hover);\n ",
|
97
97
|
": var(--text-primary);\n ",
|
98
98
|
": var(--surface-transparent-secondary);\n ",
|
99
99
|
": var(--text-primary);\n ",
|
@@ -144,7 +144,7 @@ function _templateObject2() {
|
|
144
144
|
": var(--surface-negative);\n ",
|
145
145
|
": var(--text-tertiary);\n\n ",
|
146
146
|
": var(--text-secondary);\n ",
|
147
|
-
": var(--text-
|
147
|
+
": var(--text-secondary-hover);\n ",
|
148
148
|
": var(--text-primary);\n ",
|
149
149
|
": var(--surface-transparent-secondary);\n ",
|
150
150
|
": var(--text-primary);\n ",
|
@@ -195,7 +195,7 @@ function _templateObject3() {
|
|
195
195
|
": var(--surface-negative);\n ",
|
196
196
|
": var(--text-tertiary);\n\n ",
|
197
197
|
": var(--text-secondary);\n ",
|
198
|
-
": var(--text-
|
198
|
+
": var(--text-secondary-hover);\n ",
|
199
199
|
": var(--text-primary);\n ",
|
200
200
|
": var(--surface-transparent-secondary);\n ",
|
201
201
|
": var(--text-primary);\n ",
|
@@ -868,7 +868,7 @@ function _templateObject17() {
|
|
868
868
|
": var(--surface-transparent-secondary);\n ",
|
869
869
|
": var(--surface-transparent-secondary-hover);\n ",
|
870
870
|
": var(--text-secondary);\n ",
|
871
|
-
": var(--text-
|
871
|
+
": var(--text-secondary-hover);\n\n ",
|
872
872
|
": var(--surface-transparent-secondary);\n ",
|
873
873
|
": var(--text-primary);\n ",
|
874
874
|
": var(--surface-transparent-secondary);\n ",
|
@@ -596,7 +596,7 @@ function _templateObject12() {
|
|
596
596
|
": var(--surface-solid-default);\n ",
|
597
597
|
": var(--inverse-text-primary);\n\n ",
|
598
598
|
": var(--inverse-text-secondary);\n ",
|
599
|
-
": var(--inverse-text-
|
599
|
+
": var(--inverse-text-secondary-hover);\n ",
|
600
600
|
": 1;\n "
|
601
601
|
]);
|
602
602
|
_templateObject12 = function _templateObject() {
|
@@ -618,6 +618,7 @@ function _templateObject13() {
|
|
618
618
|
": var(--surface-transparent-secondary);\n ",
|
619
619
|
": var(--text-primary);\n\n ",
|
620
620
|
": var(--text-secondary);\n ",
|
621
|
+
": var(--text-secondary-hover);\n ",
|
621
622
|
": 1;\n "
|
622
623
|
]);
|
623
624
|
_templateObject13 = function _templateObject() {
|
@@ -639,7 +640,7 @@ function _templateObject14() {
|
|
639
640
|
": var(--surface-accent);\n ",
|
640
641
|
": var(--on-dark-text-primary);\n\n ",
|
641
642
|
": var(--on-dark-text-secondary);\n ",
|
642
|
-
": var(--on-dark-text-
|
643
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
643
644
|
": 1;\n "
|
644
645
|
]);
|
645
646
|
_templateObject14 = function _templateObject() {
|
@@ -661,7 +662,7 @@ function _templateObject15() {
|
|
661
662
|
": var(--surface-positive);\n ",
|
662
663
|
": var(--on-dark-text-primary);\n\n ",
|
663
664
|
": var(--on-dark-text-secondary);\n ",
|
664
|
-
": var(--on-dark-text-
|
665
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
665
666
|
": 1;\n "
|
666
667
|
]);
|
667
668
|
_templateObject15 = function _templateObject() {
|
@@ -683,7 +684,7 @@ function _templateObject16() {
|
|
683
684
|
": var(--surface-warning);\n ",
|
684
685
|
": var(--on-dark-text-primary);\n\n ",
|
685
686
|
": var(--on-dark-text-secondary);\n ",
|
686
|
-
": var(--on-dark-text-
|
687
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
687
688
|
": 1;\n "
|
688
689
|
]);
|
689
690
|
_templateObject16 = function _templateObject() {
|
@@ -705,7 +706,7 @@ function _templateObject17() {
|
|
705
706
|
": var(--surface-negative);\n ",
|
706
707
|
": var(--on-dark-text-primary);\n\n ",
|
707
708
|
": var(--on-dark-text-secondary);\n ",
|
708
|
-
": var(--on-dark-text-
|
709
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
709
710
|
": 1;\n "
|
710
711
|
]);
|
711
712
|
_templateObject17 = function _templateObject() {
|
@@ -837,7 +838,7 @@ var config = {
|
|
837
838
|
},
|
838
839
|
chipView: {
|
839
840
|
default: (0, _styledcomponents.css)(_templateObject12(), _styledcomponents.textFieldTokens.chipColor, _styledcomponents.textFieldTokens.chipBackground, _styledcomponents.textFieldTokens.chipColorHover, _styledcomponents.textFieldTokens.chipBackgroundHover, _styledcomponents.textFieldTokens.chipColorActive, _styledcomponents.textFieldTokens.chipBackgroundActive, _styledcomponents.textFieldTokens.chipBackgroundReadOnly, _styledcomponents.textFieldTokens.chipColorReadOnly, _styledcomponents.textFieldTokens.chipBackgroundReadOnlyHover, _styledcomponents.textFieldTokens.chipColorReadOnlyHover, _styledcomponents.textFieldTokens.chipCloseIconColor, _styledcomponents.textFieldTokens.chipCloseIconColorHover, _styledcomponents.textFieldTokens.chipOpacityReadonly),
|
840
|
-
secondary: (0, _styledcomponents.css)(_templateObject13(), _styledcomponents.textFieldTokens.chipColor, _styledcomponents.textFieldTokens.chipBackground, _styledcomponents.textFieldTokens.chipColorHover, _styledcomponents.textFieldTokens.chipBackgroundHover, _styledcomponents.textFieldTokens.chipColorActive, _styledcomponents.textFieldTokens.chipBackgroundActive, _styledcomponents.textFieldTokens.chipBackgroundReadOnly, _styledcomponents.textFieldTokens.chipColorReadOnly, _styledcomponents.textFieldTokens.chipBackgroundReadOnlyHover, _styledcomponents.textFieldTokens.chipColorReadOnlyHover, _styledcomponents.textFieldTokens.chipCloseIconColor, _styledcomponents.textFieldTokens.chipOpacityReadonly),
|
841
|
+
secondary: (0, _styledcomponents.css)(_templateObject13(), _styledcomponents.textFieldTokens.chipColor, _styledcomponents.textFieldTokens.chipBackground, _styledcomponents.textFieldTokens.chipColorHover, _styledcomponents.textFieldTokens.chipBackgroundHover, _styledcomponents.textFieldTokens.chipColorActive, _styledcomponents.textFieldTokens.chipBackgroundActive, _styledcomponents.textFieldTokens.chipBackgroundReadOnly, _styledcomponents.textFieldTokens.chipColorReadOnly, _styledcomponents.textFieldTokens.chipBackgroundReadOnlyHover, _styledcomponents.textFieldTokens.chipColorReadOnlyHover, _styledcomponents.textFieldTokens.chipCloseIconColor, _styledcomponents.textFieldTokens.chipCloseIconColorHover, _styledcomponents.textFieldTokens.chipOpacityReadonly),
|
841
842
|
accent: (0, _styledcomponents.css)(_templateObject14(), _styledcomponents.textFieldTokens.chipColor, _styledcomponents.textFieldTokens.chipBackground, _styledcomponents.textFieldTokens.chipColorHover, _styledcomponents.textFieldTokens.chipBackgroundHover, _styledcomponents.textFieldTokens.chipColorActive, _styledcomponents.textFieldTokens.chipBackgroundActive, _styledcomponents.textFieldTokens.chipBackgroundReadOnly, _styledcomponents.textFieldTokens.chipColorReadOnly, _styledcomponents.textFieldTokens.chipBackgroundReadOnlyHover, _styledcomponents.textFieldTokens.chipColorReadOnlyHover, _styledcomponents.textFieldTokens.chipCloseIconColor, _styledcomponents.textFieldTokens.chipCloseIconColorHover, _styledcomponents.textFieldTokens.chipOpacityReadonly),
|
842
843
|
positive: (0, _styledcomponents.css)(_templateObject15(), _styledcomponents.textFieldTokens.chipColor, _styledcomponents.textFieldTokens.chipBackground, _styledcomponents.textFieldTokens.chipColorHover, _styledcomponents.textFieldTokens.chipBackgroundHover, _styledcomponents.textFieldTokens.chipColorActive, _styledcomponents.textFieldTokens.chipBackgroundActive, _styledcomponents.textFieldTokens.chipBackgroundReadOnly, _styledcomponents.textFieldTokens.chipColorReadOnly, _styledcomponents.textFieldTokens.chipBackgroundReadOnlyHover, _styledcomponents.textFieldTokens.chipColorReadOnlyHover, _styledcomponents.textFieldTokens.chipCloseIconColor, _styledcomponents.textFieldTokens.chipCloseIconColorHover, _styledcomponents.textFieldTokens.chipOpacityReadonly),
|
843
844
|
warning: (0, _styledcomponents.css)(_templateObject16(), _styledcomponents.textFieldTokens.chipColor, _styledcomponents.textFieldTokens.chipBackground, _styledcomponents.textFieldTokens.chipColorHover, _styledcomponents.textFieldTokens.chipBackgroundHover, _styledcomponents.textFieldTokens.chipColorActive, _styledcomponents.textFieldTokens.chipBackgroundActive, _styledcomponents.textFieldTokens.chipBackgroundReadOnly, _styledcomponents.textFieldTokens.chipColorReadOnly, _styledcomponents.textFieldTokens.chipBackgroundReadOnlyHover, _styledcomponents.textFieldTokens.chipColorReadOnlyHover, _styledcomponents.textFieldTokens.chipCloseIconColor, _styledcomponents.textFieldTokens.chipCloseIconColorHover, _styledcomponents.textFieldTokens.chipOpacityReadonly),
|
@@ -22,7 +22,7 @@ function _templateObject() {
|
|
22
22
|
": var(--surface-solid-default);\n ",
|
23
23
|
": var(--inverse-text-primary);\n ",
|
24
24
|
": var(--inverse-text-secondary);\n ",
|
25
|
-
": var(--inverse-text-
|
25
|
+
": var(--inverse-text-secondary-hover);\n ",
|
26
26
|
": var(--inverse-text-primary);\n "
|
27
27
|
]);
|
28
28
|
_templateObject = function _templateObject() {
|
@@ -44,7 +44,7 @@ function _templateObject1() {
|
|
44
44
|
": var(--surface-transparent-secondary);\n ",
|
45
45
|
": var(--text-primary);\n ",
|
46
46
|
": var(--text-secondary);\n ",
|
47
|
-
": var(--text-
|
47
|
+
": var(--text-secondary-hover);\n ",
|
48
48
|
": var(--text-primary);\n "
|
49
49
|
]);
|
50
50
|
_templateObject1 = function _templateObject() {
|
@@ -66,7 +66,7 @@ function _templateObject2() {
|
|
66
66
|
": var(--surface-accent);\n ",
|
67
67
|
": var(--on-dark-text-primary);\n ",
|
68
68
|
": var(--on-dark-text-secondary);\n ",
|
69
|
-
": var(--on-dark-text-
|
69
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
70
70
|
": var(--on-dark-text-primary);\n "
|
71
71
|
]);
|
72
72
|
_templateObject2 = function _templateObject() {
|
@@ -88,7 +88,7 @@ function _templateObject3() {
|
|
88
88
|
": var(--surface-positive);\n ",
|
89
89
|
": var(--on-dark-text-primary);\n ",
|
90
90
|
": var(--on-dark-text-secondary);\n ",
|
91
|
-
": var(--on-dark-text-
|
91
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
92
92
|
": var(--on-dark-text-primary);\n "
|
93
93
|
]);
|
94
94
|
_templateObject3 = function _templateObject() {
|
@@ -110,7 +110,7 @@ function _templateObject4() {
|
|
110
110
|
": var(--surface-warning);\n ",
|
111
111
|
": var(--on-dark-text-primary);\n ",
|
112
112
|
": var(--on-dark-text-secondary);\n ",
|
113
|
-
": var(--on-dark-text-
|
113
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
114
114
|
": var(--on-dark-text-primary);\n "
|
115
115
|
]);
|
116
116
|
_templateObject4 = function _templateObject() {
|
@@ -132,7 +132,7 @@ function _templateObject5() {
|
|
132
132
|
": var(--surface-negative);\n ",
|
133
133
|
": var(--on-dark-text-primary);\n ",
|
134
134
|
": var(--on-dark-text-secondary);\n ",
|
135
|
-
": var(--on-dark-text-
|
135
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
136
136
|
": var(--on-dark-text-primary);\n "
|
137
137
|
]);
|
138
138
|
_templateObject5 = function _templateObject() {
|
@@ -31,7 +31,7 @@ function _templateObject() {
|
|
31
31
|
": var(--surface-negative);\n ",
|
32
32
|
": var(--text-tertiary);\n\n ",
|
33
33
|
": var(--text-secondary);\n ",
|
34
|
-
": var(--text-
|
34
|
+
": var(--text-secondary-hover);\n ",
|
35
35
|
": var(--text-primary);\n ",
|
36
36
|
": var(--surface-transparent-secondary);\n ",
|
37
37
|
": var(--text-primary);\n ",
|
@@ -82,7 +82,7 @@ function _templateObject1() {
|
|
82
82
|
": var(--surface-negative);\n ",
|
83
83
|
": var(--text-tertiary);\n\n ",
|
84
84
|
": var(--text-secondary);\n ",
|
85
|
-
": var(--text-
|
85
|
+
": var(--text-secondary-hover);\n ",
|
86
86
|
": var(--text-primary);\n ",
|
87
87
|
": var(--surface-transparent-secondary);\n ",
|
88
88
|
": var(--text-primary);\n ",
|
@@ -133,7 +133,7 @@ function _templateObject2() {
|
|
133
133
|
": var(--surface-negative);\n ",
|
134
134
|
": var(--text-tertiary);\n\n ",
|
135
135
|
": var(--text-secondary);\n ",
|
136
|
-
": var(--text-
|
136
|
+
": var(--text-secondary-hover);\n ",
|
137
137
|
": var(--text-primary);\n ",
|
138
138
|
": var(--surface-transparent-secondary);\n ",
|
139
139
|
": var(--text-primary);\n ",
|
@@ -184,7 +184,7 @@ function _templateObject3() {
|
|
184
184
|
": var(--surface-negative);\n ",
|
185
185
|
": var(--text-tertiary);\n\n ",
|
186
186
|
": var(--text-secondary);\n ",
|
187
|
-
": var(--text-
|
187
|
+
": var(--text-secondary-hover);\n ",
|
188
188
|
": var(--text-primary);\n ",
|
189
189
|
": var(--surface-transparent-secondary);\n ",
|
190
190
|
": var(--text-primary);\n ",
|
@@ -857,7 +857,7 @@ function _templateObject17() {
|
|
857
857
|
": var(--surface-transparent-secondary);\n ",
|
858
858
|
": var(--surface-transparent-secondary-hover);\n ",
|
859
859
|
": var(--text-secondary);\n ",
|
860
|
-
": var(--text-
|
860
|
+
": var(--text-secondary-hover);\n\n ",
|
861
861
|
": var(--surface-transparent-secondary);\n ",
|
862
862
|
": var(--text-primary);\n ",
|
863
863
|
": var(--surface-transparent-secondary);\n ",
|
@@ -585,7 +585,7 @@ function _templateObject12() {
|
|
585
585
|
": var(--surface-solid-default);\n ",
|
586
586
|
": var(--inverse-text-primary);\n\n ",
|
587
587
|
": var(--inverse-text-secondary);\n ",
|
588
|
-
": var(--inverse-text-
|
588
|
+
": var(--inverse-text-secondary-hover);\n ",
|
589
589
|
": 1;\n "
|
590
590
|
]);
|
591
591
|
_templateObject12 = function _templateObject() {
|
@@ -607,6 +607,7 @@ function _templateObject13() {
|
|
607
607
|
": var(--surface-transparent-secondary);\n ",
|
608
608
|
": var(--text-primary);\n\n ",
|
609
609
|
": var(--text-secondary);\n ",
|
610
|
+
": var(--text-secondary-hover);\n ",
|
610
611
|
": 1;\n "
|
611
612
|
]);
|
612
613
|
_templateObject13 = function _templateObject() {
|
@@ -628,7 +629,7 @@ function _templateObject14() {
|
|
628
629
|
": var(--surface-accent);\n ",
|
629
630
|
": var(--on-dark-text-primary);\n\n ",
|
630
631
|
": var(--on-dark-text-secondary);\n ",
|
631
|
-
": var(--on-dark-text-
|
632
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
632
633
|
": 1;\n "
|
633
634
|
]);
|
634
635
|
_templateObject14 = function _templateObject() {
|
@@ -650,7 +651,7 @@ function _templateObject15() {
|
|
650
651
|
": var(--surface-positive);\n ",
|
651
652
|
": var(--on-dark-text-primary);\n\n ",
|
652
653
|
": var(--on-dark-text-secondary);\n ",
|
653
|
-
": var(--on-dark-text-
|
654
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
654
655
|
": 1;\n "
|
655
656
|
]);
|
656
657
|
_templateObject15 = function _templateObject() {
|
@@ -672,7 +673,7 @@ function _templateObject16() {
|
|
672
673
|
": var(--surface-warning);\n ",
|
673
674
|
": var(--on-dark-text-primary);\n\n ",
|
674
675
|
": var(--on-dark-text-secondary);\n ",
|
675
|
-
": var(--on-dark-text-
|
676
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
676
677
|
": 1;\n "
|
677
678
|
]);
|
678
679
|
_templateObject16 = function _templateObject() {
|
@@ -694,7 +695,7 @@ function _templateObject17() {
|
|
694
695
|
": var(--surface-negative);\n ",
|
695
696
|
": var(--on-dark-text-primary);\n\n ",
|
696
697
|
": var(--on-dark-text-secondary);\n ",
|
697
|
-
": var(--on-dark-text-
|
698
|
+
": var(--on-dark-text-secondary-hover);\n ",
|
698
699
|
": 1;\n "
|
699
700
|
]);
|
700
701
|
_templateObject17 = function _templateObject() {
|
@@ -827,7 +828,7 @@ export var config = {
|
|
827
828
|
},
|
828
829
|
chipView: {
|
829
830
|
default: css(_templateObject12(), tokens.chipColor, tokens.chipBackground, tokens.chipColorHover, tokens.chipBackgroundHover, tokens.chipColorActive, tokens.chipBackgroundActive, tokens.chipBackgroundReadOnly, tokens.chipColorReadOnly, tokens.chipBackgroundReadOnlyHover, tokens.chipColorReadOnlyHover, tokens.chipCloseIconColor, tokens.chipCloseIconColorHover, tokens.chipOpacityReadonly),
|
830
|
-
secondary: css(_templateObject13(), tokens.chipColor, tokens.chipBackground, tokens.chipColorHover, tokens.chipBackgroundHover, tokens.chipColorActive, tokens.chipBackgroundActive, tokens.chipBackgroundReadOnly, tokens.chipColorReadOnly, tokens.chipBackgroundReadOnlyHover, tokens.chipColorReadOnlyHover, tokens.chipCloseIconColor, tokens.chipOpacityReadonly),
|
831
|
+
secondary: css(_templateObject13(), tokens.chipColor, tokens.chipBackground, tokens.chipColorHover, tokens.chipBackgroundHover, tokens.chipColorActive, tokens.chipBackgroundActive, tokens.chipBackgroundReadOnly, tokens.chipColorReadOnly, tokens.chipBackgroundReadOnlyHover, tokens.chipColorReadOnlyHover, tokens.chipCloseIconColor, tokens.chipCloseIconColorHover, tokens.chipOpacityReadonly),
|
831
832
|
accent: css(_templateObject14(), tokens.chipColor, tokens.chipBackground, tokens.chipColorHover, tokens.chipBackgroundHover, tokens.chipColorActive, tokens.chipBackgroundActive, tokens.chipBackgroundReadOnly, tokens.chipColorReadOnly, tokens.chipBackgroundReadOnlyHover, tokens.chipColorReadOnlyHover, tokens.chipCloseIconColor, tokens.chipCloseIconColorHover, tokens.chipOpacityReadonly),
|
832
833
|
positive: css(_templateObject15(), tokens.chipColor, tokens.chipBackground, tokens.chipColorHover, tokens.chipBackgroundHover, tokens.chipColorActive, tokens.chipBackgroundActive, tokens.chipBackgroundReadOnly, tokens.chipColorReadOnly, tokens.chipBackgroundReadOnlyHover, tokens.chipColorReadOnlyHover, tokens.chipCloseIconColor, tokens.chipCloseIconColorHover, tokens.chipOpacityReadonly),
|
833
834
|
warning: css(_templateObject16(), tokens.chipColor, tokens.chipBackground, tokens.chipColorHover, tokens.chipBackgroundHover, tokens.chipColorActive, tokens.chipBackgroundActive, tokens.chipBackgroundReadOnly, tokens.chipColorReadOnly, tokens.chipBackgroundReadOnlyHover, tokens.chipColorReadOnlyHover, tokens.chipCloseIconColor, tokens.chipCloseIconColorHover, tokens.chipOpacityReadonly),
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salutejs/sdds-dfa",
|
3
|
-
"version": "0.323.0-canary.2237.
|
3
|
+
"version": "0.323.0-canary.2237.17941275054.0",
|
4
4
|
"description": "Salute Design System / React UI kit for SDDS DFA web applications",
|
5
5
|
"author": "Salute Frontend Team <salute.developers@gmail.com>",
|
6
6
|
"license": "MIT",
|
@@ -19,7 +19,7 @@
|
|
19
19
|
"directory": "packages/sdds-dfa"
|
20
20
|
},
|
21
21
|
"dependencies": {
|
22
|
-
"@salutejs/plasma-new-hope": "0.337.0-canary.2237.
|
22
|
+
"@salutejs/plasma-new-hope": "0.337.0-canary.2237.17941275054.0",
|
23
23
|
"@salutejs/sdds-themes": "0.47.0"
|
24
24
|
},
|
25
25
|
"peerDependencies": {
|
@@ -37,10 +37,10 @@
|
|
37
37
|
"@babel/preset-typescript": "7.24.1",
|
38
38
|
"@microsoft/api-extractor": "7.38.3",
|
39
39
|
"@salutejs/plasma-colors": "0.16.0",
|
40
|
-
"@salutejs/plasma-core": "1.208.0
|
41
|
-
"@salutejs/plasma-cy-utils": "0.138.0
|
42
|
-
"@salutejs/plasma-icons": "1.224.0
|
43
|
-
"@salutejs/plasma-sb-utils": "0.208.0
|
40
|
+
"@salutejs/plasma-core": "1.208.0",
|
41
|
+
"@salutejs/plasma-cy-utils": "0.138.0",
|
42
|
+
"@salutejs/plasma-icons": "1.224.0",
|
43
|
+
"@salutejs/plasma-sb-utils": "0.208.0",
|
44
44
|
"@storybook/addon-docs": "8.6.14",
|
45
45
|
"@storybook/addon-essentials": "8.6.14",
|
46
46
|
"@storybook/manager-api": "8.6.14",
|
@@ -94,5 +94,5 @@
|
|
94
94
|
"Anton Vinogradov"
|
95
95
|
],
|
96
96
|
"sideEffects": false,
|
97
|
-
"gitHead": "
|
97
|
+
"gitHead": "c178db52ca24dd52091e42d978f02cf19a7ff214"
|
98
98
|
}
|