@weaverse/core 0.7.25 → 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.d.ts +1 -1
- package/dist/index.js +7 -0
- package/dist/index.mjs +7 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -205,7 +205,7 @@ declare type SortableItemAction = "add" | "edit" | "duplicate" | "delete" | "tog
|
|
|
205
205
|
interface SortableInputConfigs {
|
|
206
206
|
actions: SortableItemAction[];
|
|
207
207
|
}
|
|
208
|
-
declare type InputType = "color" | "datepicker" | "image" | "range" | "select" | "sortable" | "switch" | "text" | "textarea" | "toggle-group" | "form" | "product" | "product-swatches" | "custom.html" | "instagram" | "collection-list" | "collection" | "article-list";
|
|
208
|
+
declare type InputType = "color" | "datepicker" | "image" | "range" | "select" | "sortable" | "switch" | "text" | "textarea" | "toggle-group" | "form" | "product" | "product-swatches" | "custom.html" | "instagram" | "collection-list" | "collection" | "article-list" | "map-autocomplete";
|
|
209
209
|
declare global {
|
|
210
210
|
interface Window {
|
|
211
211
|
WeaverseStudioBridge: any;
|
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