@primer/components 0.0.0-2021821185159 → 0.0.0-202182231425
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/CHANGELOG.md +9 -5
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
@@ -1,14 +1,18 @@
|
|
1
1
|
# @primer/components
|
2
2
|
|
3
|
-
## 0.0.0-
|
3
|
+
## 0.0.0-202182231425
|
4
4
|
|
5
5
|
### Patch Changes
|
6
6
|
|
7
|
-
-
|
7
|
+
- Fake entry to force publishing
|
8
8
|
|
9
|
-
|
9
|
+
## 29.1.1
|
10
10
|
|
11
|
-
|
11
|
+
### Patch Changes
|
12
|
+
|
13
|
+
- [#1441](https://github.com/primer/react/pull/1441) [`f3f5afb9`](https://github.com/primer/react/commit/f3f5afb9cf91e0ce3ea287351c871eb1559f1fa4) Thanks [@jfuchs](https://github.com/jfuchs)! - Fix type error where `css` is a required prop of some components by excluding storybook stories from TypeScript compilation for builds
|
14
|
+
|
15
|
+
* [#1446](https://github.com/primer/react/pull/1446) [`b4e5287c`](https://github.com/primer/react/commit/b4e5287cf1ec75a27e4b78b17425952e85f82f47) Thanks [@colebemis](https://github.com/colebemis)! - Fix filter input spacing in SelectPanel
|
12
16
|
|
13
17
|
## 29.1.0
|
14
18
|
|
@@ -560,7 +564,7 @@
|
|
560
564
|
import {ThemeProvider} from 'styled-components'
|
561
565
|
import {theme} from '@primer/react'
|
562
566
|
|
563
|
-
|
567
|
+
function App(props) {
|
564
568
|
return (
|
565
569
|
<div>
|
566
570
|
<ThemeProvider theme={theme}>
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@primer/components",
|
3
|
-
"version": "0.0.0-
|
3
|
+
"version": "0.0.0-202182231425",
|
4
4
|
"description": "Primer react components",
|
5
5
|
"main": "lib/index.js",
|
6
6
|
"module": "lib-esm/index.js",
|
@@ -15,7 +15,7 @@
|
|
15
15
|
"start": "concurrently npm:start:*",
|
16
16
|
"start:docs": "cd docs && npm run develop",
|
17
17
|
"start:storybook": "start-storybook -p 6006",
|
18
|
-
"lint": "eslint '**/*.{js,ts,tsx}'",
|
18
|
+
"lint": "eslint '**/*.{js,ts,tsx,md,mdx}'",
|
19
19
|
"lint:fix": "npm run lint -- --fix",
|
20
20
|
"test": "jest",
|
21
21
|
"test:update": "npm run test -- --updateSnapshot",
|
@@ -56,7 +56,6 @@
|
|
56
56
|
"@types/styled-system__theme-get": "5.0.1",
|
57
57
|
"classnames": "2.3.1",
|
58
58
|
"deepmerge": "4.2.2",
|
59
|
-
"eslint-plugin-primer-react": "0.4.1",
|
60
59
|
"focus-visible": "5.2.0",
|
61
60
|
"styled-system": "5.1.5"
|
62
61
|
},
|
@@ -79,7 +78,7 @@
|
|
79
78
|
"@storybook/addon-actions": "^6.2.9",
|
80
79
|
"@storybook/addon-essentials": "6.2.9",
|
81
80
|
"@storybook/addon-links": "^6.2.9",
|
82
|
-
"@storybook/react": "6.3.
|
81
|
+
"@storybook/react": "6.3.8",
|
83
82
|
"@testing-library/dom": "7.31.2",
|
84
83
|
"@testing-library/react": "11.2.7",
|
85
84
|
"@testing-library/react-hooks": "7.0.0",
|
@@ -110,7 +109,9 @@
|
|
110
109
|
"eslint-plugin-github": "4.1.3",
|
111
110
|
"eslint-plugin-jest": "24.3.6",
|
112
111
|
"eslint-plugin-jsx-a11y": "6.4.1",
|
112
|
+
"eslint-plugin-mdx": "1.15.1",
|
113
113
|
"eslint-plugin-prettier": "3.4.0",
|
114
|
+
"eslint-plugin-primer-react": "0.4.2",
|
114
115
|
"eslint-plugin-react": "7.24.0",
|
115
116
|
"eslint-plugin-react-hooks": "4.2.0",
|
116
117
|
"jest": "27.0.4",
|