hamzus-ui 0.0.22 → 0.0.23

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.
Files changed (3) hide show
  1. package/index.d.ts +3 -0
  2. package/index.js +4 -0
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -30,6 +30,9 @@ export * as DropdownMenu from "./src/components/hamzus-ui/DropdownMenu";
30
30
  export * as Popover from "./src/components/hamzus-ui/Popover";
31
31
  export * as Tooltip from "./src/components/hamzus-ui/AdvancedTooltip";
32
32
 
33
+ // layout
34
+ export * as Sidebar from "./src/layout/Sidebar"
35
+
33
36
  // utils
34
37
  export { getCookie as getCookie } from "./src/utils/clientCookie.js"
35
38
  export { setCookie as setCookie } from "./src/utils/clientCookie.js"
package/index.js CHANGED
@@ -24,6 +24,10 @@ export * as DropdownMenu from "./src/components/hamzus-ui/DropdownMenu"
24
24
  export * as Popover from "./src/components/hamzus-ui/Popover"
25
25
  export * as Tooltip from "./src/components/hamzus-ui/AdvancedTooltip"
26
26
 
27
+ // layout
28
+ export { default as ScrollArea } from "./src/components/hamzus-ui/ScrollArea/ScrollArea.svelte"
29
+ export * as Sidebar from "./src/layout/Sidebar"
30
+
27
31
  // utils
28
32
  export { getCookie as getCookie } from "./src/utils/clientCookie.js"
29
33
  export { setCookie as setCookie } from "./src/utils/clientCookie.js"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hamzus-ui",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "svelte": "index.js",