@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
package/dist/elements/index.mjs
CHANGED
@@ -27,10 +27,10 @@ import {
|
|
27
27
|
TabsTrigger,
|
28
28
|
Textarea,
|
29
29
|
UncheckMark
|
30
|
-
} from "../chunk-
|
30
|
+
} from "../chunk-VZNDYO6H.mjs";
|
31
31
|
import {
|
32
32
|
useClipboard
|
33
|
-
} from "../chunk-
|
33
|
+
} from "../chunk-OPYDG34F.mjs";
|
34
34
|
import {
|
35
35
|
Sheet,
|
36
36
|
SheetClose,
|
@@ -79,7 +79,7 @@ import {
|
|
79
79
|
} from "../chunk-MQWYXMSK.mjs";
|
80
80
|
import {
|
81
81
|
__require
|
82
|
-
} from "../chunk-
|
82
|
+
} from "../chunk-JU6Q4Q3T.mjs";
|
83
83
|
|
84
84
|
// elements/accordion/Accordion.tsx
|
85
85
|
import * as React3 from "react";
|
package/dist/hooks/index.js
CHANGED
@@ -460,6 +460,9 @@ var useMeasureDirty = (ref) => {
|
|
460
460
|
}, [ref]);
|
461
461
|
return rect;
|
462
462
|
};
|
463
|
+
|
464
|
+
// hooks/useOutsideClick.ts
|
465
|
+
var import_react16 = __toESM(require("react"));
|
463
466
|
// Annotate the CommonJS export names for ESM import in node:
|
464
467
|
0 && (module.exports = {
|
465
468
|
reducer,
|
package/dist/hooks/index.mjs
CHANGED
@@ -12,10 +12,10 @@ import {
|
|
12
12
|
useTabs,
|
13
13
|
useToast,
|
14
14
|
useWindowSize
|
15
|
-
} from "../chunk-
|
15
|
+
} from "../chunk-OPYDG34F.mjs";
|
16
16
|
import {
|
17
17
|
useBreakpoint
|
18
|
-
} from "../chunk-
|
18
|
+
} from "../chunk-JU6Q4Q3T.mjs";
|
19
19
|
export {
|
20
20
|
reducer,
|
21
21
|
toast,
|
package/dist/index.d.mts
CHANGED
@@ -1242,6 +1242,7 @@ type AppLayoutTypes$1 = {
|
|
1242
1242
|
drawerSize?: "sm" | "md" | "large";
|
1243
1243
|
/** Specifies the menu items for the profile menu. */
|
1244
1244
|
profileMenuItems?: MenuItemType[];
|
1245
|
+
onAvatarClick?: () => void;
|
1245
1246
|
/**
|
1246
1247
|
* Specifies the width of the profile menu.
|
1247
1248
|
* - 'default': Default width.
|
package/dist/index.d.ts
CHANGED
@@ -1242,6 +1242,7 @@ type AppLayoutTypes$1 = {
|
|
1242
1242
|
drawerSize?: "sm" | "md" | "large";
|
1243
1243
|
/** Specifies the menu items for the profile menu. */
|
1244
1244
|
profileMenuItems?: MenuItemType[];
|
1245
|
+
onAvatarClick?: () => void;
|
1245
1246
|
/**
|
1246
1247
|
* Specifies the width of the profile menu.
|
1247
1248
|
* - 'default': Default width.
|