@davincihealthcare/elty-design-system-vue 1.0.1 → 1.0.3

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
@@ -1,6 +1,6 @@
1
1
  # @davincihealthcare/elty-design-system-vue
2
2
 
3
- Welcome to the Vue Design System Components repository! This collection of reusable Vue components is designed to help you easily integrate and maintain a consistent design system across your company's projects. Whether you're building a new application or updating an existing one, these components are ready to be used and customized to match your brand guidelines.
3
+ This collection of reusable Vue components is designed to help you easily integrate and maintain a consistent design system across your company's projects. Whether you're building a new application or updating an existing one, these components are ready to be used and customized to match your brand guidelines.
4
4
 
5
5
  ## Getting Started
6
6
 
@@ -15,6 +15,18 @@ yarn add @davincihealthcare/elty-design-system-vue
15
15
 
16
16
  ## Usage
17
17
 
18
+ in tailwind.config file
19
+
20
+ ```js
21
+ const { EltyPlugin } = require('@davincihealthcare/elty-design-system-vue');
22
+
23
+ module.exports = {
24
+ ...
25
+ plugins: [EltyPlugin]
26
+ ...
27
+ }
28
+ ```
29
+
18
30
  ```js
19
31
  // Import the component you need
20
32
  import { ElButton } from '@davincihealthcare/elty-design-system-vue';
@@ -31,7 +43,7 @@ Now, you can use the imported component in your templates:
31
43
 
32
44
  <script lang="ts" setup>
33
45
 
34
- const handleClick = () {
46
+ const handleClick = () => {
35
47
  // Handle button click
36
48
  }
37
49
 
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ handler: import("tailwindcss/types/config").PluginCreator;
3
+ config?: Partial<import("tailwindcss/types/config").Config> | undefined;
4
+ };
5
+ export default _default;
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export { default as EltyPlugin } from './elty.plugin';
1
2
  export * from './routes';
2
3
  export * from './types';
3
4
  export * from './ElAccordion.vue';
@@ -62,8 +63,6 @@ export * from './ElTabs.vue';
62
63
  export { default as ElTabs } from './ElTabs.vue';
63
64
  export * from './ElTag.vue';
64
65
  export { default as ElTag } from './ElTag.vue';
65
- export * from './ElTest.vue';
66
- export { default as ElTest } from './ElTest.vue';
67
66
  export * from './ElTextCell.vue';
68
67
  export { default as ElTextCell } from './ElTextCell.vue';
69
68
  export * from './ElToast.vue';