@cloud-ru/ds-list 2.1.4-preview-8025692f.0 → 2.1.4

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
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 2.1.4 (2026-09-14)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **FF-9049:** guard mobile droplist groups without items ([bdbe572](https://github.com/cloud-ru-tech/snack-v2/commit/bdbe572c9142739b58e480d3a23fa5350f2d757f))
11
+
6
12
  ## 2.1.3 (2026-09-10)
7
13
 
8
14
  **Note:** Version bump only for package @ds/list
package/README.md CHANGED
@@ -961,7 +961,7 @@ export function DroplistWithHeader() {
961
961
  | `footer` | `string \| number \| boolean \| ReactElement<any, string \| JSXElementConstructor<any>> \| Iterable<ReactNode> \| ReactPortal \| null \| undefined` | — | Вложенный контент (например ButtonGroup) |
962
962
  | `icon` | `IconPredefinedProps` | — | Иконка |
963
963
 
964
- - `Item` = `GroupItem | GroupSelectItem | NextListItem | PlainItem | AccordionItem`
964
+ - `Item` = `BaseItem | GroupItem | GroupSelectItem | NextListItem | AccordionItem`
965
965
 
966
966
  **ScrollProps**
967
967
 
@@ -62,10 +62,7 @@ export type BaseItem = WithSupportProps<{
62
62
  checked?: boolean;
63
63
  }>;
64
64
  type BaseItemWithoutNonGroup = Omit<BaseItem, 'switch' | 'inactive'>;
65
- type PlainItem = BaseItem & {
66
- type?: undefined;
67
- };
68
- export type Item = PlainItem | AccordionItem | NextListItem | GroupItem | GroupSelectItem;
65
+ export type Item = BaseItem | AccordionItem | NextListItem | GroupItem | GroupSelectItem;
69
66
  export type AccordionItem = BaseItemWithoutNonGroup & {
70
67
  items: Item[];
71
68
  type: typeof ITEM_TYPE.Collapse;
@@ -62,10 +62,7 @@ export type BaseItem = WithSupportProps<{
62
62
  checked?: boolean;
63
63
  }>;
64
64
  type BaseItemWithoutNonGroup = Omit<BaseItem, 'switch' | 'inactive'>;
65
- type PlainItem = BaseItem & {
66
- type?: undefined;
67
- };
68
- export type Item = PlainItem | AccordionItem | NextListItem | GroupItem | GroupSelectItem;
65
+ export type Item = BaseItem | AccordionItem | NextListItem | GroupItem | GroupSelectItem;
69
66
  export type AccordionItem = BaseItemWithoutNonGroup & {
70
67
  items: Item[];
71
68
  type: typeof ITEM_TYPE.Collapse;