@davincihealthcare/elty-design-system-vue 1.2.0 → 1.4.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 CHANGED
@@ -18,11 +18,10 @@ yarn add @davincihealthcare/elty-design-system-vue
18
18
  in tailwind.config file
19
19
 
20
20
  ```js
21
- const { EltyPlugin } = require('@davincihealthcare/elty-design-system-vue');
22
21
 
23
22
  module.exports = {
24
23
  ...
25
- plugins: [EltyPlugin]
24
+ plugins: [require('@davincihealthcare/elty-design-system-vue').EltyPlugin]
26
25
  ...
27
26
  }
28
27
  ```
@@ -1,5 +1,6 @@
1
+ import type { Config } from 'tailwindcss/types/config';
1
2
  declare const _default: {
2
3
  handler: import("tailwindcss/types/config").PluginCreator;
3
- config?: Partial<import("tailwindcss/types/config").Config> | undefined;
4
+ config?: Partial<Config> | undefined;
4
5
  };
5
6
  export default _default;