@fixefy/fixefy-ui-components 0.3.70 → 0.3.72

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,2 @@
1
+ import React from 'react';
2
+ export declare const FxGridEmptyState: () => React.JSX.Element;
@@ -0,0 +1,78 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "FxGridEmptyState", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return FxGridEmptyState;
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 FxGridEmptyState = ()=>{
21
+ return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_material.Box, {
22
+ sx: {
23
+ width: '100%',
24
+ height: '100%',
25
+ display: 'flex',
26
+ p: '30px 0'
27
+ },
28
+ children: [
29
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_FxIcon.FxIcon, {
30
+ width: 380,
31
+ height: 415,
32
+ icon: 'general/hexagon_bottom.svg'
33
+ }),
34
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_material.Box, {
35
+ display: 'flex',
36
+ flexDirection: 'column',
37
+ sx: {
38
+ width: '100%',
39
+ justifyContent: 'center',
40
+ margin: 'auto',
41
+ alignItems: 'center'
42
+ },
43
+ children: [
44
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_FxIcon.FxIcon, {
45
+ width: 279,
46
+ height: 250,
47
+ icon: 'table/table_no_results.svg'
48
+ }),
49
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Box, {
50
+ sx: {
51
+ width: '100%',
52
+ height: '100%',
53
+ textAlign: 'center',
54
+ justifyContent: 'center',
55
+ alignItems: 'center',
56
+ display: 'flex',
57
+ flexDirection: 'column',
58
+ margin: 'auto'
59
+ },
60
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Box, {
61
+ display: 'flex',
62
+ flexDirection: 'column',
63
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Typography, {
64
+ variant: "h5",
65
+ children: "There is currently no data to display."
66
+ })
67
+ })
68
+ })
69
+ ]
70
+ }),
71
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_FxIcon.FxIcon, {
72
+ width: 416,
73
+ height: 377,
74
+ icon: 'general/hexagon_right.svg'
75
+ })
76
+ ]
77
+ });
78
+ };
@@ -0,0 +1 @@
1
+ export { FxGridEmptyState } from './FxGridEmptyState';
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "FxGridEmptyState", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return _FxGridEmptyState.FxGridEmptyState;
9
+ }
10
+ });
11
+ const _FxGridEmptyState = require("./FxGridEmptyState");
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 { FxGridEmptyState } from './FxGridEmptyState';
8
9
  export { FxGridError } from './FxGridError';
9
10
  export { FxGeneralModal } from './FxGeneralModal';
10
11
  export { FxIcon } from './FxIcon';
package/dist/index.js CHANGED
@@ -72,6 +72,9 @@ _export(exports, {
72
72
  FxGeneralModal: function() {
73
73
  return _FxGeneralModal.FxGeneralModal;
74
74
  },
75
+ FxGridEmptyState: function() {
76
+ return _FxGridEmptyState.FxGridEmptyState;
77
+ },
75
78
  FxGridError: function() {
76
79
  return _FxGridError.FxGridError;
77
80
  },
@@ -236,6 +239,7 @@ const _FxAvatar = require("./FxAvatar");
236
239
  const _FxButton = require("./FxButton");
237
240
  const _FxChip = require("./FxChip");
238
241
  const _FxDatesProgress = require("./FxDatesProgress");
242
+ const _FxGridEmptyState = require("./FxGridEmptyState");
239
243
  const _FxGridError = require("./FxGridError");
240
244
  const _FxGeneralModal = require("./FxGeneralModal");
241
245
  const _FxIcon = require("./FxIcon");
package/package.json CHANGED
@@ -69,5 +69,5 @@
69
69
  "require": "./dist/index.js"
70
70
  }
71
71
  },
72
- "version": "0.3.70"
72
+ "version": "0.3.72"
73
73
  }