@zac-apps/commons 2.0.0-beta.1 → 2.0.0-beta.3

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +15 -14
package/dist/index.js CHANGED
@@ -10,7 +10,7 @@ import AccordionSummary from '@mui/material/AccordionSummary';
10
10
  import AccordionDetails from '@mui/material/AccordionDetails';
11
11
  import Typography from '@mui/material/Typography';
12
12
  import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
13
- import { createTheme, styled } from '@mui/material/styles';
13
+ import { createTheme } from '@mui/material';
14
14
  import { green, yellow, pink, lightGreen, red } from '@mui/material/colors';
15
15
  import Table from '@mui/material/Table';
16
16
  import TableContainer from '@mui/material/TableContainer';
@@ -35,6 +35,7 @@ import ToggleButtonGroup from '@mui/material/ToggleButtonGroup';
35
35
  import ToggleButton from '@mui/material/ToggleButton';
36
36
  import Image from 'next/image';
37
37
  import Button from '@mui/material/Button';
38
+ import { styled } from '@mui/material/styles';
38
39
  import TableCell, { tableCellClasses } from '@mui/material/TableCell';
39
40
  import useMediaQuery from '@mui/material/useMediaQuery';
40
41
  import Drawer from '@mui/material/Drawer';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zac-apps/commons",
3
- "version": "2.0.0-beta.1",
3
+ "version": "2.0.0-beta.3",
4
4
  "scripts": {
5
5
  "rollup": "node_modules/rollup/dist/rollup.js",
6
6
  "dev": "next dev",
@@ -28,13 +28,14 @@
28
28
  "author": "ZAC",
29
29
  "license": "CC-BY-SA-4.0",
30
30
  "dependencies": {
31
- "@emotion/react": "^11.14.0",
32
- "@emotion/styled": "^11.14.1",
33
31
  "@mui/icons-material": "^7.3.4",
34
- "@mui/material": "^7.3.4"
32
+ "@mui/material": "^7.3.4",
33
+ "@mui/material-pigment-css": "^7.3.3",
34
+ "@pigment-css/react": "^0.0.30"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@babel/plugin-transform-runtime": "^7.28.5",
38
+ "@pigment-css/nextjs-plugin": "^0.0.30",
38
39
  "@rollup/plugin-babel": "^6.1.0",
39
40
  "@rollup/plugin-commonjs": "^28.0.9",
40
41
  "@rollup/plugin-json": "^6.1.0",
@@ -42,22 +43,22 @@
42
43
  "@semantic-release/git": "^10.0.1",
43
44
  "@semantic-release/gitlab": "^13.2.9",
44
45
  "@semantic-release/npm": "^13.1.1",
45
- "@storybook/addon-links": "^10.0.0",
46
- "@storybook/addon-onboarding": "^10.0.0",
47
- "@storybook/nextjs": "^10.0.0",
48
- "@storybook/react": "^10.0.0",
46
+ "@storybook/addon-links": "^10.0.1",
47
+ "@storybook/addon-onboarding": "^10.0.1",
48
+ "@storybook/nextjs": "^10.0.1",
49
+ "@storybook/react": "^10.0.1",
49
50
  "babel-loader": "^10.0.0",
50
51
  "eslint": "^9",
51
- "eslint-config-next": "16.0.0",
52
- "eslint-plugin-storybook": "^10.0.0",
52
+ "eslint-config-next": "16.0.1",
53
+ "eslint-plugin-storybook": "^10.0.1",
53
54
  "rollup": "^4.52.5",
54
55
  "semantic-release": "^25.0.1",
55
- "storybook": "^10.0.0"
56
+ "storybook": "^10.0.1"
56
57
  },
57
58
  "peerDependencies": {
58
- "next": "^15 || ^16",
59
- "react": "^18 || ^19",
60
- "react-dom": "^18 || ^19"
59
+ "next": "^16 || ^15",
60
+ "react": "^19 || ^18",
61
+ "react-dom": "^19 || ^18"
61
62
  },
62
63
  "description": "This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app)."
63
64
  }