@primer/components 32.1.1-rc.b4502a34 → 33.0.0-rc.9f3670b7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. package/CHANGELOG.md +15 -1
  2. package/contributor-docs/CONTRIBUTING.md +14 -58
  3. package/dist/browser.esm.js +104 -108
  4. package/dist/browser.esm.js.map +1 -1
  5. package/dist/browser.umd.js +104 -108
  6. package/dist/browser.umd.js.map +1 -1
  7. package/docs/content/BranchName.md +6 -5
  8. package/docs/content/Details.md +4 -8
  9. package/docs/content/Heading.md +5 -10
  10. package/docs/content/Label.md +6 -7
  11. package/docs/content/ProgressBar.mdx +7 -6
  12. package/docs/content/Text.md +0 -6
  13. package/docs/content/{ActionList2.mdx → drafts/ActionList2.mdx} +5 -9
  14. package/docs/content/drafts/ActionMenu2.mdx +251 -0
  15. package/docs/content/status.mdx +1 -1
  16. package/docs/content/system-props.mdx +1 -1
  17. package/docs/src/@primer/gatsby-theme-doctocat/live-code-scope.js +9 -1
  18. package/docs/src/@primer/gatsby-theme-doctocat/nav.yml +1 -1
  19. package/lib/ActionList2/Divider.d.ts +3 -2
  20. package/lib/ActionList2/Divider.js +10 -5
  21. package/lib/ActionList2/Item.js +21 -5
  22. package/lib/ActionList2/List.js +11 -1
  23. package/lib/ActionList2/MenuContext.d.ts +10 -0
  24. package/lib/ActionList2/MenuContext.js +15 -0
  25. package/lib/ActionList2/Selection.js +11 -0
  26. package/lib/ActionList2/index.d.ts +1 -2
  27. package/lib/ActionMenu2.d.ts +310 -0
  28. package/lib/ActionMenu2.js +91 -0
  29. package/lib/Avatar.d.ts +1 -2
  30. package/lib/Avatar.js +1 -1
  31. package/lib/BranchName.d.ts +1 -2
  32. package/lib/BranchName.js +1 -1
  33. package/lib/Details.d.ts +1 -2
  34. package/lib/Details.js +1 -3
  35. package/lib/Dropdown.d.ts +2 -66
  36. package/lib/Heading.d.ts +1 -2
  37. package/lib/Heading.js +1 -6
  38. package/lib/ProgressBar.d.ts +16 -11
  39. package/lib/ProgressBar.js +6 -10
  40. package/lib/Spinner.d.ts +1 -2
  41. package/lib/Spinner.js +1 -3
  42. package/lib/__tests__/Avatar.test.js +4 -2
  43. package/lib/__tests__/Avatar.types.test.d.ts +3 -0
  44. package/lib/__tests__/Avatar.types.test.js +31 -0
  45. package/lib/__tests__/BranchName.types.test.d.ts +3 -0
  46. package/lib/__tests__/BranchName.types.test.js +28 -0
  47. package/lib/__tests__/Details.types.test.d.ts +3 -0
  48. package/lib/__tests__/Details.types.test.js +28 -0
  49. package/lib/__tests__/Heading.test.js +63 -30
  50. package/lib/__tests__/Heading.types.test.d.ts +3 -0
  51. package/lib/__tests__/Heading.types.test.js +28 -0
  52. package/lib/drafts.d.ts +1 -0
  53. package/lib/drafts.js +13 -0
  54. package/lib/stories/ActionMenu2.stories.js +433 -0
  55. package/lib-esm/ActionList2/Divider.d.ts +3 -2
  56. package/lib-esm/ActionList2/Divider.js +8 -5
  57. package/lib-esm/ActionList2/Item.js +19 -5
  58. package/lib-esm/ActionList2/List.js +9 -1
  59. package/lib-esm/ActionList2/MenuContext.d.ts +10 -0
  60. package/lib-esm/ActionList2/MenuContext.js +3 -0
  61. package/lib-esm/ActionList2/Selection.js +9 -0
  62. package/lib-esm/ActionList2/index.d.ts +1 -2
  63. package/lib-esm/ActionMenu2.d.ts +310 -0
  64. package/lib-esm/ActionMenu2.js +67 -0
  65. package/lib-esm/Avatar.d.ts +1 -2
  66. package/lib-esm/Avatar.js +2 -2
  67. package/lib-esm/BranchName.d.ts +1 -2
  68. package/lib-esm/BranchName.js +2 -2
  69. package/lib-esm/Details.d.ts +1 -2
  70. package/lib-esm/Details.js +1 -2
  71. package/lib-esm/Dropdown.d.ts +2 -66
  72. package/lib-esm/Heading.d.ts +1 -2
  73. package/lib-esm/Heading.js +2 -6
  74. package/lib-esm/ProgressBar.d.ts +16 -11
  75. package/lib-esm/ProgressBar.js +7 -11
  76. package/lib-esm/Spinner.d.ts +1 -2
  77. package/lib-esm/Spinner.js +1 -2
  78. package/lib-esm/__tests__/Avatar.test.js +4 -2
  79. package/lib-esm/__tests__/Avatar.types.test.d.ts +3 -0
  80. package/lib-esm/__tests__/Avatar.types.test.js +16 -0
  81. package/lib-esm/__tests__/BranchName.types.test.d.ts +3 -0
  82. package/lib-esm/__tests__/BranchName.types.test.js +13 -0
  83. package/lib-esm/__tests__/Details.types.test.d.ts +3 -0
  84. package/lib-esm/__tests__/Details.types.test.js +13 -0
  85. package/lib-esm/__tests__/Heading.test.js +62 -30
  86. package/lib-esm/__tests__/Heading.types.test.d.ts +3 -0
  87. package/lib-esm/__tests__/Heading.types.test.js +13 -0
  88. package/lib-esm/drafts.d.ts +1 -0
  89. package/lib-esm/drafts.js +2 -1
  90. package/lib-esm/stories/ActionMenu2.stories.js +376 -0
  91. package/package.json +1 -1
  92. package/src/ActionList2/Divider.tsx +13 -8
  93. package/src/ActionList2/Item.tsx +13 -3
  94. package/src/ActionList2/List.tsx +6 -2
  95. package/src/ActionList2/MenuContext.tsx +6 -0
  96. package/src/ActionList2/Selection.tsx +9 -0
  97. package/src/ActionMenu2.tsx +94 -0
  98. package/src/Avatar.tsx +2 -4
  99. package/src/BranchName.tsx +3 -3
  100. package/src/Details.tsx +1 -5
  101. package/src/Heading.tsx +2 -9
  102. package/src/ProgressBar.tsx +11 -10
  103. package/src/Spinner.tsx +1 -3
  104. package/src/__tests__/Avatar.test.tsx +1 -1
  105. package/src/__tests__/Avatar.types.test.tsx +11 -0
  106. package/src/__tests__/BranchName.types.test.tsx +11 -0
  107. package/src/__tests__/Details.types.test.tsx +11 -0
  108. package/src/__tests__/Heading.test.tsx +71 -25
  109. package/src/__tests__/Heading.types.test.tsx +11 -0
  110. package/src/drafts.ts +1 -0
  111. package/src/stories/ActionMenu2.stories.tsx +551 -0
  112. package/stats.html +1 -1
