aefis-core-ui 4.0.0-rc21 → 4.0.0-rc22
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 +16 -11
- 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, {
|
|
@@ -15201,6 +15195,7 @@ const RichDataTable$1 = /*#__PURE__*/forwardRef(function RichDatatable(props, re
|
|
|
15201
15195
|
toggleDrawer,
|
|
15202
15196
|
clearSelections: () => DataTableRef.current.clearSelections()
|
|
15203
15197
|
}));
|
|
15198
|
+
const theme = useTheme$1();
|
|
15204
15199
|
const isFilterPanelEnabled = ((_props$filterPanelCon = props.filterPanelConfig) == null ? void 0 : _props$filterPanelCon.length) > 0 || props.showFilterPanelSearch;
|
|
15205
15200
|
const defaultExportOptions = [{
|
|
15206
15201
|
type: "print"
|
|
@@ -15257,7 +15252,16 @@ const RichDataTable$1 = /*#__PURE__*/forwardRef(function RichDatatable(props, re
|
|
|
15257
15252
|
sx: _extends({
|
|
15258
15253
|
display: "flex",
|
|
15259
15254
|
pb: 1,
|
|
15260
|
-
gap: 2
|
|
15255
|
+
gap: 2,
|
|
15256
|
+
[theme.breakpoints.up("md")]: {
|
|
15257
|
+
width: "75%"
|
|
15258
|
+
},
|
|
15259
|
+
[theme.breakpoints.up("md")]: {
|
|
15260
|
+
width: "75%"
|
|
15261
|
+
},
|
|
15262
|
+
[theme.breakpoints.down("md")]: {
|
|
15263
|
+
width: "100%"
|
|
15264
|
+
}
|
|
15261
15265
|
}, filterPanelState.filterArray.length === 0 && {
|
|
15262
15266
|
mb: 1
|
|
15263
15267
|
}),
|
|
@@ -15283,8 +15287,9 @@ const RichDataTable$1 = /*#__PURE__*/forwardRef(function RichDatatable(props, re
|
|
|
15283
15287
|
}
|
|
15284
15288
|
}), /*#__PURE__*/jsx(Button, {
|
|
15285
15289
|
color: "primary",
|
|
15290
|
+
name: "filters",
|
|
15286
15291
|
variant: "outlined",
|
|
15287
|
-
startIcon: /*#__PURE__*/jsx(
|
|
15292
|
+
startIcon: /*#__PURE__*/jsx(Tune, {}),
|
|
15288
15293
|
onClick: () => {
|
|
15289
15294
|
handleFilterClick();
|
|
15290
15295
|
},
|