@seeqdev/qomponents 0.0.79 → 0.0.81
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/ButtonWithDropdown/ButtonWithDropdown.js +46 -42
- package/dist/ButtonWithDropdown/ButtonWithDropdown.js.map +1 -1
- package/dist/ButtonWithDropdown/ButtonWithDropdown.types.d.ts +0 -6
- package/dist/ButtonWithPopover/ButtonWithPopover.js +1 -1
- package/dist/ButtonWithPopover/ButtonWithPopover.js.map +1 -1
- package/dist/ButtonWithPopover/ButtonWithPopover.types.d.ts +0 -6
- package/dist/Modal/Modal.js +11 -2
- package/dist/Modal/Modal.js.map +1 -1
- package/dist/Modal/Modal.stories.js +20 -9
- package/dist/Modal/Modal.stories.js.map +1 -1
- package/dist/index.esm.js +85 -49
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +85 -49
- package/dist/index.js.map +1 -1
- package/dist/styles.css +11 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -2188,6 +2188,17 @@ ol,
|
|
|
2188
2188
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2189
2189
|
}
|
|
2190
2190
|
|
|
2191
|
+
@keyframes tw-spin {
|
|
2192
|
+
|
|
2193
|
+
to {
|
|
2194
|
+
transform: rotate(360deg);
|
|
2195
|
+
}
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
.tw-animate-spin {
|
|
2199
|
+
animation: tw-spin 1s linear infinite;
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2191
2202
|
.tw-cursor-default {
|
|
2192
2203
|
cursor: default;
|
|
2193
2204
|
}
|