@salutejs/sdds-dfa 0.322.0-canary.2205.17459950815.0 → 0.322.0-canary.2205.17469493929.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,110 @@
1
+ ## 0.321.0 (4 сентября 2025)
2
+
3
+ ## Функциональные изменения в компонентах
4
+
5
+ ### Autocomplete
6
+
7
+ * Добавлен пример очистки поля ввода
8
+
9
+ [PR](https://github.com/salute-developers/plasma/pull/2165)
10
+
11
+ * Добавлено опциональное свойство `flip`, при котором выпадающий список при недостатке места снизу может отобразиться вверху;
12
+
13
+ [PR](https://github.com/salute-developers/plasma/pull/2199)
14
+
15
+ ### Popup
16
+
17
+ * добавлено свойство `providerFrame`, которое определяет элемент, в который поместится контейнер Popupов
18
+
19
+ [PR](https://github.com/salute-developers/plasma/pull/2151)
20
+
21
+ ### DatePicker
22
+
23
+ * добавлена возможность передавать zIndex в выпадающий календарь
24
+
25
+ [PR](https://github.com/salute-developers/plasma/pull/2181)
26
+
27
+ * размеры приведены в соответствие с макетами
28
+
29
+ [PR](https://github.com/salute-developers/plasma/pull/2196)
30
+
31
+ ### Docs
32
+
33
+ * в документацию добавлен поиск на базе `typesense`
34
+
35
+ [PR](https://github.com/salute-developers/plasma/pull/2173)
36
+
37
+ ### Autocomplete, Combobox, Select
38
+
39
+ * виртуализация теперь поддерживает работу с элементами с динамической высотой;
40
+
41
+ [PR](https://github.com/salute-developers/plasma/pull/2183)
42
+
43
+ ### Carousel
44
+
45
+ * добавлено свойство `defaultIndex`, которое отвечает за показ первого слайда по-умолчанию;
46
+
47
+ [PR](https://github.com/salute-developers/plasma/pull/2175)
48
+
49
+ ### Combobox
50
+
51
+ * свойство `renderValue` теперь работает и в одиночном режиме;
52
+
53
+ [PR](https://github.com/salute-developers/plasma/pull/2172)
54
+
55
+ ### Tree
56
+
57
+ * добавлено свойство `radioMode`, включающее поведение выбора элемента как у radio-checkbox;
58
+
59
+ [PR](https://github.com/salute-developers/plasma/pull/2179)
60
+
61
+ ### Tooltip
62
+
63
+ * добавлены свойства `mouseEnterDelay` и `mouseLeaveDelay` для задержки перед открытием/закрытием подсказки;
64
+
65
+ [PR](https://github.com/salute-developers/plasma/pull/2186)
66
+
67
+ ### Tabs
68
+
69
+ * добавлен `actionContent` в `TabItem`
70
+
71
+ * добавлен `IconTabItem`
72
+
73
+ [PR](https://github.com/salute-developers/plasma/pull/2177)
74
+
75
+ ### Chip
76
+
77
+ * Добавлен размер `xxs` в `chip`
78
+
79
+ [PR](https://github.com/salute-developers/plasma/pull/2194)
80
+
81
+ ### Attach
82
+
83
+ * переработана документация компонента
84
+
85
+ * добавлены примеры взаимодействия с формой
86
+
87
+ [PR](https://github.com/salute-developers/plasma/pull/2167)
88
+
89
+ ### Drawer
90
+
91
+ * Добавили поддержку css свойства scrollbar-gutter чтобы предотвратить дергания экрана из-за наличие scrollbar
92
+
93
+ [PR](https://github.com/salute-developers/plasma/pull/2074)
94
+
95
+ ### Button
96
+
97
+ * Добавлен новый параметр `AdditionalContent`
98
+
99
+ [PR](https://github.com/salute-developers/plasma/pull/2195)
100
+
101
+ ### LinkButton
102
+
103
+ * Добавлен новый параметр `AdditionalContent`
104
+
105
+ [PR](https://github.com/salute-developers/plasma/pull/2195)
106
+
107
+
1
108
  ## 0.320.0 (21 августа 2025)
2
109
 
3
110
  ## Функциональные изменения в компонентах
@@ -22,7 +22,6 @@ declare const DropdownNewHope: React.FunctionComponent<import("@salutejs/plasma-
22
22
  openByRightClick?: boolean;
23
23
  placement?: import("@salutejs/plasma-new-hope/types/components/Dropdown/Dropdown.types").DropdownPlacement;
24
24
  offset?: [number, number];
25
- listOverflow?: React.CSSProperties["overflow"];
26
25
  listMaxHeight?: React.CSSProperties["height"];
27
26
  listWidth?: React.CSSProperties["width"];
28
27
  hasArrow?: boolean;
@@ -40,6 +39,7 @@ declare const DropdownNewHope: React.FunctionComponent<import("@salutejs/plasma-
40
39
  onItemClick?: ((item: import("@salutejs/plasma-new-hope/types/components/Dropdown").DropdownItemOption, event: React.SyntheticEvent) => void) | undefined;
41
40
  listHeight?: React.CSSProperties["height"];
42
41
  hoverIndex?: number;
42
+ listOverflow?: React.CSSProperties["overflow"];
43
43
  } & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
44
44
  export type DropdownProps<T extends DropdownItemOption> = Omit<DropdownNewProps<T>, 'size' | 'view'> & Pick<ComponentProps<typeof DropdownNewHope>, 'size' | 'view'>;
45
45
  declare const Dropdown: <T extends DropdownItemOption>(props: Omit<DropdownNewProps<T>, "size" | "view"> & Pick<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
@@ -64,7 +64,6 @@ declare const Dropdown: <T extends DropdownItemOption>(props: Omit<DropdownNewPr
64
64
  openByRightClick?: boolean;
65
65
  placement?: import("@salutejs/plasma-new-hope/types/components/Dropdown/Dropdown.types").DropdownPlacement;
66
66
  offset?: [number, number];
67
- listOverflow?: React.CSSProperties["overflow"];
68
67
  listMaxHeight?: React.CSSProperties["height"];
69
68
  listWidth?: React.CSSProperties["width"];
70
69
  hasArrow?: boolean;
@@ -82,5 +81,6 @@ declare const Dropdown: <T extends DropdownItemOption>(props: Omit<DropdownNewPr
82
81
  onItemClick?: ((item: import("@salutejs/plasma-new-hope/types/components/Dropdown").DropdownItemOption, event: React.SyntheticEvent) => void) | undefined;
83
82
  listHeight?: React.CSSProperties["height"];
84
83
  hoverIndex?: number;
84
+ listOverflow?: React.CSSProperties["overflow"];
85
85
  } & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>, "size" | "view"> & React.RefAttributes<HTMLButtonElement>) => React.ReactElement | null;
86
86
  export { Dropdown };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salutejs/sdds-dfa",
3
- "version": "0.322.0-canary.2205.17459950815.0",
3
+ "version": "0.322.0-canary.2205.17469493929.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,8 +19,8 @@
19
19
  "directory": "packages/sdds-dfa"
20
20
  },
21
21
  "dependencies": {
22
- "@salutejs/plasma-new-hope": "0.336.0-canary.2205.17459950815.0",
23
- "@salutejs/sdds-themes": "0.47.0-dev.0"
22
+ "@salutejs/plasma-new-hope": "0.336.0-canary.2205.17469493929.0",
23
+ "@salutejs/sdds-themes": "0.47.0"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "react": ">=16.13.1",
@@ -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.207.0-dev.0",
41
- "@salutejs/plasma-cy-utils": "0.137.0-dev.0",
42
- "@salutejs/plasma-icons": "1.223.0-dev.0",
43
- "@salutejs/plasma-sb-utils": "0.207.0-dev.0",
40
+ "@salutejs/plasma-core": "1.207.0",
41
+ "@salutejs/plasma-cy-utils": "0.137.0",
42
+ "@salutejs/plasma-icons": "1.223.0",
43
+ "@salutejs/plasma-sb-utils": "0.207.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": "e1787250d803e0aa6954f07a7d3c1e84610c40ef"
97
+ "gitHead": "57aebbf755dae4ce93ac4e24973af2f2897ca4f3"
98
98
  }