vue3-tailwind-components 0.0.8 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +5 -0
- package/dist/vue3-tailwind-components.es.js +8489 -8101
- package/dist/vue3-tailwind-components.umd.js +30 -26
- package/package.json +4 -2
package/README.md
CHANGED
@@ -7,6 +7,8 @@ This is a simple set of Vue 3, Tailwind based components. At the moment these co
|
|
7
7
|
* [Icons](./src/components/icons/README.md)
|
8
8
|
* [Modal](./src/components/modal/README.md)
|
9
9
|
* [Rollout](./src/components/rollout/README.md)
|
10
|
+
* [Dropdown](./src/components/dropdown/README.md)
|
11
|
+
* [Notication (Toast)](./src/components/notification/README.md)
|
10
12
|
* Form elements
|
11
13
|
* * [Select](./src/components/select/README.md)
|
12
14
|
* * [Input](./src/components/input/README.md)
|
@@ -92,6 +94,9 @@ safelist: [
|
|
92
94
|
{
|
93
95
|
pattern: /text-(\w+)-(\d00)/,
|
94
96
|
},
|
97
|
+
{
|
98
|
+
pattern: /placeholder-(\w+)-(\d00)/,
|
99
|
+
},
|
95
100
|
],
|
96
101
|
...
|
97
102
|
```
|