@primer/components 0.0.0-202182123554 → 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 +10 -2
- package/lib/Button/Button.d.ts +0 -1
- package/lib/Button/ButtonClose.d.ts +1 -2
- package/lib/Button/ButtonDanger.d.ts +0 -1
- package/lib/Button/ButtonInvisible.d.ts +0 -1
- package/lib/Button/ButtonOutline.d.ts +0 -1
- package/lib/Button/ButtonPrimary.d.ts +0 -1
- package/lib/CircleOcticon.d.ts +0 -1
- package/lib/Dialog.d.ts +2 -3
- package/lib/Dropdown.d.ts +0 -4
- package/lib/DropdownMenu/DropdownButton.d.ts +1 -2
- package/lib/FilterList.d.ts +0 -1
- package/lib/Position.d.ts +4 -4
- package/lib/SelectMenu/SelectMenu.d.ts +4 -10
- package/lib/SelectMenu/SelectMenuItem.d.ts +1 -1
- package/lib/SelectMenu/SelectMenuModal.d.ts +1 -1
- package/lib/SelectPanel/SelectPanel.js +3 -2
- package/lib/Timeline.d.ts +0 -1
- package/lib-esm/Button/Button.d.ts +0 -1
- package/lib-esm/Button/ButtonClose.d.ts +1 -2
- package/lib-esm/Button/ButtonDanger.d.ts +0 -1
- package/lib-esm/Button/ButtonInvisible.d.ts +0 -1
- package/lib-esm/Button/ButtonOutline.d.ts +0 -1
- package/lib-esm/Button/ButtonPrimary.d.ts +0 -1
- package/lib-esm/CircleOcticon.d.ts +0 -1
- package/lib-esm/Dialog.d.ts +2 -3
- package/lib-esm/Dropdown.d.ts +0 -4
- package/lib-esm/DropdownMenu/DropdownButton.d.ts +1 -2
- package/lib-esm/FilterList.d.ts +0 -1
- package/lib-esm/Position.d.ts +4 -4
- package/lib-esm/SelectMenu/SelectMenu.d.ts +4 -10
- package/lib-esm/SelectMenu/SelectMenuItem.d.ts +1 -1
- package/lib-esm/SelectMenu/SelectMenuModal.d.ts +1 -1
- package/lib-esm/SelectPanel/SelectPanel.js +3 -2
- package/lib-esm/Timeline.d.ts +0 -1
- package/package.json +6 -5
package/lib-esm/Timeline.d.ts
CHANGED
@@ -374,7 +374,6 @@ declare const _default: string & import("styled-components").StyledComponentBase
|
|
374
374
|
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLDivElement> | undefined;
|
375
375
|
onTransitionEnd?: React.TransitionEventHandler<HTMLDivElement> | undefined;
|
376
376
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLDivElement> | undefined;
|
377
|
-
css?: import("@emotion/core").InterpolationWithTheme<any>;
|
378
377
|
bg?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
379
378
|
m?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
380
379
|
mt?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
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",
|
@@ -52,11 +52,10 @@
|
|
52
52
|
"@types/history": "4.7.8",
|
53
53
|
"@types/styled-components": "5.1.11",
|
54
54
|
"@types/styled-system": "5.1.12",
|
55
|
-
"@types/styled-system__css": "5.0.
|
55
|
+
"@types/styled-system__css": "5.0.16",
|
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",
|