@measured/puck 0.17.0-canary.fe9321f → 0.17.1-canary.3406b01

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.
Files changed (3) hide show
  1. package/dist/index.js +349 -281
  2. package/dist/index.mjs +173 -105
  3. package/package.json +4 -4
package/dist/index.mjs CHANGED
@@ -213,6 +213,17 @@ init_react_import();
213
213
 
214
214
  // ../../node_modules/lucide-react/dist/esm/createLucideIcon.js
215
215
  init_react_import();
216
+ import { forwardRef as forwardRef2, createElement as createElement2 } from "react";
217
+
218
+ // ../../node_modules/lucide-react/dist/esm/shared/src/utils.js
219
+ init_react_import();
220
+ var toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
221
+ var mergeClasses = (...classes) => classes.filter((className, index, array) => {
222
+ return Boolean(className) && className.trim() !== "" && array.indexOf(className) === index;
223
+ }).join(" ").trim();
224
+
225
+ // ../../node_modules/lucide-react/dist/esm/Icon.js
226
+ init_react_import();
216
227
  import { forwardRef, createElement } from "react";
217
228
 
218
229
  // ../../node_modules/lucide-react/dist/esm/defaultAttributes.js
@@ -229,41 +240,61 @@ var defaultAttributes = {
229
240
  strokeLinejoin: "round"
230
241
  };
231
242
 
243
+ // ../../node_modules/lucide-react/dist/esm/Icon.js
244
+ var Icon = forwardRef(
245
+ (_a, ref) => {
246
+ var _b = _a, {
247
+ color = "currentColor",
248
+ size = 24,
249
+ strokeWidth = 2,
250
+ absoluteStrokeWidth,
251
+ className = "",
252
+ children,
253
+ iconNode
254
+ } = _b, rest = __objRest(_b, [
255
+ "color",
256
+ "size",
257
+ "strokeWidth",
258
+ "absoluteStrokeWidth",
259
+ "className",
260
+ "children",
261
+ "iconNode"
262
+ ]);
263
+ return createElement(
264
+ "svg",
265
+ __spreadValues(__spreadProps(__spreadValues({
266
+ ref
267
+ }, defaultAttributes), {
268
+ width: size,
269
+ height: size,
270
+ stroke: color,
271
+ strokeWidth: absoluteStrokeWidth ? Number(strokeWidth) * 24 / Number(size) : strokeWidth,
272
+ className: mergeClasses("lucide", className)
273
+ }), rest),
274
+ [
275
+ ...iconNode.map(([tag, attrs]) => createElement(tag, attrs)),
276
+ ...Array.isArray(children) ? children : [children]
277
+ ]
278
+ );
279
+ }
280
+ );
281
+
232
282
  // ../../node_modules/lucide-react/dist/esm/createLucideIcon.js
