@ncds/ui-admin 0.0.7 → 0.0.9
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/tsconfig.tsbuildinfo +1 -1
- package/dist/ui-admin/assets/styles/style.css +1 -1
- package/dist/ui-admin/index.d.ts +10 -0
- package/dist/ui-admin/index.d.ts.map +1 -1
- package/dist/ui-admin/index.js +110 -0
- package/dist/ui-admin/src/components/button/ButtonGroup.d.ts +1 -1
- package/dist/ui-admin/src/components/button/index.d.ts +1 -0
- package/dist/ui-admin/src/components/button/index.d.ts.map +1 -1
- package/dist/ui-admin/src/components/button/index.js +11 -0
- package/dist/ui-admin/src/components/index.d.ts +4 -0
- package/dist/ui-admin/src/components/index.d.ts.map +1 -1
- package/dist/ui-admin/src/components/index.js +44 -0
- package/dist/ui-admin/src/components/input/index.d.ts +3 -0
- package/dist/ui-admin/src/components/input/index.d.ts.map +1 -0
- package/dist/ui-admin/src/components/input/index.js +27 -0
- package/dist/ui-admin/src/components/pagination/index.d.ts +1 -0
- package/dist/ui-admin/src/components/pagination/index.d.ts.map +1 -1
- package/dist/ui-admin/src/components/pagination/index.js +11 -0
- package/dist/ui-admin/src/components/shared/hintText/index.d.ts +2 -0
- package/dist/ui-admin/src/components/shared/hintText/index.d.ts.map +1 -0
- package/dist/ui-admin/src/components/shared/hintText/index.js +16 -0
- package/dist/ui-admin/src/components/shared/index.d.ts +3 -0
- package/dist/ui-admin/src/components/shared/index.d.ts.map +1 -0
- package/dist/ui-admin/src/components/shared/index.js +27 -0
- package/dist/ui-admin/src/components/shared/label/index.d.ts +2 -0
- package/dist/ui-admin/src/components/shared/label/index.d.ts.map +1 -0
- package/dist/ui-admin/src/components/shared/label/index.js +16 -0
- package/dist/ui-admin/src/components/spinner/index.d.ts +2 -0
- package/dist/ui-admin/src/components/spinner/index.d.ts.map +1 -0
- package/dist/ui-admin/src/components/spinner/index.js +16 -0
- package/package.json +1 -1
|
@@ -1190,7 +1190,6 @@ table {
|
|
|
1190
1190
|
height: 14px;
|
|
1191
1191
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23171818' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
1192
1192
|
content: "";
|
|
1193
|
-
z-index: -1;
|
|
1194
1193
|
transform: translateY(-50%);
|
|
1195
1194
|
}
|
|
1196
1195
|
.ncua-select__icon {
|
|
@@ -1288,6 +1287,7 @@ table {
|
|
|
1288
1287
|
.ncua-pagination {
|
|
1289
1288
|
display: flex;
|
|
1290
1289
|
align-items: center;
|
|
1290
|
+
justify-content: center;
|
|
1291
1291
|
}
|
|
1292
1292
|
.ncua-pagination__list {
|
|
1293
1293
|
display: flex;
|
package/dist/ui-admin/index.d.ts
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
1
|
export * from './src/components/button';
|
|
2
|
+
export * from './src/components/checkbox';
|
|
3
|
+
export * from './src/components/input';
|
|
4
|
+
export * from './src/components/pagination';
|
|
5
|
+
export * from './src/components/radio';
|
|
6
|
+
export * from './src/components/select';
|
|
7
|
+
export * from './src/components/shared/hintText';
|
|
8
|
+
export * from './src/components/shared/label';
|
|
9
|
+
export * from './src/components/shared';
|
|
10
|
+
export * from './src/components/spinner';
|
|
2
11
|
export * from './src/components/svg';
|
|
12
|
+
export * from './src/components/tooltip';
|
|
3
13
|
export * from './src/components';
|
|
4
14
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kCAAkC,CAAC;AACjD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC"}
|
package/dist/ui-admin/index.js
CHANGED
|
@@ -14,6 +14,105 @@ Object.keys(_button).forEach(function (key) {
|
|
|
14
14
|
}
|
|
15
15
|
});
|
|
16
16
|
});
|
|
17
|
+
var _checkbox = require("./src/components/checkbox");
|
|
18
|
+
Object.keys(_checkbox).forEach(function (key) {
|
|
19
|
+
if (key === "default" || key === "__esModule") return;
|
|
20
|
+
if (key in exports && exports[key] === _checkbox[key]) return;
|
|
21
|
+
Object.defineProperty(exports, key, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function () {
|
|
24
|
+
return _checkbox[key];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
var _input = require("./src/components/input");
|
|
29
|
+
Object.keys(_input).forEach(function (key) {
|
|
30
|
+
if (key === "default" || key === "__esModule") return;
|
|
31
|
+
if (key in exports && exports[key] === _input[key]) return;
|
|
32
|
+
Object.defineProperty(exports, key, {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
get: function () {
|
|
35
|
+
return _input[key];
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
});
|
|
39
|
+
var _pagination = require("./src/components/pagination");
|
|
40
|
+
Object.keys(_pagination).forEach(function (key) {
|
|
41
|
+
if (key === "default" || key === "__esModule") return;
|
|
42
|
+
if (key in exports && exports[key] === _pagination[key]) return;
|
|
43
|
+
Object.defineProperty(exports, key, {
|
|
44
|
+
enumerable: true,
|
|
45
|
+
get: function () {
|
|
46
|
+
return _pagination[key];
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
});
|
|
50
|
+
var _radio = require("./src/components/radio");
|
|
51
|
+
Object.keys(_radio).forEach(function (key) {
|
|
52
|
+
if (key === "default" || key === "__esModule") return;
|
|
53
|
+
if (key in exports && exports[key] === _radio[key]) return;
|
|
54
|
+
Object.defineProperty(exports, key, {
|
|
55
|
+
enumerable: true,
|
|
56
|
+
get: function () {
|
|
57
|
+
return _radio[key];
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
});
|
|
61
|
+
var _select = require("./src/components/select");
|
|
62
|
+
Object.keys(_select).forEach(function (key) {
|
|
63
|
+
if (key === "default" || key === "__esModule") return;
|
|
64
|
+
if (key in exports && exports[key] === _select[key]) return;
|
|
65
|
+
Object.defineProperty(exports, key, {
|
|
66
|
+
enumerable: true,
|
|
67
|
+
get: function () {
|
|
68
|
+
return _select[key];
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
});
|
|
72
|
+
var _hintText = require("./src/components/shared/hintText");
|
|
73
|
+
Object.keys(_hintText).forEach(function (key) {
|
|
74
|
+
if (key === "default" || key === "__esModule") return;
|
|
75
|
+
if (key in exports && exports[key] === _hintText[key]) return;
|
|
76
|
+
Object.defineProperty(exports, key, {
|
|
77
|
+
enumerable: true,
|
|
78
|
+
get: function () {
|
|
79
|
+
return _hintText[key];
|
|
80
|
+
}
|
|
81
|
+
});
|
|
82
|
+
});
|
|
83
|
+
var _label = require("./src/components/shared/label");
|
|
84
|
+
Object.keys(_label).forEach(function (key) {
|
|
85
|
+
if (key === "default" || key === "__esModule") return;
|
|
86
|
+
if (key in exports && exports[key] === _label[key]) return;
|
|
87
|
+
Object.defineProperty(exports, key, {
|
|
88
|
+
enumerable: true,
|
|
89
|
+
get: function () {
|
|
90
|
+
return _label[key];
|
|
91
|
+
}
|
|
92
|
+
});
|
|
93
|
+
});
|
|
94
|
+
var _shared = require("./src/components/shared");
|
|
95
|
+
Object.keys(_shared).forEach(function (key) {
|
|
96
|
+
if (key === "default" || key === "__esModule") return;
|
|
97
|
+
if (key in exports && exports[key] === _shared[key]) return;
|
|
98
|
+
Object.defineProperty(exports, key, {
|
|
99
|
+
enumerable: true,
|
|
100
|
+
get: function () {
|
|
101
|
+
return _shared[key];
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
});
|
|
105
|
+
var _spinner = require("./src/components/spinner");
|
|
106
|
+
Object.keys(_spinner).forEach(function (key) {
|
|
107
|
+
if (key === "default" || key === "__esModule") return;
|
|
108
|
+
if (key in exports && exports[key] === _spinner[key]) return;
|
|
109
|
+
Object.defineProperty(exports, key, {
|
|
110
|
+
enumerable: true,
|
|
111
|
+
get: function () {
|
|
112
|
+
return _spinner[key];
|
|
113
|
+
}
|
|
114
|
+
});
|
|
115
|
+
});
|
|
17
116
|
var _svg = require("./src/components/svg");
|
|
18
117
|
Object.keys(_svg).forEach(function (key) {
|
|
19
118
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -25,6 +124,17 @@ Object.keys(_svg).forEach(function (key) {
|
|
|
25
124
|
}
|
|
26
125
|
});
|
|
27
126
|
});
|
|
127
|
+
var _tooltip = require("./src/components/tooltip");
|
|
128
|
+
Object.keys(_tooltip).forEach(function (key) {
|
|
129
|
+
if (key === "default" || key === "__esModule") return;
|
|
130
|
+
if (key in exports && exports[key] === _tooltip[key]) return;
|
|
131
|
+
Object.defineProperty(exports, key, {
|
|
132
|
+
enumerable: true,
|
|
133
|
+
get: function () {
|
|
134
|
+
return _tooltip[key];
|
|
135
|
+
}
|
|
136
|
+
});
|
|
137
|
+
});
|
|
28
138
|
var _components = require("./src/components");
|
|
29
139
|
Object.keys(_components).forEach(function (key) {
|
|
30
140
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -51,7 +51,7 @@ export declare const ButtonGroup: {
|
|
|
51
51
|
formNoValidate?: boolean | undefined;
|
|
52
52
|
formTarget?: string | undefined;
|
|
53
53
|
name?: string | undefined;
|
|
54
|
-
type?: "button" | "
|
|
54
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
55
55
|
value?: string | number | readonly string[] | undefined;
|
|
56
56
|
defaultChecked?: boolean | undefined;
|
|
57
57
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/button/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/button/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC"}
|
|
@@ -13,4 +13,15 @@ Object.keys(_Button).forEach(function (key) {
|
|
|
13
13
|
return _Button[key];
|
|
14
14
|
}
|
|
15
15
|
});
|
|
16
|
+
});
|
|
17
|
+
var _ButtonGroup = require("./ButtonGroup");
|
|
18
|
+
Object.keys(_ButtonGroup).forEach(function (key) {
|
|
19
|
+
if (key === "default" || key === "__esModule") return;
|
|
20
|
+
if (key in exports && exports[key] === _ButtonGroup[key]) return;
|
|
21
|
+
Object.defineProperty(exports, key, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function () {
|
|
24
|
+
return _ButtonGroup[key];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
16
27
|
});
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
export * from './button';
|
|
2
2
|
export * from './checkbox';
|
|
3
|
+
export * from './input';
|
|
4
|
+
export * from './pagination';
|
|
3
5
|
export * from './radio';
|
|
4
6
|
export * from './select';
|
|
7
|
+
export * from './shared';
|
|
8
|
+
export * from './spinner';
|
|
5
9
|
export * from './svg';
|
|
6
10
|
export * from './tooltip';
|
|
7
11
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC"}
|
|
@@ -25,6 +25,28 @@ Object.keys(_checkbox).forEach(function (key) {
|
|
|
25
25
|
}
|
|
26
26
|
});
|
|
27
27
|
});
|
|
28
|
+
var _input = require("./input");
|
|
29
|
+
Object.keys(_input).forEach(function (key) {
|
|
30
|
+
if (key === "default" || key === "__esModule") return;
|
|
31
|
+
if (key in exports && exports[key] === _input[key]) return;
|
|
32
|
+
Object.defineProperty(exports, key, {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
get: function () {
|
|
35
|
+
return _input[key];
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
});
|
|
39
|
+
var _pagination = require("./pagination");
|
|
40
|
+
Object.keys(_pagination).forEach(function (key) {
|
|
41
|
+
if (key === "default" || key === "__esModule") return;
|
|
42
|
+
if (key in exports && exports[key] === _pagination[key]) return;
|
|
43
|
+
Object.defineProperty(exports, key, {
|
|
44
|
+
enumerable: true,
|
|
45
|
+
get: function () {
|
|
46
|
+
return _pagination[key];
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
});
|
|
28
50
|
var _radio = require("./radio");
|
|
29
51
|
Object.keys(_radio).forEach(function (key) {
|
|
30
52
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -47,6 +69,28 @@ Object.keys(_select).forEach(function (key) {
|
|
|
47
69
|
}
|
|
48
70
|
});
|
|
49
71
|
});
|
|
72
|
+
var _shared = require("./shared");
|
|
73
|
+
Object.keys(_shared).forEach(function (key) {
|
|
74
|
+
if (key === "default" || key === "__esModule") return;
|
|
75
|
+
if (key in exports && exports[key] === _shared[key]) return;
|
|
76
|
+
Object.defineProperty(exports, key, {
|
|
77
|
+
enumerable: true,
|
|
78
|
+
get: function () {
|
|
79
|
+
return _shared[key];
|
|
80
|
+
}
|
|
81
|
+
});
|
|
82
|
+
});
|
|
83
|
+
var _spinner = require("./spinner");
|
|
84
|
+
Object.keys(_spinner).forEach(function (key) {
|
|
85
|
+
if (key === "default" || key === "__esModule") return;
|
|
86
|
+
if (key in exports && exports[key] === _spinner[key]) return;
|
|
87
|
+
Object.defineProperty(exports, key, {
|
|
88
|
+
enumerable: true,
|
|
89
|
+
get: function () {
|
|
90
|
+
return _spinner[key];
|
|
91
|
+
}
|
|
92
|
+
});
|
|
93
|
+
});
|
|
50
94
|
var _svg = require("./svg");
|
|
51
95
|
Object.keys(_svg).forEach(function (key) {
|
|
52
96
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/input/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _InputBase = require("./InputBase");
|
|
7
|
+
Object.keys(_InputBase).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _InputBase[key]) return;
|
|
10
|
+
Object.defineProperty(exports, key, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () {
|
|
13
|
+
return _InputBase[key];
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
var _PasswordInput = require("./PasswordInput");
|
|
18
|
+
Object.keys(_PasswordInput).forEach(function (key) {
|
|
19
|
+
if (key === "default" || key === "__esModule") return;
|
|
20
|
+
if (key in exports && exports[key] === _PasswordInput[key]) return;
|
|
21
|
+
Object.defineProperty(exports, key, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function () {
|
|
24
|
+
return _PasswordInput[key];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/pagination/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/pagination/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC"}
|
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
+
var _NavButton = require("./NavButton");
|
|
7
|
+
Object.keys(_NavButton).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _NavButton[key]) return;
|
|
10
|
+
Object.defineProperty(exports, key, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () {
|
|
13
|
+
return _NavButton[key];
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|
|
6
17
|
var _Pagination = require("./Pagination");
|
|
7
18
|
Object.keys(_Pagination).forEach(function (key) {
|
|
8
19
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/shared/hintText/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _HintText = require("./HintText");
|
|
7
|
+
Object.keys(_HintText).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _HintText[key]) return;
|
|
10
|
+
Object.defineProperty(exports, key, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () {
|
|
13
|
+
return _HintText[key];
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/shared/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _hintText = require("./hintText");
|
|
7
|
+
Object.keys(_hintText).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _hintText[key]) return;
|
|
10
|
+
Object.defineProperty(exports, key, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () {
|
|
13
|
+
return _hintText[key];
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
var _label = require("./label");
|
|
18
|
+
Object.keys(_label).forEach(function (key) {
|
|
19
|
+
if (key === "default" || key === "__esModule") return;
|
|
20
|
+
if (key in exports && exports[key] === _label[key]) return;
|
|
21
|
+
Object.defineProperty(exports, key, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function () {
|
|
24
|
+
return _label[key];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/shared/label/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _Label = require("./Label");
|
|
7
|
+
Object.keys(_Label).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _Label[key]) return;
|
|
10
|
+
Object.defineProperty(exports, key, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () {
|
|
13
|
+
return _Label[key];
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/spinner/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _Spinner = require("./Spinner");
|
|
7
|
+
Object.keys(_Spinner).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _Spinner[key]) return;
|
|
10
|
+
Object.defineProperty(exports, key, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () {
|
|
13
|
+
return _Spinner[key];
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|