vue3-tailwind-components 0.0.9 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +8 -0
- package/dist/vue3-tailwind-components.es.js +7944 -7705
- package/dist/vue3-tailwind-components.umd.js +26 -22
- package/package.json +2 -2
package/README.md
CHANGED
@@ -8,9 +8,11 @@ This is a simple set of Vue 3, Tailwind based components. At the moment these co
|
|
8
8
|
* [Modal](./src/components/modal/README.md)
|
9
9
|
* [Rollout](./src/components/rollout/README.md)
|
10
10
|
* [Dropdown](./src/components/dropdown/README.md)
|
11
|
+
* [Notication (Toast)](./src/components/notification/README.md)
|
11
12
|
* Form elements
|
12
13
|
* * [Select](./src/components/select/README.md)
|
13
14
|
* * [Input](./src/components/input/README.md)
|
15
|
+
* * [Textarea](./src/components/textarea/README.md)
|
14
16
|
* * [Switch](./src/components/switch/README.md)
|
15
17
|
|
16
18
|
## Installation
|
@@ -44,6 +46,9 @@ module.exports = {
|
|
44
46
|
{
|
45
47
|
pattern: /text-(primary|secondary|warning|success|danger|info)-(\d00)/,
|
46
48
|
},
|
49
|
+
{
|
50
|
+
pattern: /placeholder-(\w+)-(\d00)/,
|
51
|
+
},
|
47
52
|
],
|
48
53
|
theme: {
|
49
54
|
extend: {
|
@@ -93,6 +98,9 @@ safelist: [
|
|
93
98
|
{
|
94
99
|
pattern: /text-(\w+)-(\d00)/,
|
95
100
|
},
|
101
|
+
{
|
102
|
+
pattern: /placeholder-(\w+)-(\d00)/,
|
103
|
+
},
|
96
104
|
],
|
97
105
|
...
|
98
106
|
```
|