@campxdev/react-blueprint 2.2.8 → 2.3.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@campxdev/react-blueprint",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "React UI component library for CampX applications",
|
|
5
5
|
"author": "CampX",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"scripts": {
|
|
28
28
|
"start": "react-scripts --max_old_space_size=4096 start",
|
|
29
29
|
"build": "NODE_OPTIONS='--max-old-space-size=4096' rollup -c --bundleConfigAsCjs",
|
|
30
|
+
"yalc:w": "copy package.json package.json.backup && node -e \"const fs=require('fs'); const pkg=JSON.parse(fs.readFileSync('./package.json')); pkg.main='export.ts'; pkg.module='export.ts'; pkg.types='export.ts'; pkg.exports={'.':'./export.ts'}; delete pkg.scripts.prepare; fs.writeFileSync('./package.json', JSON.stringify(pkg, null, 2));\" && yalc publish --push --sig --no-scripts && move /Y package.json.backup package.json",
|
|
30
31
|
"yalc:dev": "cp package.json package.json.backup && node -e \"const fs=require('fs'); const pkg=JSON.parse(fs.readFileSync('./package.json')); pkg.main='export.ts'; pkg.module='export.ts'; pkg.types='export.ts'; pkg.exports={'.':'./export.ts'}; delete pkg.scripts.prepare; fs.writeFileSync('./package.json', JSON.stringify(pkg, null, 2));\" && yalc publish --push --sig --no-scripts && mv package.json.backup package.json",
|
|
31
32
|
"test": "react-scripts test",
|
|
32
33
|
"storybook": "NODE_OPTIONS='--max-old-space-size=4096' storybook dev -p 6006",
|
|
@@ -53,7 +53,7 @@ const AppLayoutContainer = styled(Stack)(({ theme }: { theme?: any }) => ({
|
|
|
53
53
|
flexDirection: 'column',
|
|
54
54
|
backgroundColor: theme.palette.surface.defaultBackground,
|
|
55
55
|
height: '100vh',
|
|
56
|
-
overflow: '
|
|
56
|
+
overflow: 'scroll',
|
|
57
57
|
}));
|
|
58
58
|
|
|
59
59
|
const MainContent = styled(Box)(({ theme }: { theme?: any }) => ({
|