@stlhorizon/vue-ui 1.0.0 → 1.0.2

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/package.json CHANGED
@@ -1,11 +1,17 @@
1
1
  {
2
2
  "name": "@stlhorizon/vue-ui",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "A Vue.js component library with Tailwind CSS styling",
7
7
  "main": "dist/index.js",
8
8
  "module": "dist/index.esm.js",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.esm.js",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
9
15
  "files": [
10
16
  "dist",
11
17
  "src"
package/src/index.js CHANGED
@@ -153,7 +153,7 @@ export {
153
153
  }
154
154
 
155
155
  // Plugin installer (named export instead of default)
156
- export const VueAtomicUI = {
156
+ export const VueUi = {
157
157
  install(app, options = {}) {
158
158
  const { prefix = "", globalComponents = true } = options
159
159