@up42/up-components 9.2.0 → 10.0.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/dist/esm/index.js +2 -1
- package/package.json +29 -37
package/dist/esm/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Fade, Slide, Grow, createTheme, SvgIcon, Alert as Alert$1, AlertTitle, capitalize as capitalize$1, Box, Snackbar, CssBaseline, CircularProgress, Avatar as Avatar$1, Grid, Container, Checkbox as Checkbox$1, FormLabel as FormLabel$1, FormControl, FormGroup, FormControlLabel, FormHelperText, InputAdornment, IconButton, Button as Button$1, Radio as Radio$1, RadioGroup, Switch as Switch$1, Select as Select$1, MenuItem, TextField, Slider as Slider$1, Link as Link$1, Tab as Tab$1, Tabs as Tabs$1, Divider as Divider$1, Card, CardContent, Modal, Tooltip, Popover as Popover$1, Chip, Autocomplete, Typography as Typography$1, Stack, Badge as Badge$1, Menu, styled, Dialog
|
|
1
|
+
import { Fade, Slide, Grow, createTheme, SvgIcon, Alert as Alert$1, AlertTitle, capitalize as capitalize$1, Box, Snackbar, CssBaseline, CircularProgress, Avatar as Avatar$1, Grid, Container, Checkbox as Checkbox$1, FormLabel as FormLabel$1, FormControl, FormGroup, FormControlLabel, FormHelperText, InputAdornment, IconButton, Button as Button$1, Radio as Radio$1, RadioGroup, Switch as Switch$1, Select as Select$1, MenuItem, TextField, Slider as Slider$1, Link as Link$1, Tab as Tab$1, Tabs as Tabs$1, Divider as Divider$1, Card, CardContent, Modal, Tooltip, Popover as Popover$1, Chip, Autocomplete, Typography as Typography$1, Stack, Badge as Badge$1, alpha, Menu, styled, Dialog } from '@mui/material';
|
|
2
2
|
export * from '@mui/material';
|
|
3
3
|
import { ThemeProvider } from '@mui/material/styles';
|
|
4
4
|
import * as React from 'react';
|
|
@@ -7746,6 +7746,7 @@ const FeatureCardHeader = ({ header, subheader, checkboxProps, imageProps }) =>
|
|
|
7746
7746
|
width: tokens.size.spacing.scale48,
|
|
7747
7747
|
height: tokens.size.spacing.scale48,
|
|
7748
7748
|
borderRadius: tokens.shape.border.radius4,
|
|
7749
|
+
border: `${tokens.shape.border.width1} solid ${alpha(tokens.color.gray900, 0.1)}`,
|
|
7749
7750
|
backgroundColor: tokens.color.gray50,
|
|
7750
7751
|
display: 'flex',
|
|
7751
7752
|
alignItems: 'center',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@up42/up-components",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "10.0.0",
|
|
4
4
|
"description": "UP42 Component Library",
|
|
5
5
|
"author": "Axel Fuhrmann axel.fuhrmann@up42.com",
|
|
6
6
|
"license": "ISC",
|
|
@@ -16,32 +16,13 @@
|
|
|
16
16
|
"dist/index.d.ts"
|
|
17
17
|
],
|
|
18
18
|
"types": "dist/index.d.ts",
|
|
19
|
-
"scripts": {
|
|
20
|
-
"dev": "pnpm run storybook",
|
|
21
|
-
"build": "rimraf dist && rollup -c --failAfterWarnings",
|
|
22
|
-
"build:watch": "rollup -c -w",
|
|
23
|
-
"test": "vitest run --exclude='**/smoke.test.*'",
|
|
24
|
-
"test:watch": "vitest",
|
|
25
|
-
"test:smoke": "vitest run smoke.test.jsx",
|
|
26
|
-
"storybook": "storybook dev -p 6006",
|
|
27
|
-
"storybook:build": "storybook build",
|
|
28
|
-
"lint": "eslint src/.",
|
|
29
|
-
"release": "commit-and-tag-version",
|
|
30
|
-
"release:major": "commit-and-tag-version --release-as major",
|
|
31
|
-
"release:minor": "commit-and-tag-version --release-as minor",
|
|
32
|
-
"release:patch": "commit-and-tag-version --release-as patch",
|
|
33
|
-
"prepare": "husky install",
|
|
34
|
-
"format": "prettier --write ./**/*.mdx",
|
|
35
|
-
"build-icons": "node scripts/icons/generate-icons-index.mjs && pnpm run optimize-icons",
|
|
36
|
-
"optimize-icons": "svgo -f src/global/icons"
|
|
37
|
-
},
|
|
38
19
|
"dependencies": {
|
|
39
|
-
"@up42/design-system-tokens": "^
|
|
20
|
+
"@up42/design-system-tokens": "^9.0.2",
|
|
40
21
|
"prismjs": "^1.29.0"
|
|
41
22
|
},
|
|
42
23
|
"devDependencies": {
|
|
43
|
-
"@commitlint/cli": "^20.
|
|
44
|
-
"@commitlint/config-conventional": "^20.
|
|
24
|
+
"@commitlint/cli": "^20.5.0",
|
|
25
|
+
"@commitlint/config-conventional": "^20.5.0",
|
|
45
26
|
"@emotion/react": "^11.7.1",
|
|
46
27
|
"@emotion/styled": "^11.6.0",
|
|
47
28
|
"@mui/material": "^5.3.0",
|
|
@@ -66,7 +47,7 @@
|
|
|
66
47
|
"@types/react": "^18.3.1",
|
|
67
48
|
"@typescript-eslint/eslint-plugin": "^5.10.0",
|
|
68
49
|
"@typescript-eslint/parser": "^5.10.0",
|
|
69
|
-
"commit-and-tag-version": "^12.
|
|
50
|
+
"commit-and-tag-version": "^12.7.1",
|
|
70
51
|
"eslint": "^8.7.0",
|
|
71
52
|
"eslint-config-prettier": "^8.3.0",
|
|
72
53
|
"eslint-import-resolver-typescript": "^2.5.0",
|
|
@@ -77,7 +58,7 @@
|
|
|
77
58
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
78
59
|
"eslint-plugin-storybook": "^0.12.0",
|
|
79
60
|
"husky": "^7.0.4",
|
|
80
|
-
"jsdom": "^
|
|
61
|
+
"jsdom": "^25.0.1",
|
|
81
62
|
"lint-staged": "^12.3.1",
|
|
82
63
|
"prettier": "^2.5.1",
|
|
83
64
|
"react": "^18.3.1",
|
|
@@ -87,7 +68,6 @@
|
|
|
87
68
|
"rollup-plugin-dts": "^6.1.0",
|
|
88
69
|
"storybook": "^8.6.17",
|
|
89
70
|
"svgo": "^3.3.3",
|
|
90
|
-
"tslib": "^2.8.1",
|
|
91
71
|
"typescript": "^4.5.4",
|
|
92
72
|
"vite": "^7.1.12",
|
|
93
73
|
"vite-plugin-svgr": "^4.2.0",
|
|
@@ -120,15 +100,27 @@
|
|
|
120
100
|
"tag": true
|
|
121
101
|
}
|
|
122
102
|
},
|
|
123
|
-
"
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
103
|
+
"publishConfig": {
|
|
104
|
+
"registry": "https://europe-west3-npm.pkg.dev/up42-artifact-registry/up42-frontend-up-components/"
|
|
105
|
+
},
|
|
106
|
+
"scripts": {
|
|
107
|
+
"dev": "pnpm run storybook",
|
|
108
|
+
"build": "rimraf dist && rollup -c --failAfterWarnings",
|
|
109
|
+
"build:watch": "rollup -c -w",
|
|
110
|
+
"test": "vitest run --exclude='**/smoke.test.*'",
|
|
111
|
+
"test:watch": "vitest",
|
|
112
|
+
"test:smoke": "vitest run smoke.test.jsx",
|
|
113
|
+
"storybook": "storybook dev -p 6006",
|
|
114
|
+
"storybook:build": "storybook build",
|
|
115
|
+
"lint": "eslint src/.",
|
|
116
|
+
"release": "commit-and-tag-version",
|
|
117
|
+
"release:major": "commit-and-tag-version --release-as major",
|
|
118
|
+
"release:minor": "commit-and-tag-version --release-as minor",
|
|
119
|
+
"release:patch": "commit-and-tag-version --release-as patch",
|
|
120
|
+
"format": "prettier --write ./**/*.mdx",
|
|
121
|
+
"build-icons": "node scripts/icons/generate-icons-index.mjs && pnpm run optimize-icons",
|
|
122
|
+
"optimize-icons": "svgo -f src/global/icons",
|
|
123
|
+
"artifactregistry-login": "pnpm dlx google-artifactregistry-auth --repo-config=./.npmrc",
|
|
124
|
+
"artifactregistry-login:publish": "pnpm dlx google-artifactregistry-auth --repo-config=./.npmrc-publish"
|
|
133
125
|
}
|
|
134
|
-
}
|
|
126
|
+
}
|