@salutejs/sdds-cs 0.329.0-canary.2241.18008532487.0 → 0.329.0-canary.2244.17824684419.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,125 +1,3 @@
1
- ## 0.328.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
-
123
1
  ## 0.327.0 (4 сентября 2025)
124
2
 
125
3
  ## Функциональные изменения в компонентах
@@ -43,7 +43,7 @@ declare const mergedConfig: import("@salutejs/plasma-new-hope/styled-components"
43
43
  negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
44
44
  };
45
45
  }>, (import("react").HTMLAttributes<HTMLDivElement> & {
46
- shape?: string;
46
+ shape?: "string";
47
47
  size?: string;
48
48
  name?: string;
49
49
  url?: string;
@@ -68,7 +68,7 @@ declare const mergedConfig: import("@salutejs/plasma-new-hope/styled-components"
68
68
  count?: undefined;
69
69
  maxCount?: undefined;
70
70
  } & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & {
71
- shape?: string;
71
+ shape?: "string";
72
72
  size?: string;
73
73
  name?: string;
74
74
  url?: string;
@@ -116,7 +116,7 @@ declare const Avatar: import("react").FunctionComponent<import("@salutejs/plasma
116
116
  negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
117
117
  };
118
118
  }> & ((import("react").HTMLAttributes<HTMLDivElement> & {
119
- shape?: string;
119
+ shape?: "string";
120
120
  size?: string;
121
121
  name?: string;
122
122
  url?: string;
@@ -141,7 +141,7 @@ declare const Avatar: import("react").FunctionComponent<import("@salutejs/plasma
141
141
  count?: undefined;
142
142
  maxCount?: undefined;
143
143
  } & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & {
144
- shape?: string;
144
+ shape?: "string";
145
145
  size?: string;
146
146
  name?: string;
147
147
  url?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salutejs/sdds-cs",
3
- "version": "0.329.0-canary.2241.18008532487.0",
3
+ "version": "0.329.0-canary.2244.17824684419.0",
4
4
  "description": "Salute Design System / React UI kit for SDDS CS web applications",
5
5
  "author": "Salute Frontend Team <salute.developers@gmail.com>",
6
6
  "license": "MIT",
@@ -30,7 +30,7 @@
30
30
  "directory": "packages/sdds-cs"
31
31
  },
32
32
  "dependencies": {
33
- "@salutejs/plasma-new-hope": "0.337.0-canary.2241.18008532487.0",
33
+ "@salutejs/plasma-new-hope": "0.337.0-canary.2244.17824684419.0",
34
34
  "@salutejs/sdds-themes": "0.47.0"
35
35
  },
36
36
  "peerDependencies": {
@@ -54,10 +54,10 @@
54
54
  "@microsoft/api-extractor": "7.38.3",
55
55
  "@originjs/vite-plugin-commonjs": "1.0.3",
56
56
  "@salutejs/plasma-colors": "0.16.0",
57
- "@salutejs/plasma-core": "1.209.0-canary.2241.18008532487.0",
58
- "@salutejs/plasma-cy-utils": "0.139.0-canary.2241.18008532487.0",
59
- "@salutejs/plasma-icons": "1.224.0",
60
- "@salutejs/plasma-sb-utils": "0.209.0-canary.2241.18008532487.0",
57
+ "@salutejs/plasma-core": "1.208.0-dev.0",
58
+ "@salutejs/plasma-cy-utils": "0.138.0-dev.0",
59
+ "@salutejs/plasma-icons": "1.224.0-dev.0",
60
+ "@salutejs/plasma-sb-utils": "0.208.0-dev.0",
61
61
  "@storybook/addon-docs": "8.6.14",
62
62
  "@storybook/addon-essentials": "8.6.14",
63
63
  "@storybook/manager-api": "8.6.14",
@@ -123,5 +123,5 @@
123
123
  "Anton Vinogradov"
124
124
  ],
125
125
  "sideEffects": false,
126
- "gitHead": "7bdcf0be63fcb4fbb90277b5f08ac7f6590f1742"
126
+ "gitHead": "4b0c9b1fbcefef397cc37d51cb55c8f226134535"
127
127
  }