@backstage/theme 0.5.3 → 0.5.4

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.
@@ -0,0 +1,242 @@
1
+ import { lighten, darken } from '@mui/material/styles';
2
+
3
+ const defaultComponentThemes = {
4
+ MuiCssBaseline: {
5
+ styleOverrides: (theme) => ({
6
+ html: {
7
+ height: "100%",
8
+ fontFamily: theme.typography.fontFamily
9
+ },
10
+ body: {
11
+ height: "100%",
12
+ fontFamily: theme.typography.fontFamily,
13
+ overscrollBehaviorY: "none",
14
+ fontSize: "0.875rem",
15
+ lineHeight: 1.43,
16
+ "&::-webkit-scrollbar, & *::-webkit-scrollbar": {
17
+ backgroundColor: theme.palette.background.paper,
18
+ width: "1em"
19
+ },
20
+ "&::-webkit-scrollbar-thumb, & *::-webkit-scrollbar-thumb": {
21
+ borderRadius: 8,
22
+ backgroundColor: theme.palette.textVerySubtle,
23
+ border: `3px solid ${theme.palette.background.paper}`
24
+ },
25
+ "&::-webkit-scrollbar-thumb:active, & *::-webkit-scrollbar-thumb:active": {
26
+ backgroundColor: theme.palette.mode === "dark" ? lighten(theme.palette.textVerySubtle, 0.2) : darken(theme.palette.textVerySubtle, 0.2)
27
+ },
28
+ "&::-webkit-scrollbar-thumb:hover, & *::-webkit-scrollbar-thumb:hover": {
29
+ backgroundColor: theme.palette.mode === "dark" ? lighten(theme.palette.textVerySubtle, 0.2) : darken(theme.palette.textVerySubtle, 0.2)
30
+ }
31
+ },
32
+ a: {
33
+ color: "inherit",
34
+ textDecoration: "none"
35
+ }
36
+ })
37
+ },
38
+ MuiGrid: {
39
+ defaultProps: {
40
+ spacing: 2
41
+ }
42
+ },
43
+ MuiSwitch: {
44
+ defaultProps: {
45
+ color: "primary"
46
+ }
47
+ },
48
+ MuiTableRow: {
49
+ styleOverrides: {
50
+ // Alternating row backgrounds
51
+ root: ({ theme }) => ({
52
+ "&:nth-of-type(odd)": {
53
+ backgroundColor: theme.palette.background.default
54
+ }
55
+ }),
56
+ // Use pointer for hoverable rows
57
+ hover: {
58
+ "&:hover": {
59
+ cursor: "pointer"
60
+ }
61
+ },
62
+ // Alternating head backgrounds
63
+ head: ({ theme }) => ({
64
+ "&:nth-of-type(odd)": {
65
+ backgroundColor: theme.palette.background.paper
66
+ }
67
+ })
68
+ }
69
+ },
70
+ // Tables are more dense than default mui tables
71
+ MuiTableCell: {
72
+ styleOverrides: {
73
+ root: ({ theme }) => ({
74
+ wordBreak: "break-word",
75
+ overflow: "hidden",
76
+ verticalAlign: "middle",
77
+ lineHeight: "1",
78
+ margin: 0,
79
+ padding: theme.spacing(3, 2, 3, 2.5),
80
+ borderBottom: 0
81
+ }),
82
+ sizeSmall: ({ theme }) => ({
83
+ padding: theme.spacing(1.5, 2, 1.5, 2.5)
84
+ }),
85
+ head: ({ theme }) => ({
86
+ wordBreak: "break-word",
87
+ overflow: "hidden",
88
+ color: theme.palette.textSubtle,
89
+ fontWeight: "normal",
90
+ lineHeight: "1"
91
+ })
92
+ }
93
+ },
94
+ MuiTabs: {
95
+ styleOverrides: {
96
+ // Tabs are smaller than default mui tab rows
97
+ root: {
98
+ minHeight: 24
99
+ }
100
+ }
101
+ },
102
+ MuiTab: {
103
+ styleOverrides: {
104
+ // Tabs are smaller and have a hover background
105
+ root: ({ theme }) => ({
106
+ color: theme.palette.link,
107
+ minHeight: 24,
108
+ textTransform: "initial",
109
+ letterSpacing: "0.07em",
110
+ "&:hover": {
111
+ color: darken(theme.palette.link, 0.3),
112
+ background: lighten(theme.palette.link, 0.95)
113
+ },
114
+ [theme.breakpoints.up("md")]: {
115
+ minWidth: 120,
116
+ fontSize: theme.typography.pxToRem(14),
117
+ fontWeight: 500
118
+ }
119
+ }),
120
+ textColorPrimary: ({ theme }) => ({
121
+ color: theme.palette.link
122
+ })
123
+ }
124
+ },
125
+ MuiTableSortLabel: {
126
+ styleOverrides: {
127
+ // No color change on hover, just rely on the arrow showing up instead.
128
+ root: {
129
+ color: "inherit",
130
+ "&:hover": {
131
+ color: "inherit"
132
+ },
133
+ "&:focus": {
134
+ color: "inherit"
135
+ },
136
+ // Bold font for highlighting selected column
137
+ "&.Mui-active": {
138
+ fontWeight: "bold",
139
+ color: "inherit"
140
+ }
141
+ }
142
+ }
143
+ },
144
+ MuiListItemText: {
145
+ styleOverrides: {
146
+ dense: {
147
+ // Default dense list items to adding ellipsis for really long str...
148
+ whiteSpace: "nowrap",
149
+ overflow: "hidden",
150
+ textOverflow: "ellipsis"
151
+ }
152
+ }
153
+ },
154
+ MuiButton: {
155
+ styleOverrides: {
156
+ text: {
157
+ // Text buttons have less padding by default, but we want to keep the original padding
158
+ padding: void 0
159
+ }
160
+ }
161
+ },
162
+ MuiChip: {
163
+ styleOverrides: {
164
+ root: ({ theme }) => ({
165
+ // By default there's no margin, but it's usually wanted, so we add some trailing margin
166
+ marginRight: theme.spacing(1),
167
+ marginBottom: theme.spacing(1)
168
+ }),
169
+ label: ({ theme }) => ({
170
+ lineHeight: theme.spacing(2.5),
171
+ fontWeight: theme.typography.fontWeightMedium,
172
+ fontSize: theme.spacing(1.75)
173
+ }),
174
+ labelSmall: ({ theme }) => ({
175
+ fontSize: theme.spacing(1.5)
176
+ }),
177
+ deleteIcon: ({ theme }) => ({
178
+ width: theme.spacing(3),
179
+ height: theme.spacing(3),
180
+ margin: theme.spacing(0, 0.75, 0, -0.75)
181
+ }),
182
+ deleteIconSmall: ({ theme }) => ({
183
+ width: theme.spacing(2),
184
+ height: theme.spacing(2),
185
+ margin: theme.spacing(0, 0.5, 0, -0.5)
186
+ })
187
+ }
188
+ },
189
+ MuiCard: {
190
+ styleOverrides: {
191
+ root: {
192
+ // When cards have a forced size, such as when they are arranged in a
193
+ // CSS grid, the content needs to flex such that the actions (buttons
194
+ // etc) end up at the bottom of the card instead of just below the body
195
+ // contents.
196
+ display: "flex",
197
+ flexDirection: "column"
198
+ }
199
+ }
200
+ },
201
+ MuiCardHeader: {
202
+ styleOverrides: {
203
+ root: {
204
+ // Reduce padding between header and content
205
+ paddingBottom: 0
206
+ }
207
+ }
208
+ },
209
+ MuiCardContent: {
210
+ styleOverrides: {
211
+ root: {
212
+ // When cards have a forced size, such as when they are arranged in a
213
+ // CSS grid, the content needs to flex such that the actions (buttons
214
+ // etc) end up at the bottom of the card instead of just below the body
215
+ // contents.
216
+ flexGrow: 1,
217
+ "&:last-child": {
218
+ paddingBottom: void 0
219
+ }
220
+ }
221
+ }
222
+ },
223
+ MuiCardActions: {
224
+ styleOverrides: {
225
+ root: {
226
+ // We default to putting the card actions at the end
227
+ justifyContent: "flex-end"
228
+ }
229
+ }
230
+ },
231
+ MuiLink: {
232
+ defaultProps: {
233
+ underline: "hover"
234
+ }
235
+ },
236
+ MuiPaper: {
237
+ styleOverrides: { root: { backgroundImage: "unset" } }
238
+ }
239
+ };
240
+
241
+ export { defaultComponentThemes };
242
+ //# sourceMappingURL=defaultComponentThemes.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"defaultComponentThemes.esm.js","sources":["../../src/v5/defaultComponentThemes.ts"],"sourcesContent":["/*\n * Copyright 2022 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { darken, lighten, ThemeOptions } from '@mui/material/styles';\n\n/**\n * A helper for creating theme overrides.\n *\n * @public\n */\nexport const defaultComponentThemes: ThemeOptions['components'] = {\n MuiCssBaseline: {\n styleOverrides: theme => ({\n html: {\n height: '100%',\n fontFamily: theme.typography.fontFamily,\n },\n body: {\n height: '100%',\n fontFamily: theme.typography.fontFamily,\n overscrollBehaviorY: 'none',\n fontSize: '0.875rem',\n lineHeight: 1.43,\n '&::-webkit-scrollbar, & *::-webkit-scrollbar': {\n backgroundColor: theme.palette.background.paper,\n width: '1em',\n },\n '&::-webkit-scrollbar-thumb, & *::-webkit-scrollbar-thumb': {\n borderRadius: 8,\n backgroundColor: theme.palette.textVerySubtle,\n border: `3px solid ${theme.palette.background.paper}`,\n },\n '&::-webkit-scrollbar-thumb:active, & *::-webkit-scrollbar-thumb:active':\n {\n backgroundColor:\n theme.palette.mode === 'dark'\n ? lighten(theme.palette.textVerySubtle, 0.2)\n : darken(theme.palette.textVerySubtle, 0.2),\n },\n '&::-webkit-scrollbar-thumb:hover, & *::-webkit-scrollbar-thumb:hover':\n {\n backgroundColor:\n theme.palette.mode === 'dark'\n ? lighten(theme.palette.textVerySubtle, 0.2)\n : darken(theme.palette.textVerySubtle, 0.2),\n },\n },\n a: {\n color: 'inherit',\n textDecoration: 'none',\n },\n }),\n },\n MuiGrid: {\n defaultProps: {\n spacing: 2,\n },\n },\n MuiSwitch: {\n defaultProps: {\n color: 'primary',\n },\n },\n MuiTableRow: {\n styleOverrides: {\n // Alternating row backgrounds\n root: ({ theme }) => ({\n '&:nth-of-type(odd)': {\n backgroundColor: theme.palette.background.default,\n },\n }),\n // Use pointer for hoverable rows\n hover: {\n '&:hover': {\n cursor: 'pointer',\n },\n },\n // Alternating head backgrounds\n head: ({ theme }) => ({\n '&:nth-of-type(odd)': {\n backgroundColor: theme.palette.background.paper,\n },\n }),\n },\n },\n // Tables are more dense than default mui tables\n MuiTableCell: {\n styleOverrides: {\n root: ({ theme }) => ({\n wordBreak: 'break-word',\n overflow: 'hidden',\n verticalAlign: 'middle',\n lineHeight: '1',\n margin: 0,\n padding: theme.spacing(3, 2, 3, 2.5),\n borderBottom: 0,\n }),\n sizeSmall: ({ theme }) => ({\n padding: theme.spacing(1.5, 2, 1.5, 2.5),\n }),\n head: ({ theme }) => ({\n wordBreak: 'break-word',\n overflow: 'hidden',\n color: theme.palette.textSubtle,\n fontWeight: 'normal',\n lineHeight: '1',\n }),\n },\n },\n MuiTabs: {\n styleOverrides: {\n // Tabs are smaller than default mui tab rows\n root: {\n minHeight: 24,\n },\n },\n },\n MuiTab: {\n styleOverrides: {\n // Tabs are smaller and have a hover background\n root: ({ theme }) => ({\n color: theme.palette.link,\n minHeight: 24,\n textTransform: 'initial',\n letterSpacing: '0.07em',\n '&:hover': {\n color: darken(theme.palette.link, 0.3),\n background: lighten(theme.palette.link, 0.95),\n },\n [theme.breakpoints.up('md')]: {\n minWidth: 120,\n fontSize: theme.typography.pxToRem(14),\n fontWeight: 500,\n },\n }),\n textColorPrimary: ({ theme }) => ({\n color: theme.palette.link,\n }),\n },\n },\n MuiTableSortLabel: {\n styleOverrides: {\n // No color change on hover, just rely on the arrow showing up instead.\n root: {\n color: 'inherit',\n '&:hover': {\n color: 'inherit',\n },\n '&:focus': {\n color: 'inherit',\n },\n // Bold font for highlighting selected column\n '&.Mui-active': {\n fontWeight: 'bold',\n color: 'inherit',\n },\n },\n },\n },\n MuiListItemText: {\n styleOverrides: {\n dense: {\n // Default dense list items to adding ellipsis for really long str...\n whiteSpace: 'nowrap',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n },\n },\n },\n MuiButton: {\n styleOverrides: {\n text: {\n // Text buttons have less padding by default, but we want to keep the original padding\n padding: undefined,\n },\n },\n },\n MuiChip: {\n styleOverrides: {\n root: ({ theme }) => ({\n // By default there's no margin, but it's usually wanted, so we add some trailing margin\n marginRight: theme.spacing(1),\n marginBottom: theme.spacing(1),\n }),\n label: ({ theme }) => ({\n lineHeight: theme.spacing(2.5),\n fontWeight: theme.typography.fontWeightMedium,\n fontSize: theme.spacing(1.75),\n }),\n labelSmall: ({ theme }) => ({\n fontSize: theme.spacing(1.5),\n }),\n deleteIcon: ({ theme }) => ({\n width: theme.spacing(3),\n height: theme.spacing(3),\n margin: theme.spacing(0, 0.75, 0, -0.75),\n }),\n deleteIconSmall: ({ theme }) => ({\n width: theme.spacing(2),\n height: theme.spacing(2),\n margin: theme.spacing(0, 0.5, 0, -0.5),\n }),\n },\n },\n MuiCard: {\n styleOverrides: {\n root: {\n // When cards have a forced size, such as when they are arranged in a\n // CSS grid, the content needs to flex such that the actions (buttons\n // etc) end up at the bottom of the card instead of just below the body\n // contents.\n display: 'flex',\n flexDirection: 'column',\n },\n },\n },\n MuiCardHeader: {\n styleOverrides: {\n root: {\n // Reduce padding between header and content\n paddingBottom: 0,\n },\n },\n },\n MuiCardContent: {\n styleOverrides: {\n root: {\n // When cards have a forced size, such as when they are arranged in a\n // CSS grid, the content needs to flex such that the actions (buttons\n // etc) end up at the bottom of the card instead of just below the body\n // contents.\n flexGrow: 1,\n '&:last-child': {\n paddingBottom: undefined,\n },\n },\n },\n },\n MuiCardActions: {\n styleOverrides: {\n root: {\n // We default to putting the card actions at the end\n justifyContent: 'flex-end',\n },\n },\n },\n MuiLink: {\n defaultProps: {\n underline: 'hover',\n },\n },\n MuiPaper: {\n styleOverrides: { root: { backgroundImage: 'unset' } },\n },\n};\n"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/theme",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "material-ui theme for use with Backstage.",
5
5
  "backstage": {
6
6
  "role": "web-library"
@@ -41,7 +41,7 @@
41
41
  "@mui/material": "^5.12.2"
42
42
  },
43
43
  "devDependencies": {
44
- "@backstage/cli": "^0.26.3",
44
+ "@backstage/cli": "^0.26.5",
45
45
  "@mui/styles": "^5.14.18",
46
46
  "@testing-library/jest-dom": "^6.0.0",
47
47
  "@testing-library/react": "^15.0.0",