lime-elements-vue 1.0.10 → 1.2.0

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/dist/index.js DELETED
@@ -1,14 +0,0 @@
1
- export * from './components';
2
- import { applyPolyfills, defineCustomElements } from '@limetech/lime-elements/dist/loader';
3
- export const LimeElementsVue = {
4
- async install(_app, options) {
5
- applyPolyfills().then(() => {
6
- // Default works for dev mode with Vite
7
- // For production, users should set resourcesUrl to match their build config
8
- const resourcesUrl = options?.resourcesUrl ?? '/node_modules/@limetech/lime-elements/dist/';
9
- defineCustomElements(window, {
10
- resourcesUrl
11
- });
12
- });
13
- },
14
- };