@movable/ui 0.15.2 → 0.16.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/lib/components/index.d.ts +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.mjs +1020 -977
- package/lib/index.mjs.map +1 -1
- package/lib/theme/components/typography.d.ts +13 -0
- package/package.json +8 -4
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { TypographyProps } from '@mui/material';
|
|
2
|
+
declare const typography: {
|
|
3
|
+
MuiTypography: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: ({ ownerState }: {
|
|
6
|
+
ownerState: TypographyProps;
|
|
7
|
+
}) => {
|
|
8
|
+
fontWeight?: number | undefined;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
export default typography;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@movable/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
4
|
"description": "Movable Ink's shared MUI components and MUI theme for our vite applications",
|
|
5
5
|
"module": "lib/index.mjs",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -16,9 +16,11 @@
|
|
|
16
16
|
"lint:cypress": "tsc --project ./cypress/tsconfig.json && eslint -c ./cypress/.eslintrc.json ./cypress --resolve-plugins-relative-to ./cypress --report-unused-disable-directives --max-warnings 0 --no-error-on-unmatched-pattern",
|
|
17
17
|
"lint:stories": "tsc --project ./tsconfig.json && eslint -c ./.eslintrc.json ./stories --report-unused-disable-directives --max-warnings 0",
|
|
18
18
|
"prepare": "husky install",
|
|
19
|
+
"percy:storybook": "PERCY_TOKEN=$PERCY_TOKEN percy exec --parallel -- percy storybook ./storybook-static",
|
|
20
|
+
"percy:upload": "PERCY_TOKEN=$PERCY_TOKEN percy build:finalize",
|
|
19
21
|
"storybook": "storybook dev -p 6006",
|
|
20
22
|
"test": "cypress run --component",
|
|
21
|
-
"test:ci": "PERCY_TOKEN=$PERCY_TOKEN percy exec -- cypress run --component",
|
|
23
|
+
"test:ci": "PERCY_TOKEN=$PERCY_TOKEN percy exec --parallel -- cypress run --component",
|
|
22
24
|
"test:dev": "cypress open --component",
|
|
23
25
|
"watch": "vite build --watch"
|
|
24
26
|
},
|
|
@@ -42,9 +44,11 @@
|
|
|
42
44
|
"@commitlint/config-conventional": "^17.6.7",
|
|
43
45
|
"@emotion/react": "^11.11.1",
|
|
44
46
|
"@emotion/styled": "^11.11.0",
|
|
47
|
+
"@movable/prettier-config": "^2.0.0",
|
|
45
48
|
"@mui/material": "^5.14.8",
|
|
46
|
-
"@percy/cli": "^1.
|
|
49
|
+
"@percy/cli": "^1.28.2",
|
|
47
50
|
"@percy/cypress": "^3.1.2",
|
|
51
|
+
"@percy/storybook": "^5.0.1",
|
|
48
52
|
"@release-it/conventional-changelog": "^7.0.1",
|
|
49
53
|
"@rollup/plugin-typescript": "^11.1.5",
|
|
50
54
|
"@storybook/addon-essentials": "^7.5.1",
|
|
@@ -85,8 +89,8 @@
|
|
|
85
89
|
"peerDependencies": {
|
|
86
90
|
"@emotion/react": "^11.11.1",
|
|
87
91
|
"@emotion/styled": "^11.11.0",
|
|
88
|
-
"@mui/material": "^5.14.8",
|
|
89
92
|
"@mui/icons-material": "^5.14.9",
|
|
93
|
+
"@mui/material": "^5.14.8",
|
|
90
94
|
"react": "^18.2.0",
|
|
91
95
|
"react-dom": "^18.2.0"
|
|
92
96
|
},
|