@measured/puck 0.19.0-canary.fb0e8e24 → 0.19.1-canary.083aa3d5

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/dist/rsc.mjs CHANGED
@@ -1,15 +1,17 @@
1
1
  import {
2
2
  Render,
3
3
  init_react_import,
4
+ migrate,
4
5
  resolveAllData,
5
6
  transformProps,
6
7
  walkTree
7
- } from "./chunk-COT3ZFIM.mjs";
8
+ } from "./chunk-LWL5LFI5.mjs";
8
9
 
9
10
  // rsc.tsx
10
11
  init_react_import();
11
12
  export {
12
13
  Render,
14
+ migrate,
13
15
  resolveAllData,
14
16
  transformProps,
15
17
  walkTree
@@ -24,6 +24,7 @@ type BaseField = {
24
24
  label?: string;
25
25
  labelIcon?: ReactElement;
26
26
  metadata?: Metadata;
27
+ visible?: boolean;
27
28
  };
28
29
  type TextField = BaseField & {
29
30
  type: "text";
@@ -147,10 +148,14 @@ type FieldProps<F = Field<any>, ValueType = any> = {
147
148
  readOnly?: boolean;
148
149
  };
149
150
 
151
+ type SlotComponent = (props?: Omit<DropZoneProps, "zone">) => ReactNode;
150
152
  type PuckComponent<Props> = (props: WithId<WithPuckProps<{
151
- [PropName in keyof Props]: Props[PropName] extends Slot ? (props?: Omit<DropZoneProps, "zone">) => ReactNode : Props[PropName];
153
+ [K in keyof Props]: WithDeepSlots<Props[K], SlotComponent>;
152
154
  }>>) => JSX.Element;
153
155
  type ResolveDataTrigger = "insert" | "replace" | "load" | "force";
156
+ type WithPartialProps<T, Props extends DefaultComponentProps> = Omit<T, "props"> & {
157
+ props?: Partial<Props>;
158
+ };
154
159
  type ComponentConfig<RenderProps extends DefaultComponentProps = DefaultComponentProps, FieldProps extends DefaultComponentProps = RenderProps, DataShape = Omit<ComponentData<FieldProps>, "type">> = {
155
160
  render: PuckComponent<RenderProps>;
156
161
  label?: string;
@@ -175,13 +180,7 @@ type ComponentConfig<RenderProps extends DefaultComponentProps = DefaultComponen
175
180
  lastData: DataShape | null;
176
181
  metadata: Metadata;
177
182
  trigger: ResolveDataTrigger;
178
- }) => Promise<{
179
- props?: Partial<FieldProps>;
180
- readOnly?: Partial<Record<keyof FieldProps, boolean>>;
181
- }> | {
182
- props?: Partial<FieldProps>;
183
- readOnly?: Partial<Record<keyof FieldProps, boolean>>;
184
- };
183
+ }) => Promise<WithPartialProps<DataShape, FieldProps>> | WithPartialProps<DataShape, FieldProps>;
185
184
  resolvePermissions?: (data: DataShape, params: {
186
185
  changed: Partial<Record<keyof FieldProps, boolean> & {
187
186
  id: string;
@@ -239,6 +238,7 @@ type PuckContext = {
239
238
  dragRef: ((element: Element | null) => void) | null;
240
239
  };
241
240
  type DefaultRootFieldProps = {
241
+ [key: string]: any;
242
242
  title?: string;
243
243
  };
244
244
  type DefaultRootRenderProps<Props extends DefaultComponentProps = DefaultRootFieldProps> = WithPuckProps<WithChildren<Props>>;
@@ -255,13 +255,13 @@ type BaseData<Props extends {
255
255
  readOnly?: Partial<Record<keyof Props, boolean>>;
256
256
  };
257
257
  type RootDataWithProps<Props extends DefaultComponentProps = DefaultRootFieldProps> = BaseData<Props> & {
258
- props: WithPopulatedSlots<Props>;
258
+ props: Props;
259
259
  };
260
260
  type RootDataWithoutProps<Props extends DefaultComponentProps = DefaultRootFieldProps> = Props;
261
261
  type RootData<Props extends DefaultComponentProps = DefaultRootFieldProps> = Partial<RootDataWithProps<AsFieldProps<Props>>> & Partial<RootDataWithoutProps<Props>>;
262
- type ComponentData<Props extends DefaultComponentProps = DefaultComponentProps, Name = string> = {
262
+ type ComponentData<Props extends DefaultComponentProps = DefaultComponentProps, Name = string, AllProps extends Record<string, DefaultComponentProps> = Record<string, DefaultComponentProps>> = {
263
263
  type: Name;
264
- props: WithId<WithPopulatedSlots<Props>>;
264
+ props: WithDeepSlots<WithId<Props>, Content<AllProps>>;
265
265
  } & BaseData<Props>;
266
266
  type ComponentDataOptionalId<Props extends DefaultComponentProps = DefaultComponentProps, Name = string> = {
267
267
  type: Name;
@@ -270,18 +270,18 @@ type ComponentDataOptionalId<Props extends DefaultComponentProps = DefaultCompon
270
270
  };
271
271
  } & BaseData<Props>;
272
272
  type MappedItem = ComponentData;
273
- type ComponentDataMap<Props extends Record<string, DefaultComponentProps> = DefaultComponentProps> = {
274
- [K in keyof Props]: ComponentData<Props[K], K extends string ? K : never>;
275
- }[keyof Props];
273
+ type ComponentDataMap<AllProps extends DefaultAllProps = DefaultAllProps> = {
274
+ [K in keyof AllProps]: ComponentData<AllProps[K], K extends string ? K : never, AllProps>;
275
+ }[keyof AllProps];
276
276
  type Content<PropsMap extends {
277
277
  [key: string]: DefaultComponentProps;
278
278
  } = {
279
279
  [key: string]: DefaultComponentProps;
280
280
  }> = ComponentDataMap<PropsMap>[];
281
- type Data<Props extends DefaultComponentProps = DefaultComponentProps, RootProps extends DefaultComponentProps = DefaultRootFieldProps> = {
282
- root: RootData<RootProps>;
283
- content: Content<Props>;
284
- zones?: Record<string, Content<Props>>;
281
+ type Data<AllProps extends DefaultAllProps = DefaultAllProps, RootProps extends DefaultComponentProps = DefaultRootFieldProps> = {
282
+ root: WithDeepSlots<RootData<RootProps>, Content<AllProps>>;
283
+ content: Content<AllProps>;
284
+ zones?: Record<string, Content<AllProps>>;
285
285
  };
286
286
  type Metadata = {
287
287
  [key: string]: any;
@@ -345,9 +345,13 @@ type PrivateAppState<UserData extends Data = Data> = AppState<UserData> & {
345
345
  zones: ZoneIndex;
346
346
  };
347
347
  };
348
- type WithPopulatedSlots<Props extends DefaultComponentProps = DefaultComponentProps, SlotProps extends DefaultComponentProps = Props> = Props extends any ? any : {
349
- [PropName in keyof Props]: Props[PropName] extends Slot<SlotProps> ? Content<SlotProps> : Props[PropName];
350
- };
348
+ type DefaultAllProps = Record<string, DefaultComponentProps>;
349
+ /**
350
+ * Recursively walk T and replace Slots with SlotComponents
351
+ */
352
+ type WithDeepSlots<T, SlotType = T> = T extends Slot ? SlotType : T extends (infer U)[] ? Array<WithDeepSlots<U, SlotType>> : T extends (infer U)[] ? WithDeepSlots<U, SlotType>[] : T extends object ? {
353
+ [K in keyof T]: WithDeepSlots<T[K], SlotType>;
354
+ } : T;
351
355
 
352
356
  type RenderFunc<Props extends {
353
357
  [key: string]: any;
@@ -462,6 +466,7 @@ type Slot<Props extends {
462
466
  }> = {
463
467
  [K in keyof Props]: ComponentDataOptionalId<Props[K], K extends string ? K : never>;
464
468
  }[keyof Props][];
469
+ type WithSlotProps<Target extends Record<string, any>, AllProps extends DefaultAllProps = DefaultAllProps, SlotType extends Content<AllProps> = Content<AllProps>> = WithDeepSlots<Target, SlotType>;
465
470
 
466
471
  type InsertAction = {
467
472
  type: "insert";
@@ -529,6 +534,8 @@ type PuckAction = {
529
534
  recordHistory?: boolean;
530
535
  } & (ReorderAction | InsertAction | MoveAction | ReplaceAction | ReplaceRootAction | RemoveAction | DuplicateAction | SetAction | SetDataAction | SetUiAction | RegisterZoneAction | UnregisterZoneAction);
531
536
 
537
+ declare function migrate(data: Data, config?: Config): Data;
538
+
532
539
  type PropTransform<Props extends DefaultComponentProps = DefaultComponentProps, RootProps extends DefaultComponentProps = DefaultRootFieldProps> = Partial<{
533
540
  [ComponentName in keyof Props]: (props: Props[ComponentName] & {
534
541
  [key: string]: any;
@@ -538,7 +545,7 @@ type PropTransform<Props extends DefaultComponentProps = DefaultComponentProps,
538
545
  [key: string]: any;
539
546
  }) => RootProps;
540
547
  }>;
541
- declare function transformProps<Props extends DefaultComponentProps = DefaultComponentProps, RootProps extends DefaultComponentProps = DefaultRootFieldProps>(data: Partial<Data>, propTransforms: PropTransform<Props, RootProps>): Data;
548
+ declare function transformProps<Props extends DefaultComponentProps = DefaultComponentProps, RootProps extends DefaultComponentProps = DefaultRootFieldProps>(data: Partial<Data>, propTransforms: PropTransform<Props, RootProps>, config?: Config): Data;
542
549
 
543
550
  declare function resolveAllData<Props extends DefaultComponentProps = DefaultComponentProps, RootProps extends Record<string, any> = DefaultRootFieldProps>(data: Partial<Data>, config: Config, metadata?: Metadata, onResolveStart?: (item: ComponentData) => void, onResolveEnd?: (item: ComponentData) => void): Promise<Data<Props, RootProps>>;
544
551
 
@@ -548,4 +555,4 @@ type WalkTreeOptions = {
548
555
  };
549
556
  declare function walkTree<T extends ComponentData | RootData | G["UserData"], UserConfig extends Config = Config, G extends UserGenerics<UserConfig> = UserGenerics<UserConfig>>(data: T, config: UserConfig, callbackFn: (data: Content, options: WalkTreeOptions) => Content | null | void): T;
550
557
 
551
- export { type ExternalField as $, type AppState as A, type BaseData as B, type ComponentData as C, type DropZoneProps as D, type MappedItem as E, type Fields as F, type ComponentDataMap as G, type History as H, type IframeConfig as I, type Content as J, type BaseField as K, type TextareaField as L, type Metadata as M, type NumberField as N, type Overrides as O, type Permissions as P, type SelectField as Q, type RootDataWithProps as R, type Slot as S, type TextField as T, type UserGenerics as U, type Viewports as V, type RadioField as W, type ArrayField as X, type ObjectField as Y, type Adaptor as Z, type ExternalFieldWithAdaptor as _, type Config as a, type CustomFieldRender as a0, type CustomField as a1, type SlotField as a2, type PuckContext as a3, type DefaultRootFieldProps as a4, type DefaultRootRenderProps as a5, type DefaultRootProps as a6, type DefaultComponentProps as a7, type WithId as a8, type WithPuckProps as a9, type AsFieldProps as aa, type WithChildren as ab, type ExtractPropsFromConfig as ac, type ExtractRootPropsFromConfig as ad, transformProps as ae, resolveAllData as af, type PuckAction as b, type ResolveDataTrigger as c, type Plugin as d, type UiState as e, type ComponentConfig as f, type Field as g, type FieldProps as h, type Data as i, type OnAction as j, type InitialHistory as k, type ItemSelector as l, type Direction as m, type DragAxis as n, type Viewport as o, overrideKeys as p, type OverrideKey as q, type FieldRenderFunctions as r, type ItemWithId as s, type ArrayState as t, type PuckComponent as u, type RootConfig as v, walkTree as w, type RootDataWithoutProps as x, type RootData as y, type ComponentDataOptionalId as z };
558
+ export { type ExternalFieldWithAdaptor as $, type AppState as A, type BaseData as B, type ComponentData as C, type DropZoneProps as D, type MappedItem as E, type Fields as F, type ComponentDataMap as G, type History as H, type IframeConfig as I, type Content as J, type BaseField as K, type TextareaField as L, type Metadata as M, type NumberField as N, type Overrides as O, type Permissions as P, type SelectField as Q, type RootDataWithProps as R, type Slot as S, type TextField as T, type UserGenerics as U, type Viewports as V, type WithSlotProps as W, type RadioField as X, type ArrayField as Y, type ObjectField as Z, type Adaptor as _, type Config as a, type ExternalField as a0, type CustomFieldRender as a1, type CustomField as a2, type SlotField as a3, type PuckContext as a4, type DefaultRootFieldProps as a5, type DefaultRootRenderProps as a6, type DefaultRootProps as a7, type DefaultComponentProps as a8, type WithId as a9, type WithPuckProps as aa, type AsFieldProps as ab, type WithChildren as ac, type ExtractPropsFromConfig as ad, type ExtractRootPropsFromConfig as ae, migrate as af, transformProps as ag, resolveAllData as ah, type PuckAction as b, type ResolveDataTrigger as c, type Plugin as d, type UiState as e, type ComponentConfig as f, type Field as g, type FieldProps as h, type Data as i, type OnAction as j, type InitialHistory as k, type ItemSelector as l, type Direction as m, type DragAxis as n, type Viewport as o, overrideKeys as p, type OverrideKey as q, type FieldRenderFunctions as r, type ItemWithId as s, type ArrayState as t, type PuckComponent as u, type RootConfig as v, walkTree as w, type RootDataWithoutProps as x, type RootData as y, type ComponentDataOptionalId as z };
@@ -24,6 +24,7 @@ type BaseField = {
24
24
  label?: string;
25
25
  labelIcon?: ReactElement;
26
26
  metadata?: Metadata;
27
+ visible?: boolean;
27
28
  };
28
29
  type TextField = BaseField & {
29
30
  type: "text";
@@ -147,10 +148,14 @@ type FieldProps<F = Field<any>, ValueType = any> = {
147
148
  readOnly?: boolean;
148
149
  };
149
150
 
151
+ type SlotComponent = (props?: Omit<DropZoneProps, "zone">) => ReactNode;
150
152
  type PuckComponent<Props> = (props: WithId<WithPuckProps<{
151
- [PropName in keyof Props]: Props[PropName] extends Slot ? (props?: Omit<DropZoneProps, "zone">) => ReactNode : Props[PropName];
153
+ [K in keyof Props]: WithDeepSlots<Props[K], SlotComponent>;
152
154
  }>>) => JSX.Element;
153
155
  type ResolveDataTrigger = "insert" | "replace" | "load" | "force";
156
+ type WithPartialProps<T, Props extends DefaultComponentProps> = Omit<T, "props"> & {
157
+ props?: Partial<Props>;
158
+ };
154
159
  type ComponentConfig<RenderProps extends DefaultComponentProps = DefaultComponentProps, FieldProps extends DefaultComponentProps = RenderProps, DataShape = Omit<ComponentData<FieldProps>, "type">> = {
155
160
  render: PuckComponent<RenderProps>;
156
161
  label?: string;
@@ -175,13 +180,7 @@ type ComponentConfig<RenderProps extends DefaultComponentProps = DefaultComponen
175
180
  lastData: DataShape | null;
176
181
  metadata: Metadata;
177
182
  trigger: ResolveDataTrigger;
178
- }) => Promise<{
179
- props?: Partial<FieldProps>;
180
- readOnly?: Partial<Record<keyof FieldProps, boolean>>;
181
- }> | {
182
- props?: Partial<FieldProps>;
183
- readOnly?: Partial<Record<keyof FieldProps, boolean>>;
184
- };
183
+ }) => Promise<WithPartialProps<DataShape, FieldProps>> | WithPartialProps<DataShape, FieldProps>;
185
184
  resolvePermissions?: (data: DataShape, params: {
186
185
  changed: Partial<Record<keyof FieldProps, boolean> & {
187
186
  id: string;
@@ -239,6 +238,7 @@ type PuckContext = {
239
238
  dragRef: ((element: Element | null) => void) | null;
240
239
  };
241
240
  type DefaultRootFieldProps = {
241
+ [key: string]: any;
242
242
  title?: string;
243
243
  };
244
244
  type DefaultRootRenderProps<Props extends DefaultComponentProps = DefaultRootFieldProps> = WithPuckProps<WithChildren<Props>>;
@@ -255,13 +255,13 @@ type BaseData<Props extends {
255
255
  readOnly?: Partial<Record<keyof Props, boolean>>;
256
256
  };
257
257
  type RootDataWithProps<Props extends DefaultComponentProps = DefaultRootFieldProps> = BaseData<Props> & {
258
- props: WithPopulatedSlots<Props>;
258
+ props: Props;
259
259
  };
260
260
  type RootDataWithoutProps<Props extends DefaultComponentProps = DefaultRootFieldProps> = Props;
261
261
  type RootData<Props extends DefaultComponentProps = DefaultRootFieldProps> = Partial<RootDataWithProps<AsFieldProps<Props>>> & Partial<RootDataWithoutProps<Props>>;
262
- type ComponentData<Props extends DefaultComponentProps = DefaultComponentProps, Name = string> = {
262
+ type ComponentData<Props extends DefaultComponentProps = DefaultComponentProps, Name = string, AllProps extends Record<string, DefaultComponentProps> = Record<string, DefaultComponentProps>> = {
263
263
  type: Name;
264
- props: WithId<WithPopulatedSlots<Props>>;
264
+ props: WithDeepSlots<WithId<Props>, Content<AllProps>>;
265
265
  } & BaseData<Props>;
266
266
  type ComponentDataOptionalId<Props extends DefaultComponentProps = DefaultComponentProps, Name = string> = {
267
267
  type: Name;
@@ -270,18 +270,18 @@ type ComponentDataOptionalId<Props extends DefaultComponentProps = DefaultCompon
270
270
  };
271
271
  } & BaseData<Props>;
272
272
  type MappedItem = ComponentData;
273
- type ComponentDataMap<Props extends Record<string, DefaultComponentProps> = DefaultComponentProps> = {
274
- [K in keyof Props]: ComponentData<Props[K], K extends string ? K : never>;
275
- }[keyof Props];
273
+ type ComponentDataMap<AllProps extends DefaultAllProps = DefaultAllProps> = {
274
+ [K in keyof AllProps]: ComponentData<AllProps[K], K extends string ? K : never, AllProps>;
275
+ }[keyof AllProps];
276
276
  type Content<PropsMap extends {
277
277
  [key: string]: DefaultComponentProps;
278
278
  } = {
279
279
  [key: string]: DefaultComponentProps;
280
280
  }> = ComponentDataMap<PropsMap>[];
281
- type Data<Props extends DefaultComponentProps = DefaultComponentProps, RootProps extends DefaultComponentProps = DefaultRootFieldProps> = {
282
- root: RootData<RootProps>;
283
- content: Content<Props>;
284
- zones?: Record<string, Content<Props>>;
281
+ type Data<AllProps extends DefaultAllProps = DefaultAllProps, RootProps extends DefaultComponentProps = DefaultRootFieldProps> = {
282
+ root: WithDeepSlots<RootData<RootProps>, Content<AllProps>>;
283
+ content: Content<AllProps>;
284
+ zones?: Record<string, Content<AllProps>>;
285
285
  };
286
286
  type Metadata = {
287
287
  [key: string]: any;
@@ -345,9 +345,13 @@ type PrivateAppState<UserData extends Data = Data> = AppState<UserData> & {
345
345
  zones: ZoneIndex;
346
346
  };
347
347
  };
348
- type WithPopulatedSlots<Props extends DefaultComponentProps = DefaultComponentProps, SlotProps extends DefaultComponentProps = Props> = Props extends any ? any : {
349
- [PropName in keyof Props]: Props[PropName] extends Slot<SlotProps> ? Content<SlotProps> : Props[PropName];
350
- };
348
+ type DefaultAllProps = Record<string, DefaultComponentProps>;
349
+ /**
350
+ * Recursively walk T and replace Slots with SlotComponents
351
+ */
352
+ type WithDeepSlots<T, SlotType = T> = T extends Slot ? SlotType : T extends (infer U)[] ? Array<WithDeepSlots<U, SlotType>> : T extends (infer U)[] ? WithDeepSlots<U, SlotType>[] : T extends object ? {
353
+ [K in keyof T]: WithDeepSlots<T[K], SlotType>;
354
+ } : T;
351
355
 
352
356
  type RenderFunc<Props extends {
353
357
  [key: string]: any;
@@ -462,6 +466,7 @@ type Slot<Props extends {
462
466
  }> = {
463
467
  [K in keyof Props]: ComponentDataOptionalId<Props[K], K extends string ? K : never>;
464
468
  }[keyof Props][];
469
+ type WithSlotProps<Target extends Record<string, any>, AllProps extends DefaultAllProps = DefaultAllProps, SlotType extends Content<AllProps> = Content<AllProps>> = WithDeepSlots<Target, SlotType>;
465
470
 
466
471
  type InsertAction = {
467
472
  type: "insert";
@@ -529,6 +534,8 @@ type PuckAction = {
529
534
  recordHistory?: boolean;
530
535
  } & (ReorderAction | InsertAction | MoveAction | ReplaceAction | ReplaceRootAction | RemoveAction | DuplicateAction | SetAction | SetDataAction | SetUiAction | RegisterZoneAction | UnregisterZoneAction);
531
536
 
537
+ declare function migrate(data: Data, config?: Config): Data;
538
+
532
539
  type PropTransform<Props extends DefaultComponentProps = DefaultComponentProps, RootProps extends DefaultComponentProps = DefaultRootFieldProps> = Partial<{
533
540
  [ComponentName in keyof Props]: (props: Props[ComponentName] & {
534
541
  [key: string]: any;
@@ -538,7 +545,7 @@ type PropTransform<Props extends DefaultComponentProps = DefaultComponentProps,
538
545
  [key: string]: any;
539
546
  }) => RootProps;
540
547
  }>;
541
- declare function transformProps<Props extends DefaultComponentProps = DefaultComponentProps, RootProps extends DefaultComponentProps = DefaultRootFieldProps>(data: Partial<Data>, propTransforms: PropTransform<Props, RootProps>): Data;
548
+ declare function transformProps<Props extends DefaultComponentProps = DefaultComponentProps, RootProps extends DefaultComponentProps = DefaultRootFieldProps>(data: Partial<Data>, propTransforms: PropTransform<Props, RootProps>, config?: Config): Data;
542
549
 
543
550
  declare function resolveAllData<Props extends DefaultComponentProps = DefaultComponentProps, RootProps extends Record<string, any> = DefaultRootFieldProps>(data: Partial<Data>, config: Config, metadata?: Metadata, onResolveStart?: (item: ComponentData) => void, onResolveEnd?: (item: ComponentData) => void): Promise<Data<Props, RootProps>>;
544
551
 
@@ -548,4 +555,4 @@ type WalkTreeOptions = {
548
555
  };
549
556
  declare function walkTree<T extends ComponentData | RootData | G["UserData"], UserConfig extends Config = Config, G extends UserGenerics<UserConfig> = UserGenerics<UserConfig>>(data: T, config: UserConfig, callbackFn: (data: Content, options: WalkTreeOptions) => Content | null | void): T;
550
557
 
551
- export { type ExternalField as $, type AppState as A, type BaseData as B, type ComponentData as C, type DropZoneProps as D, type MappedItem as E, type Fields as F, type ComponentDataMap as G, type History as H, type IframeConfig as I, type Content as J, type BaseField as K, type TextareaField as L, type Metadata as M, type NumberField as N, type Overrides as O, type Permissions as P, type SelectField as Q, type RootDataWithProps as R, type Slot as S, type TextField as T, type UserGenerics as U, type Viewports as V, type RadioField as W, type ArrayField as X, type ObjectField as Y, type Adaptor as Z, type ExternalFieldWithAdaptor as _, type Config as a, type CustomFieldRender as a0, type CustomField as a1, type SlotField as a2, type PuckContext as a3, type DefaultRootFieldProps as a4, type DefaultRootRenderProps as a5, type DefaultRootProps as a6, type DefaultComponentProps as a7, type WithId as a8, type WithPuckProps as a9, type AsFieldProps as aa, type WithChildren as ab, type ExtractPropsFromConfig as ac, type ExtractRootPropsFromConfig as ad, transformProps as ae, resolveAllData as af, type PuckAction as b, type ResolveDataTrigger as c, type Plugin as d, type UiState as e, type ComponentConfig as f, type Field as g, type FieldProps as h, type Data as i, type OnAction as j, type InitialHistory as k, type ItemSelector as l, type Direction as m, type DragAxis as n, type Viewport as o, overrideKeys as p, type OverrideKey as q, type FieldRenderFunctions as r, type ItemWithId as s, type ArrayState as t, type PuckComponent as u, type RootConfig as v, walkTree as w, type RootDataWithoutProps as x, type RootData as y, type ComponentDataOptionalId as z };
558
+ export { type ExternalFieldWithAdaptor as $, type AppState as A, type BaseData as B, type ComponentData as C, type DropZoneProps as D, type MappedItem as E, type Fields as F, type ComponentDataMap as G, type History as H, type IframeConfig as I, type Content as J, type BaseField as K, type TextareaField as L, type Metadata as M, type NumberField as N, type Overrides as O, type Permissions as P, type SelectField as Q, type RootDataWithProps as R, type Slot as S, type TextField as T, type UserGenerics as U, type Viewports as V, type WithSlotProps as W, type RadioField as X, type ArrayField as Y, type ObjectField as Z, type Adaptor as _, type Config as a, type ExternalField as a0, type CustomFieldRender as a1, type CustomField as a2, type SlotField as a3, type PuckContext as a4, type DefaultRootFieldProps as a5, type DefaultRootRenderProps as a6, type DefaultRootProps as a7, type DefaultComponentProps as a8, type WithId as a9, type WithPuckProps as aa, type AsFieldProps as ab, type WithChildren as ac, type ExtractPropsFromConfig as ad, type ExtractRootPropsFromConfig as ae, migrate as af, transformProps as ag, resolveAllData as ah, type PuckAction as b, type ResolveDataTrigger as c, type Plugin as d, type UiState as e, type ComponentConfig as f, type Field as g, type FieldProps as h, type Data as i, type OnAction as j, type InitialHistory as k, type ItemSelector as l, type Direction as m, type DragAxis as n, type Viewport as o, overrideKeys as p, type OverrideKey as q, type FieldRenderFunctions as r, type ItemWithId as s, type ArrayState as t, type PuckComponent as u, type RootConfig as v, walkTree as w, type RootDataWithoutProps as x, type RootData as y, type ComponentDataOptionalId as z };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@measured/puck",
3
- "version": "0.19.0-canary.fb0e8e24",
3
+ "version": "0.19.1-canary.083aa3d5",
4
4
  "author": "Chris Villa <chris@puckeditor.com>",
5
5
  "repository": "measuredco/puck",
6
6
  "bugs": "https://github.com/measuredco/puck/issues",
@@ -49,9 +49,12 @@
49
49
  "dist"
50
50
  ],
51
51
  "devDependencies": {
52
+ "@juggle/resize-observer": "^3.4.0",
53
+ "@testing-library/jest-dom": "^6.6.3",
52
54
  "@testing-library/react": "^16.1.0",
53
55
  "@types/deep-diff": "^1.0.3",
54
- "@types/jest": "^29.5.4",
56
+ "@types/flat": "^5.0.5",
57
+ "@types/jest": "^29.5.14",
55
58
  "@types/object-hash": "^3.0.6",
56
59
  "@types/react": "^19.0.1",
57
60
  "@types/react-dom": "^19.0.2",
@@ -59,20 +62,22 @@
59
62
  "css-box-model": "^1.2.1",
60
63
  "eslint": "^7.32.0",
61
64
  "eslint-config-custom": "*",
62
- "jest": "^29.6.4",
63
- "jest-environment-jsdom": "^29.6.4",
65
+ "identity-obj-proxy": "^3.0.0",
66
+ "jest": "^29.7.0",
67
+ "jest-environment-jsdom": "^30.0.0-beta.3",
64
68
  "lucide-react": "^0.468.0",
65
- "ts-jest": "^29.2.4",
69
+ "ts-jest": "^29.3.4",
66
70
  "tsconfig": "*",
67
71
  "tsup": "^8.2.4",
68
72
  "tsup-config": "*",
69
73
  "typescript": "^5.5.4"
70
74
  },
71
75
  "dependencies": {
72
- "@dnd-kit/helpers": "0.0.7-beta-20250130032138",
73
- "@dnd-kit/react": "0.0.7-beta-20250130032138",
76
+ "@dnd-kit/helpers": "0.1.18",
77
+ "@dnd-kit/react": "0.1.18",
74
78
  "deep-diff": "^1.0.2",
75
79
  "fast-deep-equal": "^3.1.3",
80
+ "flat": "^5.0.2",
76
81
  "object-hash": "^3.0.0",
77
82
  "react-hotkeys-hook": "^4.6.1",
78
83
  "use-debounce": "^9.0.4",