@weaverse/core 0.7.23 → 0.7.24
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 -0
- package/dist/index.js +10 -0
- package/dist/index.mjs +10 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -177,6 +177,7 @@ interface BasicInput<ConfigsType = AdditionalInputConfigs> {
|
|
|
177
177
|
condition?: string;
|
|
178
178
|
defaultValue?: string | number | boolean;
|
|
179
179
|
placeholder?: string;
|
|
180
|
+
helpText?: string;
|
|
180
181
|
}
|
|
181
182
|
declare type AdditionalInputConfigs = SelectInputConfigs | ToggleGroupConfigs | RangeInputConfigs | SortableInputConfigs;
|
|
182
183
|
interface SelectInputConfigs {
|
package/dist/index.js
CHANGED
|
@@ -147,6 +147,16 @@ function createGlobalStyles(stitches2) {
|
|
|
147
147
|
height: "20px",
|
|
148
148
|
animation: "spin .75s linear infinite"
|
|
149
149
|
}
|
|
150
|
+
},
|
|
151
|
+
"[data-wv-placeholder]": {
|
|
152
|
+
height: "100%",
|
|
153
|
+
display: "flex",
|
|
154
|
+
flexDirection: "column",
|
|
155
|
+
alignItems: "center",
|
|
156
|
+
justifyContent: "center",
|
|
157
|
+
backgroundColor: "rgba(236, 236, 236, 0.5)",
|
|
158
|
+
backgroundClip: "content-box",
|
|
159
|
+
padding: "10px"
|
|
150
160
|
}
|
|
151
161
|
});
|
|
152
162
|
globalStyles();
|
package/dist/index.mjs
CHANGED
|
@@ -108,6 +108,16 @@ function createGlobalStyles(stitches2) {
|
|
|
108
108
|
height: "20px",
|
|
109
109
|
animation: "spin .75s linear infinite"
|
|
110
110
|
}
|
|
111
|
+
},
|
|
112
|
+
"[data-wv-placeholder]": {
|
|
113
|
+
height: "100%",
|
|
114
|
+
display: "flex",
|
|
115
|
+
flexDirection: "column",
|
|
116
|
+
alignItems: "center",
|
|
117
|
+
justifyContent: "center",
|
|
118
|
+
backgroundColor: "rgba(236, 236, 236, 0.5)",
|
|
119
|
+
backgroundClip: "content-box",
|
|
120
|
+
padding: "10px"
|
|
111
121
|
}
|
|
112
122
|
});
|
|
113
123
|
globalStyles();
|
package/package.json
CHANGED