@weaverse/core 0.7.26 → 0.7.27
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.js +7 -0
- package/dist/index.mjs +7 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -96,6 +96,10 @@ function createGlobalStyles(stitches2) {
|
|
|
96
96
|
from: { transform: "rotate(0deg)" },
|
|
97
97
|
to: { transform: "rotate(360deg)" }
|
|
98
98
|
},
|
|
99
|
+
"@keyframes pulse": {
|
|
100
|
+
"0%, 100%": { opacity: 1 },
|
|
101
|
+
"50%": { opacity: 0.5 }
|
|
102
|
+
},
|
|
99
103
|
".weaverse-content-root": {
|
|
100
104
|
input: {
|
|
101
105
|
"&::-webkit-outer-spin-button, &::-webkit-inner-spin-button": {
|
|
@@ -133,6 +137,9 @@ function createGlobalStyles(stitches2) {
|
|
|
133
137
|
outline: "none",
|
|
134
138
|
boxShadow: "none"
|
|
135
139
|
}
|
|
140
|
+
},
|
|
141
|
+
".animate-pulse": {
|
|
142
|
+
animation: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite"
|
|
136
143
|
}
|
|
137
144
|
},
|
|
138
145
|
".wv-spinner-wrapper": {
|
package/dist/index.mjs
CHANGED
|
@@ -57,6 +57,10 @@ function createGlobalStyles(stitches2) {
|
|
|
57
57
|
from: { transform: "rotate(0deg)" },
|
|
58
58
|
to: { transform: "rotate(360deg)" }
|
|
59
59
|
},
|
|
60
|
+
"@keyframes pulse": {
|
|
61
|
+
"0%, 100%": { opacity: 1 },
|
|
62
|
+
"50%": { opacity: 0.5 }
|
|
63
|
+
},
|
|
60
64
|
".weaverse-content-root": {
|
|
61
65
|
input: {
|
|
62
66
|
"&::-webkit-outer-spin-button, &::-webkit-inner-spin-button": {
|
|
@@ -94,6 +98,9 @@ function createGlobalStyles(stitches2) {
|
|
|
94
98
|
outline: "none",
|
|
95
99
|
boxShadow: "none"
|
|
96
100
|
}
|
|
101
|
+
},
|
|
102
|
+
".animate-pulse": {
|
|
103
|
+
animation: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite"
|
|
97
104
|
}
|
|
98
105
|
},
|
|
99
106
|
".wv-spinner-wrapper": {
|
package/package.json
CHANGED