@primer/components 0.0.0-2021929114541 → 0.0.0-2021929114834
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/lib/experiments.d.ts +1 -1
- package/lib/experiments.js +12 -7
- package/lib-esm/experiments.d.ts +1 -1
- package/lib-esm/experiments.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/lib/experiments.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export
|
1
|
+
export * from './ActionList2';
|
package/lib/experiments.js
CHANGED
@@ -3,11 +3,16 @@
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
4
4
|
value: true
|
5
5
|
});
|
6
|
-
Object.defineProperty(exports, "ActionList", {
|
7
|
-
enumerable: true,
|
8
|
-
get: function () {
|
9
|
-
return _ActionList.ActionList;
|
10
|
-
}
|
11
|
-
});
|
12
6
|
|
13
|
-
var _ActionList = require("./ActionList2");
|
7
|
+
var _ActionList = require("./ActionList2");
|
8
|
+
|
9
|
+
Object.keys(_ActionList).forEach(function (key) {
|
10
|
+
if (key === "default" || key === "__esModule") return;
|
11
|
+
if (key in exports && exports[key] === _ActionList[key]) return;
|
12
|
+
Object.defineProperty(exports, key, {
|
13
|
+
enumerable: true,
|
14
|
+
get: function () {
|
15
|
+
return _ActionList[key];
|
16
|
+
}
|
17
|
+
});
|
18
|
+
});
|
package/lib-esm/experiments.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export
|
1
|
+
export * from './ActionList2';
|
package/lib-esm/experiments.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Components
|
2
|
-
export
|
2
|
+
export * from './ActionList2';
|