We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8024b2e commit 53ed184Copy full SHA for 53ed184
package.json
@@ -68,6 +68,10 @@
68
"./modals": {
69
"types": "./dist/modules/modals/index.d.ts",
70
"svelte": "./dist/modules/modals/index.js"
71
+ },
72
+ "./utils": {
73
+ "types": "./dist/modules/utils/index.d.ts",
74
+ "svelte": "./dist/modules/utils/index.js"
75
}
76
},
77
"files": [
src/lib/index.ts
@@ -1,7 +1,8 @@
1
export * from "./form-inputs";
2
export * from "./layout";
3
export * from "./modules/modals";
4
-export * from "./modules/navigation/index";
+export * from "./modules/navigation";
5
+export * from "./modules/utils";
6
export * from "./overlay";
7
export * from "./stores/i18n.store";
8
0 commit comments