@measured/puck-plugin-heading-analyzer 0.14.0-canary.1c4c076 → 0.14.0-canary.2c15323
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.ts +2 -0
- package/dist/index.js +9 -4
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
@@ -72703,7 +72703,10 @@ var require_dist = __commonJS({
|
|
72703
72703
|
);
|
72704
72704
|
const runResolvers = () => __async(void 0, null, function* () {
|
72705
72705
|
const newData = newAppState.data;
|
72706
|
-
const flatContent = Object.keys(newData.zones || {}).reduce((acc, zone) => [...acc, ...newData.zones[zone]], newData.content).filter((item) =>
|
72706
|
+
const flatContent = Object.keys(newData.zones || {}).reduce((acc, zone) => [...acc, ...newData.zones[zone]], newData.content).filter((item) => {
|
72707
|
+
var _a;
|
72708
|
+
return !!((_a = config.components[item.type]) == null ? void 0 : _a.resolveData);
|
72709
|
+
});
|
72707
72710
|
const applyIfChange = (dynamicDataMap, dynamicRoot) => {
|
72708
72711
|
const processed = applyDynamicProps(
|
72709
72712
|
appState.data,
|
@@ -73011,6 +73014,7 @@ var require_dist = __commonJS({
|
|
73011
73014
|
!readOnly && /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: getClassNameItem22("actions"), children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: getClassNameItem22("action"), children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
73012
73015
|
IconButton,
|
73013
73016
|
{
|
73017
|
+
disabled: field.min !== void 0 && field.min >= localState.arrayState.items.length,
|
73014
73018
|
onClick: (e2) => {
|
73015
73019
|
e2.stopPropagation();
|
73016
73020
|
const existingValue = [
|
@@ -73075,6 +73079,7 @@ var require_dist = __commonJS({
|
|
73075
73079
|
"button",
|
73076
73080
|
{
|
73077
73081
|
className: getClassName10("addButton"),
|
73082
|
+
disabled: field.max !== void 0 && localState.arrayState.items.length >= field.max,
|
73078
73083
|
onClick: () => {
|
73079
73084
|
const existingValue = value || [];
|
73080
73085
|
const newValue = [
|
@@ -73084,7 +73089,7 @@ var require_dist = __commonJS({
|
|
73084
73089
|
const newArrayState = regenerateArrayState(newValue);
|
73085
73090
|
onChange(newValue, mapArrayStateToUi(newArrayState));
|
73086
73091
|
},
|
73087
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(Plus, { size:
|
73092
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(Plus, { size: 21 })
|
73088
73093
|
}
|
73089
73094
|
)
|
73090
73095
|
]
|
@@ -74799,8 +74804,8 @@ var require_dist = __commonJS({
|
|
74799
74804
|
});
|
74800
74805
|
init_react_import2();
|
74801
74806
|
var usePuck2 = () => {
|
74802
|
-
const { state: appState, config, dispatch } = useAppContext2();
|
74803
|
-
return { appState, config, dispatch };
|
74807
|
+
const { state: appState, config, history, dispatch } = useAppContext2();
|
74808
|
+
return { appState, config, dispatch, history };
|
74804
74809
|
};
|
74805
74810
|
}
|
74806
74811
|
});
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@measured/puck-plugin-heading-analyzer",
|
3
|
-
"version": "0.14.0-canary.
|
3
|
+
"version": "0.14.0-canary.2c15323",
|
4
4
|
"author": "Measured Corporation Ltd <hello@measured.co>",
|
5
5
|
"repository": "measuredco/puck",
|
6
6
|
"bugs": "https://github.com/measuredco/puck/issues",
|
@@ -18,7 +18,7 @@
|
|
18
18
|
"dist"
|
19
19
|
],
|
20
20
|
"devDependencies": {
|
21
|
-
"@measured/puck": "^0.14.0-canary.
|
21
|
+
"@measured/puck": "^0.14.0-canary.2c15323",
|
22
22
|
"@types/react": "^18.2.0",
|
23
23
|
"@types/react-dom": "^18.2.0",
|
24
24
|
"eslint": "^7.32.0",
|