aefis-core-ui 4.0.0-rc21 → 4.0.0-rc23
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.modern.js +18 -13
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -14080,6 +14080,7 @@ const TitleAndActionHeader = /*#__PURE__*/React__default.forwardRef(({
|
|
|
14080
14080
|
style: containerStyle,
|
|
14081
14081
|
item: true,
|
|
14082
14082
|
xs: 12,
|
|
14083
|
+
sm: 6,
|
|
14083
14084
|
md: hasActions ? 7 : 12,
|
|
14084
14085
|
zeroMinWidth: true,
|
|
14085
14086
|
sx: {
|
|
@@ -14177,20 +14178,13 @@ const TitleAndActionHeader = /*#__PURE__*/React__default.forwardRef(({
|
|
|
14177
14178
|
}), hasActions && /*#__PURE__*/jsx(Grid$1, {
|
|
14178
14179
|
item: true,
|
|
14179
14180
|
xs: 12,
|
|
14181
|
+
sm: 6,
|
|
14180
14182
|
md: 5,
|
|
14181
14183
|
sx: {
|
|
14182
|
-
"@media (max-width: 450px)": _extends({}, _centerMobile && {
|
|
14183
|
-
display: "flex",
|
|
14184
|
-
justifyContent: "center !important",
|
|
14185
|
-
textAlign: "center"
|
|
14186
|
-
}),
|
|
14187
14184
|
display: "inline-flex",
|
|
14188
14185
|
alignItems: "center",
|
|
14189
|
-
[theme.breakpoints.up("
|
|
14186
|
+
[theme.breakpoints.up("sm")]: {
|
|
14190
14187
|
justifyContent: "flex-end"
|
|
14191
|
-
},
|
|
14192
|
-
[theme.breakpoints.down("md")]: {
|
|
14193
|
-
justifyContent: "flex-start"
|
|
14194
14188
|
}
|
|
14195
14189
|
},
|
|
14196
14190
|
children: /*#__PURE__*/jsx(Box$3, {
|
|
@@ -14991,7 +14985,6 @@ const RichDataTable$1 = /*#__PURE__*/forwardRef(function RichDatatable(props, re
|
|
|
14991
14985
|
refetch
|
|
14992
14986
|
} = _ref;
|
|
14993
14987
|
_objectWithoutPropertiesLoose(_ref, _excluded$m);
|
|
14994
|
-
console.log("hasNextPage", hasNextPage);
|
|
14995
14988
|
const isError = useIsError$1(status);
|
|
14996
14989
|
const renderReTryButton = useCallback(status => /*#__PURE__*/jsx(Button, {
|
|
14997
14990
|
onClick: () => refetch(),
|
|
@@ -15201,6 +15194,7 @@ const RichDataTable$1 = /*#__PURE__*/forwardRef(function RichDatatable(props, re
|
|
|
15201
15194
|
toggleDrawer,
|
|
15202
15195
|
clearSelections: () => DataTableRef.current.clearSelections()
|
|
15203
15196
|
}));
|
|
15197
|
+
const theme = useTheme$1();
|
|
15204
15198
|
const isFilterPanelEnabled = ((_props$filterPanelCon = props.filterPanelConfig) == null ? void 0 : _props$filterPanelCon.length) > 0 || props.showFilterPanelSearch;
|
|
15205
15199
|
const defaultExportOptions = [{
|
|
15206
15200
|
type: "print"
|
|
@@ -15257,7 +15251,16 @@ const RichDataTable$1 = /*#__PURE__*/forwardRef(function RichDatatable(props, re
|
|
|
15257
15251
|
sx: _extends({
|
|
15258
15252
|
display: "flex",
|
|
15259
15253
|
pb: 1,
|
|
15260
|
-
gap: 2
|
|
15254
|
+
gap: 2,
|
|
15255
|
+
[theme.breakpoints.up("md")]: {
|
|
15256
|
+
width: "75%"
|
|
15257
|
+
},
|
|
15258
|
+
[theme.breakpoints.up("md")]: {
|
|
15259
|
+
width: "75%"
|
|
15260
|
+
},
|
|
15261
|
+
[theme.breakpoints.down("md")]: {
|
|
15262
|
+
width: "100%"
|
|
15263
|
+
}
|
|
15261
15264
|
}, filterPanelState.filterArray.length === 0 && {
|
|
15262
15265
|
mb: 1
|
|
15263
15266
|
}),
|
|
@@ -15283,8 +15286,9 @@ const RichDataTable$1 = /*#__PURE__*/forwardRef(function RichDatatable(props, re
|
|
|
15283
15286
|
}
|
|
15284
15287
|
}), /*#__PURE__*/jsx(Button, {
|
|
15285
15288
|
color: "primary",
|
|
15289
|
+
name: "filters",
|
|
15286
15290
|
variant: "outlined",
|
|
15287
|
-
startIcon: /*#__PURE__*/jsx(
|
|
15291
|
+
startIcon: /*#__PURE__*/jsx(Tune, {}),
|
|
15288
15292
|
onClick: () => {
|
|
15289
15293
|
handleFilterClick();
|
|
15290
15294
|
},
|
|
@@ -25579,7 +25583,8 @@ const WizardPanel = props => {
|
|
|
25579
25583
|
children: /*#__PURE__*/jsxs(Box$3, {
|
|
25580
25584
|
sx: {
|
|
25581
25585
|
marginLeft: "auto",
|
|
25582
|
-
display: "flex"
|
|
25586
|
+
display: "flex",
|
|
25587
|
+
gap: 1
|
|
25583
25588
|
},
|
|
25584
25589
|
children: [/*#__PURE__*/jsx(Button, {
|
|
25585
25590
|
"aria-label": "Back",
|