ywana-core8 0.0.229 → 0.0.230
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.cjs +9 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +11 -0
- package/dist/index.css.map +1 -1
- package/dist/index.modern.js +9 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +9 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/widgets/index.js +2 -1
- package/src/widgets/waiter/index.js +1 -0
- package/src/widgets/waiter/waiter.css +11 -0
- package/src/widgets/waiter/waiter.js +11 -0
package/dist/index.cjs
CHANGED
@@ -2233,6 +2233,14 @@ var Avatar = function Avatar(props) {
|
|
2233
2233
|
}) : /*#__PURE__*/React__default["default"].createElement("span", null, name));
|
2234
2234
|
};
|
2235
2235
|
|
2236
|
+
var WaitScreen = function WaitScreen() {
|
2237
|
+
return /*#__PURE__*/React__default["default"].createElement("div", {
|
2238
|
+
className: "wait-screen"
|
2239
|
+
}, /*#__PURE__*/React__default["default"].createElement(CircularProgress, {
|
2240
|
+
size: "large"
|
2241
|
+
}));
|
2242
|
+
};
|
2243
|
+
|
2236
2244
|
/**
|
2237
2245
|
* Page Context
|
2238
2246
|
*/
|
@@ -5451,5 +5459,6 @@ exports.UploadDialog = UploadDialog;
|
|
5451
5459
|
exports.UploadFile = UploadFile;
|
5452
5460
|
exports.Uploader = Uploader;
|
5453
5461
|
exports.Viewer = Viewer;
|
5462
|
+
exports.WaitScreen = WaitScreen;
|
5454
5463
|
exports.isFunction = isFunction;
|
5455
5464
|
//# sourceMappingURL=index.cjs.map
|