@bitrise/bitkit 12.108.0 → 12.108.1-alpha.1
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,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitrise/bitkit",
|
|
3
3
|
"description": "Bitrise React component library",
|
|
4
|
-
"version": "12.108.
|
|
4
|
+
"version": "12.108.1-alpha.1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"create-theme-from-tokens": "node ./scripts/createThemeFromTokens.js",
|
|
14
14
|
"lint": "eslint src --ext ts,tsx",
|
|
15
15
|
"lint:fix": "eslint src --ext ts,tsx --fix",
|
|
16
|
+
"postinstall": "npm run theme",
|
|
16
17
|
"release": "release-it minor --ci",
|
|
17
18
|
"release-alpha": "release-it --preRelease=alpha --ci",
|
|
18
19
|
"start": "npm run storybook",
|
|
@@ -69,7 +69,7 @@ const Dialog: ComponentWithAs<'section', DialogProps> = ({
|
|
|
69
69
|
{variant !== 'empty' && (
|
|
70
70
|
<>
|
|
71
71
|
<ModalHeader marginRight="48">
|
|
72
|
-
<Text as="h1" id={headerId} textStyle="
|
|
72
|
+
<Text as="h1" id={headerId} textStyle="comp/dialog/title">
|
|
73
73
|
{title}
|
|
74
74
|
</Text>
|
|
75
75
|
</ModalHeader>
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import { ReactNode, RefObject } from 'react';
|
|
2
2
|
import { ChakraProvider } from '@chakra-ui/react';
|
|
3
|
+
|
|
4
|
+
import '@fontsource/figtree/400.css';
|
|
5
|
+
import '@fontsource/figtree/600.css';
|
|
6
|
+
import '@fontsource/figtree/700.css';
|
|
7
|
+
import '@fontsource/source-code-pro/400.css';
|
|
8
|
+
|
|
3
9
|
import theme from '../../theme';
|
|
4
10
|
|
|
5
11
|
type ProviderProps = {
|
package/src/theme.ts
CHANGED
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
import '@fontsource/figtree/400.css';
|
|
2
|
-
import '@fontsource/figtree/600.css';
|
|
3
|
-
import '@fontsource/figtree/700.css';
|
|
4
|
-
import '@fontsource/source-code-pro/400.css';
|
|
5
|
-
|
|
6
1
|
import tokens from './tokens/tokensToTheme.json';
|
|
7
2
|
|
|
8
3
|
import breakpoints from './Foundations/Breakpoints/Breakpoints';
|