@primer/components 31.2.0-rc.0b631515 → 31.2.0-rc.2a086bac
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 +5 -1
- package/dist/browser.esm.js +473 -471
- package/dist/browser.esm.js.map +1 -1
- package/dist/browser.umd.js +103 -101
- package/dist/browser.umd.js.map +1 -1
- package/docs/content/ActionList2.mdx +354 -0
- package/docs/src/@primer/gatsby-theme-doctocat/live-code-scope.js +17 -0
- package/lib/ActionList2/Description.d.ts +12 -0
- package/lib/ActionList2/Description.js +53 -0
- package/lib/ActionList2/Divider.d.ts +5 -0
- package/lib/ActionList2/Divider.js +35 -0
- package/lib/ActionList2/Group.d.ts +11 -0
- package/lib/ActionList2/Group.js +57 -0
- package/lib/ActionList2/Header.d.ts +26 -0
- package/lib/ActionList2/Header.js +55 -0
- package/lib/ActionList2/Item.d.ts +63 -0
- package/lib/ActionList2/Item.js +234 -0
- package/lib/ActionList2/LinkItem.d.ts +17 -0
- package/lib/ActionList2/LinkItem.js +57 -0
- package/lib/ActionList2/List.d.ts +26 -0
- package/lib/ActionList2/List.js +59 -0
- package/lib/ActionList2/Selection.d.ts +5 -0
- package/lib/ActionList2/Selection.js +70 -0
- package/lib/ActionList2/Visuals.d.ts +9 -0
- package/lib/ActionList2/Visuals.js +90 -0
- package/lib/ActionList2/index.d.ts +36 -0
- package/lib/ActionList2/index.js +47 -0
- package/lib/_TextInputWrapper.js +2 -2
- package/lib/__tests__/ActionList2.test.d.ts +1 -0
- package/lib/__tests__/ActionList2.test.js +53 -0
- package/lib/__tests__/AnchoredOverlay.test.js +4 -2
- package/lib/__tests__/utils/createSlots.test.d.ts +1 -0
- package/lib/__tests__/utils/createSlots.test.js +75 -0
- package/lib/stories/ActionList2.stories.js +875 -0
- package/lib/stories/TextInput.stories.js +144 -0
- package/lib/sx.d.ts +2 -0
- package/lib/sx.js +8 -0
- package/lib/theme-preval.js +81 -2
- package/lib/unreleased.d.ts +7 -0
- package/lib/unreleased.js +18 -0
- package/lib/utils/create-slots.d.ts +17 -0
- package/lib/utils/create-slots.js +105 -0
- package/lib/utils/testing.d.ts +14 -1
- package/lib/utils/use-force-update.d.ts +1 -0
- package/lib/utils/use-force-update.js +19 -0
- package/lib-esm/ActionList2/Description.d.ts +12 -0
- package/lib-esm/ActionList2/Description.js +37 -0
- package/lib-esm/ActionList2/Divider.d.ts +5 -0
- package/lib-esm/ActionList2/Divider.js +23 -0
- package/lib-esm/ActionList2/Group.d.ts +11 -0
- package/lib-esm/ActionList2/Group.js +40 -0
- package/lib-esm/ActionList2/Header.d.ts +26 -0
- package/lib-esm/ActionList2/Header.js +44 -0
- package/lib-esm/ActionList2/Item.d.ts +63 -0
- package/lib-esm/ActionList2/Item.js +201 -0
- package/lib-esm/ActionList2/LinkItem.d.ts +17 -0
- package/lib-esm/ActionList2/LinkItem.js +43 -0
- package/lib-esm/ActionList2/List.d.ts +26 -0
- package/lib-esm/ActionList2/List.js +37 -0
- package/lib-esm/ActionList2/Selection.d.ts +5 -0
- package/lib-esm/ActionList2/Selection.js +52 -0
- package/lib-esm/ActionList2/Visuals.d.ts +9 -0
- package/lib-esm/ActionList2/Visuals.js +68 -0
- package/lib-esm/ActionList2/index.d.ts +36 -0
- package/lib-esm/ActionList2/index.js +33 -0
- package/lib-esm/_TextInputWrapper.js +2 -2
- package/lib-esm/__tests__/ActionList2.test.d.ts +1 -0
- package/lib-esm/__tests__/ActionList2.test.js +41 -0
- package/lib-esm/__tests__/AnchoredOverlay.test.js +4 -2
- package/lib-esm/__tests__/utils/createSlots.test.d.ts +1 -0
- package/lib-esm/__tests__/utils/createSlots.test.js +67 -0
- package/lib-esm/stories/ActionList2.stories.js +764 -0
- package/lib-esm/stories/TextInput.stories.js +117 -0
- package/lib-esm/sx.d.ts +2 -0
- package/lib-esm/sx.js +3 -1
- package/lib-esm/theme-preval.js +81 -2
- package/lib-esm/unreleased.d.ts +7 -0
- package/lib-esm/unreleased.js +8 -0
- package/lib-esm/utils/create-slots.d.ts +17 -0
- package/lib-esm/utils/create-slots.js +84 -0
- package/lib-esm/utils/testing.d.ts +14 -1
- package/lib-esm/utils/use-force-update.d.ts +1 -0
- package/lib-esm/utils/use-force-update.js +6 -0
- package/package-lock.json +146 -7
- package/package.json +4 -2
- package/src/ActionList2/Description.tsx +49 -0
- package/src/ActionList2/Divider.tsx +24 -0
- package/src/ActionList2/Group.tsx +34 -0
- package/src/ActionList2/Header.tsx +58 -0
- package/src/ActionList2/Item.tsx +228 -0
- package/src/ActionList2/LinkItem.tsx +49 -0
- package/src/ActionList2/List.tsx +55 -0
- package/src/ActionList2/Selection.tsx +40 -0
- package/src/ActionList2/Visuals.tsx +76 -0
- package/src/ActionList2/index.ts +39 -0
- package/src/_TextInputWrapper.tsx +7 -0
- package/src/__tests__/ActionList2.test.tsx +47 -0
- package/src/__tests__/AnchoredOverlay.test.tsx +2 -2
- package/src/__tests__/__snapshots__/ActionList2.test.tsx.snap +14 -0
- package/src/__tests__/__snapshots__/AnchoredOverlay.test.tsx.snap +35 -135
- package/src/__tests__/utils/__snapshots__/createSlots.test.tsx.snap +55 -0
- package/src/__tests__/utils/createSlots.test.tsx +74 -0
- package/src/stories/ActionList2.stories.tsx +1279 -0
- package/src/stories/TextInput.stories.tsx +113 -0
- package/src/sx.ts +3 -0
- package/src/theme-preval.js +1 -0
- package/src/unreleased.ts +9 -0
- package/src/utils/create-slots.tsx +96 -0
- package/src/utils/use-force-update.ts +7 -0
- package/stats.html +1 -1
@@ -0,0 +1,117 @@
|
|
1
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
2
|
+
|
3
|
+
import React, { useState } from 'react';
|
4
|
+
import { BaseStyles, Box, ThemeProvider, Text } from '..';
|
5
|
+
import TextInput from '../TextInput';
|
6
|
+
import { CheckIcon } from '@primer/octicons-react';
|
7
|
+
export default {
|
8
|
+
title: 'Forms/Text Input',
|
9
|
+
component: TextInput,
|
10
|
+
decorators: [Story => {
|
11
|
+
return /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(BaseStyles, null, /*#__PURE__*/React.createElement(Box, {
|
12
|
+
paddingTop: 5
|
13
|
+
}, Story())));
|
14
|
+
}],
|
15
|
+
argTypes: {
|
16
|
+
sx: {
|
17
|
+
table: {
|
18
|
+
disable: true
|
19
|
+
}
|
20
|
+
},
|
21
|
+
block: {
|
22
|
+
name: 'Block',
|
23
|
+
defaultValue: false,
|
24
|
+
control: {
|
25
|
+
type: 'boolean'
|
26
|
+
}
|
27
|
+
},
|
28
|
+
disabled: {
|
29
|
+
name: 'Disabled',
|
30
|
+
defaultValue: false,
|
31
|
+
control: {
|
32
|
+
type: 'boolean'
|
33
|
+
}
|
34
|
+
},
|
35
|
+
variant: {
|
36
|
+
name: 'Variants',
|
37
|
+
options: ['small', 'medium', 'large'],
|
38
|
+
control: {
|
39
|
+
type: 'radio'
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
43
|
+
};
|
44
|
+
|
45
|
+
const Label = ({
|
46
|
+
htmlFor,
|
47
|
+
children
|
48
|
+
}) => /*#__PURE__*/React.createElement(Text, {
|
49
|
+
as: "label",
|
50
|
+
htmlFor: htmlFor,
|
51
|
+
sx: {
|
52
|
+
fontWeight: 600,
|
53
|
+
fontSize: 14
|
54
|
+
}
|
55
|
+
}, children);
|
56
|
+
|
57
|
+
Label.displayName = "Label";
|
58
|
+
export const Default = args => {
|
59
|
+
const [value, setValue] = useState('');
|
60
|
+
|
61
|
+
const handleChange = event => {
|
62
|
+
setValue(event.target.value);
|
63
|
+
};
|
64
|
+
|
65
|
+
const inputId = 'basic-text-input';
|
66
|
+
return /*#__PURE__*/React.createElement("form", null, /*#__PURE__*/React.createElement("div", {
|
67
|
+
className: "form-group"
|
68
|
+
}, /*#__PURE__*/React.createElement("div", {
|
69
|
+
className: "form-group-header"
|
70
|
+
}, /*#__PURE__*/React.createElement(Label, {
|
71
|
+
htmlFor: inputId
|
72
|
+
}, "Example label")), /*#__PURE__*/React.createElement("div", {
|
73
|
+
className: "form-group-body"
|
74
|
+
}, /*#__PURE__*/React.createElement(TextInput, _extends({
|
75
|
+
id: inputId,
|
76
|
+
value: value,
|
77
|
+
onChange: handleChange
|
78
|
+
}, args)))));
|
79
|
+
};
|
80
|
+
Default.displayName = "Default";
|
81
|
+
export const WithLeadingIcon = args => {
|
82
|
+
const [value, setValue] = useState('');
|
83
|
+
|
84
|
+
const handleChange = event => {
|
85
|
+
setValue(event.target.value);
|
86
|
+
};
|
87
|
+
|
88
|
+
const inputId = 'basic-text-input-with-leading-icon';
|
89
|
+
return /*#__PURE__*/React.createElement("form", null, /*#__PURE__*/React.createElement(Label, {
|
90
|
+
htmlFor: inputId
|
91
|
+
}, "Example label"), /*#__PURE__*/React.createElement("br", null), /*#__PURE__*/React.createElement(TextInput, _extends({
|
92
|
+
icon: CheckIcon,
|
93
|
+
id: inputId,
|
94
|
+
value: value,
|
95
|
+
onChange: handleChange,
|
96
|
+
type: "password"
|
97
|
+
}, args)));
|
98
|
+
};
|
99
|
+
WithLeadingIcon.displayName = "WithLeadingIcon";
|
100
|
+
export const Password = args => {
|
101
|
+
const [value, setValue] = useState('');
|
102
|
+
|
103
|
+
const handleChange = event => {
|
104
|
+
setValue(event.target.value);
|
105
|
+
};
|
106
|
+
|
107
|
+
const inputId = 'basic-text-input-as-password';
|
108
|
+
return /*#__PURE__*/React.createElement("form", null, /*#__PURE__*/React.createElement(Label, {
|
109
|
+
htmlFor: inputId
|
110
|
+
}, "Password"), /*#__PURE__*/React.createElement("br", null), /*#__PURE__*/React.createElement(TextInput, _extends({
|
111
|
+
type: "password",
|
112
|
+
id: inputId,
|
113
|
+
value: value,
|
114
|
+
onChange: handleChange
|
115
|
+
}, args)));
|
116
|
+
};
|
117
|
+
Password.displayName = "Password";
|
package/lib-esm/sx.d.ts
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
import { SystemCssProperties, SystemStyleObject } from '@styled-system/css';
|
2
2
|
import { ThemeColorPaths, ThemeShadowPaths } from './theme';
|
3
3
|
import { ColorProps, ShadowProps } from 'styled-system';
|
4
|
+
import merge from 'deepmerge';
|
4
5
|
export declare type BetterCssProperties = {
|
5
6
|
[K in keyof SystemCssProperties]: K extends keyof ColorProps ? ThemeColorPaths | SystemCssProperties[K] : K extends keyof ShadowProps ? ThemeShadowPaths | SystemCssProperties[K] : SystemCssProperties[K];
|
6
7
|
};
|
@@ -10,3 +11,4 @@ export interface SxProp {
|
|
10
11
|
}
|
11
12
|
declare const sx: (props: SxProp) => import("@styled-system/css").CssFunctionReturnType;
|
12
13
|
export default sx;
|
14
|
+
export { merge };
|
package/lib-esm/sx.js
CHANGED
package/lib-esm/theme-preval.js
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
// this file was prevaled
|
2
2
|
// This file needs to be a JavaScript file using CommonJS to be compatiable with preval
|
3
|
+
// Cache bust: 2021-11-04 12:00:00 GMT (This file is cached by our deployment tooling, update this timestamp to rebuild this file)
|
3
4
|
module.exports = {
|
4
5
|
"theme": {
|
5
6
|
"animation": {
|
@@ -389,6 +390,19 @@ module.exports = {
|
|
389
390
|
"icon": "#6e7781",
|
390
391
|
"borderHover": "rgba(175,184,193,0.2)"
|
391
392
|
},
|
393
|
+
"actionListItem": {
|
394
|
+
"inlineDivider": "rgba(208,215,222,0.48)",
|
395
|
+
"default": {
|
396
|
+
"hoverBg": "rgba(208,215,222,0.32)",
|
397
|
+
"activeBg": "rgba(208,215,222,0.48)",
|
398
|
+
"selectedBg": "rgba(208,215,222,0.24)"
|
399
|
+
},
|
400
|
+
"danger": {
|
401
|
+
"hoverBg": "rgba(255,235,233,0.64)",
|
402
|
+
"activeBg": "#FFEBE9",
|
403
|
+
"hoverText": "#cf222e"
|
404
|
+
}
|
405
|
+
},
|
392
406
|
"fg": {
|
393
407
|
"default": "#24292f",
|
394
408
|
"muted": "#57606a",
|
@@ -515,7 +529,7 @@ module.exports = {
|
|
515
529
|
}
|
516
530
|
}
|
517
531
|
},
|
518
|
-
"
|
532
|
+
"light_colorblind": {
|
519
533
|
"colors": {
|
520
534
|
"canvasDefaultTransparent": "rgba(255,255,255,0)",
|
521
535
|
"marketingIcon": {
|
@@ -872,6 +886,19 @@ module.exports = {
|
|
872
886
|
"icon": "#6e7781",
|
873
887
|
"borderHover": "rgba(175,184,193,0.2)"
|
874
888
|
},
|
889
|
+
"actionListItem": {
|
890
|
+
"inlineDivider": "rgba(208,215,222,0.48)",
|
891
|
+
"default": {
|
892
|
+
"hoverBg": "rgba(208,215,222,0.32)",
|
893
|
+
"activeBg": "rgba(208,215,222,0.48)",
|
894
|
+
"selectedBg": "rgba(208,215,222,0.24)"
|
895
|
+
},
|
896
|
+
"danger": {
|
897
|
+
"hoverBg": "rgba(254,254,72,0.64)",
|
898
|
+
"activeBg": "#fefe48",
|
899
|
+
"hoverText": "#ac5e00"
|
900
|
+
}
|
901
|
+
},
|
875
902
|
"fg": {
|
876
903
|
"default": "#24292f",
|
877
904
|
"muted": "#57606a",
|
@@ -1355,6 +1382,19 @@ module.exports = {
|
|
1355
1382
|
"icon": "#484f58",
|
1356
1383
|
"borderHover": "rgba(110,118,129,0.4)"
|
1357
1384
|
},
|
1385
|
+
"actionListItem": {
|
1386
|
+
"inlineDivider": "rgba(48,54,61,0.48)",
|
1387
|
+
"default": {
|
1388
|
+
"hoverBg": "rgba(177,186,196,0.12)",
|
1389
|
+
"activeBg": "rgba(177,186,196,0.2)",
|
1390
|
+
"selectedBg": "rgba(177,186,196,0.08)"
|
1391
|
+
},
|
1392
|
+
"danger": {
|
1393
|
+
"hoverBg": "rgba(248,81,73,0.16)",
|
1394
|
+
"activeBg": "rgba(248,81,73,0.24)",
|
1395
|
+
"hoverText": "#ff7b72"
|
1396
|
+
}
|
1397
|
+
},
|
1358
1398
|
"fg": {
|
1359
1399
|
"default": "#c9d1d9",
|
1360
1400
|
"muted": "#8b949e",
|
@@ -1841,6 +1881,19 @@ module.exports = {
|
|
1841
1881
|
"icon": "#545d68",
|
1842
1882
|
"borderHover": "rgba(99,110,123,0.4)"
|
1843
1883
|
},
|
1884
|
+
"actionListItem": {
|
1885
|
+
"inlineDivider": "rgba(68,76,86,0.48)",
|
1886
|
+
"default": {
|
1887
|
+
"hoverBg": "rgba(144,157,171,0.12)",
|
1888
|
+
"activeBg": "rgba(144,157,171,0.2)",
|
1889
|
+
"selectedBg": "rgba(144,157,171,0.08)"
|
1890
|
+
},
|
1891
|
+
"danger": {
|
1892
|
+
"hoverBg": "rgba(229,83,75,0.16)",
|
1893
|
+
"activeBg": "rgba(229,83,75,0.24)",
|
1894
|
+
"hoverText": "#f47067"
|
1895
|
+
}
|
1896
|
+
},
|
1844
1897
|
"fg": {
|
1845
1898
|
"default": "#adbac7",
|
1846
1899
|
"muted": "#768390",
|
@@ -2327,6 +2380,19 @@ module.exports = {
|
|
2327
2380
|
"icon": "#f0f3f6",
|
2328
2381
|
"borderHover": "#bdc4cc"
|
2329
2382
|
},
|
2383
|
+
"actionListItem": {
|
2384
|
+
"inlineDivider": "#7a828e",
|
2385
|
+
"default": {
|
2386
|
+
"hoverBg": "rgba(217,222,227,0.12)",
|
2387
|
+
"activeBg": "rgba(217,222,227,0.24)",
|
2388
|
+
"selectedBg": "rgba(217,222,227,0.08)"
|
2389
|
+
},
|
2390
|
+
"danger": {
|
2391
|
+
"hoverBg": "#ff6a69",
|
2392
|
+
"activeBg": "#ff4445",
|
2393
|
+
"hoverText": "#0a0c10"
|
2394
|
+
}
|
2395
|
+
},
|
2330
2396
|
"fg": {
|
2331
2397
|
"default": "#f0f3f6",
|
2332
2398
|
"muted": "#f0f3f6",
|
@@ -2456,7 +2522,7 @@ module.exports = {
|
|
2456
2522
|
}
|
2457
2523
|
}
|
2458
2524
|
},
|
2459
|
-
"
|
2525
|
+
"dark_colorblind": {
|
2460
2526
|
"colors": {
|
2461
2527
|
"canvasDefaultTransparent": "rgba(13,17,23,0)",
|
2462
2528
|
"marketingIcon": {
|
@@ -2813,6 +2879,19 @@ module.exports = {
|
|
2813
2879
|
"icon": "#484f58",
|
2814
2880
|
"borderHover": "rgba(110,118,129,0.4)"
|
2815
2881
|
},
|
2882
|
+
"actionListItem": {
|
2883
|
+
"inlineDivider": "rgba(48,54,61,0.48)",
|
2884
|
+
"default": {
|
2885
|
+
"hoverBg": "rgba(177,186,196,0.12)",
|
2886
|
+
"activeBg": "rgba(177,186,196,0.2)",
|
2887
|
+
"selectedBg": "rgba(177,186,196,0.08)"
|
2888
|
+
},
|
2889
|
+
"danger": {
|
2890
|
+
"hoverBg": "rgba(195,128,0,0.16)",
|
2891
|
+
"activeBg": "rgba(195,128,0,0.24)",
|
2892
|
+
"hoverText": "#d69a00"
|
2893
|
+
}
|
2894
|
+
},
|
2816
2895
|
"fg": {
|
2817
2896
|
"default": "#c9d1d9",
|
2818
2897
|
"muted": "#8b949e",
|
@@ -0,0 +1,7 @@
|
|
1
|
+
/** This is the place where we keep components that are not part of the public
|
2
|
+
* api yet (not in main bundle). We don't recommend using it in production.
|
3
|
+
*
|
4
|
+
* But, they are published on npm and you can import them for experimentation/feedback.
|
5
|
+
* example: import {ActionList} from '@primer/components/unreleased
|
6
|
+
*/
|
7
|
+
export * from './ActionList2';
|
@@ -0,0 +1,8 @@
|
|
1
|
+
/** This is the place where we keep components that are not part of the public
|
2
|
+
* api yet (not in main bundle). We don't recommend using it in production.
|
3
|
+
*
|
4
|
+
* But, they are published on npm and you can import them for experimentation/feedback.
|
5
|
+
* example: import {ActionList} from '@primer/components/unreleased
|
6
|
+
*/
|
7
|
+
// Components
|
8
|
+
export * from './ActionList2';
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
/** createSlots is a factory that can create a
|
3
|
+
* typesafe Slots + Slot pair to use in a component definition
|
4
|
+
* For example: ActionList.Item uses createSlots to get a Slots wrapper
|
5
|
+
* + Slot component that is used by LeadingVisual, Description
|
6
|
+
*/
|
7
|
+
declare const createSlots: <SlotNames extends string>(slotNames: SlotNames[]) => {
|
8
|
+
Slots: React.FC<{
|
9
|
+
context?: Record<string, unknown> | undefined;
|
10
|
+
children: (slots: { [key in SlotNames]?: React.ReactNode; }) => React.ReactNode;
|
11
|
+
}>;
|
12
|
+
Slot: React.FC<{
|
13
|
+
name: SlotNames;
|
14
|
+
children: React.ReactNode;
|
15
|
+
}>;
|
16
|
+
};
|
17
|
+
export default createSlots;
|
@@ -0,0 +1,84 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { useForceUpdate } from './use-force-update';
|
3
|
+
/** createSlots is a factory that can create a
|
4
|
+
* typesafe Slots + Slot pair to use in a component definition
|
5
|
+
* For example: ActionList.Item uses createSlots to get a Slots wrapper
|
6
|
+
* + Slot component that is used by LeadingVisual, Description
|
7
|
+
*/
|
8
|
+
|
9
|
+
const createSlots = slotNames => {
|
10
|
+
const SlotsContext = /*#__PURE__*/React.createContext({
|
11
|
+
registerSlot: () => null,
|
12
|
+
unregisterSlot: () => null,
|
13
|
+
context: {}
|
14
|
+
});
|
15
|
+
/** Slots uses a Double render strategy inspired by [reach-ui/descendants](https://github.com/reach/reach-ui/tree/develop/packages/descendants)
|
16
|
+
* Slot registers themself with the Slots parent.
|
17
|
+
* When all the children have mounted = registered themselves in slot,
|
18
|
+
* we re-render the parent component to render with slots
|
19
|
+
*/
|
20
|
+
|
21
|
+
const Slots = ({
|
22
|
+
context = {},
|
23
|
+
children
|
24
|
+
}) => {
|
25
|
+
// initialise slots
|
26
|
+
const slotsDefinition = {};
|
27
|
+
slotNames.map(name => slotsDefinition[name] = null);
|
28
|
+
const slotsRef = React.useRef(slotsDefinition);
|
29
|
+
const rerenderWithSlots = useForceUpdate();
|
30
|
+
const [isMounted, setIsMounted] = React.useState(false); // fires after all the effects in children
|
31
|
+
|
32
|
+
React.useEffect(() => {
|
33
|
+
rerenderWithSlots();
|
34
|
+
setIsMounted(true);
|
35
|
+
}, [rerenderWithSlots]);
|
36
|
+
const registerSlot = React.useCallback((name, contents) => {
|
37
|
+
slotsRef.current[name] = contents; // don't render until the component mounts = all slots are registered
|
38
|
+
|
39
|
+
if (isMounted) rerenderWithSlots();
|
40
|
+
}, [isMounted, rerenderWithSlots]); // Slot can be removed from the tree as well,
|
41
|
+
// we need to unregister them from the slot
|
42
|
+
|
43
|
+
const unregisterSlot = React.useCallback(name => {
|
44
|
+
slotsRef.current[name] = null;
|
45
|
+
rerenderWithSlots();
|
46
|
+
}, [rerenderWithSlots]);
|
47
|
+
/**
|
48
|
+
* Slots uses a render prop API so abstract the
|
49
|
+
* implementation detail of using a context provider.
|
50
|
+
*/
|
51
|
+
|
52
|
+
const slots = slotsRef.current;
|
53
|
+
return /*#__PURE__*/React.createElement(SlotsContext.Provider, {
|
54
|
+
value: {
|
55
|
+
registerSlot,
|
56
|
+
unregisterSlot,
|
57
|
+
context
|
58
|
+
}
|
59
|
+
}, children(slots));
|
60
|
+
};
|
61
|
+
|
62
|
+
const Slot = ({
|
63
|
+
name,
|
64
|
+
children
|
65
|
+
}) => {
|
66
|
+
const {
|
67
|
+
registerSlot,
|
68
|
+
unregisterSlot,
|
69
|
+
context
|
70
|
+
} = React.useContext(SlotsContext);
|
71
|
+
React.useEffect(() => {
|
72
|
+
registerSlot(name, typeof children === 'function' ? children(context) : children);
|
73
|
+
return () => unregisterSlot(name);
|
74
|
+
}, [name, children, registerSlot, unregisterSlot, context]);
|
75
|
+
return null;
|
76
|
+
};
|
77
|
+
|
78
|
+
return {
|
79
|
+
Slots,
|
80
|
+
Slot
|
81
|
+
};
|
82
|
+
};
|
83
|
+
|
84
|
+
export default createSlots;
|
@@ -53,7 +53,7 @@ export declare function render(component: React.ReactElement, theme?: {
|
|
53
53
|
xlarge: string;
|
54
54
|
};
|
55
55
|
space: string[];
|
56
|
-
colorSchemes: Record<"light" | "
|
56
|
+
colorSchemes: Record<"light" | "light_colorblind" | "dark" | "dark_dimmed" | "dark_high_contrast" | "dark_colorblind", Record<"colors" | "shadows", Partial<{
|
57
57
|
canvasDefaultTransparent: string;
|
58
58
|
marketingIcon: {
|
59
59
|
primary: string;
|
@@ -434,6 +434,19 @@ export declare function render(component: React.ReactElement, theme?: {
|
|
434
434
|
icon: string;
|
435
435
|
borderHover: string;
|
436
436
|
};
|
437
|
+
actionListItem: {
|
438
|
+
inlineDivider: string;
|
439
|
+
default: {
|
440
|
+
hoverBg: string;
|
441
|
+
activeBg: string;
|
442
|
+
selectedBg: string;
|
443
|
+
};
|
444
|
+
danger: {
|
445
|
+
hoverBg: string;
|
446
|
+
activeBg: string;
|
447
|
+
hoverText: string;
|
448
|
+
};
|
449
|
+
};
|
437
450
|
fg: {
|
438
451
|
default: string;
|
439
452
|
muted: string;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const useForceUpdate: () => () => void;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
// Inspired from reach-ui: https://github.com/reach/reach-ui/blob/develop/packages/utils/src/use-force-update.ts
|
2
|
+
import React from 'react';
|
3
|
+
export const useForceUpdate = () => {
|
4
|
+
const [, rerender] = React.useState({});
|
5
|
+
return React.useCallback(() => rerender({}), []);
|
6
|
+
};
|
package/package-lock.json
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
"license": "MIT",
|
11
11
|
"dependencies": {
|
12
12
|
"@primer/octicons-react": "^13.0.0",
|
13
|
-
"@primer/primitives": "
|
13
|
+
"@primer/primitives": "6.1.0",
|
14
14
|
"@radix-ui/react-polymorphic": "0.0.14",
|
15
15
|
"@react-aria/ssr": "3.1.0",
|
16
16
|
"@styled-system/css": "5.1.5",
|
@@ -90,6 +90,8 @@
|
|
90
90
|
"lodash.isobject": "3.0.2",
|
91
91
|
"prettier": "2.3.2",
|
92
92
|
"react": "17.0.2",
|
93
|
+
"react-dnd": "14.0.4",
|
94
|
+
"react-dnd-html5-backend": "14.0.2",
|
93
95
|
"react-dom": "17.0.2",
|
94
96
|
"react-test-renderer": "17.0.2",
|
95
97
|
"rollup": "2.56.3",
|
@@ -7559,9 +7561,9 @@
|
|
7559
7561
|
}
|
7560
7562
|
},
|
7561
7563
|
"node_modules/@primer/primitives": {
|
7562
|
-
"version": "
|
7563
|
-
"resolved": "https://registry.npmjs.org/@primer/primitives/-/primitives-
|
7564
|
-
"integrity": "sha512-
|
7564
|
+
"version": "6.1.0",
|
7565
|
+
"resolved": "https://registry.npmjs.org/@primer/primitives/-/primitives-6.1.0.tgz",
|
7566
|
+
"integrity": "sha512-gwSVf5rVf2CMa/bU3/47LZosDHNfODMRJfKi7uJOqHWABVNl6Lf+thDM7Jb8tS9sEQQsUnrLDiGNjCScS81IXA=="
|
7565
7567
|
},
|
7566
7568
|
"node_modules/@radix-ui/react-polymorphic": {
|
7567
7569
|
"version": "0.0.14",
|
@@ -7598,6 +7600,24 @@
|
|
7598
7600
|
"react": "^16.8.0 || ^17.0.0-rc.1"
|
7599
7601
|
}
|
7600
7602
|
},
|
7603
|
+
"node_modules/@react-dnd/asap": {
|
7604
|
+
"version": "4.0.0",
|
7605
|
+
"resolved": "https://registry.npmjs.org/@react-dnd/asap/-/asap-4.0.0.tgz",
|
7606
|
+
"integrity": "sha512-0XhqJSc6pPoNnf8DhdsPHtUhRzZALVzYMTzRwV4VI6DJNJ/5xxfL9OQUwb8IH5/2x7lSf7nAZrnzUD+16VyOVQ==",
|
7607
|
+
"dev": true
|
7608
|
+
},
|
7609
|
+
"node_modules/@react-dnd/invariant": {
|
7610
|
+
"version": "2.0.0",
|
7611
|
+
"resolved": "https://registry.npmjs.org/@react-dnd/invariant/-/invariant-2.0.0.tgz",
|
7612
|
+
"integrity": "sha512-xL4RCQBCBDJ+GRwKTFhGUW8GXa4yoDfJrPbLblc3U09ciS+9ZJXJ3Qrcs/x2IODOdIE5kQxvMmE2UKyqUictUw==",
|
7613
|
+
"dev": true
|
7614
|
+
},
|
7615
|
+
"node_modules/@react-dnd/shallowequal": {
|
7616
|
+
"version": "2.0.0",
|
7617
|
+
"resolved": "https://registry.npmjs.org/@react-dnd/shallowequal/-/shallowequal-2.0.0.tgz",
|
7618
|
+
"integrity": "sha512-Pc/AFTdwZwEKJxFJvlxrSmGe/di+aAOBn60sremrpLo6VI/6cmiUYNNwlI5KNYttg7uypzA3ILPMPgxB2GYZEg==",
|
7619
|
+
"dev": true
|
7620
|
+
},
|
7601
7621
|
"node_modules/@rollup/plugin-commonjs": {
|
7602
7622
|
"version": "19.0.2",
|
7603
7623
|
"resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-19.0.2.tgz",
|
@@ -17234,6 +17254,17 @@
|
|
17234
17254
|
"integrity": "sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=",
|
17235
17255
|
"dev": true
|
17236
17256
|
},
|
17257
|
+
"node_modules/dnd-core": {
|
17258
|
+
"version": "14.0.1",
|
17259
|
+
"resolved": "https://registry.npmjs.org/dnd-core/-/dnd-core-14.0.1.tgz",
|
17260
|
+
"integrity": "sha512-+PVS2VPTgKFPYWo3vAFEA8WPbTf7/xo43TifH9G8S1KqnrQu0o77A3unrF5yOugy4mIz7K5wAVFHUcha7wsz6A==",
|
17261
|
+
"dev": true,
|
17262
|
+
"dependencies": {
|
17263
|
+
"@react-dnd/asap": "^4.0.0",
|
17264
|
+
"@react-dnd/invariant": "^2.0.0",
|
17265
|
+
"redux": "^4.1.1"
|
17266
|
+
}
|
17267
|
+
},
|
17237
17268
|
"node_modules/doctrine": {
|
17238
17269
|
"version": "3.0.0",
|
17239
17270
|
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
|
@@ -31528,6 +31559,45 @@
|
|
31528
31559
|
"node": ">= 8"
|
31529
31560
|
}
|
31530
31561
|
},
|
31562
|
+
"node_modules/react-dnd": {
|
31563
|
+
"version": "14.0.4",
|
31564
|
+
"resolved": "https://registry.npmjs.org/react-dnd/-/react-dnd-14.0.4.tgz",
|
31565
|
+
"integrity": "sha512-AFJJXzUIWp5WAhgvI85ESkDCawM0lhoVvfo/lrseLXwFdH3kEO3v8I2C81QPqBW2UEyJBIPStOhPMGYGFtq/bg==",
|
31566
|
+
"dev": true,
|
31567
|
+
"dependencies": {
|
31568
|
+
"@react-dnd/invariant": "^2.0.0",
|
31569
|
+
"@react-dnd/shallowequal": "^2.0.0",
|
31570
|
+
"dnd-core": "14.0.1",
|
31571
|
+
"fast-deep-equal": "^3.1.3",
|
31572
|
+
"hoist-non-react-statics": "^3.3.2"
|
31573
|
+
},
|
31574
|
+
"peerDependencies": {
|
31575
|
+
"@types/hoist-non-react-statics": ">= 3.3.1",
|
31576
|
+
"@types/node": ">= 12",
|
31577
|
+
"@types/react": ">= 16",
|
31578
|
+
"react": ">= 16.14"
|
31579
|
+
},
|
31580
|
+
"peerDependenciesMeta": {
|
31581
|
+
"@types/hoist-non-react-statics": {
|
31582
|
+
"optional": true
|
31583
|
+
},
|
31584
|
+
"@types/node": {
|
31585
|
+
"optional": true
|
31586
|
+
},
|
31587
|
+
"@types/react": {
|
31588
|
+
"optional": true
|
31589
|
+
}
|
31590
|
+
}
|
31591
|
+
},
|
31592
|
+
"node_modules/react-dnd-html5-backend": {
|
31593
|
+
"version": "14.0.2",
|
31594
|
+
"resolved": "https://registry.npmjs.org/react-dnd-html5-backend/-/react-dnd-html5-backend-14.0.2.tgz",
|
31595
|
+
"integrity": "sha512-QgN6rYrOm4UUj6tIvN8ovImu6uP48xBXF2rzVsp6tvj6d5XQ7OjHI4SJ/ZgGobOneRAU3WCX4f8DGCYx0tuhlw==",
|
31596
|
+
"dev": true,
|
31597
|
+
"dependencies": {
|
31598
|
+
"dnd-core": "14.0.1"
|
31599
|
+
}
|
31600
|
+
},
|
31531
31601
|
"node_modules/react-docgen": {
|
31532
31602
|
"version": "5.4.0",
|
31533
31603
|
"resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-5.4.0.tgz",
|
@@ -31956,6 +32026,15 @@
|
|
31956
32026
|
"node": ">=8"
|
31957
32027
|
}
|
31958
32028
|
},
|
32029
|
+
"node_modules/redux": {
|
32030
|
+
"version": "4.1.2",
|
32031
|
+
"resolved": "https://registry.npmjs.org/redux/-/redux-4.1.2.tgz",
|
32032
|
+
"integrity": "sha512-SH8PglcebESbd/shgf6mii6EIoRM0zrQyjcuQ+ojmfxjTtE0z9Y8pa62iA/OJ58qjP6j27uyW4kUF4jl/jd6sw==",
|
32033
|
+
"dev": true,
|
32034
|
+
"dependencies": {
|
32035
|
+
"@babel/runtime": "^7.9.2"
|
32036
|
+
}
|
32037
|
+
},
|
31959
32038
|
"node_modules/refractor": {
|
31960
32039
|
"version": "3.5.0",
|
31961
32040
|
"resolved": "https://registry.npmjs.org/refractor/-/refractor-3.5.0.tgz",
|
@@ -43272,9 +43351,9 @@
|
|
43272
43351
|
"requires": {}
|
43273
43352
|
},
|
43274
43353
|
"@primer/primitives": {
|
43275
|
-
"version": "
|
43276
|
-
"resolved": "https://registry.npmjs.org/@primer/primitives/-/primitives-
|
43277
|
-
"integrity": "sha512-
|
43354
|
+
"version": "6.1.0",
|
43355
|
+
"resolved": "https://registry.npmjs.org/@primer/primitives/-/primitives-6.1.0.tgz",
|
43356
|
+
"integrity": "sha512-gwSVf5rVf2CMa/bU3/47LZosDHNfODMRJfKi7uJOqHWABVNl6Lf+thDM7Jb8tS9sEQQsUnrLDiGNjCScS81IXA=="
|
43278
43357
|
},
|
43279
43358
|
"@radix-ui/react-polymorphic": {
|
43280
43359
|
"version": "0.0.14",
|
@@ -43302,6 +43381,24 @@
|
|
43302
43381
|
"@babel/runtime": "^7.6.2"
|
43303
43382
|
}
|
43304
43383
|
},
|
43384
|
+
"@react-dnd/asap": {
|
43385
|
+
"version": "4.0.0",
|
43386
|
+
"resolved": "https://registry.npmjs.org/@react-dnd/asap/-/asap-4.0.0.tgz",
|
43387
|
+
"integrity": "sha512-0XhqJSc6pPoNnf8DhdsPHtUhRzZALVzYMTzRwV4VI6DJNJ/5xxfL9OQUwb8IH5/2x7lSf7nAZrnzUD+16VyOVQ==",
|
43388
|
+
"dev": true
|
43389
|
+
},
|
43390
|
+
"@react-dnd/invariant": {
|
43391
|
+
"version": "2.0.0",
|
43392
|
+
"resolved": "https://registry.npmjs.org/@react-dnd/invariant/-/invariant-2.0.0.tgz",
|
43393
|
+
"integrity": "sha512-xL4RCQBCBDJ+GRwKTFhGUW8GXa4yoDfJrPbLblc3U09ciS+9ZJXJ3Qrcs/x2IODOdIE5kQxvMmE2UKyqUictUw==",
|
43394
|
+
"dev": true
|
43395
|
+
},
|
43396
|
+
"@react-dnd/shallowequal": {
|
43397
|
+
"version": "2.0.0",
|
43398
|
+
"resolved": "https://registry.npmjs.org/@react-dnd/shallowequal/-/shallowequal-2.0.0.tgz",
|
43399
|
+
"integrity": "sha512-Pc/AFTdwZwEKJxFJvlxrSmGe/di+aAOBn60sremrpLo6VI/6cmiUYNNwlI5KNYttg7uypzA3ILPMPgxB2GYZEg==",
|
43400
|
+
"dev": true
|
43401
|
+
},
|
43305
43402
|
"@rollup/plugin-commonjs": {
|
43306
43403
|
"version": "19.0.2",
|
43307
43404
|
"resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-19.0.2.tgz",
|
@@ -50661,6 +50758,17 @@
|
|
50661
50758
|
"integrity": "sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=",
|
50662
50759
|
"dev": true
|
50663
50760
|
},
|
50761
|
+
"dnd-core": {
|
50762
|
+
"version": "14.0.1",
|
50763
|
+
"resolved": "https://registry.npmjs.org/dnd-core/-/dnd-core-14.0.1.tgz",
|
50764
|
+
"integrity": "sha512-+PVS2VPTgKFPYWo3vAFEA8WPbTf7/xo43TifH9G8S1KqnrQu0o77A3unrF5yOugy4mIz7K5wAVFHUcha7wsz6A==",
|
50765
|
+
"dev": true,
|
50766
|
+
"requires": {
|
50767
|
+
"@react-dnd/asap": "^4.0.0",
|
50768
|
+
"@react-dnd/invariant": "^2.0.0",
|
50769
|
+
"redux": "^4.1.1"
|
50770
|
+
}
|
50771
|
+
},
|
50664
50772
|
"doctrine": {
|
50665
50773
|
"version": "3.0.0",
|
50666
50774
|
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
|
@@ -61611,6 +61719,28 @@
|
|
61611
61719
|
}
|
61612
61720
|
}
|
61613
61721
|
},
|
61722
|
+
"react-dnd": {
|
61723
|
+
"version": "14.0.4",
|
61724
|
+
"resolved": "https://registry.npmjs.org/react-dnd/-/react-dnd-14.0.4.tgz",
|
61725
|
+
"integrity": "sha512-AFJJXzUIWp5WAhgvI85ESkDCawM0lhoVvfo/lrseLXwFdH3kEO3v8I2C81QPqBW2UEyJBIPStOhPMGYGFtq/bg==",
|
61726
|
+
"dev": true,
|
61727
|
+
"requires": {
|
61728
|
+
"@react-dnd/invariant": "^2.0.0",
|
61729
|
+
"@react-dnd/shallowequal": "^2.0.0",
|
61730
|
+
"dnd-core": "14.0.1",
|
61731
|
+
"fast-deep-equal": "^3.1.3",
|
61732
|
+
"hoist-non-react-statics": "^3.3.2"
|
61733
|
+
}
|
61734
|
+
},
|
61735
|
+
"react-dnd-html5-backend": {
|
61736
|
+
"version": "14.0.2",
|
61737
|
+
"resolved": "https://registry.npmjs.org/react-dnd-html5-backend/-/react-dnd-html5-backend-14.0.2.tgz",
|
61738
|
+
"integrity": "sha512-QgN6rYrOm4UUj6tIvN8ovImu6uP48xBXF2rzVsp6tvj6d5XQ7OjHI4SJ/ZgGobOneRAU3WCX4f8DGCYx0tuhlw==",
|
61739
|
+
"dev": true,
|
61740
|
+
"requires": {
|
61741
|
+
"dnd-core": "14.0.1"
|
61742
|
+
}
|
61743
|
+
},
|
61614
61744
|
"react-docgen": {
|
61615
61745
|
"version": "5.4.0",
|
61616
61746
|
"resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-5.4.0.tgz",
|
@@ -61956,6 +62086,15 @@
|
|
61956
62086
|
"strip-indent": "^3.0.0"
|
61957
62087
|
}
|
61958
62088
|
},
|
62089
|
+
"redux": {
|
62090
|
+
"version": "4.1.2",
|
62091
|
+
"resolved": "https://registry.npmjs.org/redux/-/redux-4.1.2.tgz",
|
62092
|
+
"integrity": "sha512-SH8PglcebESbd/shgf6mii6EIoRM0zrQyjcuQ+ojmfxjTtE0z9Y8pa62iA/OJ58qjP6j27uyW4kUF4jl/jd6sw==",
|
62093
|
+
"dev": true,
|
62094
|
+
"requires": {
|
62095
|
+
"@babel/runtime": "^7.9.2"
|
62096
|
+
}
|
62097
|
+
},
|
61959
62098
|
"refractor": {
|
61960
62099
|
"version": "3.5.0",
|
61961
62100
|
"resolved": "https://registry.npmjs.org/refractor/-/refractor-3.5.0.tgz",
|