@@ -13,6 +13,8 @@ var _List = require("./List");
13
13
 
14
14
  var _Group = require("./Group");
15
15
 
16
+ var _MenuContext = require("./MenuContext");
17
+
16
18
  var _Visuals = require("./Visuals");
17
19
 
18
20
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
@@ -27,6 +29,10 @@ const Selection = ({
27
29
  const {
28
30
  selectionVariant: groupSelectionVariant
29
31
  } = _react.default.useContext(_Group.GroupContext);
32
+
33
+ const {
34
+ parent
35
+ } = _react.default.useContext(_MenuContext.MenuContext);
30
36
  /** selectionVariant in Group can override the selectionVariant in List root */
31
37
 
32
38
 
@@ -38,6 +44,11 @@ const Selection = ({
38
44
  return null;
39
45
  }
40
46
 
47
+ if (parent === 'ActionMenu') {
48
+ throw new Error('ActionList cannot have a selectionVariant inside ActionMenu, please use DropdownMenu or SelectPanel instead. More information: https://primer.style/design/components/action-list#application');
49
+ return null;
50
+ }
51
+
41
52
  if (selectionVariant === 'single') {
42
53
  return /*#__PURE__*/_react.default.createElement(_Visuals.LeadingVisualContainer, null, selected && /*#__PURE__*/_react.default.createElement(_octiconsReact.CheckIcon, null));
43
54
  }
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- import { Divider } from './Divider';
3
2
  export type { ListProps as ActionListProps } from './List';
4
3
  export type { GroupProps } from './Group';
5
4
  export type { ItemProps } from './Item';
@@ -26,7 +25,7 @@ export declare const ActionList: import("@radix-ui/react-polymorphic").ForwardRe
26
25
  referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
27
26
  }>;
28
27
  /** Visually separates `Item`s or `Group`s in an `ActionList`. */
29
- Divider: typeof Divider;
28
+ Divider: import("react").FC<import("../sx").SxProp>;
30
29
  /** Secondary text which provides additional information about an `Item`. */
31
30
  Description: import("react").FC<import("./Description").DescriptionProps>;
32
31
  /** Icon (or similar) positioned before `Item` text. */
@@ -0,0 +1,310 @@
1
+ import { ButtonProps } from './Button';
2
+ import React from 'react';
3
+ import { OverlayProps } from './Overlay';
4
+ import { AnchoredOverlayWrapperAnchorProps } from './AnchoredOverlay/AnchoredOverlay';
5
+ declare type ActionMenuBaseProps = {
6
+ /**
7
+ * Recommended: `ActionMenu.Button` or `ActionMenu.Anchor` with ActionList`
8
+ */
9
+ children: React.ReactElement[] | React.ReactElement;
10
+ /**
11
+ * If defined, will control the open/closed state of the overlay. Must be used in conjuction with `onOpenChange`.
12
+ */
13
+ open?: boolean;
14
+ /**
15
+ * If defined, will control the open/closed state of the overlay. Must be used in conjuction with `open`.
16
+ */
17
+ onOpenChange?: (s: boolean) => void;
18
+ /**
19
+ * Props to be spread on the internal `Overlay` component.
20
+ */
21
+ overlayProps?: Partial<OverlayProps>;
22
+ };
23
+ export declare type ActionMenuProps = ActionMenuBaseProps & AnchoredOverlayWrapperAnchorProps;
24
+ export declare type MenuAnchorProps = {
25
+ children: React.ReactElement;
26
+ };
27
+ /** this component is syntactical sugar 🍭 */
28
+ export declare type MenuButtonProps = ButtonProps;
29
+ export declare const ActionMenu: React.FC<ActionMenuProps> & {
30
+ Button: React.ForwardRefExoticComponent<Pick<{
31
+ color?: string | undefined;
32
+ translate?: "yes" | "no" | undefined;
33
+ hidden?: boolean | undefined;
34
+ children?: React.ReactNode;
35
+ value?: string | number | readonly string[] | undefined;
36
+ ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
37
+ form?: string | undefined;
38
+ slot?: string | undefined;
39
+ style?: React.CSSProperties | undefined;
40
+ title?: string | undefined;
41
+ variant?: "small" | "medium" | "large" | undefined;
42
+ role?: React.AriaRole | undefined;
43
+ sx?: import("./sx").BetterSystemStyleObject | undefined;
44
+ type?: "button" | "reset" | "submit" | undefined;
45
+ name?: string | undefined;
46
+ key?: React.Key | null | undefined;
47
+ defaultChecked?: boolean | undefined;
48
+ defaultValue?: string | number | readonly string[] | undefined;
49
+ suppressContentEditableWarning?: boolean | undefined;
50
+ suppressHydrationWarning?: boolean | undefined;
51
+ accessKey?: string | undefined;
52
+ className?: string | undefined;
53
+ contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
54
+ contextMenu?: string | undefined;
55
+ dir?: string | undefined;
56
+ draggable?: (boolean | "false" | "true") | undefined;
57
+ id?: string | undefined;
58
+ lang?: string | undefined;
59
+ placeholder?: string | undefined;
60
+ spellCheck?: (boolean | "false" | "true") | undefined;
61
+ tabIndex?: number | undefined;
62
+ radioGroup?: string | undefined;
63
+ about?: string | undefined;
64
+ datatype?: string | undefined;
65
+ inlist?: any;
66
+ prefix?: string | undefined;
67
+ property?: string | undefined;
68
+ resource?: string | undefined;
69
+ typeof?: string | undefined;
70
+ vocab?: string | undefined;
71
+ autoCapitalize?: string | undefined;
72
+ autoCorrect?: string | undefined;
73
+ autoSave?: string | undefined;
74
+ itemProp?: string | undefined;
75
+ itemScope?: boolean | undefined;
76
+ itemType?: string | undefined;
77
+ itemID?: string | undefined;
78
+ itemRef?: string | undefined;
79
+ results?: number | undefined;
80
+ security?: string | undefined;
81
+ unselectable?: "on" | "off" | undefined;
82
+ inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
83
+ is?: string | undefined;
84
+ 'aria-activedescendant'?: string | undefined;
85
+ 'aria-atomic'?: boolean | "false" | "true" | undefined;
86
+ 'aria-autocomplete'?: "none" | "both" | "inline" | "list" | undefined;
87
+ 'aria-busy'?: boolean | "false" | "true" | undefined;
88
+ 'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
89
+ 'aria-colcount'?: number | undefined;
90
+ 'aria-colindex'?: number | undefined;
91
+ 'aria-colspan'?: number | undefined;
92
+ 'aria-controls'?: string | undefined;
93
+ 'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
94
+ 'aria-describedby'?: string | undefined;
95
+ 'aria-details'?: string | undefined;
96
+ 'aria-disabled'?: boolean | "false" | "true" | undefined;
97
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
98
+ 'aria-errormessage'?: string | undefined;
99
+ 'aria-expanded'?: boolean | "false" | "true" | undefined;
100
+ 'aria-flowto'?: string | undefined;
101
+ 'aria-grabbed'?: boolean | "false" | "true" | undefined;
102
+ 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "false" | "true" | "tree" | undefined;
103
+ 'aria-hidden'?: boolean | "false" | "true" | undefined;
104
+ 'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
105
+ 'aria-keyshortcuts'?: string | undefined;
106
+ 'aria-label'?: string | undefined;
107
+ 'aria-labelledby'?: string | undefined;
108
+ 'aria-level'?: number | undefined;
109
+ 'aria-live'?: "off" | "assertive" | "polite" | undefined;
110
+ 'aria-modal'?: boolean | "false" | "true" | undefined;
111
+ 'aria-multiline'?: boolean | "false" | "true" | undefined;
112
+ 'aria-multiselectable'?: boolean | "false" | "true" | undefined;
113
+ 'aria-orientation'?: "horizontal" | "vertical" | undefined;
114
+ 'aria-owns'?: string | undefined;
115
+ 'aria-placeholder'?: string | undefined;
116
+ 'aria-posinset'?: number | undefined;
117
+ 'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
118
+ 'aria-readonly'?: boolean | "false" | "true" | undefined;
119
+ 'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
120
+ 'aria-required'?: boolean | "false" | "true" | undefined;
121
+ 'aria-roledescription'?: string | undefined;
122
+ 'aria-rowcount'?: number | undefined;
123
+ 'aria-rowindex'?: number | undefined;
124
+ 'aria-rowspan'?: number | undefined;
125
+ 'aria-selected'?: boolean | "false" | "true" | undefined;
126
+ 'aria-setsize'?: number | undefined;
127
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
128
+ 'aria-valuemax'?: number | undefined;
129
+ 'aria-valuemin'?: number | undefined;
130
+ 'aria-valuenow'?: number | undefined;
131
+ 'aria-valuetext'?: string | undefined;
132
+ dangerouslySetInnerHTML?: {
133
+ __html: string;
134
+ } | undefined;
135
+ onCopy?: React.ClipboardEventHandler<HTMLButtonElement> | undefined;
136
+ onCopyCapture?: React.ClipboardEventHandler<HTMLButtonElement> | undefined;
137
+ onCut?: React.ClipboardEventHandler<HTMLButtonElement> | undefined;
138
+ onCutCapture?: React.ClipboardEventHandler<HTMLButtonElement> | undefined;
139
+ onPaste?: React.ClipboardEventHandler<HTMLButtonElement> | undefined;
140
+ onPasteCapture?: React.ClipboardEventHandler<HTMLButtonElement> | undefined;
141
+ onCompositionEnd?: React.CompositionEventHandler<HTMLButtonElement> | undefined;
142
+ onCompositionEndCapture?: React.CompositionEventHandler<HTMLButtonElement> | undefined;
143
+ onCompositionStart?: React.CompositionEventHandler<HTMLButtonElement> | undefined;
144
+ onCompositionStartCapture?: React.CompositionEventHandler<HTMLButtonElement> | undefined;
145
+ onCompositionUpdate?: React.CompositionEventHandler<HTMLButtonElement> | undefined;
146
+ onCompositionUpdateCapture?: React.CompositionEventHandler<HTMLButtonElement> | undefined;
147
+ onFocus?: React.FocusEventHandler<HTMLButtonElement> | undefined;
148
+ onFocusCapture?: React.FocusEventHandler<HTMLButtonElement> | undefined;
149
+ onBlur?: React.FocusEventHandler<HTMLButtonElement> | undefined;
150
+ onBlurCapture?: React.FocusEventHandler<HTMLButtonElement> | undefined;
151
+ onChange?: React.FormEventHandler<HTMLButtonElement> | undefined;
152
+ onChangeCapture?: React.FormEventHandler<HTMLButtonElement> | undefined;
153
+ onBeforeInput?: React.FormEventHandler<HTMLButtonElement> | undefined;
154
+ onBeforeInputCapture?: React.FormEventHandler<HTMLButtonElement> | undefined;
155
+ onInput?: React.FormEventHandler<HTMLButtonElement> | undefined;
156
+ onInputCapture?: React.FormEventHandler<HTMLButtonElement> | undefined;
157
+ onReset?: React.FormEventHandler<HTMLButtonElement> | undefined;
158
+ onResetCapture?: React.FormEventHandler<HTMLButtonElement> | undefined;
159
+ onSubmit?: React.FormEventHandler<HTMLButtonElement> | undefined;
160
+ onSubmitCapture?: React.FormEventHandler<HTMLButtonElement> | undefined;
161
+ onInvalid?: React.FormEventHandler<HTMLButtonElement> | undefined;
162
+ onInvalidCapture?: React.FormEventHandler<HTMLButtonElement> | undefined;
163
+ onLoad?: React.ReactEventHandler<HTMLButtonElement> | undefined;
164
+ onLoadCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
165
+ onError?: React.ReactEventHandler<HTMLButtonElement> | undefined;
166
+ onErrorCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
167
+ onKeyDown?: React.KeyboardEventHandler<HTMLButtonElement> | undefined;
168
+ onKeyDownCapture?: React.KeyboardEventHandler<HTMLButtonElement> | undefined;
169
+ onKeyPress?: React.KeyboardEventHandler<HTMLButtonElement> | undefined;
170
+ onKeyPressCapture?: React.KeyboardEventHandler<HTMLButtonElement> | undefined;
171
+ onKeyUp?: React.KeyboardEventHandler<HTMLButtonElement> | undefined;
172
+ onKeyUpCapture?: React.KeyboardEventHandler<HTMLButtonElement> | undefined;
173
+ onAbort?: React.ReactEventHandler<HTMLButtonElement> | undefined;
174
+ onAbortCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
175
+ onCanPlay?: React.ReactEventHandler<HTMLButtonElement> | undefined;
176
+ onCanPlayCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
177
+ onCanPlayThrough?: React.ReactEventHandler<HTMLButtonElement> | undefined;
178
+ onCanPlayThroughCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
179
+ onDurationChange?: React.ReactEventHandler<HTMLButtonElement> | undefined;
180
+ onDurationChangeCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
181
+ onEmptied?: React.ReactEventHandler<HTMLButtonElement> | undefined;
182
+ onEmptiedCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
183
+ onEncrypted?: React.ReactEventHandler<HTMLButtonElement> | undefined;
184
+ onEncryptedCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
185
+ onEnded?: React.ReactEventHandler<HTMLButtonElement> | undefined;
186
+ onEndedCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
187
+ onLoadedData?: React.ReactEventHandler<HTMLButtonElement> | undefined;
188
+ onLoadedDataCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
189
+ onLoadedMetadata?: React.ReactEventHandler<HTMLButtonElement> | undefined;
190
+ onLoadedMetadataCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
191
+ onLoadStart?: React.ReactEventHandler<HTMLButtonElement> | undefined;
192
+ onLoadStartCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
193
+ onPause?: React.ReactEventHandler<HTMLButtonElement> | undefined;
194
+ onPauseCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
195
+ onPlay?: React.ReactEventHandler<HTMLButtonElement> | undefined;
196
+ onPlayCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
197
+ onPlaying?: React.ReactEventHandler<HTMLButtonElement> | undefined;
198
+ onPlayingCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
199
+ onProgress?: React.ReactEventHandler<HTMLButtonElement> | undefined;
200
+ onProgressCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
201
+ onRateChange?: React.ReactEventHandler<HTMLButtonElement> | undefined;
202
+ onRateChangeCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
203
+ onSeeked?: React.ReactEventHandler<HTMLButtonElement> | undefined;
204
+ onSeekedCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
205
+ onSeeking?: React.ReactEventHandler<HTMLButtonElement> | undefined;
206
+ onSeekingCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
207
+ onStalled?: React.ReactEventHandler<HTMLButtonElement> | undefined;
208
+ onStalledCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
209
+ onSuspend?: React.ReactEventHandler<HTMLButtonElement> | undefined;
210
+ onSuspendCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
211
+ onTimeUpdate?: React.ReactEventHandler<HTMLButtonElement> | undefined;
212
+ onTimeUpdateCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
213
+ onVolumeChange?: React.ReactEventHandler<HTMLButtonElement> | undefined;
214
+ onVolumeChangeCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
215
+ onWaiting?: React.ReactEventHandler<HTMLButtonElement> | undefined;
216
+ onWaitingCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
217
+ onAuxClick?: React.MouseEventHandler<HTMLButtonElement> | undefined;
218
+ onAuxClickCapture?: React.MouseEventHandler<HTMLButtonElement> | undefined;
219
+ onClick?: React.MouseEventHandler<HTMLButtonElement> | undefined;
220
+ onClickCapture?: React.MouseEventHandler<HTMLButtonElement> | undefined;
221
+ onContextMenu?: React.MouseEventHandler<HTMLButtonElement> | undefined;
222
+ onContextMenuCapture?: React.MouseEventHandler<HTMLButtonElement> | undefined;
223
+ onDoubleClick?: React.MouseEventHandler<HTMLButtonElement> | undefined;
224
+ onDoubleClickCapture?: React.MouseEventHandler<HTMLButtonElement> | undefined;
225
+ onDrag?: React.DragEventHandler<HTMLButtonElement> | undefined;
226
+ onDragCapture?: React.DragEventHandler<HTMLButtonElement> | undefined;
227
+ onDragEnd?: React.DragEventHandler<HTMLButtonElement> | undefined;
228
+ onDragEndCapture?: React.DragEventHandler<HTMLButtonElement> | undefined;
229
+ onDragEnter?: React.DragEventHandler<HTMLButtonElement> | undefined;
230
+ onDragEnterCapture?: React.DragEventHandler<HTMLButtonElement> | undefined;
231
+ onDragExit?: React.DragEventHandler<HTMLButtonElement> | undefined;
232
+ onDragExitCapture?: React.DragEventHandler<HTMLButtonElement> | undefined;
233
+ onDragLeave?: React.DragEventHandler<HTMLButtonElement> | undefined;
234
+ onDragLeaveCapture?: React.DragEventHandler<HTMLButtonElement> | undefined;
235
+ onDragOver?: React.DragEventHandler<HTMLButtonElement> | undefined;
236
+ onDragOverCapture?: React.DragEventHandler<HTMLButtonElement> | undefined;
237
+ onDragStart?: React.DragEventHandler<HTMLButtonElement> | undefined;
238
+ onDragStartCapture?: React.DragEventHandler<HTMLButtonElement> | undefined;
239
+ onDrop?: React.DragEventHandler<HTMLButtonElement> | undefined;
240
+ onDropCapture?: React.DragEventHandler<HTMLButtonElement> | undefined;
241
+ onMouseDown?: React.MouseEventHandler<HTMLButtonElement> | undefined;
242
+ onMouseDownCapture?: React.MouseEventHandler<HTMLButtonElement> | undefined;
243
+ onMouseEnter?: React.MouseEventHandler<HTMLButtonElement> | undefined;
244
+ onMouseLeave?: React.MouseEventHandler<HTMLButtonElement> | undefined;
245
+ onMouseMove?: React.MouseEventHandler<HTMLButtonElement> | undefined;
246
+ onMouseMoveCapture?: React.MouseEventHandler<HTMLButtonElement> | undefined;
247
+ onMouseOut?: React.MouseEventHandler<HTMLButtonElement> | undefined;
248
+ onMouseOutCapture?: React.MouseEventHandler<HTMLButtonElement> | undefined;
249
+ onMouseOver?: React.MouseEventHandler<HTMLButtonElement> | undefined;
250
+ onMouseOverCapture?: React.MouseEventHandler<HTMLButtonElement> | undefined;
251
+ onMouseUp?: React.MouseEventHandler<HTMLButtonElement> | undefined;
252
+ onMouseUpCapture?: React.MouseEventHandler<HTMLButtonElement> | undefined;
253
+ onSelect?: React.ReactEventHandler<HTMLButtonElement> | undefined;
254
+ onSelectCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
255
+ onTouchCancel?: React.TouchEventHandler<HTMLButtonElement> | undefined;
256
+ onTouchCancelCapture?: React.TouchEventHandler<HTMLButtonElement> | undefined;
257
+ onTouchEnd?: React.TouchEventHandler<HTMLButtonElement> | undefined;
258
+ onTouchEndCapture?: React.TouchEventHandler<HTMLButtonElement> | undefined;
259
+ onTouchMove?: React.TouchEventHandler<HTMLButtonElement> | undefined;
260
+ onTouchMoveCapture?: React.TouchEventHandler<HTMLButtonElement> | undefined;
261
+ onTouchStart?: React.TouchEventHandler<HTMLButtonElement> | undefined;
262
+ onTouchStartCapture?: React.TouchEventHandler<HTMLButtonElement> | undefined;
263
+ onPointerDown?: React.PointerEventHandler<HTMLButtonElement> | undefined;
264
+ onPointerDownCapture?: React.PointerEventHandler<HTMLButtonElement> | undefined;
265
+ onPointerMove?: React.PointerEventHandler<HTMLButtonElement> | undefined;
266
+ onPointerMoveCapture?: React.PointerEventHandler<HTMLButtonElement> | undefined;
267
+ onPointerUp?: React.PointerEventHandler<HTMLButtonElement> | undefined;
268
+ onPointerUpCapture?: React.PointerEventHandler<HTMLButtonElement> | undefined;
269
+ onPointerCancel?: React.PointerEventHandler<HTMLButtonElement> | undefined;
270
+ onPointerCancelCapture?: React.PointerEventHandler<HTMLButtonElement> | undefined;
271
+ onPointerEnter?: React.PointerEventHandler<HTMLButtonElement> | undefined;
272
+ onPointerEnterCapture?: React.PointerEventHandler<HTMLButtonElement> | undefined;
273
+ onPointerLeave?: React.PointerEventHandler<HTMLButtonElement> | undefined;
274
+ onPointerLeaveCapture?: React.PointerEventHandler<HTMLButtonElement> | undefined;
275
+ onPointerOver?: React.PointerEventHandler<HTMLButtonElement> | undefined;
276
+ onPointerOverCapture?: React.PointerEventHandler<HTMLButtonElement> | undefined;
277
+ onPointerOut?: React.PointerEventHandler<HTMLButtonElement> | undefined;
278
+ onPointerOutCapture?: React.PointerEventHandler<HTMLButtonElement> | undefined;
279
+ onGotPointerCapture?: React.PointerEventHandler<HTMLButtonElement> | undefined;
280
+ onGotPointerCaptureCapture?: React.PointerEventHandler<HTMLButtonElement> | undefined;
281
+ onLostPointerCapture?: React.PointerEventHandler<HTMLButtonElement> | undefined;
282
+ onLostPointerCaptureCapture?: React.PointerEventHandler<HTMLButtonElement> | undefined;
283
+ onScroll?: React.UIEventHandler<HTMLButtonElement> | undefined;
284
+ onScrollCapture?: React.UIEventHandler<HTMLButtonElement> | undefined;
285
+ onWheel?: React.WheelEventHandler<HTMLButtonElement> | undefined;
286
+ onWheelCapture?: React.WheelEventHandler<HTMLButtonElement> | undefined;
287
+ onAnimationStart?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
288
+ onAnimationStartCapture?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
289
+ onAnimationEnd?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
290
+ onAnimationEndCapture?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
291
+ onAnimationIteration?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
292
+ onAnimationIterationCapture?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
293
+ onTransitionEnd?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
294
+ onTransitionEndCapture?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
295
+ css?: import("@emotion/core").InterpolationWithTheme<any>;
296
+ as?: string | React.ComponentClass<any, any> | React.FunctionComponent<any> | undefined;
297
+ disabled?: boolean | undefined;
298
+ autoFocus?: boolean | undefined;
299
+ formAction?: string | undefined;
300
+ formEncType?: string | undefined;
301
+ formMethod?: string | undefined;
302
+ formNoValidate?: boolean | undefined;
303
+ formTarget?: string | undefined;
304
+ } & {
305
+ theme?: any;
306
+ }, "color" | "translate" | "hidden" | "children" | "theme" | "value" | "form" | "slot" | "style" | "title" | "variant" | "role" | "sx" | "type" | "name" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css" | "as" | "disabled" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget"> & React.RefAttributes<React.RefObject<HTMLElement> | undefined>>;
307
+ Anchor: React.ForwardRefExoticComponent<MenuAnchorProps & React.RefAttributes<React.RefObject<HTMLElement> | undefined>>;
308
+ Divider: React.FC<import("./sx").SxProp>;
309
+ };
310
+ export {};
@@ -0,0 +1,91 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.ActionMenu = void 0;
7
+
8
+ var _Button = _interopRequireDefault(require("./Button"));
9
+
10
+ var _react = _interopRequireDefault(require("react"));
11
+
12
+ var _AnchoredOverlay = require("./AnchoredOverlay");
13
+
14
+ var _useProvidedStateOrCreate = require("./hooks/useProvidedStateOrCreate");
15
+
16
+ var _hooks = require("./hooks");
17
+
18
+ var _Divider = require("./ActionList2/Divider");
19
+
20
+ var _MenuContext = require("./ActionList2/MenuContext");
21
+
22
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
23
+
24
+ const ActionMenuBase = ({
25
+ anchorRef: externalAnchorRef,
26
+ open,
27
+ onOpenChange,
28
+ overlayProps,
29
+ children
30
+ }) => {
31
+ const [combinedOpenState, setCombinedOpenState] = (0, _useProvidedStateOrCreate.useProvidedStateOrCreate)(open, onOpenChange, false);
32
+ const anchorRef = (0, _hooks.useProvidedRefOrCreate)(externalAnchorRef);
33
+
34
+ const onOpen = _react.default.useCallback(() => setCombinedOpenState(true), [setCombinedOpenState]);
35
+
36
+ const onClose = _react.default.useCallback(() => setCombinedOpenState(false), [setCombinedOpenState]);
37
+
38
+ let renderAnchor = null;
39
+ const contents = [];
40
+
41
+ _react.default.Children.map(children, child => {
42
+ if (child.type === MenuButton || child.type === Anchor) {
43
+ renderAnchor = anchorProps => /*#__PURE__*/_react.default.cloneElement(child, anchorProps);
44
+ } else {
45
+ contents.push(child);
46
+ }
47
+ });
48
+
49
+ return /*#__PURE__*/_react.default.createElement(_AnchoredOverlay.AnchoredOverlay, {
50
+ renderAnchor: renderAnchor,
51
+ anchorRef: anchorRef,
52
+ open: combinedOpenState,
53
+ onOpen: onOpen,
54
+ onClose: onClose,
55
+ overlayProps: overlayProps
56
+ }, /*#__PURE__*/_react.default.createElement(_MenuContext.MenuContext.Provider, {
57
+ value: {
58
+ parent: 'ActionMenu',
59
+ listRole: 'menu',
60
+ itemRole: 'menuitem',
61
+ afterSelect: onClose
62
+ }
63
+ }, contents));
64
+ };
65
+
66
+ ActionMenuBase.displayName = "ActionMenuBase";
67
+
68
+ const Anchor = /*#__PURE__*/_react.default.forwardRef(({
69
+ children,
70
+ ...anchorProps
71
+ }, anchorRef) => {
72
+ return /*#__PURE__*/_react.default.cloneElement(children, { ...anchorProps,
73
+ ref: anchorRef
74
+ });
75
+ });
76
+ /** this component is syntactical sugar 🍭 */
77
+
78
+
79
+ const MenuButton = /*#__PURE__*/_react.default.forwardRef((props, anchorRef) => {
80
+ return /*#__PURE__*/_react.default.createElement(Anchor, {
81
+ ref: anchorRef
82
+ }, /*#__PURE__*/_react.default.createElement(_Button.default, props));
83
+ });
84
+
85
+ ActionMenuBase.displayName = 'ActionMenu';
86
+ const ActionMenu = Object.assign(ActionMenuBase, {
87
+ Button: MenuButton,
88
+ Anchor,
89
+ Divider: _Divider.Divider
90
+ });
91
+ exports.ActionMenu = ActionMenu;
package/lib/Avatar.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import { SystemCommonProps } from './constants';
2
1
  import { SxProp } from './sx';
3
2
  import { ComponentProps } from './utils/types';
4
3
  declare const Avatar: import("styled-components").StyledComponent<"img", any, {
@@ -10,6 +9,6 @@ declare const Avatar: import("styled-components").StyledComponent<"img", any, {
10
9
  src: string;
11
10
  /** Provide alt text when the Avatar is used without the user's name next to it. */
12
11
  alt?: string | undefined;
13
- } & SystemCommonProps & SxProp, never>;
12
+ } & SxProp, never>;
14
13
  export declare type AvatarProps = ComponentProps<typeof Avatar>;
15
14
  export default Avatar;
package/lib/Avatar.js CHANGED
@@ -30,7 +30,7 @@ const Avatar = _styledComponents.default.img.attrs(props => ({
30
30
  })).withConfig({
31
31
  displayName: "Avatar",
32
32
  componentId: "sc-1waaaky-0"
33
- })(["display:inline-block;overflow:hidden;line-height:", ";vertical-align:middle;border-radius:", ";", ";", ""], (0, _constants.get)('lineHeights.condensedUltra'), props => getBorderRadius(props), _constants.COMMON, _sx.default);
33
+ })(["display:inline-block;overflow:hidden;line-height:", ";vertical-align:middle;border-radius:", ";", ""], (0, _constants.get)('lineHeights.condensedUltra'), props => getBorderRadius(props), _sx.default);
34
34
 
