@weaverse/core 0.7.31 → 0.7.33
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 -1
- package/dist/index.mjs +7 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -205,7 +205,7 @@ type SortableItemAction = "add" | "edit" | "duplicate" | "delete" | "toggle-visi
|
|
|
205
205
|
interface SortableInputConfigs {
|
|
206
206
|
actions: SortableItemAction[];
|
|
207
207
|
}
|
|
208
|
-
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";
|
|
208
|
+
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" | "layout-background";
|
|
209
209
|
declare global {
|
|
210
210
|
interface Window {
|
|
211
211
|
WeaverseStudioBridge: any;
|
package/dist/index.js
CHANGED
|
@@ -101,6 +101,12 @@ function createGlobalStyles(stitches2) {
|
|
|
101
101
|
"50%": { opacity: 0.5 }
|
|
102
102
|
},
|
|
103
103
|
".weaverse-content-root": {
|
|
104
|
+
"*": {
|
|
105
|
+
WebkitFontSmoothing: "antialiased",
|
|
106
|
+
MozOsxFontSmoothing: "auto",
|
|
107
|
+
textRendering: "optimizeLegibility",
|
|
108
|
+
boxSizing: "border-box"
|
|
109
|
+
},
|
|
104
110
|
input: {
|
|
105
111
|
"&::-webkit-outer-spin-button, &::-webkit-inner-spin-button": {
|
|
106
112
|
"-webkit-appearance": "none",
|
|
@@ -121,7 +127,7 @@ function createGlobalStyles(stitches2) {
|
|
|
121
127
|
backgroundColor: "transparent",
|
|
122
128
|
backgroundPosition: "center",
|
|
123
129
|
backgroundRepeat: "no-repeat",
|
|
124
|
-
backgroundImage: "url(https://ucarecdn.com/4bb6a6e7-1ce8-4201-8f2d-da00a50105f3/
|
|
130
|
+
backgroundImage: "url(https://ucarecdn.com/4bb6a6e7-1ce8-4201-8f2d-da00a50105f3/)",
|
|
125
131
|
backgroundSize: "10px",
|
|
126
132
|
backgroundPositionX: "calc(100% - 12px)",
|
|
127
133
|
paddingLeft: "12px",
|
package/dist/index.mjs
CHANGED
|
@@ -62,6 +62,12 @@ function createGlobalStyles(stitches2) {
|
|
|
62
62
|
"50%": { opacity: 0.5 }
|
|
63
63
|
},
|
|
64
64
|
".weaverse-content-root": {
|
|
65
|
+
"*": {
|
|
66
|
+
WebkitFontSmoothing: "antialiased",
|
|
67
|
+
MozOsxFontSmoothing: "auto",
|
|
68
|
+
textRendering: "optimizeLegibility",
|
|
69
|
+
boxSizing: "border-box"
|
|
70
|
+
},
|
|
65
71
|
input: {
|
|
66
72
|
"&::-webkit-outer-spin-button, &::-webkit-inner-spin-button": {
|
|
67
73
|
"-webkit-appearance": "none",
|
|
@@ -82,7 +88,7 @@ function createGlobalStyles(stitches2) {
|
|
|
82
88
|
backgroundColor: "transparent",
|
|
83
89
|
backgroundPosition: "center",
|
|
84
90
|
backgroundRepeat: "no-repeat",
|
|
85
|
-
backgroundImage: "url(https://ucarecdn.com/4bb6a6e7-1ce8-4201-8f2d-da00a50105f3/
|
|
91
|
+
backgroundImage: "url(https://ucarecdn.com/4bb6a6e7-1ce8-4201-8f2d-da00a50105f3/)",
|
|
86
92
|
backgroundSize: "10px",
|
|
87
93
|
backgroundPositionX: "calc(100% - 12px)",
|
|
88
94
|
paddingLeft: "12px",
|
package/package.json
CHANGED