lime-elements-vue 1.0.8 → 1.1.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
- // Set a default resourcesUrl that points to node_modules
7
- // This works in dev mode with Vite
8
- const resourcesUrl = options?.resourcesUrl || '/node_modules/@limetech/lime-elements/dist/';
9
- defineCustomElements(window, {
10
- resourcesUrl
11
- });
12
- });
13
- },
14
- };