@salutejs/sdds-dfa 0.323.0-canary.2244.17824684419.0 → 0.323.0-canary.2244.17909508967.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 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?: "string";
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?: "string";
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?: "string";
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?: "string";
177
+ shape?: string;
178
178
  size?: string;
179
179
  name?: string;
180
180
  url?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salutejs/sdds-dfa",
3
- "version": "0.323.0-canary.2244.17824684419.0",
3
+ "version": "0.323.0-canary.2244.17909508967.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.2244.17824684419.0",
22
+ "@salutejs/plasma-new-hope": "0.337.0-canary.2244.17909508967.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-dev.0",
41
- "@salutejs/plasma-cy-utils": "0.138.0-dev.0",
42
- "@salutejs/plasma-icons": "1.224.0-dev.0",
43
- "@salutejs/plasma-sb-utils": "0.208.0-dev.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": "4b0c9b1fbcefef397cc37d51cb55c8f226134535"
97
+ "gitHead": "67629303b09ab44c3af1c217ac9abb7f2790858c"
98
98
  }