@salutejs/sdds-cs 0.324.0 → 0.325.0-canary.2130.16931554202.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,90 @@
1
+ ## 0.324.0 (7 августа 2025)
2
+
3
+ ## Функциональные изменения в компонентах
4
+
5
+ ### EmbedIconButton
6
+
7
+ * добавлен новый компонент
8
+
9
+ [PR](https://github.com/salute-developers/plasma/pull/2093)
10
+
11
+ ### Combobox
12
+
13
+ * исправлен баг, связанный с невозможностью получить актуальное значение поля ввода после ререндера;
14
+
15
+ [PR](https://github.com/salute-developers/plasma/pull/2101)
16
+
17
+ ### Segment
18
+
19
+ * добавлена логика задания максимальной ширины `SegmentItem` и обрезанию текста троеточием
20
+
21
+ [PR](https://github.com/salute-developers/plasma/pull/2110)
22
+
23
+ ### Autocomplete
24
+
25
+ * добавлено свойство `zIndex`;
26
+
27
+ [PR](https://github.com/salute-developers/plasma/pull/2114)
28
+
29
+ ### Tree
30
+
31
+ * добавлено свойство `autoExpandParent`, которое отвечает за автоматическое раскрытие всех родителей у элемента;
32
+
33
+ [PR](https://github.com/salute-developers/plasma/pull/2115)
34
+
35
+ ### Table
36
+
37
+ * стало возможным добавлять сложные типы данных (объекты, массивы, функции) во входных данных `data`;
38
+
39
+ [PR](https://github.com/salute-developers/plasma/pull/2111)
40
+
41
+ ### Chip
42
+
43
+ * добавлены токены отступов для `contentRight`
44
+
45
+ [PR](https://github.com/salute-developers/plasma/pull/2112)
46
+
47
+ ### Skeleton
48
+
49
+ * исправлена типизация пропсов внутри `withSkeleton`
50
+
51
+ [PR](https://github.com/salute-developers/plasma/pull/2116)
52
+
53
+ ### Notification
54
+
55
+ * Добавлена возможность указать пользовательскую иконку закрытия компонента
56
+
57
+ [PR](https://github.com/salute-developers/plasma/pull/2126)
58
+
59
+ ### Attach
60
+
61
+ * Добавлен новый параметр `customIcon`
62
+
63
+ * Расширены типы файлов с вшитыми иконками `docx` , `xlsx`
64
+
65
+ [PR](https://github.com/salute-developers/plasma/pull/2123)
66
+
67
+ ### Tokens
68
+
69
+ * Добавлена новая палитра `warmGray` с "тёплыми" оттенками серого
70
+
71
+ [PR](https://github.com/salute-developers/plasma/pull/2127)
72
+
73
+ ### Accordion
74
+
75
+ * Исправлены отступы в соответсвии с макетами
76
+
77
+ [PR](https://github.com/salute-developers/plasma/pull/2122)
78
+
79
+ ## Изменения в библиотеки
80
+
81
+ ### Tabs
82
+
83
+ * исправлен токен, отвечающий за `cursor` при наведении на TabItem
84
+
85
+ [PR](https://github.com/salute-developers/plasma/pull/2103)
86
+
87
+
1
88
  ## 0.323.2 (30 июля 2025)
2
89
 
3
90
  ## Функциональные изменения в компонентах
@@ -16,6 +16,7 @@ export declare const DatePicker: import("react").FunctionComponent<import("@salu
16
16
  required?: boolean;
17
17
  hasRequiredIndicator?: boolean;
18
18
  value?: Date | string;
19
+ preserveInvalidOnBlur?: boolean;
19
20
  defaultDate?: Date;
20
21
  placeholder?: string;
21
22
  name?: string;
@@ -56,6 +57,7 @@ export declare const DatePickerRange: import("react").FunctionComponent<import("
56
57
  required?: boolean;
57
58
  hasRequiredIndicator?: boolean;
58
59
  value?: [import("@salutejs/plasma-new-hope/types/components/Calendar/Calendar.types").DateType | string, import("@salutejs/plasma-new-hope/types/components/Calendar/Calendar.types").DateType | string];
60
+ preserveInvalidOnBlur?: boolean;
59
61
  defaultFirstDate?: Date;
60
62
  defaultSecondDate?: Date;
61
63
  name?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salutejs/sdds-cs",
3
- "version": "0.324.0",
3
+ "version": "0.325.0-canary.2130.16931554202.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.332.0",
33
+ "@salutejs/plasma-new-hope": "0.333.0-canary.2130.16931554202.0",
34
34
  "@salutejs/sdds-themes": "0.44.0"
35
35
  },
36
36
  "peerDependencies": {
@@ -123,5 +123,5 @@
123
123
  "Anton Vinogradov"
124
124
  ],
125
125
  "sideEffects": false,
126
- "gitHead": "24aa87dc8f681275e7da4d672cb54924bda2ab2c"
126
+ "gitHead": "3c6692b8d313a20cf76fdf51cbf67e61f43f1930"
127
127
  }