@metaboliccode-dev/widget 0.2.88 → 0.2.89
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 +1 -1
- package/dist/index.js +9 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2523,7 +2523,7 @@ function rA({
|
|
|
2523
2523
|
"button",
|
|
2524
2524
|
{
|
|
2525
2525
|
type: "button",
|
|
2526
|
-
className: `mb-note-button ${p.can_manage ? "mb-note-
|
|
2526
|
+
className: `mb-note-button ${p.can_manage ? "mb-note-trigger" : ""}`,
|
|
2527
2527
|
"aria-label": `${p.can_manage ? "Add note" : "View notes"}: ${U.section_name}`,
|
|
2528
2528
|
title: `${p.can_manage ? "Add note" : "View notes"}: ${U.section_name}`,
|
|
2529
2529
|
onClick: (r) => {
|
|
@@ -2589,19 +2589,22 @@ function Ql({
|
|
|
2589
2589
|
] });
|
|
2590
2590
|
}
|
|
2591
2591
|
function UV() {
|
|
2592
|
-
return /* @__PURE__ */
|
|
2592
|
+
return /* @__PURE__ */ a(
|
|
2593
2593
|
"svg",
|
|
2594
2594
|
{
|
|
2595
|
-
width: "
|
|
2596
|
-
height: "
|
|
2595
|
+
width: "22",
|
|
2596
|
+
height: "22",
|
|
2597
2597
|
viewBox: "0 0 24 24",
|
|
2598
2598
|
fill: "none",
|
|
2599
2599
|
stroke: "currentColor",
|
|
2600
|
-
strokeWidth: "1.
|
|
2600
|
+
strokeWidth: "1.7",
|
|
2601
2601
|
strokeLinecap: "round",
|
|
2602
2602
|
strokeLinejoin: "round",
|
|
2603
2603
|
"aria-hidden": "true",
|
|
2604
|
-
children:
|
|
2604
|
+
children: [
|
|
2605
|
+
/* @__PURE__ */ t("rect", { x: "5.5", y: "2.5", width: "13", height: "19", rx: "2" }),
|
|
2606
|
+
/* @__PURE__ */ t("path", { d: "M9 8h6M9 12h6M9 16h4" })
|
|
2607
|
+
]
|
|
2605
2608
|
}
|
|
2606
2609
|
);
|
|
2607
2610
|
}
|