@dartech/arsenal-ui 1.3.43 → 1.3.45
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/index.js +5 -3
- package/package.json +1 -1
- package/src/lib/Sidebar/Sidebar.styled.d.ts +1 -0
package/index.js
CHANGED
@@ -1238,7 +1238,8 @@ const JsonView = ({
|
|
1238
1238
|
},
|
1239
1239
|
extensions: [langs.json()],
|
1240
1240
|
style: {
|
1241
|
-
fontSize: _fontSize
|
1241
|
+
fontSize: _fontSize,
|
1242
|
+
width: '100%'
|
1242
1243
|
}
|
1243
1244
|
});
|
1244
1245
|
};
|
@@ -3922,7 +3923,7 @@ const PropertyFiller = ({
|
|
3922
3923
|
setValue(name, null);
|
3923
3924
|
}
|
3924
3925
|
} else if (selectedType === 'expression' || selectedType === 'string') {
|
3925
|
-
|
3926
|
+
onChange('');
|
3926
3927
|
} else if (selectedType === 'dem_builder') {
|
3927
3928
|
const defaultArrayValue = {
|
3928
3929
|
code: '',
|
@@ -6566,7 +6567,8 @@ const ContentLayout = ({
|
|
6566
6567
|
component: "main",
|
6567
6568
|
sx: {
|
6568
6569
|
flexGrow: 1,
|
6569
|
-
bgcolor: 'background.default'
|
6570
|
+
bgcolor: 'background.default',
|
6571
|
+
width: `calc(100% - ${drawerWidth}px)`
|
6570
6572
|
}
|
6571
6573
|
}, {
|
6572
6574
|
children: [jsx(Toolbar, Object.assign({
|
package/package.json
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
+
export declare const drawerWidth = 248;
|
2
3
|
export declare const Container: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
3
4
|
export declare const Drawer: import("@emotion/styled").StyledComponent<import("@mui/material/Drawer").DrawerProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
|
4
5
|
export declare const Header: import("@emotion/styled").StyledComponent<{
|