manolis-ui 1.0.8 → 1.0.11

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/CHANGELOG.md CHANGED
@@ -1 +1 @@
1
- - no changes- no changes- no changes- no changes- no changes- no changes
1
+ - no changes- no changes- no changes- no changes- no changes- no changes- no changes- no changes- no changes
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "manolis-ui",
3
3
  "configKey": "manolisUI",
4
- "version": "1.0.8",
4
+ "version": "1.0.11",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.4",
7
7
  "unbuild": "2.0.0"
package/dist/module.mjs CHANGED
@@ -22,7 +22,7 @@ const module = defineNuxtModule({
22
22
  cssPath: _options.css ? resolver.resolve("./runtime/assets/css/tailwind.css") : false,
23
23
  configPath: resolver.resolve("../tailwind.config")
24
24
  });
25
- await addComponentsDir({
25
+ addComponentsDir({
26
26
  path: resolver.resolve("./runtime/components"),
27
27
  pathPrefix: false,
28
28
  prefix: "",
@@ -0,0 +1,5 @@
1
+ export { default as ButtonComponent } from './actions/ButtonComponent.vue.js';
2
+ export { default as Dropdown } from './actions/dropdown.vue.js';
3
+ export { default as Modal } from './actions/modal.vue.js';
4
+ export { default as Swap } from './actions/swap.vue.js';
5
+ export { default as ThemeController } from './actions/theme-controller.vue.js';
@@ -0,0 +1,5 @@
1
+ export { default as ButtonComponent } from "./actions/ButtonComponent.vue";
2
+ export { default as Dropdown } from "./actions/dropdown.vue";
3
+ export { default as Modal } from "./actions/modal.vue";
4
+ export { default as Swap } from "./actions/swap.vue";
5
+ export { default as ThemeController } from "./actions/theme-controller.vue";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manolis-ui",
3
- "version": "1.0.8",
3
+ "version": "1.0.11",
4
4
  "description": "A modern design system made for vue based on daisy UI",
5
5
  "repository": "manolis-trading/manolis-ui",
6
6
  "license": "Apache-2.0",
@@ -10,7 +10,9 @@
10
10
  "types": "./dist/types.d.ts",
11
11
  "import": "./dist/module.mjs",
12
12
  "require": "./dist/module.cjs"
13
- }
13
+ },
14
+ "./components/ButtonComponent": "./dist/runtime/components/actions/ButtonComponent.vue"
15
+
14
16
  },
15
17
  "main": "./dist/module.cjs",
16
18
  "types": "./dist/types.d.ts",