35
35
  Avatar.defaultProps = {
36
36
  size: 20,
@@ -1,6 +1,5 @@
1
- import { SystemCommonProps } from './constants';
2
1
  import { SxProp } from './sx';
3
2
  import { ComponentProps } from './utils/types';
4
- declare const BranchName: import("styled-components").StyledComponent<"a", any, SystemCommonProps & SxProp, never>;
3
+ declare const BranchName: import("styled-components").StyledComponent<"a", any, SxProp, never>;
5
4
  export declare type BranchNameProps = ComponentProps<typeof BranchName>;
6
5
  export default BranchName;
package/lib/BranchName.js CHANGED
@@ -16,7 +16,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
16
16
  const BranchName = _styledComponents.default.a.withConfig({
17
17
  displayName: "BranchName",
18
18
  componentId: "sc-167ouzm-0"
19
- })(["display:inline-block;padding:2px 6px;font-size:", ";font-family:", ";color:", ";background-color:", ";border-radius:", ";", ";", ";"], (0, _constants.get)('fontSizes.0'), (0, _constants.get)('fonts.mono'), (0, _constants.get)('colors.fg.muted'), (0, _constants.get)('colors.accent.subtle'), (0, _constants.get)('radii.2'), _constants.COMMON, _sx.default);
19
+ })(["display:inline-block;padding:2px 6px;font-size:", ";font-family:", ";color:", ";background-color:", ";border-radius:", ";", ";"], (0, _constants.get)('fontSizes.0'), (0, _constants.get)('fonts.mono'), (0, _constants.get)('colors.fg.muted'), (0, _constants.get)('colors.accent.subtle'), (0, _constants.get)('radii.2'), _sx.default);
20
20
 
