@geomak/ui 6.26.1 → 6.27.1
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.cjs +794 -755
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +560 -521
- package/dist/index.js.map +1 -1
- package/dist/styles.css +8 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1535,6 +1535,14 @@ video {
|
|
|
1535
1535
|
.animate-check-pop {
|
|
1536
1536
|
animation: check-pop 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
1537
1537
|
}
|
|
1538
|
+
@keyframes pulse {
|
|
1539
|
+
50% {
|
|
1540
|
+
opacity: .5;
|
|
1541
|
+
}
|
|
1542
|
+
}
|
|
1543
|
+
.animate-pulse {
|
|
1544
|
+
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1545
|
+
}
|
|
1538
1546
|
@keyframes spin {
|
|
1539
1547
|
to {
|
|
1540
1548
|
transform: rotate(360deg);
|
package/package.json
CHANGED