aefis-core-ui 3.0.0-rc112 → 3.0.0-rc113
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 +8 -6
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -7647,7 +7647,7 @@ const Chip = ({
|
|
|
7647
7647
|
color: colors["default"]
|
|
7648
7648
|
}
|
|
7649
7649
|
},
|
|
7650
|
-
children: /*#__PURE__*/jsx(
|
|
7650
|
+
children: /*#__PURE__*/jsx(Close, {
|
|
7651
7651
|
sx: {
|
|
7652
7652
|
color: colors["dark"]
|
|
7653
7653
|
}
|
|
@@ -25811,7 +25811,7 @@ const FilterChips = ({
|
|
|
25811
25811
|
variant: "chip",
|
|
25812
25812
|
size: "small",
|
|
25813
25813
|
displayOptions: {
|
|
25814
|
-
hasIcon:
|
|
25814
|
+
hasIcon: false
|
|
25815
25815
|
},
|
|
25816
25816
|
type: filter.type || "businessObject",
|
|
25817
25817
|
template: filter.template,
|
|
@@ -26823,7 +26823,8 @@ const FILTER_ROW_ANIMATE = {
|
|
|
26823
26823
|
};
|
|
26824
26824
|
const FilterPanelWithTextSearch = ({
|
|
26825
26825
|
drawerProps,
|
|
26826
|
-
filterPanelProps
|
|
26826
|
+
filterPanelProps,
|
|
26827
|
+
textSearchProps
|
|
26827
26828
|
}) => {
|
|
26828
26829
|
const [drawerState, setDrawerState] = useState({
|
|
26829
26830
|
open: false
|
|
@@ -26836,7 +26837,7 @@ const FilterPanelWithTextSearch = ({
|
|
|
26836
26837
|
display: "flex",
|
|
26837
26838
|
gap: 2
|
|
26838
26839
|
},
|
|
26839
|
-
children: [/*#__PURE__*/jsx(TextSearch$1, {
|
|
26840
|
+
children: [/*#__PURE__*/jsx(TextSearch$1, _extends({
|
|
26840
26841
|
InputProps: {
|
|
26841
26842
|
startAdornment: /*#__PURE__*/jsx(InputAdornment, {
|
|
26842
26843
|
position: "start",
|
|
@@ -26853,7 +26854,7 @@ const FilterPanelWithTextSearch = ({
|
|
|
26853
26854
|
sx: {
|
|
26854
26855
|
width: "100%"
|
|
26855
26856
|
}
|
|
26856
|
-
}), /*#__PURE__*/jsx(Button, {
|
|
26857
|
+
}, textSearchProps)), /*#__PURE__*/jsx(Button, {
|
|
26857
26858
|
color: "primary",
|
|
26858
26859
|
variant: "outlined",
|
|
26859
26860
|
onClick: () => {
|
|
@@ -26937,7 +26938,8 @@ const FilterPanelWithTextSearch = ({
|
|
|
26937
26938
|
};
|
|
26938
26939
|
FilterPanelWithTextSearch.propTypes = {
|
|
26939
26940
|
filterPanelProps: FilterPanel.propTypes,
|
|
26940
|
-
drawerProps: Drawer$1.propTypes
|
|
26941
|
+
drawerProps: Drawer$1.propTypes,
|
|
26942
|
+
textSearchProps: TextSearch$1.propTypes
|
|
26941
26943
|
};
|
|
26942
26944
|
|
|
26943
26945
|
const moreThan = ruleValue => ({
|