@sikka/hawa 0.31.10-next → 0.31.12-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/appLayout/index.d.mts +1 -0
- package/dist/appLayout/index.d.ts +1 -0
- package/dist/appLayout/index.js +163 -143
- package/dist/appLayout/index.js.map +1 -1
- package/dist/appLayout/index.mjs +158 -138
- package/dist/appLayout/index.mjs.map +1 -1
- package/dist/blocks/index.js +199 -196
- package/dist/blocks/index.mjs +3 -3
- package/dist/blocks/misc/index.js +145 -142
- package/dist/blocks/misc/index.mjs +63 -60
- package/dist/{chunk-UDCDD66A.mjs → chunk-JU6Q4Q3T.mjs} +21 -1
- package/dist/{chunk-JXN2PVGT.mjs → chunk-VZNDYO6H.mjs} +1 -1
- package/dist/elements/index.js +253 -250
- package/dist/elements/index.mjs +3 -3
- package/dist/hooks/index.js +3 -0
- package/dist/hooks/index.mjs +2 -2
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +749 -729
- package/dist/index.mjs +679 -659
- package/dist/layout/index.d.mts +1 -0
- package/dist/layout/index.d.ts +1 -0
- package/dist/layout/index.js +271 -251
- package/dist/layout/index.mjs +30 -28
- package/dist/tabs/index.js +26 -23
- package/dist/tabs/index.js.map +1 -1
- package/dist/tabs/index.mjs +26 -23
- package/dist/tabs/index.mjs.map +1 -1
- package/package.json +12 -12
- /package/dist/{chunk-R2SKHHDK.mjs → chunk-OPYDG34F.mjs} +0 -0
@@ -101,6 +101,7 @@ type AppLayoutTypes = {
|
|
101
101
|
drawerSize?: "sm" | "md" | "large";
|
102
102
|
/** Specifies the menu items for the profile menu. */
|
103
103
|
profileMenuItems?: MenuItemType[];
|
104
|
+
onAvatarClick?: () => void;
|
104
105
|
/**
|
105
106
|
* Specifies the width of the profile menu.
|
106
107
|
* - 'default': Default width.
|
@@ -101,6 +101,7 @@ type AppLayoutTypes = {
|
|
101
101
|
drawerSize?: "sm" | "md" | "large";
|
102
102
|
/** Specifies the menu items for the profile menu. */
|
103
103
|
profileMenuItems?: MenuItemType[];
|
104
|
+
onAvatarClick?: () => void;
|
104
105
|
/**
|
105
106
|
* Specifies the width of the profile menu.
|
106
107
|
* - 'default': Default width.
|