233
- var toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase().trim();
234
283
  var createLucideIcon = (iconName, iconNode) => {
235
- const Component = forwardRef(
284
+ const Component = forwardRef2(
236
285
  (_a, ref) => {
237
- var _b = _a, { color = "currentColor", size = 24, strokeWidth = 2, absoluteStrokeWidth, className = "", children } = _b, rest = __objRest(_b, ["color", "size", "strokeWidth", "absoluteStrokeWidth", "className", "children"]);
238
- return createElement(
239
- "svg",
240
- __spreadValues(__spreadProps(__spreadValues({
241
- ref
242
- }, defaultAttributes), {
243
- width: size,
244
- height: size,
245
- stroke: color,
246
- strokeWidth: absoluteStrokeWidth ? Number(strokeWidth) * 24 / Number(size) : strokeWidth,
247
- className: ["lucide", `lucide-${toKebabCase(iconName)}`, className].join(" ")
248
- }), rest),
249
- [
250
- ...iconNode.map(([tag, attrs]) => createElement(tag, attrs)),
251
- ...Array.isArray(children) ? children : [children]
252
- ]
253
- );
286
+ var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
287
+ return createElement2(Icon, __spreadValues({
288
+ ref,
289
+ iconNode,
290
+ className: mergeClasses(`lucide-${toKebabCase(iconName)}`, className)
291
+ }, props));
254
292
  }
255
293
  );
256
294
  Component.displayName = `${iconName}`;
257
295
  return Component;
258
296
  };
259
297
 
260
- // ../../node_modules/lucide-react/dist/esm/icons/check-circle.js
261
- init_react_import();
262
- var CheckCircle = createLucideIcon("CheckCircle", [
263
- ["path", { d: "M22 11.08V12a10 10 0 1 1-5.93-9.14", key: "g774vq" }],
264
- ["path", { d: "m9 11 3 3L22 4", key: "1pflzl" }]
265
- ]);
266
-
267
298
  // ../../node_modules/lucide-react/dist/esm/icons/chevron-down.js
268
299
  init_react_import();
269
300
  var ChevronDown = createLucideIcon("ChevronDown", [
@@ -280,6 +311,13 @@ var ChevronRight = createLucideIcon("ChevronRight", [
280
311
  init_react_import();
281
312
  var ChevronUp = createLucideIcon("ChevronUp", [["path", { d: "m18 15-6-6-6 6", key: "153udz" }]]);
282
313
 
314
+ // ../../node_modules/lucide-react/dist/esm/icons/circle-check-big.js
315
+ init_react_import();
316
+ var CircleCheckBig = createLucideIcon("CircleCheckBig", [
317
+ ["path", { d: "M21.801 10A10 10 0 1 1 17 3.335", key: "yps3ct" }],
318
+ ["path", { d: "m9 11 3 3L22 4", key: "1pflzl" }]
319
+ ]);
320
+
283
321
  // ../../node_modules/lucide-react/dist/esm/icons/copy.js
284
322
  init_react_import();
285
323
  var Copy = createLucideIcon("Copy", [
@@ -287,6 +325,14 @@ var Copy = createLucideIcon("Copy", [
287
325
  ["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2", key: "zix9uf" }]
288
326
  ]);
289
327
 
328
+ // ../../node_modules/lucide-react/dist/esm/icons/ellipsis-vertical.js
329
+ init_react_import();
330
+ var EllipsisVertical = createLucideIcon("EllipsisVertical", [
331
+ ["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }],
332
+ ["circle", { cx: "12", cy: "5", r: "1", key: "gxeob9" }],
333
+ ["circle", { cx: "12", cy: "19", r: "1", key: "lyex9k" }]
334
+ ]);
335
+
290
336
  // ../../node_modules/lucide-react/dist/esm/icons/globe.js
291
337
  init_react_import();
292
338
  var Globe = createLucideIcon("Globe", [
@@ -310,12 +356,24 @@ var Layers = createLucideIcon("Layers", [
310
356
  [
311
357
  "path",
312
358
  {
313
- d: "m12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83Z",
314
- key: "8b97xw"
359
+ d: "M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z",
360
+ key: "zw3jo"
361
+ }
362
+ ],
363
+ [
364
+ "path",
365
+ {
366
+ d: "M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12",
367
+ key: "1wduqc"
315
368
  }
316
369
  ],
317
- ["path", { d: "m22 17.65-9.17 4.16a2 2 0 0 1-1.66 0L2 17.65", key: "dd6zsq" }],
318
- ["path", { d: "m22 12.65-9.17 4.16a2 2 0 0 1-1.66 0L2 12.65", key: "ep9fru" }]
370
+ [
371
+ "path",
372
+ {
373
+ d: "M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17",
374
+ key: "kqbvx6"
375
+ }
376
+ ]
319
377
  ]);
320
378
 
321
379
  // ../../node_modules/lucide-react/dist/esm/icons/layout-grid.js
@@ -337,12 +395,19 @@ var Link = createLucideIcon("Link", [
337
395
  // ../../node_modules/lucide-react/dist/esm/icons/list.js
338
396
  init_react_import();
339
397
  var List = createLucideIcon("List", [
340
- ["line", { x1: "8", x2: "21", y1: "6", y2: "6", key: "7ey8pc" }],
341
- ["line", { x1: "8", x2: "21", y1: "12", y2: "12", key: "rjfblc" }],
342
- ["line", { x1: "8", x2: "21", y1: "18", y2: "18", key: "c3b1m8" }],
343
- ["line", { x1: "3", x2: "3.01", y1: "6", y2: "6", key: "1g7gq3" }],
344
- ["line", { x1: "3", x2: "3.01", y1: "12", y2: "12", key: "1pjlvk" }],
345
- ["line", { x1: "3", x2: "3.01", y1: "18", y2: "18", key: "28t2mc" }]
398
+ ["path", { d: "M3 12h.01", key: "nlz23k" }],
399
+ ["path", { d: "M3 18h.01", key: "1tta3j" }],
400
+ ["path", { d: "M3 6h.01", key: "1rqtza" }],
401
+ ["path", { d: "M8 12h13", key: "1za7za" }],
402
+ ["path", { d: "M8 18h13", key: "1lx6n3" }],
403
+ ["path", { d: "M8 6h13", key: "ik3vkj" }]
404
+ ]);
405
+
406
+ // ../../node_modules/lucide-react/dist/esm/icons/lock-open.js
407
+ init_react_import();
408
+ var LockOpen = createLucideIcon("LockOpen", [
409
+ ["rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2", key: "1w4ew1" }],
410
+ ["path", { d: "M7 11V7a5 5 0 0 1 9.9-1", key: "1mm8w8" }]
346
411
  ]);
347
412
 
348
413
  // ../../node_modules/lucide-react/dist/esm/icons/lock.js
@@ -360,26 +425,18 @@ var Monitor = createLucideIcon("Monitor", [
360
425
  ["line", { x1: "12", x2: "12", y1: "17", y2: "21", key: "vw1qmm" }]
361
426
  ]);
362
427
 
363
- // ../../node_modules/lucide-react/dist/esm/icons/more-vertical.js
364
- init_react_import();
365
- var MoreVertical = createLucideIcon("MoreVertical", [
366
- ["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }],
367
- ["circle", { cx: "12", cy: "5", r: "1", key: "gxeob9" }],
368
- ["circle", { cx: "12", cy: "19", r: "1", key: "lyex9k" }]
369
- ]);
370
-
371
428
  // ../../node_modules/lucide-react/dist/esm/icons/panel-left.js
372
429
  init_react_import();
373
430
  var PanelLeft = createLucideIcon("PanelLeft", [
374
- ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }],
375
- ["line", { x1: "9", x2: "9", y1: "3", y2: "21", key: "13tij5" }]
431
+ ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
432
+ ["path", { d: "M9 3v18", key: "fh3hqa" }]
376
433
  ]);
377
434
 
378
435
  // ../../node_modules/lucide-react/dist/esm/icons/panel-right.js
379
436
  init_react_import();
380
437
  var PanelRight = createLucideIcon("PanelRight", [
381
- ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }],
382
- ["line", { x1: "15", x2: "15", y1: "3", y2: "21", key: "1hpv9i" }]
438
+ ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
439
+ ["path", { d: "M15 3v18", key: "14nvp0" }]
383
440
  ]);
384
441
 
385
442
  // ../../node_modules/lucide-react/dist/esm/icons/plus.js
@@ -393,7 +450,7 @@ var Plus = createLucideIcon("Plus", [
393
450
  init_react_import();
394
451
  var Redo2 = createLucideIcon("Redo2", [
395
452
  ["path", { d: "m15 14 5-5-5-5", key: "12vg1m" }],
396
- ["path", { d: "M20 9H9.5A5.5 5.5 0 0 0 4 14.5v0A5.5 5.5 0 0 0 9.5 20H13", key: "19mnr4" }]
453
+ ["path", { d: "M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13", key: "6uklza" }]
397
454
  ]);
398
455
 
399
456
  // ../../node_modules/lucide-react/dist/esm/icons/search.js
@@ -451,14 +508,7 @@ var Type = createLucideIcon("Type", [
451
508
  init_react_import();
452
509
  var Undo2 = createLucideIcon("Undo2", [
453
510
  ["path", { d: "M9 14 4 9l5-5", key: "102s5s" }],
454
- ["path", { d: "M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5v0a5.5 5.5 0 0 1-5.5 5.5H11", key: "llx8ln" }]
455
- ]);
456
-
457
- // ../../node_modules/lucide-react/dist/esm/icons/unlock.js
458
- init_react_import();
459
- var Unlock = createLucideIcon("Unlock", [
460
- ["rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2", key: "1w4ew1" }],
461
- ["path", { d: "M7 11V7a5 5 0 0 1 9.9-1", key: "1mm8w8" }]
511
+ ["path", { d: "M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11", key: "f3b9sd" }]
462
512
  ]);
463
513
 
464
514
  // ../../node_modules/lucide-react/dist/esm/icons/zoom-in.js
@@ -1718,7 +1768,7 @@ var ExternalInput = ({
1718
1768
  onChange(null);
1719
1769
  },
1720
1770
  disabled: readOnly,
1721
- children: /* @__PURE__ */ jsx14(Unlock, { size: 16 })
1771
+ children: /* @__PURE__ */ jsx14(LockOpen, { size: 16 })
1722
1772
  }
1723
1773
  )
1724
1774
  ] }),
@@ -1916,7 +1966,7 @@ var RadioField = ({
1916
1966
  return /* @__PURE__ */ jsx16(
1917
1967
  Label,
1918
1968
  {
1919
- icon: /* @__PURE__ */ jsx16(CheckCircle, { size: 16 }),
1969
+ icon: /* @__PURE__ */ jsx16(CircleCheckBig, { size: 16 }),
1920
1970
  label: label || name,
1921
1971
  readOnly,
1922
1972
  el: "div",
@@ -1933,7 +1983,8 @@ var RadioField = ({
1933
1983
  value: option.value,
1934
1984
  name,
1935
1985
  onChange: (e) => {
1936
- const jsonValue = safeJsonParse(e.target.value) || e.target.value;
1986
+ var _a;
1987
+ const jsonValue = (_a = safeJsonParse(e.target.value)) != null ? _a : e.target.value;
1937
1988
  if (flatOptions.indexOf(jsonValue) > -1) {
1938
1989
  onChange(jsonValue);
1939
1990
  } else {
@@ -1989,7 +2040,8 @@ var SelectField = ({
1989
2040
  className: getClassName12("input"),
1990
2041
  disabled: readOnly,
1991
2042
  onChange: (e) => {
1992
- const jsonValue = safeJsonParse(e.target.value) || e.target.value;
2043
+ var _a;
2044
+ const jsonValue = (_a = safeJsonParse(e.target.value)) != null ? _a : e.target.value;
1993
2045
  if (flatOptions.indexOf(jsonValue) > -1) {
1994
2046
  onChange(jsonValue);
1995
2047
  } else {
@@ -2073,7 +2125,7 @@ var ObjectField = ({
2073
2125
  Label,
2074
2126
  {
2075
2127
  label: label || name,
2076
- icon: /* @__PURE__ */ jsx19(MoreVertical, { size: 16 }),
2128
+ icon: /* @__PURE__ */ jsx19(EllipsisVertical, { size: 16 }),
2077
2129
  el: "div",
2078
2130
  readOnly,
2079
2131
  children: /* @__PURE__ */ jsx19("div", { className: getClassName14(), children: /* @__PURE__ */ jsx19("fieldset", { className: getClassName14("fieldset"), children: Object.keys(field.objectFields).map((fieldName) => {
@@ -5831,25 +5883,33 @@ classnames/index.js:
5831
5883
  http://jedwatson.github.io/classnames
5832
5884
  *)
5833
5885
 
5886
+ lucide-react/dist/esm/shared/src/utils.js:
5887
+ (**
5888
+ * @license lucide-react v0.468.0 - ISC
5889
+ *
5890
+ * This source code is licensed under the ISC license.
5891
+ * See the LICENSE file in the root directory of this source tree.
5892
+ *)
5893
+
5834
5894
  lucide-react/dist/esm/defaultAttributes.js:
5835
5895
  (**
5836
- * @license lucide-react v0.298.0 - ISC
5896
+ * @license lucide-react v0.468.0 - ISC
5837
5897
  *
5838
5898
  * This source code is licensed under the ISC license.
5839
5899
  * See the LICENSE file in the root directory of this source tree.
5840
5900
  *)
5841
5901
 
5842
- lucide-react/dist/esm/createLucideIcon.js:
5902
+ lucide-react/dist/esm/Icon.js:
5843
5903
  (**
5844
- * @license lucide-react v0.298.0 - ISC
5904
+ * @license lucide-react v0.468.0 - ISC
5845
5905
  *
5846
5906
  * This source code is licensed under the ISC license.
5847
5907
  * See the LICENSE file in the root directory of this source tree.
5848
5908
  *)
5849
5909
 
5850
- lucide-react/dist/esm/icons/check-circle.js:
5910
+ lucide-react/dist/esm/createLucideIcon.js:
5851
5911
  (**
5852
- * @license lucide-react v0.298.0 - ISC
5912
+ * @license lucide-react v0.468.0 - ISC
5853
5913
  *
5854
5914
  * This source code is licensed under the ISC license.
5855
5915
  * See the LICENSE file in the root directory of this source tree.
@@ -5857,7 +5917,7 @@ lucide-react/dist/esm/icons/check-circle.js:
5857
5917
 
5858
5918
  lucide-react/dist/esm/icons/chevron-down.js:
5859
5919
  (**
5860
- * @license lucide-react v0.298.0 - ISC
5920
+ * @license lucide-react v0.468.0 - ISC
5861
5921
  *
5862
5922
  * This source code is licensed under the ISC license.
5863
5923
  * See the LICENSE file in the root directory of this source tree.
@@ -5865,7 +5925,7 @@ lucide-react/dist/esm/icons/chevron-down.js:
5865
5925
 
5866
5926
  lucide-react/dist/esm/icons/chevron-right.js:
5867
5927
  (**
5868
- * @license lucide-react v0.298.0 - ISC
5928
+ * @license lucide-react v0.468.0 - ISC
5869
5929
  *
5870
5930
  * This source code is licensed under the ISC license.
5871
5931
  * See the LICENSE file in the root directory of this source tree.
@@ -5873,7 +5933,15 @@ lucide-react/dist/esm/icons/chevron-right.js:
5873
5933
 
5874
5934
  lucide-react/dist/esm/icons/chevron-up.js:
5875
5935
  (**
5876
- * @license lucide-react v0.298.0 - ISC
5936
+ * @license lucide-react v0.468.0 - ISC
5937
+ *
5938
+ * This source code is licensed under the ISC license.
5939
+ * See the LICENSE file in the root directory of this source tree.
5940
+ *)
5941
+
5942
+ lucide-react/dist/esm/icons/circle-check-big.js:
5943
+ (**
5944
+ * @license lucide-react v0.468.0 - ISC
5877
5945
  *
5878
5946
  * This source code is licensed under the ISC license.
5879
5947
  * See the LICENSE file in the root directory of this source tree.
@@ -5881,7 +5949,15 @@ lucide-react/dist/esm/icons/chevron-up.js:
5881
5949
 
5882
5950
  lucide-react/dist/esm/icons/copy.js:
5883
5951
  (**
5884
- * @license lucide-react v0.298.0 - ISC
5952
+ * @license lucide-react v0.468.0 - ISC
5953
+ *
5954
+ * This source code is licensed under the ISC license.
5955
+ * See the LICENSE file in the root directory of this source tree.
5956
+ *)
5957
+
5958
+ lucide-react/dist/esm/icons/ellipsis-vertical.js:
5959
+ (**
5960
+ * @license lucide-react v0.468.0 - ISC
5885
5961
  *
5886
5962
  * This source code is licensed under the ISC license.
5887
5963
  * See the LICENSE file in the root directory of this source tree.
@@ -5889,7 +5965,7 @@ lucide-react/dist/esm/icons/copy.js:
5889
5965
 
5890
5966
  lucide-react/dist/esm/icons/globe.js:
5891
5967
  (**
5892
- * @license lucide-react v0.298.0 - ISC
5968
+ * @license lucide-react v0.468.0 - ISC
5893
5969
  *
5894
5970
  * This source code is licensed under the ISC license.
5895
5971
  * See the LICENSE file in the root directory of this source tree.
@@ -5897,7 +5973,7 @@ lucide-react/dist/esm/icons/globe.js:
5897
5973
 
5898
5974
  lucide-react/dist/esm/icons/hash.js:
5899
5975
  (**
5900
- * @license lucide-react v0.298.0 - ISC
5976
+ * @license lucide-react v0.468.0 - ISC
5901
5977
  *
5902
5978
  * This source code is licensed under the ISC license.
5903
5979
  * See the LICENSE file in the root directory of this source tree.
@@ -5905,7 +5981,7 @@ lucide-react/dist/esm/icons/hash.js:
5905
5981
 
5906
5982
  lucide-react/dist/esm/icons/layers.js:
5907
5983
  (**
5908
- * @license lucide-react v0.298.0 - ISC
5984
+ * @license lucide-react v0.468.0 - ISC
5909
5985
  *
5910
5986
  * This source code is licensed under the ISC license.
5911
5987
  * See the LICENSE file in the root directory of this source tree.
@@ -5913,7 +5989,7 @@ lucide-react/dist/esm/icons/layers.js:
5913
5989
 
5914
5990
  lucide-react/dist/esm/icons/layout-grid.js:
5915
5991
  (**
5916
- * @license lucide-react v0.298.0 - ISC
5992
+ * @license lucide-react v0.468.0 - ISC
5917
5993
  *
5918
5994
  * This source code is licensed under the ISC license.
5919
5995
  * See the LICENSE file in the root directory of this source tree.
@@ -5921,7 +5997,7 @@ lucide-react/dist/esm/icons/layout-grid.js:
5921
5997
 
5922
5998
  lucide-react/dist/esm/icons/link.js:
5923
5999
  (**
5924
- * @license lucide-react v0.298.0 - ISC
6000
+ * @license lucide-react v0.468.0 - ISC
5925
6001
  *
5926
6002
  * This source code is licensed under the ISC license.
5927
6003
  * See the LICENSE file in the root directory of this source tree.
@@ -5929,31 +6005,31 @@ lucide-react/dist/esm/icons/link.js:
5929
6005
 
5930
6006
  lucide-react/dist/esm/icons/list.js:
5931
6007
  (**
5932
- * @license lucide-react v0.298.0 - ISC
6008
+ * @license lucide-react v0.468.0 - ISC
5933
6009
  *
5934
6010
  * This source code is licensed under the ISC license.
5935
6011
  * See the LICENSE file in the root directory of this source tree.
5936
6012
  *)
5937
6013
 
5938
- lucide-react/dist/esm/icons/lock.js:
6014
+ lucide-react/dist/esm/icons/lock-open.js:
5939
6015
  (**
5940
- * @license lucide-react v0.298.0 - ISC
6016
+ * @license lucide-react v0.468.0 - ISC
5941
6017
  *
5942
6018
  * This source code is licensed under the ISC license.
5943
6019
  * See the LICENSE file in the root directory of this source tree.
5944
6020
  *)
5945
6021
 
5946
- lucide-react/dist/esm/icons/monitor.js:
6022
+ lucide-react/dist/esm/icons/lock.js:
5947
6023
  (**
5948
- * @license lucide-react v0.298.0 - ISC
6024
+ * @license lucide-react v0.468.0 - ISC
5949
6025
  *
5950
6026
  * This source code is licensed under the ISC license.
5951
6027
  * See the LICENSE file in the root directory of this source tree.
5952
6028
  *)
5953
6029
 
5954
- lucide-react/dist/esm/icons/more-vertical.js:
6030
+ lucide-react/dist/esm/icons/monitor.js:
5955
6031
  (**
5956
- * @license lucide-react v0.298.0 - ISC
6032
+ * @license lucide-react v0.468.0 - ISC
5957
6033
  *
5958
6034
  * This source code is licensed under the ISC license.
5959
6035
  * See the LICENSE file in the root directory of this source tree.
@@ -5961,7 +6037,7 @@ lucide-react/dist/esm/icons/more-vertical.js:
5961
6037
 
5962
6038
  lucide-react/dist/esm/icons/panel-left.js:
5963
6039
  (**
5964
- * @license lucide-react v0.298.0 - ISC
6040
+ * @license lucide-react v0.468.0 - ISC
5965
6041
  *
5966
6042
  * This source code is licensed under the ISC license.
5967
6043
  * See the LICENSE file in the root directory of this source tree.
@@ -5969,7 +6045,7 @@ lucide-react/dist/esm/icons/panel-left.js:
5969
6045
 
5970
6046
  lucide-react/dist/esm/icons/panel-right.js:
5971
6047
  (**
5972
- * @license lucide-react v0.298.0 - ISC
6048
+ * @license lucide-react v0.468.0 - ISC
5973
6049
  *
5974
6050
  * This source code is licensed under the ISC license.
5975
6051
  * See the LICENSE file in the root directory of this source tree.
@@ -5977,7 +6053,7 @@ lucide-react/dist/esm/icons/panel-right.js:
5977
6053
 
5978
6054
  lucide-react/dist/esm/icons/plus.js:
5979
6055
  (**
5980
- * @license lucide-react v0.298.0 - ISC
6056
+ * @license lucide-react v0.468.0 - ISC
5981
6057
  *
5982
6058
  * This source code is licensed under the ISC license.
5983
6059
  * See the LICENSE file in the root directory of this source tree.
@@ -5985,7 +6061,7 @@ lucide-react/dist/esm/icons/plus.js:
5985
6061
 
5986
6062
  lucide-react/dist/esm/icons/redo-2.js:
5987
6063
  (**
5988
- * @license lucide-react v0.298.0 - ISC
6064
+ * @license lucide-react v0.468.0 - ISC
5989
6065
  *
5990
6066
  * This source code is licensed under the ISC license.
5991
6067
  * See the LICENSE file in the root directory of this source tree.
@@ -5993,7 +6069,7 @@ lucide-react/dist/esm/icons/redo-2.js:
5993
6069
 
5994
6070
  lucide-react/dist/esm/icons/search.js:
5995
6071
  (**
5996
- * @license lucide-react v0.298.0 - ISC
6072
+ * @license lucide-react v0.468.0 - ISC
5997
6073
  *
5998
6074
  * This source code is licensed under the ISC license.
5999
6075
  * See the LICENSE file in the root directory of this source tree.
@@ -6001,7 +6077,7 @@ lucide-react/dist/esm/icons/search.js:
6001
6077
 
6002
6078
  lucide-react/dist/esm/icons/sliders-horizontal.js:
6003
6079
  (**
6004
- * @license lucide-react v0.298.0 - ISC
6080
+ * @license lucide-react v0.468.0 - ISC
6005
6081
  *
6006
6082
  * This source code is licensed under the ISC license.
6007
6083
  * See the LICENSE file in the root directory of this source tree.
@@ -6009,7 +6085,7 @@ lucide-react/dist/esm/icons/sliders-horizontal.js:
6009
6085
 
6010
6086
  lucide-react/dist/esm/icons/smartphone.js:
6011
6087
  (**
6012
- * @license lucide-react v0.298.0 - ISC
6088
+ * @license lucide-react v0.468.0 - ISC
6013
6089
  *
6014
6090
  * This source code is licensed under the ISC license.
6015
6091
  * See the LICENSE file in the root directory of this source tree.
@@ -6017,7 +6093,7 @@ lucide-react/dist/esm/icons/smartphone.js:
6017
6093
 
6018
6094
  lucide-react/dist/esm/icons/tablet.js:
6019
6095
  (**
6020
- * @license lucide-react v0.298.0 - ISC
6096
+ * @license lucide-react v0.468.0 - ISC
6021
6097
  *
6022
6098
  * This source code is licensed under the ISC license.
6023
6099
  * See the LICENSE file in the root directory of this source tree.
@@ -6025,7 +6101,7 @@ lucide-react/dist/esm/icons/tablet.js:
6025
6101
 
6026
6102
  lucide-react/dist/esm/icons/trash.js:
6027
6103
  (**
6028
- * @license lucide-react v0.298.0 - ISC
6104
+ * @license lucide-react v0.468.0 - ISC
6029
6105
  *
6030
6106
  * This source code is licensed under the ISC license.
6031
6107
  * See the LICENSE file in the root directory of this source tree.
@@ -6033,7 +6109,7 @@ lucide-react/dist/esm/icons/trash.js:
6033
6109
 
6034
6110
  lucide-react/dist/esm/icons/type.js:
6035
6111
  (**
6036
- * @license lucide-react v0.298.0 - ISC
6112
+ * @license lucide-react v0.468.0 - ISC
6037
6113
  *
6038
6114
  * This source code is licensed under the ISC license.
6039
6115
  * See the LICENSE file in the root directory of this source tree.
@@ -6041,15 +6117,7 @@ lucide-react/dist/esm/icons/type.js:
6041
6117
 
6042
6118
  lucide-react/dist/esm/icons/undo-2.js:
6043
6119
  (**
6044
- * @license lucide-react v0.298.0 - ISC
6045
- *
6046
- * This source code is licensed under the ISC license.
6047
- * See the LICENSE file in the root directory of this source tree.
6048
- *)
6049
-
6050
- lucide-react/dist/esm/icons/unlock.js:
6051
- (**
6052
- * @license lucide-react v0.298.0 - ISC
6120
+ * @license lucide-react v0.468.0 - ISC
6053
6121
  *
6054
6122
  * This source code is licensed under the ISC license.
6055
6123
  * See the LICENSE file in the root directory of this source tree.
@@ -6057,7 +6125,7 @@ lucide-react/dist/esm/icons/unlock.js:
6057
6125
 
6058
6126
  lucide-react/dist/esm/icons/zoom-in.js:
6059
6127
  (**
6060
- * @license lucide-react v0.298.0 - ISC
6128
+ * @license lucide-react v0.468.0 - ISC
6061
6129
  *
6062
6130
  * This source code is licensed under the ISC license.
6063
6131
  * See the LICENSE file in the root directory of this source tree.
@@ -6065,7 +6133,7 @@ lucide-react/dist/esm/icons/zoom-in.js:
6065
6133
 
6066
6134
  lucide-react/dist/esm/icons/zoom-out.js:
6067
6135
  (**
6068
- * @license lucide-react v0.298.0 - ISC
6136
+ * @license lucide-react v0.468.0 - ISC
6069
6137
  *
6070
6138
  * This source code is licensed under the ISC license.
6071
6139
  * See the LICENSE file in the root directory of this source tree.
@@ -6073,7 +6141,7 @@ lucide-react/dist/esm/icons/zoom-out.js:
6073
6141
 
6074
6142
  lucide-react/dist/esm/lucide-react.js:
6075
6143
  (**
6076
- * @license lucide-react v0.298.0 - ISC
6144
+ * @license lucide-react v0.468.0 - ISC
6077
6145
  *
6078
6146
  * This source code is licensed under the ISC license.
6079
6147
  * See the LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@measured/puck",
3
- "version": "0.17.0-canary.fe9321f",
3
+ "version": "0.17.1-canary.3406b01",
4
4
  "author": "Measured Corporation Ltd <hello@measured.co>",
5
5
  "repository": "measuredco/puck",
6
6
  "bugs": "https://github.com/measuredco/puck/issues",
@@ -52,8 +52,8 @@
52
52
  "@types/deep-diff": "^1.0.3",
53
53
  "@types/jest": "^29.5.4",
54
54
  "@types/object-hash": "^3.0.6",
55
- "@types/react": "^18.2.0",
56
- "@types/react-dom": "^18.2.0",
55
+ "@types/react": "^19.0.1",
56
+ "@types/react-dom": "^19.0.2",
57
57
  "@types/ua-parser-js": "^0.7.39",
58
58
  "@types/uuid": "^10.0.0",
59
59
  "css-box-model": "^1.2.1",
@@ -61,7 +61,7 @@
61
61
  "eslint-config-custom": "*",
62
62
  "jest": "^29.6.4",
63
63
  "jest-environment-jsdom": "^29.6.4",
64
- "lucide-react": "^0.298.0",
64
+ "lucide-react": "^0.468.0",
65
65
  "ts-jest": "^29.2.4",
66
66
  "tsconfig": "*",
67
67
  "tsup": "^8.2.4",