@dowel-ui/themes 0.5.0 → 0.7.0
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 +210 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +503 -1
- package/dist/index.js.map +1 -1
- package/package.json +7 -4
- package/src/colour.ts +182 -0
- package/src/figma.ts +287 -0
- package/src/index.ts +43 -0
- package/src/preset.ts +191 -0
- package/src/tokens.css +20 -0
package/src/tokens.css
CHANGED
|
@@ -140,6 +140,8 @@
|
|
|
140
140
|
|
|
141
141
|
--animate-accordion-open: accordion-open var(--duration-normal) var(--ease-out-quint);
|
|
142
142
|
--animate-accordion-close: accordion-close var(--duration-fast) var(--ease-in-quint);
|
|
143
|
+
--animate-collapse-down: collapse-down var(--duration-normal) var(--ease-out-quint);
|
|
144
|
+
--animate-collapse-up: collapse-up var(--duration-fast) var(--ease-in-quint);
|
|
143
145
|
|
|
144
146
|
@keyframes fade-in {
|
|
145
147
|
from {
|
|
@@ -242,6 +244,24 @@
|
|
|
242
244
|
}
|
|
243
245
|
}
|
|
244
246
|
|
|
247
|
+
@keyframes collapse-down {
|
|
248
|
+
from {
|
|
249
|
+
height: 0;
|
|
250
|
+
}
|
|
251
|
+
to {
|
|
252
|
+
height: var(--radix-collapsible-content-height);
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
@keyframes collapse-up {
|
|
257
|
+
from {
|
|
258
|
+
height: var(--radix-collapsible-content-height);
|
|
259
|
+
}
|
|
260
|
+
to {
|
|
261
|
+
height: 0;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
245
265
|
@keyframes spin {
|
|
246
266
|
to {
|
|
247
267
|
transform: rotate(360deg);
|