21
21
  var _default = BranchName;
22
22
  exports.default = _default;
package/lib/Details.d.ts CHANGED
@@ -1,6 +1,5 @@
1
- import { SystemCommonProps } from './constants';
2
1
  import { SxProp } from './sx';
3
2
  import { ComponentProps } from './utils/types';
4
- declare const Details: import("styled-components").StyledComponent<"details", any, SystemCommonProps & SxProp, never>;
3
+ declare const Details: import("styled-components").StyledComponent<"details", any, SxProp, never>;
5
4
  export declare type DetailsProps = ComponentProps<typeof Details>;
6
5
  export default Details;
package/lib/Details.js CHANGED
@@ -7,8 +7,6 @@ exports.default = void 0;
7
7
 
8
8
  var _styledComponents = _interopRequireDefault(require("styled-components"));
9
9
 
10
- var _constants = require("./constants");
11
-
12
10
  var _sx = _interopRequireDefault(require("./sx"));
13
11
 
14
12
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
@@ -16,7 +14,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
16
14
  const Details = _styledComponents.default.details.withConfig({
17
15
  displayName: "Details",
18
16
  componentId: "ssy9qz-0"
19
- })(["& > summary{list-style:none;}& > summary::-webkit-details-marker{display:none;}", " ", ";"], _constants.COMMON, _sx.default);
17
+ })(["& > summary{list-style:none;}& > summary::-webkit-details-marker{display:none;}", ";"], _sx.default);
20
18
 
21
19
  Details.displayName = 'Details';
22
20
  var _default = Details;