@measured/puck 0.13.1-canary.c38ee07 → 0.13.2-canary.7d861f5
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/index.js +4 -4
- package/package.json +7 -2
package/dist/index.js
CHANGED
@@ -29227,7 +29227,7 @@ var Button = ({
|
|
29227
29227
|
}) => {
|
29228
29228
|
const [loading, setLoading] = (0, import_react2.useState)(loadingProp);
|
29229
29229
|
(0, import_react2.useEffect)(() => setLoading(loadingProp), [loadingProp]);
|
29230
|
-
const ElementType = href ? "a" : "button";
|
29230
|
+
const ElementType = href ? "a" : onClick ? "button" : "div";
|
29231
29231
|
const el = /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
29232
29232
|
ElementType,
|
29233
29233
|
{
|
@@ -30527,8 +30527,8 @@ init_react_import();
|
|
30527
30527
|
|
30528
30528
|
// lib/generate-id.ts
|
30529
30529
|
init_react_import();
|
30530
|
-
var
|
30531
|
-
var generateId = (type) => `${type}-${(0,
|
30530
|
+
var import_uuid = require("uuid");
|
30531
|
+
var generateId = (type) => `${type}-${(0, import_uuid.v4)()}`;
|
30532
30532
|
|
30533
30533
|
// lib/reduce-related-zones.ts
|
30534
30534
|
var reduceRelatedZones = (item, data, fn) => {
|
@@ -32568,7 +32568,7 @@ var loadOverrides = ({
|
|
32568
32568
|
overrides,
|
32569
32569
|
plugins
|
32570
32570
|
}) => {
|
32571
|
-
const collected = overrides;
|
32571
|
+
const collected = __spreadValues({}, overrides);
|
32572
32572
|
plugins.forEach((plugin) => {
|
32573
32573
|
Object.keys(plugin.overrides).forEach((overridesType) => {
|
32574
32574
|
if (overridesType === "fieldTypes") {
|
package/package.json
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "@measured/puck",
|
3
|
-
"version": "0.13.
|
3
|
+
"version": "0.13.2-canary.7d861f5",
|
4
|
+
"author": "Measured Corporation Ltd <hello@measured.co>",
|
5
|
+
"repository": "measuredco/puck",
|
6
|
+
"bugs": "https://github.com/measuredco/puck/issues",
|
7
|
+
"homepage": "https://puckeditor.com",
|
4
8
|
"private": false,
|
5
9
|
"main": "./dist/index.js",
|
6
10
|
"types": "./dist/index.d.ts",
|
@@ -58,7 +62,8 @@
|
|
58
62
|
"deep-diff": "^1.0.2",
|
59
63
|
"react-hotkeys-hook": "^4.4.1",
|
60
64
|
"react-spinners": "^0.13.8",
|
61
|
-
"use-debounce": "^9.0.4"
|
65
|
+
"use-debounce": "^9.0.4",
|
66
|
+
"uuid": "^9.0.1"
|
62
67
|
},
|
63
68
|
"peerDependencies": {
|
64
69
|
"react": "^17.0.0 || ^18.0.0"
|