@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/CHANGELOG.md +1 -1
- package/dist/browser.esm.js +613 -613
- package/dist/browser.esm.js.map +1 -1
- package/dist/browser.umd.js +176 -176
- package/dist/browser.umd.js.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +8 -0
- package/lib-esm/index.d.ts +1 -0
- package/lib-esm/index.js +1 -0
- package/package.json +1 -1
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"));
|
package/lib-esm/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-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';
|