@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 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
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.7.23",
2
+ "version": "0.7.24",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",