@davincihealthcare/elty-design-system-vue 1.7.0 → 1.9.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/README.md +4 -0
- package/dist/forms/validation-rules.d.ts +1 -1
- package/dist/index.mjs +22565 -22401
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +17 -13
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,10 +21,14 @@ in tailwind.config file
|
|
|
21
21
|
|
|
22
22
|
module.exports = {
|
|
23
23
|
...
|
|
24
|
+
content: [..., './node_modules/@davincihealthcare/elty-design-system-vue/**/*.{tsx,js}'],
|
|
24
25
|
plugins: [require('@davincihealthcare/elty-design-system-vue').EltyPlugin]
|
|
25
26
|
...
|
|
26
27
|
}
|
|
27
28
|
```
|
|
29
|
+
Note: content needs a new entry in the array, alongside other you may already have.
|
|
30
|
+
|
|
31
|
+
Make sure NOT to import the elty foundations which are already imported alongside this plugin.
|
|
28
32
|
|
|
29
33
|
```js
|
|
30
34
|
// Import the component you need
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export {};
|