@cntrl-site/components 1.0.12-alpha.22 → 1.0.12-alpha.23

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.
@@ -167,6 +167,7 @@ export declare function resolveListColumnPadding(columnWidth: number, paddingLef
167
167
  };
168
168
  export declare function getEffectiveListColumnWidths(columns: number, wrapperWidth: number, storedWidths: Record<ColumnWidthKey, number>): number[];
169
169
  export declare function resolveListColumnWidths(columns: number, wrapperWidth: number, storedWidths: Record<ColumnWidthKey, number>): number[];
170
+ export declare function applyListColumnCountChange(nextSettings: ListSettings, prevSettings: ListSettings): ListSettings;
170
171
  export declare function applyListSettingsChange(nextSettings: ListSettings, prevSettings: ListSettings, options?: {
171
172
  designWidth?: number;
172
173
  }): ListSettings;
@@ -1,4 +1,4 @@
1
- import { List } from './List';
1
+ import { List, applyListColumnCountChange } from './List';
2
2
  import { ComponentSchemaV1 } from '../../types/SchemaV1';
3
3
  export declare const ListComponent: {
4
4
  element: typeof List;
@@ -6,6 +6,7 @@ export declare const ListComponent: {
6
6
  name: string;
7
7
  category: string;
8
8
  layoutMode: "structured";
9
+ normalizeLayoutSettingsUpdate: typeof applyListColumnCountChange;
9
10
  preview: {
10
11
  type: "image";
11
12
  url: string;