@clasing/ui 0.0.42 → 0.0.43
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/dist/index.d.ts +2 -2
- package/dist/index.es.js +434 -354
- package/dist/index.umd.js +8 -8
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/tailwind.config.js +28 -0
package/package.json
CHANGED
package/tailwind.config.js
CHANGED
|
@@ -150,6 +150,20 @@ module.exports = {
|
|
|
150
150
|
disabled: 'var(--color-neutral-500)',
|
|
151
151
|
},
|
|
152
152
|
},
|
|
153
|
+
link: {
|
|
154
|
+
content: {
|
|
155
|
+
enabled: 'var(--color-blue-500)',
|
|
156
|
+
hover: 'var(--color-blue-700)',
|
|
157
|
+
pressed: 'var(--color-blue-900)',
|
|
158
|
+
disabled: 'var(--color-neutral-500)',
|
|
159
|
+
},
|
|
160
|
+
border: {
|
|
161
|
+
enabled: 'transparent',
|
|
162
|
+
hover: 'var(--color-blue-700)',
|
|
163
|
+
pressed: 'var(--color-blue-900)',
|
|
164
|
+
disabled: 'transparent',
|
|
165
|
+
},
|
|
166
|
+
},
|
|
153
167
|
icon: {
|
|
154
168
|
fill: {
|
|
155
169
|
bg: {
|
|
@@ -185,6 +199,20 @@ module.exports = {
|
|
|
185
199
|
disabled: 'var(--color-neutral-500)',
|
|
186
200
|
},
|
|
187
201
|
},
|
|
202
|
+
ghost: {
|
|
203
|
+
bg: {
|
|
204
|
+
enabled: 'transparent',
|
|
205
|
+
hover: 'var(--color-neutral-300)',
|
|
206
|
+
pressed: 'var(--color-neutral-900)',
|
|
207
|
+
disabled: 'transparent',
|
|
208
|
+
},
|
|
209
|
+
content: {
|
|
210
|
+
enabled: 'var(--color-neutral-900)',
|
|
211
|
+
hover: 'var(--color-neutral-900)',
|
|
212
|
+
pressed: 'var(--color-neutral-000)',
|
|
213
|
+
disabled: 'var(--color-neutral-500)',
|
|
214
|
+
},
|
|
215
|
+
},
|
|
188
216
|
},
|
|
189
217
|
},
|
|
190
218
|
content: {
|