hamzus-ui 0.0.89 → 0.0.90

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 +3 -0
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -42,6 +42,9 @@ export * as Tooltip from "./src/components/hamzus-ui/AdvancedTooltip";
42
42
  export { default as ScrollArea } from "./src/components/hamzus-ui/ScrollArea/ScrollArea.svelte"
43
43
  export * as Sidebar from "./src/layout/Sidebar"
44
44
 
45
+ // special
46
+ export { default as Portal } from "./src/components/hamzus-ui/Portal/Portal.svelte"
47
+
45
48
  // utils
46
49
  export { config as config } from "./src/utils/hamzus.config.js"
47
50
  export { getCookie as getCookie } from "./src/utils/clientCookie.js"
package/index.js CHANGED
@@ -37,6 +37,9 @@ export * as Tooltip from "./src/components/hamzus-ui/AdvancedTooltip"
37
37
  export { default as ScrollArea } from "./src/components/hamzus-ui/ScrollArea/ScrollArea.svelte"
38
38
  export * as Sidebar from "./src/layout/Sidebar"
39
39
 
40
+ // special
41
+ export { default as Portal } from "./src/components/hamzus-ui/Portal/Portal.svelte"
42
+
40
43
  // utils
41
44
  export { config as config } from "./src/utils/hamzus.config.js"
42
45
  export { getCookie as getCookie } from "./src/utils/clientCookie.js"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hamzus-ui",
3
- "version": "0.0.89",
3
+ "version": "0.0.90",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "svelte": "index.js",