@measured/puck-plugin-heading-analyzer 0.21.0-canary.3aa27d1d → 0.21.0-canary.56be3202
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.css +5 -149
- package/dist/index.d.mts +24 -13
- package/dist/index.d.ts +24 -13
- package/dist/index.js +93 -241
- package/dist/index.mjs +90 -238
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -269,17 +269,17 @@ import { useEffect as useEffect5, useState } from "react";
|
|
|
269
269
|
|
|
270
270
|
// css-module:/home/runner/work/puck/puck/packages/plugin-heading-analyzer/src/HeadingAnalyzer.module.css#css-module
|
|
271
271
|
init_react_import();
|
|
272
|
-
var HeadingAnalyzer_module_default = { "HeadingAnalyzer": "
|
|
272
|
+
var HeadingAnalyzer_module_default = { "HeadingAnalyzer": "_HeadingAnalyzer_yg0s7_1", "HeadingAnalyzer-cssWarning": "_HeadingAnalyzer-cssWarning_yg0s7_6", "HeadingAnalyzerItem": "_HeadingAnalyzerItem_yg0s7_10", "HeadingAnalyzerItem--missing": "_HeadingAnalyzerItem--missing_yg0s7_14" };
|
|
273
273
|
|
|
274
274
|
// src/HeadingAnalyzer.tsx
|
|
275
275
|
import { createUsePuck } from "@measured/puck";
|
|
276
276
|
|
|
277
|
-
// ../core/components/
|
|
277
|
+
// ../core/components/OutlineList/index.tsx
|
|
278
278
|
init_react_import();
|
|
279
279
|
|
|
280
|
-
// css-module:/home/runner/work/puck/puck/packages/core/components/
|
|
280
|
+
// css-module:/home/runner/work/puck/puck/packages/core/components/OutlineList/styles.module.css#css-module
|
|
281
281
|
init_react_import();
|
|
282
|
-
var styles_module_default = { "
|
|
282
|
+
var styles_module_default = { "OutlineList": "_OutlineList_w4lzv_1", "OutlineListItem": "_OutlineListItem_w4lzv_25", "OutlineListItem--clickable": "_OutlineListItem--clickable_w4lzv_45" };
|
|
283
283
|
|
|
284
284
|
// ../core/lib/get-class-name-factory.ts
|
|
285
285
|
init_react_import();
|
|
@@ -308,29 +308,50 @@ var getClassNameFactory = (rootClass, styles, config = { baseClass: "" }) => (op
|
|
|
308
308
|
};
|
|
309
309
|
var get_class_name_factory_default = getClassNameFactory;
|
|
310
310
|
|
|
311
|
-
// ../core/components/
|
|
312
|
-
init_react_import();
|
|
313
|
-
|
|
314
|
-
// css-module:/home/runner/work/puck/puck/packages/core/components/Heading/styles.module.css#css-module
|
|
315
|
-
init_react_import();
|
|
316
|
-
var styles_module_default2 = { "Heading": "_Heading_qxrry_1", "Heading--xxxxl": "_Heading--xxxxl_qxrry_12", "Heading--xxxl": "_Heading--xxxl_qxrry_18", "Heading--xxl": "_Heading--xxl_qxrry_22", "Heading--xl": "_Heading--xl_qxrry_26", "Heading--l": "_Heading--l_qxrry_30", "Heading--m": "_Heading--m_qxrry_34", "Heading--s": "_Heading--s_qxrry_38", "Heading--xs": "_Heading--xs_qxrry_42" };
|
|
317
|
-
|
|
318
|
-
// ../core/components/Heading/index.tsx
|
|
311
|
+
// ../core/components/OutlineList/index.tsx
|
|
319
312
|
import { jsx } from "react/jsx-runtime";
|
|
320
|
-
var getClassName = get_class_name_factory_default("
|
|
321
|
-
var
|
|
322
|
-
|
|
313
|
+
var getClassName = get_class_name_factory_default("OutlineList", styles_module_default);
|
|
314
|
+
var getClassNameItem = get_class_name_factory_default("OutlineListItem", styles_module_default);
|
|
315
|
+
var OutlineList = ({ children }) => {
|
|
316
|
+
return /* @__PURE__ */ jsx("ul", { className: getClassName(), children });
|
|
317
|
+
};
|
|
318
|
+
OutlineList.Clickable = ({ children }) => /* @__PURE__ */ jsx("div", { className: getClassNameItem({ clickable: true }), children });
|
|
319
|
+
OutlineList.Item = ({
|
|
320
|
+
children,
|
|
321
|
+
onClick
|
|
322
|
+
}) => {
|
|
323
323
|
return /* @__PURE__ */ jsx(
|
|
324
|
-
|
|
324
|
+
"li",
|
|
325
325
|
{
|
|
326
|
-
className:
|
|
327
|
-
|
|
328
|
-
}),
|
|
326
|
+
className: getClassNameItem({ clickable: !!onClick }),
|
|
327
|
+
onClick,
|
|
329
328
|
children
|
|
330
329
|
}
|
|
331
330
|
);
|
|
332
331
|
};
|
|
333
332
|
|
|
333
|
+
// ../core/lib/scroll-into-view.ts
|
|
334
|
+
init_react_import();
|
|
335
|
+
var scrollIntoView = (el) => {
|
|
336
|
+
const oldStyle = __spreadValues({}, el.style);
|
|
337
|
+
el.style.scrollMargin = "256px";
|
|
338
|
+
if (el) {
|
|
339
|
+
el == null ? void 0 : el.scrollIntoView({ behavior: "smooth" });
|
|
340
|
+
el.style.scrollMargin = oldStyle.scrollMargin || "";
|
|
341
|
+
}
|
|
342
|
+
};
|
|
343
|
+
|
|
344
|
+
// ../core/lib/get-frame.ts
|
|
345
|
+
init_react_import();
|
|
346
|
+
var getFrame = () => {
|
|
347
|
+
if (typeof window === "undefined") return;
|
|
348
|
+
let frameEl = document.querySelector("#preview-frame");
|
|
349
|
+
if ((frameEl == null ? void 0 : frameEl.tagName) === "IFRAME") {
|
|
350
|
+
return frameEl.contentDocument || document;
|
|
351
|
+
}
|
|
352
|
+
return (frameEl == null ? void 0 : frameEl.ownerDocument) || document;
|
|
353
|
+
};
|
|
354
|
+
|
|
334
355
|
// ../../node_modules/lucide-react/dist/esm/lucide-react.js
|
|
335
356
|
init_react_import();
|
|
336
357
|
|
|
@@ -418,15 +439,29 @@ var createLucideIcon = (iconName, iconNode) => {
|
|
|
418
439
|
return Component;
|
|
419
440
|
};
|
|
420
441
|
|
|
421
|
-
// ../../node_modules/lucide-react/dist/esm/icons/
|
|
442
|
+
// ../../node_modules/lucide-react/dist/esm/icons/heading-1.js
|
|
422
443
|
init_react_import();
|
|
423
|
-
var
|
|
424
|
-
["path", { d: "
|
|
444
|
+
var Heading1 = createLucideIcon("Heading1", [
|
|
445
|
+
["path", { d: "M4 12h8", key: "17cfdx" }],
|
|
446
|
+
["path", { d: "M4 18V6", key: "1rz3zl" }],
|
|
447
|
+
["path", { d: "M12 18V6", key: "zqpxq5" }],
|
|
448
|
+
["path", { d: "m17 12 3-2v8", key: "1hhhft" }]
|
|
425
449
|
]);
|
|
426
450
|
|
|
427
|
-
// ../core/lib/
|
|
451
|
+
// ../core/lib/index.ts
|
|
452
|
+
init_react_import();
|
|
453
|
+
|
|
454
|
+
// ../core/lib/filter.ts
|
|
455
|
+
init_react_import();
|
|
456
|
+
|
|
457
|
+
// ../core/lib/data/reorder.ts
|
|
458
|
+
init_react_import();
|
|
459
|
+
|
|
460
|
+
// ../core/lib/data/replace.ts
|
|
461
|
+
init_react_import();
|
|
462
|
+
|
|
463
|
+
// ../core/lib/use-reset-auto-zoom.ts
|
|
428
464
|
init_react_import();
|
|
429
|
-
import { useMemo } from "react";
|
|
430
465
|
|
|
431
466
|
// ../core/store/index.ts
|
|
432
467
|
init_react_import();
|
|
@@ -1398,7 +1433,8 @@ init_react_import();
|
|
|
1398
1433
|
var defaultViewports = [
|
|
1399
1434
|
{ width: 360, height: "auto", icon: "Smartphone", label: "Small" },
|
|
1400
1435
|
{ width: 768, height: "auto", icon: "Tablet", label: "Medium" },
|
|
1401
|
-
{ width: 1280, height: "auto", icon: "Monitor", label: "Large" }
|
|
1436
|
+
{ width: 1280, height: "auto", icon: "Monitor", label: "Large" },
|
|
1437
|
+
{ width: "100%", height: "auto", icon: "FullWidth", label: "Full-width" }
|
|
1402
1438
|
];
|
|
1403
1439
|
|
|
1404
1440
|
// ../../node_modules/zustand/esm/vanilla.mjs
|
|
@@ -2303,7 +2339,8 @@ var defaultAppState = {
|
|
|
2303
2339
|
options: [],
|
|
2304
2340
|
controlsVisible: true
|
|
2305
2341
|
},
|
|
2306
|
-
field: { focus: null }
|
|
2342
|
+
field: { focus: null },
|
|
2343
|
+
plugin: { current: null }
|
|
2307
2344
|
},
|
|
2308
2345
|
indexes: {
|
|
2309
2346
|
nodes: {},
|
|
@@ -2319,6 +2356,7 @@ var createAppStore = (initialAppStore) => create()(
|
|
|
2319
2356
|
subscribeWithSelector((set, get) => {
|
|
2320
2357
|
var _a, _b;
|
|
2321
2358
|
return __spreadProps(__spreadValues({
|
|
2359
|
+
instanceId: generateId(),
|
|
2322
2360
|
state: defaultAppState,
|
|
2323
2361
|
config: { components: {} },
|
|
2324
2362
|
componentState: {},
|
|
@@ -2339,6 +2377,11 @@ var createAppStore = (initialAppStore) => create()(
|
|
|
2339
2377
|
history: createHistorySlice(set, get),
|
|
2340
2378
|
nodes: createNodesSlice(set, get),
|
|
2341
2379
|
permissions: createPermissionsSlice(set, get),
|
|
2380
|
+
getCurrentData: () => {
|
|
2381
|
+
var _a2;
|
|
2382
|
+
const s = get();
|
|
2383
|
+
return (_a2 = s.selectedItem) != null ? _a2 : s.state.data.root;
|
|
2384
|
+
},
|
|
2342
2385
|
getComponentConfig: (type) => {
|
|
2343
2386
|
var _a2;
|
|
2344
2387
|
const { config, selectedItem } = get();
|
|
@@ -2489,203 +2532,14 @@ var createAppStore = (initialAppStore) => create()(
|
|
|
2489
2532
|
})
|
|
2490
2533
|
);
|
|
2491
2534
|
var appStoreContext = createContext(createAppStore());
|
|
2492
|
-
function useAppStore(selector) {
|
|
2493
|
-
const context = useContext(appStoreContext);
|
|
2494
|
-
return useStore(context, selector);
|
|
2495
|
-
}
|
|
2496
|
-
function useAppStoreApi() {
|
|
2497
|
-
return useContext(appStoreContext);
|
|
2498
|
-
}
|
|
2499
|
-
|
|
2500
|
-
// ../core/lib/use-breadcrumbs.ts
|
|
2501
|
-
var useBreadcrumbs = (renderCount) => {
|
|
2502
|
-
const selectedId = useAppStore((s) => {
|
|
2503
|
-
var _a;
|
|
2504
|
-
return (_a = s.selectedItem) == null ? void 0 : _a.props.id;
|
|
2505
|
-
});
|
|
2506
|
-
const config = useAppStore((s) => s.config);
|
|
2507
|
-
const path = useAppStore((s) => {
|
|
2508
|
-
var _a;
|
|
2509
|
-
return (_a = s.state.indexes.nodes[selectedId]) == null ? void 0 : _a.path;
|
|
2510
|
-
});
|
|
2511
|
-
const appStore = useAppStoreApi();
|
|
2512
|
-
return useMemo(() => {
|
|
2513
|
-
const breadcrumbs = (path == null ? void 0 : path.map((zoneCompound) => {
|
|
2514
|
-
var _a, _b, _c;
|
|
2515
|
-
const [componentId] = zoneCompound.split(":");
|
|
2516
|
-
if (componentId === "root") {
|
|
2517
|
-
return {
|
|
2518
|
-
label: "Page",
|
|
2519
|
-
selector: null
|
|
2520
|
-
};
|
|
2521
|
-
}
|
|
2522
|
-
const node = appStore.getState().state.indexes.nodes[componentId];
|
|
2523
|
-
const parentId = node.path[node.path.length - 1];
|
|
2524
|
-
const contentIds = ((_a = appStore.getState().state.indexes.zones[parentId]) == null ? void 0 : _a.contentIds) || [];
|
|
2525
|
-
const index = contentIds.indexOf(componentId);
|
|
2526
|
-
const label = node ? (_c = (_b = config.components[node.data.type]) == null ? void 0 : _b.label) != null ? _c : node.data.type : "Component";
|
|
2527
|
-
return {
|
|
2528
|
-
label,
|
|
2529
|
-
selector: node ? {
|
|
2530
|
-
index,
|
|
2531
|
-
zone: node.path[node.path.length - 1]
|
|
2532
|
-
} : null
|
|
2533
|
-
};
|
|
2534
|
-
})) || [];
|
|
2535
|
-
if (renderCount) {
|
|
2536
|
-
return breadcrumbs.slice(breadcrumbs.length - renderCount);
|
|
2537
|
-
}
|
|
2538
|
-
return breadcrumbs;
|
|
2539
|
-
}, [path, renderCount]);
|
|
2540
|
-
};
|
|
2541
|
-
|
|
2542
|
-
// ../core/components/Loader/index.tsx
|
|
2543
|
-
init_react_import();
|
|
2544
|
-
|
|
2545
|
-
// ../core/lib/index.ts
|
|
2546
|
-
init_react_import();
|
|
2547
|
-
|
|
2548
|
-
// ../core/lib/filter.ts
|
|
2549
|
-
init_react_import();
|
|
2550
|
-
|
|
2551
|
-
// ../core/lib/data/reorder.ts
|
|
2552
|
-
init_react_import();
|
|
2553
|
-
|
|
2554
|
-
// ../core/lib/data/replace.ts
|
|
2555
|
-
init_react_import();
|
|
2556
|
-
|
|
2557
|
-
// ../core/lib/use-reset-auto-zoom.ts
|
|
2558
|
-
init_react_import();
|
|
2559
2535
|
|
|
2560
2536
|
// ../core/lib/get-zoom-config.ts
|
|
2561
2537
|
init_react_import();
|
|
2562
2538
|
|
|
2563
|
-
// css-module:/home/runner/work/puck/puck/packages/core/components/Loader/styles.module.css#css-module
|
|
2564
|
-
init_react_import();
|
|
2565
|
-
var styles_module_default3 = { "Loader": "_Loader_nacdm_13", "loader-animation": "_loader-animation_nacdm_1" };
|
|
2566
|
-
|
|
2567
|
-
// ../core/components/Loader/index.tsx
|
|
2568
|
-
import { jsx as jsx2 } from "react/jsx-runtime";
|
|
2569
|
-
var getClassName2 = get_class_name_factory_default("Loader", styles_module_default3);
|
|
2570
|
-
var Loader = (_a) => {
|
|
2571
|
-
var _b = _a, {
|
|
2572
|
-
color,
|
|
2573
|
-
size = 16
|
|
2574
|
-
} = _b, props = __objRest(_b, [
|
|
2575
|
-
"color",
|
|
2576
|
-
"size"
|
|
2577
|
-
]);
|
|
2578
|
-
return /* @__PURE__ */ jsx2(
|
|
2579
|
-
"span",
|
|
2580
|
-
__spreadValues({
|
|
2581
|
-
className: getClassName2(),
|
|
2582
|
-
style: {
|
|
2583
|
-
width: size,
|
|
2584
|
-
height: size,
|
|
2585
|
-
color
|
|
2586
|
-
},
|
|
2587
|
-
"aria-label": "loading"
|
|
2588
|
-
}, props)
|
|
2589
|
-
);
|
|
2590
|
-
};
|
|
2591
|
-
|
|
2592
|
-
// ../core/components/SidebarSection/index.tsx
|
|
2593
|
-
import { jsx as jsx3, jsxs } from "react/jsx-runtime";
|
|
2594
|
-
var getClassName3 = get_class_name_factory_default("SidebarSection", styles_module_default);
|
|
2595
|
-
var SidebarSection = ({
|
|
2596
|
-
children,
|
|
2597
|
-
title,
|
|
2598
|
-
background,
|
|
2599
|
-
showBreadcrumbs,
|
|
2600
|
-
noBorderTop,
|
|
2601
|
-
noPadding,
|
|
2602
|
-
isLoading
|
|
2603
|
-
}) => {
|
|
2604
|
-
const setUi = useAppStore((s) => s.setUi);
|
|
2605
|
-
const breadcrumbs = useBreadcrumbs(1);
|
|
2606
|
-
return /* @__PURE__ */ jsxs(
|
|
2607
|
-
"div",
|
|
2608
|
-
{
|
|
2609
|
-
className: getClassName3({ noBorderTop, noPadding }),
|
|
2610
|
-
style: { background },
|
|
2611
|
-
children: [
|
|
2612
|
-
/* @__PURE__ */ jsx3("div", { className: getClassName3("title"), children: /* @__PURE__ */ jsxs("div", { className: getClassName3("breadcrumbs"), children: [
|
|
2613
|
-
showBreadcrumbs ? breadcrumbs.map((breadcrumb, i) => /* @__PURE__ */ jsxs("div", { className: getClassName3("breadcrumb"), children: [
|
|
2614
|
-
/* @__PURE__ */ jsx3(
|
|
2615
|
-
"button",
|
|
2616
|
-
{
|
|
2617
|
-
type: "button",
|
|
2618
|
-
className: getClassName3("breadcrumbLabel"),
|
|
2619
|
-
onClick: () => setUi({ itemSelector: breadcrumb.selector }),
|
|
2620
|
-
children: breadcrumb.label
|
|
2621
|
-
}
|
|
2622
|
-
),
|
|
2623
|
-
/* @__PURE__ */ jsx3(ChevronRight, { size: 16 })
|
|
2624
|
-
] }, i)) : null,
|
|
2625
|
-
/* @__PURE__ */ jsx3("div", { className: getClassName3("heading"), children: /* @__PURE__ */ jsx3(Heading, { rank: "2", size: "xs", children: title }) })
|
|
2626
|
-
] }) }),
|
|
2627
|
-
/* @__PURE__ */ jsx3("div", { className: getClassName3("content"), children }),
|
|
2628
|
-
isLoading && /* @__PURE__ */ jsx3("div", { className: getClassName3("loadingOverlay"), children: /* @__PURE__ */ jsx3(Loader, { size: 32 }) })
|
|
2629
|
-
]
|
|
2630
|
-
}
|
|
2631
|
-
);
|
|
2632
|
-
};
|
|
2633
|
-
|
|
2634
|
-
// ../core/components/OutlineList/index.tsx
|
|
2635
|
-
init_react_import();
|
|
2636
|
-
|
|
2637
|
-
// css-module:/home/runner/work/puck/puck/packages/core/components/OutlineList/styles.module.css#css-module
|
|
2638
|
-
init_react_import();
|
|
2639
|
-
var styles_module_default4 = { "OutlineList": "_OutlineList_w4lzv_1", "OutlineListItem": "_OutlineListItem_w4lzv_25", "OutlineListItem--clickable": "_OutlineListItem--clickable_w4lzv_45" };
|
|
2640
|
-
|
|
2641
|
-
// ../core/components/OutlineList/index.tsx
|
|
2642
|
-
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
2643
|
-
var getClassName4 = get_class_name_factory_default("OutlineList", styles_module_default4);
|
|
2644
|
-
var getClassNameItem = get_class_name_factory_default("OutlineListItem", styles_module_default4);
|
|
2645
|
-
var OutlineList = ({ children }) => {
|
|
2646
|
-
return /* @__PURE__ */ jsx4("ul", { className: getClassName4(), children });
|
|
2647
|
-
};
|
|
2648
|
-
OutlineList.Clickable = ({ children }) => /* @__PURE__ */ jsx4("div", { className: getClassNameItem({ clickable: true }), children });
|
|
2649
|
-
OutlineList.Item = ({
|
|
2650
|
-
children,
|
|
2651
|
-
onClick
|
|
2652
|
-
}) => {
|
|
2653
|
-
return /* @__PURE__ */ jsx4(
|
|
2654
|
-
"li",
|
|
2655
|
-
{
|
|
2656
|
-
className: getClassNameItem({ clickable: !!onClick }),
|
|
2657
|
-
onClick,
|
|
2658
|
-
children
|
|
2659
|
-
}
|
|
2660
|
-
);
|
|
2661
|
-
};
|
|
2662
|
-
|
|
2663
|
-
// ../core/lib/scroll-into-view.ts
|
|
2664
|
-
init_react_import();
|
|
2665
|
-
var scrollIntoView = (el) => {
|
|
2666
|
-
const oldStyle = __spreadValues({}, el.style);
|
|
2667
|
-
el.style.scrollMargin = "256px";
|
|
2668
|
-
if (el) {
|
|
2669
|
-
el == null ? void 0 : el.scrollIntoView({ behavior: "smooth" });
|
|
2670
|
-
el.style.scrollMargin = oldStyle.scrollMargin || "";
|
|
2671
|
-
}
|
|
2672
|
-
};
|
|
2673
|
-
|
|
2674
|
-
// ../core/lib/get-frame.ts
|
|
2675
|
-
init_react_import();
|
|
2676
|
-
var getFrame = () => {
|
|
2677
|
-
if (typeof window === "undefined") return;
|
|
2678
|
-
let frameEl = document.querySelector("#preview-frame");
|
|
2679
|
-
if ((frameEl == null ? void 0 : frameEl.tagName) === "IFRAME") {
|
|
2680
|
-
return frameEl.contentDocument || document;
|
|
2681
|
-
}
|
|
2682
|
-
return (frameEl == null ? void 0 : frameEl.ownerDocument) || document;
|
|
2683
|
-
};
|
|
2684
|
-
|
|
2685
2539
|
// src/HeadingAnalyzer.tsx
|
|
2686
2540
|
import ReactFromJSONModule from "react-from-json";
|
|
2687
|
-
import { Fragment, jsx as
|
|
2688
|
-
var
|
|
2541
|
+
import { Fragment, jsx as jsx2, jsxs } from "react/jsx-runtime";
|
|
2542
|
+
var getClassName2 = get_class_name_factory_default("HeadingAnalyzer", HeadingAnalyzer_module_default);
|
|
2689
2543
|
var getClassNameItem2 = get_class_name_factory_default("HeadingAnalyzerItem", HeadingAnalyzer_module_default);
|
|
2690
2544
|
var ReactFromJSON = ReactFromJSONModule.default || ReactFromJSONModule;
|
|
2691
2545
|
var getOutline = ({ frame } = {}) => {
|
|
@@ -2776,11 +2630,11 @@ var HeadingAnalyzer = () => {
|
|
|
2776
2630
|
frameObserver.disconnect();
|
|
2777
2631
|
};
|
|
2778
2632
|
}, [data]);
|
|
2779
|
-
return /* @__PURE__ */
|
|
2780
|
-
/* @__PURE__ */
|
|
2633
|
+
return /* @__PURE__ */ jsxs("div", { className: getClassName2(), children: [
|
|
2634
|
+
/* @__PURE__ */ jsxs(
|
|
2781
2635
|
"small",
|
|
2782
2636
|
{
|
|
2783
|
-
className:
|
|
2637
|
+
className: getClassName2("cssWarning"),
|
|
2784
2638
|
style: {
|
|
2785
2639
|
color: "var(--puck-color-red-04)",
|
|
2786
2640
|
display: "block",
|
|
@@ -2789,19 +2643,19 @@ var HeadingAnalyzer = () => {
|
|
|
2789
2643
|
children: [
|
|
2790
2644
|
"Heading analyzer styles not loaded. Please review the",
|
|
2791
2645
|
" ",
|
|
2792
|
-
/* @__PURE__ */
|
|
2646
|
+
/* @__PURE__ */ jsx2("a", { href: "https://github.com/measuredco/puck/blob/main/packages/plugin-heading-analyzer/README.md", children: "README" }),
|
|
2793
2647
|
"."
|
|
2794
2648
|
]
|
|
2795
2649
|
}
|
|
2796
2650
|
),
|
|
2797
|
-
hierarchy.length === 0 && /* @__PURE__ */
|
|
2798
|
-
/* @__PURE__ */
|
|
2651
|
+
hierarchy.length === 0 && /* @__PURE__ */ jsx2("div", { children: "No headings." }),
|
|
2652
|
+
/* @__PURE__ */ jsx2(OutlineList, { children: /* @__PURE__ */ jsx2(
|
|
2799
2653
|
ReactFromJSON,
|
|
2800
2654
|
{
|
|
2801
2655
|
mapping: {
|
|
2802
|
-
Root: (props) => /* @__PURE__ */
|
|
2803
|
-
OutlineListItem: (props) => /* @__PURE__ */
|
|
2804
|
-
/* @__PURE__ */
|
|
2656
|
+
Root: (props) => /* @__PURE__ */ jsx2(Fragment, { children: props.children }),
|
|
2657
|
+
OutlineListItem: (props) => /* @__PURE__ */ jsxs(OutlineList.Item, { children: [
|
|
2658
|
+
/* @__PURE__ */ jsx2(OutlineList.Clickable, { children: /* @__PURE__ */ jsx2(
|
|
2805
2659
|
"small",
|
|
2806
2660
|
{
|
|
2807
2661
|
className: getClassNameItem2({ missing: props.missing }),
|
|
@@ -2819,14 +2673,14 @@ var HeadingAnalyzer = () => {
|
|
|
2819
2673
|
}, 2e3);
|
|
2820
2674
|
}
|
|
2821
2675
|
},
|
|
2822
|
-
children: props.missing ? /* @__PURE__ */
|
|
2823
|
-
/* @__PURE__ */
|
|
2676
|
+
children: props.missing ? /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
2677
|
+
/* @__PURE__ */ jsxs("b", { children: [
|
|
2824
2678
|
"H",
|
|
2825
2679
|
props.rank
|
|
2826
2680
|
] }),
|
|
2827
2681
|
": Missing"
|
|
2828
|
-
] }) : /* @__PURE__ */
|
|
2829
|
-
/* @__PURE__ */
|
|
2682
|
+
] }) : /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
2683
|
+
/* @__PURE__ */ jsxs("b", { children: [
|
|
2830
2684
|
"H",
|
|
2831
2685
|
props.rank
|
|
2832
2686
|
] }),
|
|
@@ -2835,7 +2689,7 @@ var HeadingAnalyzer = () => {
|
|
|
2835
2689
|
] })
|
|
2836
2690
|
}
|
|
2837
2691
|
) }),
|
|
2838
|
-
/* @__PURE__ */
|
|
2692
|
+
/* @__PURE__ */ jsx2(OutlineList, { children: props.children })
|
|
2839
2693
|
] })
|
|
2840
2694
|
},
|
|
2841
2695
|
entry: {
|
|
@@ -2856,12 +2710,10 @@ var HeadingAnalyzer = () => {
|
|
|
2856
2710
|
] });
|
|
2857
2711
|
};
|
|
2858
2712
|
var headingAnalyzer = {
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
] })
|
|
2864
|
-
}
|
|
2713
|
+
name: "heading-analyzer",
|
|
2714
|
+
label: "Audit",
|
|
2715
|
+
render: HeadingAnalyzer,
|
|
2716
|
+
icon: /* @__PURE__ */ jsx2(Heading1, {})
|
|
2865
2717
|
};
|
|
2866
2718
|
var HeadingAnalyzer_default = headingAnalyzer;
|
|
2867
2719
|
export {
|
|
@@ -2880,7 +2732,7 @@ lucide-react/dist/esm/shared/src/utils.js:
|
|
|
2880
2732
|
lucide-react/dist/esm/defaultAttributes.js:
|
|
2881
2733
|
lucide-react/dist/esm/Icon.js:
|
|
2882
2734
|
lucide-react/dist/esm/createLucideIcon.js:
|
|
2883
|
-
lucide-react/dist/esm/icons/
|
|
2735
|
+
lucide-react/dist/esm/icons/heading-1.js:
|
|
2884
2736
|
lucide-react/dist/esm/lucide-react.js:
|
|
2885
2737
|
(**
|
|
2886
2738
|
* @license lucide-react v0.468.0 - ISC
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@measured/puck-plugin-heading-analyzer",
|
|
3
|
-
"version": "0.21.0-canary.
|
|
3
|
+
"version": "0.21.0-canary.56be3202",
|
|
4
4
|
"author": "Chris Villa <chris@puckeditor.com>",
|
|
5
5
|
"repository": "measuredco/puck",
|
|
6
6
|
"bugs": "https://github.com/measuredco/puck/issues",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dist"
|
|
26
26
|
],
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@measured/puck": "^0.21.0-canary.
|
|
28
|
+
"@measured/puck": "^0.21.0-canary.56be3202",
|
|
29
29
|
"@types/minimatch": "3.0.5",
|
|
30
30
|
"@types/react": "^19.0.1",
|
|
31
31
|
"@types/react-dom": "^19.0.2",
|