@measured/puck 0.17.0-canary.fe9321f → 0.17.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/dist/index.js +345 -279
  2. package/dist/index.mjs +169 -103
  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",
@@ -2073,7 +2123,7 @@ var ObjectField = ({
2073
2123
  Label,
2074
2124
  {
2075
2125
  label: label || name,
2076
- icon: /* @__PURE__ */ jsx19(MoreVertical, { size: 16 }),
2126
+ icon: /* @__PURE__ */ jsx19(EllipsisVertical, { size: 16 }),
2077
2127
  el: "div",
2078
2128
  readOnly,
2079
2129
  children: /* @__PURE__ */ jsx19("div", { className: getClassName14(), children: /* @__PURE__ */ jsx19("fieldset", { className: getClassName14("fieldset"), children: Object.keys(field.objectFields).map((fieldName) => {
@@ -5831,25 +5881,33 @@ classnames/index.js:
5831
5881
  http://jedwatson.github.io/classnames
5832
5882
  *)
5833
5883
 
5884
+ lucide-react/dist/esm/shared/src/utils.js:
5885
+ (**
5886
+ * @license lucide-react v0.468.0 - ISC
5887
+ *
5888
+ * This source code is licensed under the ISC license.
5889
+ * See the LICENSE file in the root directory of this source tree.
5890
+ *)
5891
+
5834
5892
  lucide-react/dist/esm/defaultAttributes.js:
5835
5893
  (**
5836
- * @license lucide-react v0.298.0 - ISC
5894
+ * @license lucide-react v0.468.0 - ISC
5837
5895
  *
5838
5896
  * This source code is licensed under the ISC license.
5839
5897
  * See the LICENSE file in the root directory of this source tree.
5840
5898
  *)
5841
5899
 
5842
- lucide-react/dist/esm/createLucideIcon.js:
5900
+ lucide-react/dist/esm/Icon.js:
5843
5901
  (**
5844
- * @license lucide-react v0.298.0 - ISC
5902
+ * @license lucide-react v0.468.0 - ISC
5845
5903
  *
5846
5904
  * This source code is licensed under the ISC license.
5847
5905
  * See the LICENSE file in the root directory of this source tree.
5848
5906
  *)
5849
5907
 
5850
- lucide-react/dist/esm/icons/check-circle.js:
5908
+ lucide-react/dist/esm/createLucideIcon.js:
5851
5909
  (**
5852
- * @license lucide-react v0.298.0 - ISC
5910
+ * @license lucide-react v0.468.0 - ISC
5853
5911
  *
5854
5912
  * This source code is licensed under the ISC license.
5855
5913
  * See the LICENSE file in the root directory of this source tree.
@@ -5857,7 +5915,7 @@ lucide-react/dist/esm/icons/check-circle.js:
5857
5915
 
5858
5916
  lucide-react/dist/esm/icons/chevron-down.js:
5859
5917
  (**
5860
- * @license lucide-react v0.298.0 - ISC
5918
+ * @license lucide-react v0.468.0 - ISC
5861
5919
  *
5862
5920
  * This source code is licensed under the ISC license.
5863
5921
  * See the LICENSE file in the root directory of this source tree.
@@ -5865,7 +5923,7 @@ lucide-react/dist/esm/icons/chevron-down.js:
5865
5923
 
5866
5924
  lucide-react/dist/esm/icons/chevron-right.js:
5867
5925
  (**
5868
- * @license lucide-react v0.298.0 - ISC
5926
+ * @license lucide-react v0.468.0 - ISC
5869
5927
  *
5870
5928
  * This source code is licensed under the ISC license.
5871
5929
  * See the LICENSE file in the root directory of this source tree.
@@ -5873,7 +5931,15 @@ lucide-react/dist/esm/icons/chevron-right.js:
5873
5931
 
5874
5932
  lucide-react/dist/esm/icons/chevron-up.js:
5875
5933
  (**
5876
- * @license lucide-react v0.298.0 - ISC
5934
+ * @license lucide-react v0.468.0 - ISC
5935
+ *
5936
+ * This source code is licensed under the ISC license.
5937
+ * See the LICENSE file in the root directory of this source tree.
5938
+ *)
5939
+
5940
+ lucide-react/dist/esm/icons/circle-check-big.js:
5941
+ (**
5942
+ * @license lucide-react v0.468.0 - ISC
5877
5943
  *
5878
5944
  * This source code is licensed under the ISC license.
5879
5945
  * See the LICENSE file in the root directory of this source tree.
@@ -5881,7 +5947,15 @@ lucide-react/dist/esm/icons/chevron-up.js:
5881
5947
 
5882
5948
  lucide-react/dist/esm/icons/copy.js:
5883
5949
  (**
5884
- * @license lucide-react v0.298.0 - ISC
5950
+ * @license lucide-react v0.468.0 - ISC
5951
+ *
5952
+ * This source code is licensed under the ISC license.
5953
+ * See the LICENSE file in the root directory of this source tree.
5954
+ *)
5955
+
5956
+ lucide-react/dist/esm/icons/ellipsis-vertical.js:
5957
+ (**
5958
+ * @license lucide-react v0.468.0 - ISC
5885
5959
  *
5886
5960
  * This source code is licensed under the ISC license.
5887
5961
  * See the LICENSE file in the root directory of this source tree.
@@ -5889,7 +5963,7 @@ lucide-react/dist/esm/icons/copy.js:
5889
5963
 
5890
5964
  lucide-react/dist/esm/icons/globe.js:
5891
5965
  (**
5892
- * @license lucide-react v0.298.0 - ISC
5966
+ * @license lucide-react v0.468.0 - ISC
5893
5967
  *
5894
5968
  * This source code is licensed under the ISC license.
5895
5969
  * See the LICENSE file in the root directory of this source tree.
@@ -5897,7 +5971,7 @@ lucide-react/dist/esm/icons/globe.js:
5897
5971
 
5898
5972
  lucide-react/dist/esm/icons/hash.js:
5899
5973
  (**
5900
- * @license lucide-react v0.298.0 - ISC
5974
+ * @license lucide-react v0.468.0 - ISC
5901
5975
  *
5902
5976
  * This source code is licensed under the ISC license.
5903
5977
  * See the LICENSE file in the root directory of this source tree.
@@ -5905,7 +5979,7 @@ lucide-react/dist/esm/icons/hash.js:
5905
5979
 
5906
5980
  lucide-react/dist/esm/icons/layers.js:
5907
5981
  (**
5908
- * @license lucide-react v0.298.0 - ISC
5982
+ * @license lucide-react v0.468.0 - ISC
5909
5983
  *
5910
5984
  * This source code is licensed under the ISC license.
5911
5985
  * See the LICENSE file in the root directory of this source tree.
@@ -5913,7 +5987,7 @@ lucide-react/dist/esm/icons/layers.js:
5913
5987
 
5914
5988
  lucide-react/dist/esm/icons/layout-grid.js:
5915
5989
  (**
5916
- * @license lucide-react v0.298.0 - ISC
5990
+ * @license lucide-react v0.468.0 - ISC
5917
5991
  *
5918
5992
  * This source code is licensed under the ISC license.
5919
5993
  * See the LICENSE file in the root directory of this source tree.
@@ -5921,7 +5995,7 @@ lucide-react/dist/esm/icons/layout-grid.js:
5921
5995
 
5922
5996
  lucide-react/dist/esm/icons/link.js:
5923
5997
  (**
5924
- * @license lucide-react v0.298.0 - ISC
5998
+ * @license lucide-react v0.468.0 - ISC
5925
5999
  *
5926
6000
  * This source code is licensed under the ISC license.
5927
6001
  * See the LICENSE file in the root directory of this source tree.
@@ -5929,31 +6003,31 @@ lucide-react/dist/esm/icons/link.js:
5929
6003
 
5930
6004
  lucide-react/dist/esm/icons/list.js:
5931
6005
  (**
5932
- * @license lucide-react v0.298.0 - ISC
6006
+ * @license lucide-react v0.468.0 - ISC
5933
6007
  *
5934
6008
  * This source code is licensed under the ISC license.
5935
6009
  * See the LICENSE file in the root directory of this source tree.
5936
6010
  *)
5937
6011
 
5938
- lucide-react/dist/esm/icons/lock.js:
6012
+ lucide-react/dist/esm/icons/lock-open.js:
5939
6013
  (**
5940
- * @license lucide-react v0.298.0 - ISC
6014
+ * @license lucide-react v0.468.0 - ISC
5941
6015
  *
5942
6016
  * This source code is licensed under the ISC license.
5943
6017
  * See the LICENSE file in the root directory of this source tree.
5944
6018
  *)
5945
6019
 
5946
- lucide-react/dist/esm/icons/monitor.js:
6020
+ lucide-react/dist/esm/icons/lock.js:
5947
6021
  (**
5948
- * @license lucide-react v0.298.0 - ISC
6022
+ * @license lucide-react v0.468.0 - ISC
5949
6023
  *
5950
6024
  * This source code is licensed under the ISC license.
5951
6025
  * See the LICENSE file in the root directory of this source tree.
5952
6026
  *)
5953
6027
 
5954
- lucide-react/dist/esm/icons/more-vertical.js:
6028
+ lucide-react/dist/esm/icons/monitor.js:
5955
6029
  (**
5956
- * @license lucide-react v0.298.0 - ISC
6030
+ * @license lucide-react v0.468.0 - ISC
5957
6031
  *
5958
6032
  * This source code is licensed under the ISC license.
5959
6033
  * See the LICENSE file in the root directory of this source tree.
@@ -5961,7 +6035,7 @@ lucide-react/dist/esm/icons/more-vertical.js:
5961
6035
 
5962
6036
  lucide-react/dist/esm/icons/panel-left.js:
5963
6037
  (**
5964
- * @license lucide-react v0.298.0 - ISC
6038
+ * @license lucide-react v0.468.0 - ISC
5965
6039
  *
5966
6040
  * This source code is licensed under the ISC license.
5967
6041
  * See the LICENSE file in the root directory of this source tree.
@@ -5969,7 +6043,7 @@ lucide-react/dist/esm/icons/panel-left.js:
5969
6043
 
5970
6044
  lucide-react/dist/esm/icons/panel-right.js:
5971
6045
  (**
5972
- * @license lucide-react v0.298.0 - ISC
6046
+ * @license lucide-react v0.468.0 - ISC
5973
6047
  *
5974
6048
  * This source code is licensed under the ISC license.
5975
6049
  * See the LICENSE file in the root directory of this source tree.
@@ -5977,7 +6051,7 @@ lucide-react/dist/esm/icons/panel-right.js:
5977
6051
 
5978
6052
  lucide-react/dist/esm/icons/plus.js:
5979
6053
  (**
5980
- * @license lucide-react v0.298.0 - ISC
6054
+ * @license lucide-react v0.468.0 - ISC
5981
6055
  *
5982
6056
  * This source code is licensed under the ISC license.
5983
6057
  * See the LICENSE file in the root directory of this source tree.
@@ -5985,7 +6059,7 @@ lucide-react/dist/esm/icons/plus.js:
5985
6059
 
5986
6060
  lucide-react/dist/esm/icons/redo-2.js:
5987
6061
  (**
5988
- * @license lucide-react v0.298.0 - ISC
6062
+ * @license lucide-react v0.468.0 - ISC
5989
6063
  *
5990
6064
  * This source code is licensed under the ISC license.
5991
6065
  * See the LICENSE file in the root directory of this source tree.
@@ -5993,7 +6067,7 @@ lucide-react/dist/esm/icons/redo-2.js:
5993
6067
 
5994
6068
  lucide-react/dist/esm/icons/search.js:
5995
6069
  (**
5996
- * @license lucide-react v0.298.0 - ISC
6070
+ * @license lucide-react v0.468.0 - ISC
5997
6071
  *
5998
6072
  * This source code is licensed under the ISC license.
5999
6073
  * See the LICENSE file in the root directory of this source tree.
@@ -6001,7 +6075,7 @@ lucide-react/dist/esm/icons/search.js:
6001
6075
 
6002
6076
  lucide-react/dist/esm/icons/sliders-horizontal.js:
6003
6077
  (**
6004
- * @license lucide-react v0.298.0 - ISC
6078
+ * @license lucide-react v0.468.0 - ISC
6005
6079
  *
6006
6080
  * This source code is licensed under the ISC license.
6007
6081
  * See the LICENSE file in the root directory of this source tree.
@@ -6009,7 +6083,7 @@ lucide-react/dist/esm/icons/sliders-horizontal.js:
6009
6083
 
6010
6084
  lucide-react/dist/esm/icons/smartphone.js:
6011
6085
  (**
6012
- * @license lucide-react v0.298.0 - ISC
6086
+ * @license lucide-react v0.468.0 - ISC
6013
6087
  *
6014
6088
  * This source code is licensed under the ISC license.
6015
6089
  * See the LICENSE file in the root directory of this source tree.
@@ -6017,7 +6091,7 @@ lucide-react/dist/esm/icons/smartphone.js:
6017
6091
 
6018
6092
  lucide-react/dist/esm/icons/tablet.js:
6019
6093
  (**
6020
- * @license lucide-react v0.298.0 - ISC
6094
+ * @license lucide-react v0.468.0 - ISC
6021
6095
  *
6022
6096
  * This source code is licensed under the ISC license.
6023
6097
  * See the LICENSE file in the root directory of this source tree.
@@ -6025,7 +6099,7 @@ lucide-react/dist/esm/icons/tablet.js:
6025
6099
 
6026
6100
  lucide-react/dist/esm/icons/trash.js:
6027
6101
  (**
6028
- * @license lucide-react v0.298.0 - ISC
6102
+ * @license lucide-react v0.468.0 - ISC
6029
6103
  *
6030
6104
  * This source code is licensed under the ISC license.
6031
6105
  * See the LICENSE file in the root directory of this source tree.
@@ -6033,7 +6107,7 @@ lucide-react/dist/esm/icons/trash.js:
6033
6107
 
6034
6108
  lucide-react/dist/esm/icons/type.js:
6035
6109
  (**
6036
- * @license lucide-react v0.298.0 - ISC
6110
+ * @license lucide-react v0.468.0 - ISC
6037
6111
  *
6038
6112
  * This source code is licensed under the ISC license.
6039
6113
  * See the LICENSE file in the root directory of this source tree.
@@ -6041,15 +6115,7 @@ lucide-react/dist/esm/icons/type.js:
6041
6115
 
6042
6116
  lucide-react/dist/esm/icons/undo-2.js:
6043
6117
  (**
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
6118
+ * @license lucide-react v0.468.0 - ISC
6053
6119
  *
6054
6120
  * This source code is licensed under the ISC license.
6055
6121
  * See the LICENSE file in the root directory of this source tree.
@@ -6057,7 +6123,7 @@ lucide-react/dist/esm/icons/unlock.js:
6057
6123
 
6058
6124
  lucide-react/dist/esm/icons/zoom-in.js:
6059
6125
  (**
6060
- * @license lucide-react v0.298.0 - ISC
6126
+ * @license lucide-react v0.468.0 - ISC
6061
6127
  *
6062
6128
  * This source code is licensed under the ISC license.
6063
6129
  * See the LICENSE file in the root directory of this source tree.
@@ -6065,7 +6131,7 @@ lucide-react/dist/esm/icons/zoom-in.js:
6065
6131
 
6066
6132
  lucide-react/dist/esm/icons/zoom-out.js:
6067
6133
  (**
6068
- * @license lucide-react v0.298.0 - ISC
6134
+ * @license lucide-react v0.468.0 - ISC
6069
6135
  *
6070
6136
  * This source code is licensed under the ISC license.
6071
6137
  * See the LICENSE file in the root directory of this source tree.
@@ -6073,7 +6139,7 @@ lucide-react/dist/esm/icons/zoom-out.js:
6073
6139
 
6074
6140
  lucide-react/dist/esm/lucide-react.js:
6075
6141
  (**
6076
- * @license lucide-react v0.298.0 - ISC
6142
+ * @license lucide-react v0.468.0 - ISC
6077
6143
  *
6078
6144
  * This source code is licensed under the ISC license.
6079
6145
  * 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.0",
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",