@negative-space/feedback 1.1.6 → 1.2.0
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/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +21 -0
- package/dist/index.mjs +3 -0
- package/package.json +6 -3
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var checkmark = require('@negative-space/checkmark');
|
|
4
|
+
var modal = require('@negative-space/modal');
|
|
5
|
+
var popover = require('@negative-space/popover');
|
|
4
6
|
var spinner = require('@negative-space/spinner');
|
|
7
|
+
var tooltip = require('@negative-space/tooltip');
|
|
5
8
|
|
|
6
9
|
|
|
7
10
|
|
|
@@ -11,11 +14,29 @@ Object.keys(checkmark).forEach(function (k) {
|
|
|
11
14
|
get: function () { return checkmark[k]; }
|
|
12
15
|
});
|
|
13
16
|
});
|
|
17
|
+
Object.keys(modal).forEach(function (k) {
|
|
18
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function () { return modal[k]; }
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
Object.keys(popover).forEach(function (k) {
|
|
24
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function () { return popover[k]; }
|
|
27
|
+
});
|
|
28
|
+
});
|
|
14
29
|
Object.keys(spinner).forEach(function (k) {
|
|
15
30
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
16
31
|
enumerable: true,
|
|
17
32
|
get: function () { return spinner[k]; }
|
|
18
33
|
});
|
|
19
34
|
});
|
|
35
|
+
Object.keys(tooltip).forEach(function (k) {
|
|
36
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
37
|
+
enumerable: true,
|
|
38
|
+
get: function () { return tooltip[k]; }
|
|
39
|
+
});
|
|
40
|
+
});
|
|
20
41
|
//# sourceMappingURL=index.js.map
|
|
21
42
|
//# sourceMappingURL=index.js.map
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export * from '@negative-space/checkmark';
|
|
2
|
+
export * from '@negative-space/modal';
|
|
3
|
+
export * from '@negative-space/popover';
|
|
2
4
|
export * from '@negative-space/spinner';
|
|
5
|
+
export * from '@negative-space/tooltip';
|
|
3
6
|
//# sourceMappingURL=index.mjs.map
|
|
4
7
|
//# sourceMappingURL=index.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@negative-space/feedback",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -30,8 +30,11 @@
|
|
|
30
30
|
"url": "https://github.com/negative-space-ui/nsui/issues"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@negative-space/checkmark": "1.
|
|
34
|
-
"@negative-space/
|
|
33
|
+
"@negative-space/checkmark": "1.2.0",
|
|
34
|
+
"@negative-space/modal": "1.0.0",
|
|
35
|
+
"@negative-space/popover": "1.0.0",
|
|
36
|
+
"@negative-space/spinner": "2.2.0",
|
|
37
|
+
"@negative-space/tooltip": "1.0.0"
|
|
35
38
|
},
|
|
36
39
|
"clean-package": "../../../clean-package.config.json",
|
|
37
40
|
"exports": {
|