@measured/puck 0.21.0-canary.e4131567 → 0.21.0-canary.e9d5c0ea

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.
@@ -11,21 +11,24 @@ import {
11
11
  Label,
12
12
  Puck,
13
13
  Render,
14
+ blocksPlugin,
14
15
  createUsePuck,
16
+ fieldsPlugin,
17
+ outlinePlugin,
15
18
  overrideKeys,
16
19
  registerOverlayPortal,
17
20
  renderContext,
18
21
  setDeep,
19
22
  useGetPuck,
20
23
  usePuck
21
- } from "./chunk-KNAV6QTS.mjs";
24
+ } from "./chunk-J6I4S2BQ.mjs";
22
25
  import {
23
26
  init_react_import,
24
27
  migrate,
25
28
  resolveAllData,
26
29
  transformProps,
27
30
  walkTree
28
- } from "./chunk-X7YZ3YE7.mjs";
31
+ } from "./chunk-6SIKCDJJ.mjs";
29
32
 
30
33
  // bundle/no-external.ts
31
34
  init_react_import();
@@ -42,8 +45,11 @@ export {
42
45
  Label,
43
46
  Puck,
44
47
  Render,
48
+ blocksPlugin,
45
49
  createUsePuck,
50
+ fieldsPlugin,
46
51
  migrate,
52
+ outlinePlugin,
47
53
  overrideKeys,
48
54
  registerOverlayPortal,
49
55
  renderContext,
package/dist/rsc.d.mts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { C as Config, U as UserGenerics, M as Metadata } from './walk-tree-Ctf3FZQI.mjs';
3
- export { m as migrate, r as resolveAllData, t as transformProps, w as walkTree } from './walk-tree-Ctf3FZQI.mjs';
2
+ import { C as Config, U as UserGenerics, M as Metadata } from './walk-tree-CD9WQheJ.mjs';
3
+ export { m as migrate, r as resolveAllData, t as transformProps, w as walkTree } from './walk-tree-CD9WQheJ.mjs';
4
4
  import 'react';
5
5
 
6
6
  declare function Render<UserConfig extends Config = Config, G extends UserGenerics<UserConfig> = UserGenerics<UserConfig>>({ config, data, metadata, }: {
package/dist/rsc.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { C as Config, U as UserGenerics, M as Metadata } from './walk-tree-Ctf3FZQI.js';
3
- export { m as migrate, r as resolveAllData, t as transformProps, w as walkTree } from './walk-tree-Ctf3FZQI.js';
2
+ import { C as Config, U as UserGenerics, M as Metadata } from './walk-tree-CD9WQheJ.js';
3
+ export { m as migrate, r as resolveAllData, t as transformProps, w as walkTree } from './walk-tree-CD9WQheJ.js';
4
4
  import 'react';
5
5
 
6
6
  declare function Render<UserConfig extends Config = Config, G extends UserGenerics<UserConfig> = UserGenerics<UserConfig>>({ config, data, metadata, }: {
package/dist/rsc.js CHANGED
@@ -671,7 +671,8 @@ function transformProps(data, propTransforms, config = { components: {} }) {
671
671
  var defaultViewports = [
672
672
  { width: 360, height: "auto", icon: "Smartphone", label: "Small" },
673
673
  { width: 768, height: "auto", icon: "Tablet", label: "Medium" },
674
- { width: 1280, height: "auto", icon: "Monitor", label: "Large" }
674
+ { width: 1280, height: "auto", icon: "Monitor", label: "Large" },
675
+ { width: "100%", height: "auto", icon: "FullWidth", label: "Full-width" }
675
676
  ];
676
677
 
677
678
  // store/default-app-state.ts
@@ -693,7 +694,8 @@ var defaultAppState = {
693
694
  options: [],
694
695
  controlsVisible: true
695
696
  },
696
- field: { focus: null }
697
+ field: { focus: null },
698
+ plugin: { current: null }
697
699
  },
698
700
  indexes: {
699
701
  nodes: {},
package/dist/rsc.mjs CHANGED
@@ -12,7 +12,7 @@ import {
12
12
  transformProps,
13
13
  useSlots,
14
14
  walkTree
15
- } from "./chunk-X7YZ3YE7.mjs";
15
+ } from "./chunk-6SIKCDJJ.mjs";
16
16
 
17
17
  // bundle/rsc.tsx
18
18
  init_react_import();
@@ -10,63 +10,63 @@ type FieldOption = {
10
10
  value: string | number | boolean | undefined | null | object;
11
11
  };
12
12
  type FieldOptions = Array<FieldOption> | ReadonlyArray<FieldOption>;
13
- type BaseField = {
13
+ interface BaseField {
14
14
  label?: string;
15
15
  labelIcon?: ReactElement;
16
- metadata?: Metadata;
16
+ metadata?: FieldMetadata;
17
17
  visible?: boolean;
18
- };
19
- type TextField = BaseField & {
18
+ }
19
+ interface TextField extends BaseField {
20
20
  type: "text";
21
21
  placeholder?: string;
22
22
  contentEditable?: boolean;
23
- };
24
- type NumberField = BaseField & {
23
+ }
24
+ interface NumberField extends BaseField {
25
25
  type: "number";
26
26
  placeholder?: string;
27
27
  min?: number;
28
28
  max?: number;
29
29
  step?: number;
30
- };
31
- type TextareaField = BaseField & {
30
+ }
31
+ interface TextareaField extends BaseField {
32
32
  type: "textarea";
33
33
  placeholder?: string;
34
34
  contentEditable?: boolean;
35
- };
36
- type SelectField = BaseField & {
35
+ }
36
+ interface SelectField extends BaseField {
37
37
  type: "select";
38
38
  options: FieldOptions;
39
- };
40
- type RadioField = BaseField & {
39
+ }
40
+ interface RadioField extends BaseField {
41
41
  type: "radio";
42
42
  options: FieldOptions;
43
- };
44
- type ArrayField<Props extends {
43
+ }
44
+ interface ArrayField<Props extends {
45
45
  [key: string]: any;
46
46
  }[] = {
47
47
  [key: string]: any;
48
- }[], UserField extends {} = {}> = BaseField & {
48
+ }[], UserField extends {} = {}> extends BaseField {
49
49
  type: "array";
50
50
  arrayFields: {
51
51
  [SubPropName in keyof Props[0]]: UserField extends {
52
52
  type: PropertyKey;
53
53
  } ? Field<Props[0][SubPropName], UserField> | UserField : Field<Props[0][SubPropName], UserField>;
54
54
  };
55
- defaultItemProps?: Props[0];
55
+ defaultItemProps?: Props[0] | ((index: number) => Props[0]);
56
56
  getItemSummary?: (item: Props[0], index?: number) => string;
57
57
  max?: number;
58
58
  min?: number;
59
- };
60
- type ObjectField<Props extends any = {
59
+ }
60
+ interface ObjectField<Props extends any = {
61
61
  [key: string]: any;
62
- }, UserField extends {} = {}> = BaseField & {
62
+ }, UserField extends {} = {}> extends BaseField {
63
63
  type: "object";
64
64
  objectFields: {
65
65
  [SubPropName in keyof Props]: UserField extends {
66
66
  type: PropertyKey;
67
67
  } ? Field<Props[SubPropName]> | UserField : Field<Props[SubPropName]>;
68
68
  };
69
- };
69
+ }
70
70
  type Adaptor<AdaptorParams = {}, TableShape extends Record<string, any> = {}, PropShape = TableShape> = {
71
71
  name: string;
72
72
  fetchList: (adaptorParams?: AdaptorParams) => Promise<TableShape[] | null>;
@@ -82,10 +82,14 @@ type ExternalFieldWithAdaptor<Props extends any = {
82
82
  adaptorParams?: object;
83
83
  getItemSummary: (item: NotUndefined<Props>, index?: number) => string;
84
84
  };
85
- type ExternalField<Props extends any = {
85
+ type CacheOpts = {
86
+ enabled?: boolean;
87
+ };
88
+ interface ExternalField<Props extends any = {
86
89
  [key: string]: any;
87
- }> = BaseField & {
90
+ }> extends BaseField {
88
91
  type: "external";
92
+ cache?: CacheOpts;
89
93
  placeholder?: string;
90
94
  fetchList: (params: {
91
95
  query: string;
@@ -101,7 +105,7 @@ type ExternalField<Props extends any = {
101
105
  initialQuery?: string;
102
106
  filterFields?: Record<string, Field>;
103
107
  initialFilters?: Record<string, any>;
104
- };
108
+ }
105
109
  type CustomFieldRender<Value extends any> = (props: {
106
110
  field: CustomField<Value>;
107
111
  name: string;
@@ -110,16 +114,16 @@ type CustomFieldRender<Value extends any> = (props: {
110
114
  onChange: (value: Value) => void;
111
115
  readOnly?: boolean;
112
116
  }) => ReactElement;
113
- type CustomField<Value extends any> = BaseField & {
117
+ interface CustomField<Value extends any> extends BaseField {
114
118
  type: "custom";
115
119
  render: CustomFieldRender<Value>;
116
120
  contentEditable?: boolean;
117
- };
118
- type SlotField = BaseField & {
121
+ }
122
+ interface SlotField extends BaseField {
119
123
  type: "slot";
120
124
  allow?: string[];
121
125
  disallow?: string[];
122
- };
126
+ }
123
127
  type Field<ValueType = any, UserField extends {} = {}> = TextField | NumberField | TextareaField | SelectField | RadioField | ArrayField<ValueType extends {
124
128
  [key: string]: any;
125
129
  }[] ? ValueType : never, UserField> | ObjectField<ValueType, UserField> | ExternalField<ValueType> | ExternalFieldWithAdaptor<ValueType> | CustomField<ValueType> | SlotField;
@@ -147,7 +151,7 @@ type DropZoneProps = {
147
151
  };
148
152
 
149
153
  type PuckContext = {
150
- renderDropZone: React.FC<DropZoneProps>;
154
+ renderDropZone: (props: DropZoneProps) => React.ReactNode;
151
155
  metadata: Metadata;
152
156
  isEditing: boolean;
153
157
  dragRef: ((element: Element | null) => void) | null;
@@ -197,6 +201,8 @@ type ResolveDataTrigger = "insert" | "replace" | "load" | "force";
197
201
  type WithPartialProps<T, Props extends DefaultComponentProps> = Omit<T, "props"> & {
198
202
  props?: Partial<Props>;
199
203
  };
204
+ interface ComponentConfigExtensions {
205
+ }
200
206
  type ComponentConfigInternal<RenderProps extends DefaultComponentProps, FieldProps extends DefaultComponentProps, DataShape = Omit<ComponentData<FieldProps>, "type">, // NB this doesn't include AllProps, so types will not contain deep slot types. To fix, we require a breaking change.
201
207
  UserField extends BaseField = {}> = {
202
208
  render: PuckComponent<RenderProps>;
@@ -212,7 +218,7 @@ UserField extends BaseField = {}> = {
212
218
  fields: Fields<FieldProps>;
213
219
  lastFields: Fields<FieldProps>;
214
220
  lastData: DataShape | null;
215
- metadata: Metadata;
221
+ metadata: ComponentMetadata;
216
222
  appState: AppState;
217
223
  parent: ComponentData | null;
218
224
  }) => Promise<Fields<FieldProps>> | Fields<FieldProps>;
@@ -221,7 +227,7 @@ UserField extends BaseField = {}> = {
221
227
  id: string;
222
228
  }>;
223
229
  lastData: DataShape | null;
224
- metadata: Metadata;
230
+ metadata: ComponentMetadata;
225
231
  trigger: ResolveDataTrigger;
226
232
  }) => Promise<WithPartialProps<DataShape, FieldProps>> | WithPartialProps<DataShape, FieldProps>;
227
233
  resolvePermissions?: (data: DataShape, params: {
@@ -233,8 +239,8 @@ UserField extends BaseField = {}> = {
233
239
  appState: AppState;
234
240
  lastData: DataShape | null;
235
241
  }) => Promise<Partial<Permissions>> | Partial<Permissions>;
236
- metadata?: Metadata;
237
- };
242
+ metadata?: ComponentMetadata;
243
+ } & ComponentConfigExtensions;
238
244
  type ComponentConfig<RenderPropsOrParams extends LeftOrExactRight<RenderPropsOrParams, DefaultComponentProps, ComponentConfigParams> = DefaultComponentProps, FieldProps extends DefaultComponentProps = RenderPropsOrParams extends {
239
245
  props: any;
240
246
  } ? RenderPropsOrParams["props"] : RenderPropsOrParams, DataShape = Omit<ComponentData<FieldProps>, "type">> = RenderPropsOrParams extends ComponentConfigParams<infer ParamsRenderProps, never> ? ComponentConfigInternal<ParamsRenderProps, FieldProps, DataShape, {}> : RenderPropsOrParams extends ComponentConfigParams<infer ParamsRenderProps, infer ParamsFields> ? ComponentConfigInternal<ParamsRenderProps, FieldProps, DataShape, ParamsFields[keyof ParamsFields] & BaseField> : ComponentConfigInternal<RenderPropsOrParams, FieldProps, DataShape>;
@@ -265,6 +271,16 @@ type ExtractConfigParams<UserConfig extends ConfigInternal> = UserConfig extends
265
271
  type: string;
266
272
  } ? UserField : Field;
267
273
  } : never;
274
+ type ConfigParams<Components extends DefaultComponents = DefaultComponents, RootProps extends DefaultComponentProps = any, CategoryNames extends string[] = string[], UserFields extends FieldsExtension = FieldsExtension> = {
275
+ components?: Components;
276
+ root?: RootProps;
277
+ categories?: CategoryNames;
278
+ fields?: AssertHasValue<UserFields>;
279
+ };
280
+ type ComponentConfigParams<Props extends DefaultComponentProps = DefaultComponentProps, UserFields extends FieldsExtension = never> = {
281
+ props: Props;
282
+ fields?: AssertHasValue<UserFields>;
283
+ };
268
284
 
269
285
  type BaseData<Props extends {
270
286
  [key: string]: any;
@@ -305,10 +321,17 @@ type Data<Components extends DefaultComponents = DefaultComponents, RootProps ex
305
321
  type Metadata = {
306
322
  [key: string]: any;
307
323
  };
324
+ interface PuckMetadata extends Metadata {
325
+ }
326
+ interface ComponentMetadata extends PuckMetadata {
327
+ }
328
+ interface FieldMetadata extends Metadata {
329
+ }
308
330
 
309
331
  type ItemWithId = {
310
332
  _arrayId: string;
311
333
  _originalIndex: number;
334
+ _currentIndex: number;
312
335
  };
313
336
  type ArrayState = {
314
337
  items: ItemWithId[];
@@ -319,6 +342,7 @@ type UiState = {
319
342
  rightSideBarVisible: boolean;
320
343
  leftSideBarWidth?: number | null;
321
344
  rightSideBarWidth?: number | null;
345
+ mobilePanelExpanded?: boolean;
322
346
  itemSelector: ItemSelector | null;
323
347
  arrayState: Record<string, ArrayState | undefined>;
324
348
  previewMode: "interactive" | "edit";
@@ -331,7 +355,7 @@ type UiState = {
331
355
  isDragging: boolean;
332
356
  viewports: {
333
357
  current: {
334
- width: number;
358
+ width: number | "100%";
335
359
  height: number | "auto";
336
360
  };
337
361
  controlsVisible: boolean;
@@ -340,6 +364,9 @@ type UiState = {
340
364
  field: {
341
365
  focus?: string | null;
342
366
  };
367
+ plugin: {
368
+ current: string | null;
369
+ };
343
370
  };
344
371
  type AppState<UserData extends Data = Data> = {
345
372
  data: UserData;
@@ -373,26 +400,24 @@ type BuiltinTypes = Date | RegExp | Error | Function | symbol | null | undefined
373
400
  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 BuiltinTypes ? T : T extends object ? {
374
401
  [K in keyof T]: WithDeepSlots<T[K], SlotType>;
375
402
  } : T;
376
- type ConfigParams<Components extends DefaultComponents = DefaultComponents, RootProps extends DefaultComponentProps = any, CategoryNames extends string[] = string[], UserFields extends FieldsExtension = FieldsExtension> = {
377
- components?: Components;
378
- root?: RootProps;
379
- categories?: CategoryNames;
380
- fields?: AssertHasValue<UserFields>;
381
- };
382
403
  type FieldsExtension = {
383
404
  [Type in string]: {
384
405
  type: Type;
385
406
  };
386
407
  };
387
- type ComponentConfigParams<Props extends DefaultComponentProps = DefaultComponentProps, UserFields extends FieldsExtension = never> = {
388
- props: Props;
389
- fields?: AssertHasValue<UserFields>;
390
- };
391
408
  type Exact<T, Target> = Record<Exclude<keyof T, keyof Target>, never>;
392
409
  type LeftOrExactRight<Union, Left, Right> = (Left & Union extends Right ? Exact<Union, Right> : Left) | (Right & Exact<Union, Right>);
393
410
  type AssertHasValue<T, True = T, False = never> = [keyof T] extends [
394
411
  never
395
412
  ] ? False : True;
413
+ type RenderFunc<Props extends {
414
+ [key: string]: any;
415
+ } = {
416
+ children: ReactNode;
417
+ }> = (props: Props) => ReactElement;
418
+ type PluginInternal = Plugin & {
419
+ mobileOnly?: boolean;
420
+ };
396
421
 
397
422
  type MapFnParams<ThisField = Field> = {
398
423
  value: any;
@@ -416,11 +441,6 @@ G extends UserGenerics<UserConfig> = UserGenerics<UserConfig>, UserField extends
416
441
  [Type in UserField["type"]]: FieldTransformFn<ExtractField<UserField, Type>>;
417
442
  }>;
418
443
 
419
- type RenderFunc<Props extends {
420
- [key: string]: any;
421
- } = {
422
- children: ReactNode;
423
- }> = (props: Props) => ReactElement;
424
444
  declare const overrideKeys: readonly ["header", "headerActions", "fields", "fieldLabel", "drawer", "drawerItem", "componentOverlay", "outline", "puck", "preview"];
425
445
  type OverrideKey = (typeof overrideKeys)[number];
426
446
  type OverridesGeneric<Shape extends {
@@ -492,7 +512,7 @@ type DragAxis = "dynamic" | "y" | "x";
492
512
 
493
513
  type iconTypes = "Smartphone" | "Monitor" | "Tablet";
494
514
  type Viewport = {
495
- width: number;
515
+ width: number | "100%";
496
516
  height?: number | "auto";
497
517
  label?: string;
498
518
  icon?: iconTypes | ReactNode;
@@ -512,8 +532,13 @@ type IframeConfig = {
512
532
  };
513
533
  type OnAction<UserData extends Data = Data> = (action: PuckAction, appState: AppState<UserData>, prevAppState: AppState<UserData>) => void;
514
534
  type Plugin<UserConfig extends Config = Config> = {
535
+ name?: string;
536
+ label?: string;
537
+ icon?: ReactNode;
538
+ render?: () => ReactElement;
515
539
  overrides?: Partial<Overrides<UserConfig>>;
516
540
  fieldTransforms?: FieldTransforms<UserConfig>;
541
+ mobilePanelHeight?: "toggle" | "min-content";
517
542
  };
518
543
  type History<D = any> = {
519
544
  state: D;
@@ -631,4 +656,4 @@ type WalkTreeOptions = {
631
656
  };
632
657
  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;
633
658
 
634
- export { type BaseField as $, type AppState as A, type ArrayState as B, type Config as C, type DropZoneProps as D, type SlotComponent as E, type Fields as F, type PuckComponent as G, type History as H, type IframeConfig as I, type RootConfig as J, type DefaultComponents as K, type ExtractConfigParams as L, type Metadata as M, type BaseData as N, type Overrides as O, type Permissions as P, type RootDataWithoutProps as Q, type RootDataWithProps as R, type Slot as S, type RootData as T, type UserGenerics as U, type Viewports as V, type WithSlotProps as W, type ComponentDataOptionalId as X, type MappedItem as Y, type ComponentDataMap as Z, type Content as _, type ComponentData as a, type TextField as a0, type NumberField as a1, type TextareaField as a2, type SelectField as a3, type RadioField as a4, type ArrayField as a5, type ObjectField as a6, type Adaptor as a7, type ExternalFieldWithAdaptor as a8, type ExternalField as a9, type CustomFieldRender as aa, type CustomField as ab, type SlotField as ac, type PuckContext as ad, type DefaultRootFieldProps as ae, type DefaultRootRenderProps as af, type DefaultRootProps as ag, type DefaultComponentProps as ah, type WithId as ai, type WithPuckProps as aj, type AsFieldProps as ak, type WithChildren as al, type ExtractField as am, type PuckAction as b, type ResolveDataTrigger as c, type Plugin as d, type UiState as e, type ComponentConfig as f, type FieldTransforms as g, type Field as h, type FieldProps as i, type Data as j, type OnAction as k, type InitialHistory as l, migrate as m, type ItemSelector as n, type Direction as o, type DragAxis as p, type Viewport as q, resolveAllData as r, type FieldTransformFnParams as s, transformProps as t, type FieldTransformFn as u, overrideKeys as v, walkTree as w, type OverrideKey as x, type FieldRenderFunctions as y, type ItemWithId as z };
659
+ export { type ComponentDataOptionalId as $, type AppState as A, type ItemWithId as B, type Config as C, type DropZoneProps as D, type ArrayState as E, type Fields as F, type SlotComponent as G, type History as H, type IframeConfig as I, type PuckComponent as J, type ComponentConfigExtensions as K, type RootConfig as L, type Metadata as M, type DefaultComponents as N, type Overrides as O, type Permissions as P, type ExtractConfigParams as Q, type RootDataWithProps as R, type Slot as S, type ConfigParams as T, type UserGenerics as U, type Viewports as V, type WithSlotProps as W, type ComponentConfigParams as X, type BaseData as Y, type RootDataWithoutProps as Z, type RootData as _, type ComponentData as a, type MappedItem as a0, type ComponentDataMap as a1, type Content as a2, type PuckMetadata as a3, type ComponentMetadata as a4, type FieldMetadata as a5, type BaseField as a6, type TextField as a7, type NumberField as a8, type TextareaField as a9, type SelectField as aa, type RadioField as ab, type ArrayField as ac, type ObjectField as ad, type Adaptor as ae, type ExternalFieldWithAdaptor as af, type CacheOpts as ag, type ExternalField as ah, type CustomFieldRender as ai, type CustomField as aj, type SlotField as ak, type PuckContext as al, type DefaultRootFieldProps as am, type DefaultRootRenderProps as an, type DefaultRootProps as ao, type DefaultComponentProps as ap, type WithId as aq, type WithPuckProps as ar, type AsFieldProps as as, type WithChildren as at, type ExtractField as au, type PuckAction as b, type ResolveDataTrigger as c, type Plugin as d, type UiState as e, type ComponentConfig as f, type FieldTransforms as g, type Field as h, type FieldProps as i, type Data as j, type OnAction as k, type InitialHistory as l, migrate as m, type ItemSelector as n, type PluginInternal as o, type Direction as p, type DragAxis as q, resolveAllData as r, type Viewport as s, transformProps as t, type FieldTransformFnParams as u, type FieldTransformFn as v, walkTree as w, overrideKeys as x, type OverrideKey as y, type FieldRenderFunctions as z };