@fixefy/fixefy-ui-components 0.3.65 → 0.3.66
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.
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "FxGridError", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return FxGridError;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _jsxruntime = require("react/jsx-runtime");
|
|
12
|
+
const _react = /*#__PURE__*/ _interop_require_default(require("react"));
|
|
13
|
+
const _material = require("@mui/material");
|
|
14
|
+
const _FxIcon = require("../FxIcon");
|
|
15
|
+
function _interop_require_default(obj) {
|
|
16
|
+
return obj && obj.__esModule ? obj : {
|
|
17
|
+
default: obj
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
const FxGridError = ()=>{
|
|
21
|
+
return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_material.Box, {
|
|
22
|
+
sx: {
|
|
23
|
+
width: '100%',
|
|
24
|
+
height: '100%',
|
|
25
|
+
textAlign: 'center',
|
|
26
|
+
justifyContent: 'center',
|
|
27
|
+
alignItems: 'center',
|
|
28
|
+
display: 'flex',
|
|
29
|
+
flexDirection: 'column',
|
|
30
|
+
margin: 'auto'
|
|
31
|
+
},
|
|
32
|
+
children: [
|
|
33
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Typography, {
|
|
34
|
+
children: "Something went wrong on our end. Please try again later."
|
|
35
|
+
}),
|
|
36
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)(_FxIcon.FxIcon, {
|
|
37
|
+
width: 345,
|
|
38
|
+
height: 412,
|
|
39
|
+
icon: 'general/bot_with_bubble.svg'
|
|
40
|
+
})
|
|
41
|
+
]
|
|
42
|
+
});
|
|
43
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FxGridError } from './FxGridError';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "FxGridError", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _FxGridError.FxGridError;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _FxGridError = require("./FxGridError");
|
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export { FxAvatar, AvatarPropsType, BackgroundColorsType } from './FxAvatar';
|
|
|
5
5
|
export { FxButton, ButtonPropsType } from './FxButton';
|
|
6
6
|
export { FxChip, ChipPropsType } from './FxChip';
|
|
7
7
|
export { FxDatesProgress } from './FxDatesProgress';
|
|
8
|
+
export { FxGridError } from './FxGridError';
|
|
8
9
|
export { FxGeneralModal } from './FxGeneralModal';
|
|
9
10
|
export { FxIcon } from './FxIcon';
|
|
10
11
|
export { FxMenuItemWithIcon } from './FxMenuItemWithIcon';
|
package/dist/index.js
CHANGED
|
@@ -72,6 +72,9 @@ _export(exports, {
|
|
|
72
72
|
FxGeneralModal: function() {
|
|
73
73
|
return _FxGeneralModal.FxGeneralModal;
|
|
74
74
|
},
|
|
75
|
+
FxGridError: function() {
|
|
76
|
+
return _FxGridError.FxGridError;
|
|
77
|
+
},
|
|
75
78
|
FxIcon: function() {
|
|
76
79
|
return _FxIcon.FxIcon;
|
|
77
80
|
},
|
|
@@ -233,6 +236,7 @@ const _FxAvatar = require("./FxAvatar");
|
|
|
233
236
|
const _FxButton = require("./FxButton");
|
|
234
237
|
const _FxChip = require("./FxChip");
|
|
235
238
|
const _FxDatesProgress = require("./FxDatesProgress");
|
|
239
|
+
const _FxGridError = require("./FxGridError");
|
|
236
240
|
const _FxGeneralModal = require("./FxGeneralModal");
|
|
237
241
|
const _FxIcon = require("./FxIcon");
|
|
238
242
|
const _FxMenuItemWithIcon = require("./FxMenuItemWithIcon");
|
package/package.json
CHANGED