@primer/components 0.0.0-202191514926 → 0.0.0-202191515130

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/lib/index.d.ts CHANGED
@@ -22,6 +22,7 @@ export { useOnEscapePress } from './hooks/useOnEscapePress';
22
22
  export { useOverlay } from './hooks/useOverlay';
23
23
  export { useConfirm } from './Dialog/ConfirmationDialog';
24
24
  export { ActionList } from './ActionList';
25
+ export { ActionList as ActionList2 } from './ActionList2';
25
26
  export { ActionMenu } from './ActionMenu';
26
27
  export type { ActionMenuProps } from './ActionMenu';
27
28
  export { default as Autocomplete } from './Autocomplete';
package/lib/index.js CHANGED
@@ -147,6 +147,12 @@ Object.defineProperty(exports, "ActionList", {
147
147
  return _ActionList.ActionList;
148
148
  }
149
149
  });
150
+ Object.defineProperty(exports, "ActionList2", {
151
+ enumerable: true,
152
+ get: function () {
153
+ return _ActionList2.ActionList;
154
+ }
155
+ });
150
156
  Object.defineProperty(exports, "ActionMenu", {
151
157
  enumerable: true,
152
158
  get: function () {
@@ -536,6 +542,8 @@ var _ConfirmationDialog = require("./Dialog/ConfirmationDialog");
536
542
 
537
543
  var _ActionList = require("./ActionList");
538
544
 
545
+ var _ActionList2 = require("./ActionList2");
546
+
539
547
  var _ActionMenu = require("./ActionMenu");
540
548
 
541
549
  var _Autocomplete = _interopRequireDefault(require("./Autocomplete"));
@@ -22,6 +22,7 @@ export { useOnEscapePress } from './hooks/useOnEscapePress';
22
22
  export { useOverlay } from './hooks/useOverlay';
23
23
  export { useConfirm } from './Dialog/ConfirmationDialog';
24
24
  export { ActionList } from './ActionList';
25
+ export { ActionList as ActionList2 } from './ActionList2';
25
26
  export { ActionMenu } from './ActionMenu';
26
27
  export type { ActionMenuProps } from './ActionMenu';
27
28
  export { default as Autocomplete } from './Autocomplete';
package/lib-esm/index.js CHANGED
@@ -18,6 +18,7 @@ export { useOverlay } from './hooks/useOverlay';
18
18
  export { useConfirm } from './Dialog/ConfirmationDialog'; // Components
19
19
 
20
20
  export { ActionList } from './ActionList';
21
+ export { ActionList as ActionList2 } from './ActionList2';
21
22
  export { ActionMenu } from './ActionMenu';
22
23
  export { default as Autocomplete } from './Autocomplete';
23
24
  export { default as Avatar } from './Avatar';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primer/components",
3
- "version": "0.0.0-202191514926",
3
+ "version": "0.0.0-202191515130",
4
4
  "description": "Primer react components",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib-esm/index.js",