@cashub/ui 0.49.0-beta.3 → 0.49.0-beta.4
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/index.js +12 -8
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -5,7 +5,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
var _exportNames = {
|
|
7
7
|
Dropdown: true,
|
|
8
|
-
Icon: true,
|
|
9
8
|
Tab: true,
|
|
10
9
|
TabV2: true,
|
|
11
10
|
VerticalTab: true
|
|
@@ -16,12 +15,6 @@ Object.defineProperty(exports, "Dropdown", {
|
|
|
16
15
|
return _dropdown.default;
|
|
17
16
|
}
|
|
18
17
|
});
|
|
19
|
-
Object.defineProperty(exports, "Icon", {
|
|
20
|
-
enumerable: true,
|
|
21
|
-
get: function () {
|
|
22
|
-
return _Icon.default;
|
|
23
|
-
}
|
|
24
|
-
});
|
|
25
18
|
Object.defineProperty(exports, "Tab", {
|
|
26
19
|
enumerable: true,
|
|
27
20
|
get: function () {
|
|
@@ -292,7 +285,18 @@ Object.keys(_heading).forEach(function (key) {
|
|
|
292
285
|
}
|
|
293
286
|
});
|
|
294
287
|
});
|
|
295
|
-
var
|
|
288
|
+
var _icon = require("./icon");
|
|
289
|
+
Object.keys(_icon).forEach(function (key) {
|
|
290
|
+
if (key === "default" || key === "__esModule") return;
|
|
291
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
292
|
+
if (key in exports && exports[key] === _icon[key]) return;
|
|
293
|
+
Object.defineProperty(exports, key, {
|
|
294
|
+
enumerable: true,
|
|
295
|
+
get: function () {
|
|
296
|
+
return _icon[key];
|
|
297
|
+
}
|
|
298
|
+
});
|
|
299
|
+
});
|
|
296
300
|
var _iconbox = require("./iconbox");
|
|
297
301
|
Object.keys(_iconbox).forEach(function (key) {
|
|
298
302
|
if (key === "default" || key === "__esModule") return;
|