vue3-tailwind-components 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +4 -0
- package/dist/vue3-tailwind-components.es.js +3981 -3887
- package/dist/vue3-tailwind-components.umd.js +13 -13
- package/package.json +1 -1
package/README.md
CHANGED
@@ -12,6 +12,7 @@ This is a simple set of Vue 3, Tailwind based components. At the moment these co
|
|
12
12
|
* Form elements
|
13
13
|
* * [Select](./src/components/select/README.md)
|
14
14
|
* * [Input](./src/components/input/README.md)
|
15
|
+
* * [Textarea](./src/components/textarea/README.md)
|
15
16
|
* * [Switch](./src/components/switch/README.md)
|
16
17
|
|
17
18
|
## Installation
|
@@ -45,6 +46,9 @@ module.exports = {
|
|
45
46
|
{
|
46
47
|
pattern: /text-(primary|secondary|warning|success|danger|info)-(\d00)/,
|
47
48
|
},
|
49
|
+
{
|
50
|
+
pattern: /placeholder-(\w+)-(\d00)/,
|
51
|
+
},
|
48
52
|
],
|
49
53
|
theme: {
|
50
54
|
extend: {
|