@sikka/hawa 0.30.12-next → 0.30.14-next
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/{DropdownMenu-o2-hzTmS.d.mts → DropdownMenu-arqV1gRt.d.mts} +1 -1
- package/dist/{DropdownMenu-q6HfeO08.d.ts → DropdownMenu-sSnQc6fT.d.ts} +1 -1
- package/dist/{Radio-ZM5l4CwH.d.mts → Radio-9MkZay6D.d.mts} +3 -3
- package/dist/{Radio-MHGhfbpA.d.ts → Radio-bhKmANMf.d.ts} +3 -3
- package/dist/appLayout/index.js +6 -2
- package/dist/appLayout/index.js.map +1 -1
- package/dist/appLayout/index.mjs +6 -2
- package/dist/appLayout/index.mjs.map +1 -1
- package/dist/appTopbar/index.js +3 -5
- package/dist/appTopbar/index.js.map +1 -1
- package/dist/appTopbar/index.mjs +3 -5
- package/dist/appTopbar/index.mjs.map +1 -1
- package/dist/blocks/auth/index.js +1 -1
- package/dist/blocks/auth/index.mjs +2 -2
- package/dist/blocks/feedback/index.js +179 -177
- package/dist/blocks/feedback/index.mjs +2 -2
- package/dist/blocks/index.d.mts +2 -2
- package/dist/blocks/index.d.ts +2 -2
- package/dist/blocks/index.js +181 -179
- package/dist/blocks/index.mjs +3 -3
- package/dist/blocks/misc/index.js +1 -1
- package/dist/blocks/misc/index.mjs +2 -2
- package/dist/blocks/pricing/index.js +179 -177
- package/dist/blocks/pricing/index.mjs +1 -1
- package/dist/{chunk-3GZMGTI5.mjs → chunk-OUAQNQWP.mjs} +180 -178
- package/dist/chunk-R52CZJK3.mjs +215 -0
- package/dist/dataTable/index.js.map +1 -1
- package/dist/dataTable/index.mjs.map +1 -1
- package/dist/dropdownMenu/index.d.mts +1 -1
- package/dist/dropdownMenu/index.d.ts +1 -1
- package/dist/dropdownMenu/index.js.map +1 -1
- package/dist/dropdownMenu/index.mjs.map +1 -1
- package/dist/elements/index.d.mts +3 -3
- package/dist/elements/index.d.ts +3 -3
- package/dist/elements/index.js +179 -177
- package/dist/elements/index.mjs +1 -1
- package/dist/index.css +9 -0
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +188 -182
- package/dist/index.mjs +189 -183
- package/dist/interfaceSettings/index.js +179 -177
- package/dist/interfaceSettings/index.js.map +1 -1
- package/dist/interfaceSettings/index.mjs +180 -178
- package/dist/interfaceSettings/index.mjs.map +1 -1
- package/dist/layout/index.d.mts +1 -1
- package/dist/layout/index.d.ts +1 -1
- package/dist/layout/index.js +7 -3
- package/dist/layout/index.mjs +7 -3
- package/dist/phoneInput/index.js.map +1 -1
- package/dist/phoneInput/index.mjs.map +1 -1
- package/dist/radio/index.d.mts +2 -2
- package/dist/radio/index.d.ts +2 -2
- package/dist/radio/index.js +179 -177
- package/dist/radio/index.js.map +1 -1
- package/dist/radio/index.mjs +180 -178
- package/dist/radio/index.mjs.map +1 -1
- package/dist/select/index.d.mts +1 -1
- package/dist/select/index.d.ts +1 -1
- package/dist/select/index.js +3 -1
- package/dist/select/index.js.map +1 -1
- package/dist/select/index.mjs +3 -1
- package/dist/select/index.mjs.map +1 -1
- package/dist/splitButton/index.js.map +1 -1
- package/dist/splitButton/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-U42KD2OQ.mjs +0 -213
- /package/dist/{chunk-M3IRSZWA.mjs → chunk-ER7YWU7Z.mjs} +0 -0
package/dist/layout/index.mjs
CHANGED
@@ -414,7 +414,11 @@ var AppLayout = ({
|
|
414
414
|
let openDrawerWidth = 200;
|
415
415
|
let drawerSizeStyle = {
|
416
416
|
opened: { sm: "100", md: openDrawerWidth, lg: "250" },
|
417
|
-
closed: {
|
417
|
+
closed: {
|
418
|
+
sm: closeDrawerWidth,
|
419
|
+
md: closeDrawerWidth,
|
420
|
+
lg: closeDrawerWidth
|
421
|
+
}
|
418
422
|
};
|
419
423
|
const ref = useRef(null);
|
420
424
|
const isRTL = direction === "rtl";
|
@@ -527,7 +531,7 @@ var AppLayout = ({
|
|
527
531
|
sideOffset: 5,
|
528
532
|
width: profileMenuWidth,
|
529
533
|
direction: isRTL ? "rtl" : "ltr",
|
530
|
-
items: props.profileMenuItems,
|
534
|
+
items: props.profileMenuItems || [],
|
531
535
|
onItemSelect: (e) => console.log("selecting item ", e),
|
532
536
|
trigger: /* @__PURE__ */ React5.createElement("div", { className: "hawa-relative hawa-h-8 hawa-w-8 hawa-cursor-pointer hawa-overflow-clip hawa-rounded hawa-ring-1 hawa-ring-primary/30 dark:hawa-bg-gray-600" }, props.avatarImage ? /* @__PURE__ */ React5.createElement("img", { src: props.avatarImage, alt: "User Avatar" }) : /* @__PURE__ */ React5.createElement(
|
533
537
|
"svg",
|
@@ -827,7 +831,7 @@ var AppTopbar = ({ ...props }) => {
|
|
827
831
|
side: "bottom",
|
828
832
|
sideOffset: 5,
|
829
833
|
direction: isRTL ? "rtl" : "ltr",
|
830
|
-
items: props.profileMenuItems,
|
834
|
+
items: props.profileMenuItems || [],
|
831
835
|
onItemSelect: (e) => console.log("selecting item ", e),
|
832
836
|
trigger: /* @__PURE__ */ React6.createElement("div", { className: "hawa-relative hawa-h-8 hawa-w-8 hawa-cursor-pointer hawa-overflow-clip hawa-rounded hawa-ring-1 hawa-ring-primary/30 dark:hawa-bg-gray-600" }, props.avatarImage ? /* @__PURE__ */ React6.createElement("img", { src: props.avatarImage, alt: "User Avatar" }) : /* @__PURE__ */ React6.createElement(
|
833
837
|
"svg",
|