@sk-web-gui/react 0.1.61 → 0.1.63
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/LICENSE +21 -21
- package/README.md +5 -5
- package/dist/cjs/index.js +12 -62
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +33 -31
- package/package.json +31 -29
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2021 Sundsvalls Kommun
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021 Sundsvalls Kommun
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
## Installation
|
|
2
|
-
|
|
3
|
-
```sh
|
|
4
|
-
yarn add @sk-web-gui/react
|
|
5
|
-
```
|
|
1
|
+
## Installation
|
|
2
|
+
|
|
3
|
+
```sh
|
|
4
|
+
yarn add @sk-web-gui/react
|
|
5
|
+
```
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,249 +1,199 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
|
-
|
|
5
4
|
var _alert = require("@sk-web-gui/alert");
|
|
6
|
-
|
|
7
5
|
Object.keys(_alert).forEach(function (key) {
|
|
8
6
|
if (key === "default" || key === "__esModule") return;
|
|
9
7
|
if (key in exports && exports[key] === _alert[key]) return;
|
|
10
8
|
exports[key] = _alert[key];
|
|
11
9
|
});
|
|
12
|
-
|
|
10
|
+
var _alertBanner = require("@sk-web-gui/alert-banner");
|
|
11
|
+
Object.keys(_alertBanner).forEach(function (key) {
|
|
12
|
+
if (key === "default" || key === "__esModule") return;
|
|
13
|
+
if (key in exports && exports[key] === _alertBanner[key]) return;
|
|
14
|
+
exports[key] = _alertBanner[key];
|
|
15
|
+
});
|
|
13
16
|
var _breadcrumb = require("@sk-web-gui/breadcrumb");
|
|
14
|
-
|
|
15
17
|
Object.keys(_breadcrumb).forEach(function (key) {
|
|
16
18
|
if (key === "default" || key === "__esModule") return;
|
|
17
19
|
if (key in exports && exports[key] === _breadcrumb[key]) return;
|
|
18
20
|
exports[key] = _breadcrumb[key];
|
|
19
21
|
});
|
|
20
|
-
|
|
21
22
|
var _button = require("@sk-web-gui/button");
|
|
22
|
-
|
|
23
23
|
Object.keys(_button).forEach(function (key) {
|
|
24
24
|
if (key === "default" || key === "__esModule") return;
|
|
25
25
|
if (key in exports && exports[key] === _button[key]) return;
|
|
26
26
|
exports[key] = _button[key];
|
|
27
27
|
});
|
|
28
|
-
|
|
29
28
|
var _checkbox = require("@sk-web-gui/checkbox");
|
|
30
|
-
|
|
31
29
|
Object.keys(_checkbox).forEach(function (key) {
|
|
32
30
|
if (key === "default" || key === "__esModule") return;
|
|
33
31
|
if (key in exports && exports[key] === _checkbox[key]) return;
|
|
34
32
|
exports[key] = _checkbox[key];
|
|
35
33
|
});
|
|
36
|
-
|
|
37
34
|
var _dot = require("@sk-web-gui/dot");
|
|
38
|
-
|
|
39
35
|
Object.keys(_dot).forEach(function (key) {
|
|
40
36
|
if (key === "default" || key === "__esModule") return;
|
|
41
37
|
if (key in exports && exports[key] === _dot[key]) return;
|
|
42
38
|
exports[key] = _dot[key];
|
|
43
39
|
});
|
|
44
|
-
|
|
45
40
|
var _forms = require("@sk-web-gui/forms");
|
|
46
|
-
|
|
47
41
|
Object.keys(_forms).forEach(function (key) {
|
|
48
42
|
if (key === "default" || key === "__esModule") return;
|
|
49
43
|
if (key in exports && exports[key] === _forms[key]) return;
|
|
50
44
|
exports[key] = _forms[key];
|
|
51
45
|
});
|
|
52
|
-
|
|
53
46
|
var _icon = require("@sk-web-gui/icon");
|
|
54
|
-
|
|
55
47
|
Object.keys(_icon).forEach(function (key) {
|
|
56
48
|
if (key === "default" || key === "__esModule") return;
|
|
57
49
|
if (key in exports && exports[key] === _icon[key]) return;
|
|
58
50
|
exports[key] = _icon[key];
|
|
59
51
|
});
|
|
60
|
-
|
|
61
52
|
var _image = require("@sk-web-gui/image");
|
|
62
|
-
|
|
63
53
|
Object.keys(_image).forEach(function (key) {
|
|
64
54
|
if (key === "default" || key === "__esModule") return;
|
|
65
55
|
if (key in exports && exports[key] === _image[key]) return;
|
|
66
56
|
exports[key] = _image[key];
|
|
67
57
|
});
|
|
68
|
-
|
|
69
58
|
var _link = require("@sk-web-gui/link");
|
|
70
|
-
|
|
71
59
|
Object.keys(_link).forEach(function (key) {
|
|
72
60
|
if (key === "default" || key === "__esModule") return;
|
|
73
61
|
if (key in exports && exports[key] === _link[key]) return;
|
|
74
62
|
exports[key] = _link[key];
|
|
75
63
|
});
|
|
76
|
-
|
|
77
64
|
var _message = require("@sk-web-gui/message");
|
|
78
|
-
|
|
79
65
|
Object.keys(_message).forEach(function (key) {
|
|
80
66
|
if (key === "default" || key === "__esModule") return;
|
|
81
67
|
if (key in exports && exports[key] === _message[key]) return;
|
|
82
68
|
exports[key] = _message[key];
|
|
83
69
|
});
|
|
84
|
-
|
|
85
70
|
var _notification = require("@sk-web-gui/notification");
|
|
86
|
-
|
|
87
71
|
Object.keys(_notification).forEach(function (key) {
|
|
88
72
|
if (key === "default" || key === "__esModule") return;
|
|
89
73
|
if (key in exports && exports[key] === _notification[key]) return;
|
|
90
74
|
exports[key] = _notification[key];
|
|
91
75
|
});
|
|
92
|
-
|
|
93
76
|
var _radio = require("@sk-web-gui/radio");
|
|
94
|
-
|
|
95
77
|
Object.keys(_radio).forEach(function (key) {
|
|
96
78
|
if (key === "default" || key === "__esModule") return;
|
|
97
79
|
if (key in exports && exports[key] === _radio[key]) return;
|
|
98
80
|
exports[key] = _radio[key];
|
|
99
81
|
});
|
|
100
|
-
|
|
101
82
|
var _spinner = require("@sk-web-gui/spinner");
|
|
102
|
-
|
|
103
83
|
Object.keys(_spinner).forEach(function (key) {
|
|
104
84
|
if (key === "default" || key === "__esModule") return;
|
|
105
85
|
if (key in exports && exports[key] === _spinner[key]) return;
|
|
106
86
|
exports[key] = _spinner[key];
|
|
107
87
|
});
|
|
108
|
-
|
|
109
88
|
var _switch = require("@sk-web-gui/switch");
|
|
110
|
-
|
|
111
89
|
Object.keys(_switch).forEach(function (key) {
|
|
112
90
|
if (key === "default" || key === "__esModule") return;
|
|
113
91
|
if (key in exports && exports[key] === _switch[key]) return;
|
|
114
92
|
exports[key] = _switch[key];
|
|
115
93
|
});
|
|
116
|
-
|
|
117
94
|
var _theme = require("@sk-web-gui/theme");
|
|
118
|
-
|
|
119
95
|
Object.keys(_theme).forEach(function (key) {
|
|
120
96
|
if (key === "default" || key === "__esModule") return;
|
|
121
97
|
if (key in exports && exports[key] === _theme[key]) return;
|
|
122
98
|
exports[key] = _theme[key];
|
|
123
99
|
});
|
|
124
|
-
|
|
125
100
|
var _utils = require("@sk-web-gui/utils");
|
|
126
|
-
|
|
127
101
|
Object.keys(_utils).forEach(function (key) {
|
|
128
102
|
if (key === "default" || key === "__esModule") return;
|
|
129
103
|
if (key in exports && exports[key] === _utils[key]) return;
|
|
130
104
|
exports[key] = _utils[key];
|
|
131
105
|
});
|
|
132
|
-
|
|
133
106
|
var _modal = require("@sk-web-gui/modal");
|
|
134
|
-
|
|
135
107
|
Object.keys(_modal).forEach(function (key) {
|
|
136
108
|
if (key === "default" || key === "__esModule") return;
|
|
137
109
|
if (key in exports && exports[key] === _modal[key]) return;
|
|
138
110
|
exports[key] = _modal[key];
|
|
139
111
|
});
|
|
140
|
-
|
|
141
112
|
var _accordion = require("@sk-web-gui/accordion");
|
|
142
|
-
|
|
143
113
|
Object.keys(_accordion).forEach(function (key) {
|
|
144
114
|
if (key === "default" || key === "__esModule") return;
|
|
145
115
|
if (key in exports && exports[key] === _accordion[key]) return;
|
|
146
116
|
exports[key] = _accordion[key];
|
|
147
117
|
});
|
|
148
|
-
|
|
149
118
|
var _cookieConsent = require("@sk-web-gui/cookie-consent");
|
|
150
|
-
|
|
151
119
|
Object.keys(_cookieConsent).forEach(function (key) {
|
|
152
120
|
if (key === "default" || key === "__esModule") return;
|
|
153
121
|
if (key in exports && exports[key] === _cookieConsent[key]) return;
|
|
154
122
|
exports[key] = _cookieConsent[key];
|
|
155
123
|
});
|
|
156
|
-
|
|
157
124
|
var _card = require("@sk-web-gui/card");
|
|
158
|
-
|
|
159
125
|
Object.keys(_card).forEach(function (key) {
|
|
160
126
|
if (key === "default" || key === "__esModule") return;
|
|
161
127
|
if (key in exports && exports[key] === _card[key]) return;
|
|
162
128
|
exports[key] = _card[key];
|
|
163
129
|
});
|
|
164
|
-
|
|
165
130
|
var _divider = require("@sk-web-gui/divider");
|
|
166
|
-
|
|
167
131
|
Object.keys(_divider).forEach(function (key) {
|
|
168
132
|
if (key === "default" || key === "__esModule") return;
|
|
169
133
|
if (key in exports && exports[key] === _divider[key]) return;
|
|
170
134
|
exports[key] = _divider[key];
|
|
171
135
|
});
|
|
172
|
-
|
|
173
136
|
var _sideMenu = require("@sk-web-gui/side-menu");
|
|
174
|
-
|
|
175
137
|
Object.keys(_sideMenu).forEach(function (key) {
|
|
176
138
|
if (key === "default" || key === "__esModule") return;
|
|
177
139
|
if (key in exports && exports[key] === _sideMenu[key]) return;
|
|
178
140
|
exports[key] = _sideMenu[key];
|
|
179
141
|
});
|
|
180
|
-
|
|
181
142
|
var _userMenu = require("@sk-web-gui/user-menu");
|
|
182
|
-
|
|
183
143
|
Object.keys(_userMenu).forEach(function (key) {
|
|
184
144
|
if (key === "default" || key === "__esModule") return;
|
|
185
145
|
if (key in exports && exports[key] === _userMenu[key]) return;
|
|
186
146
|
exports[key] = _userMenu[key];
|
|
187
147
|
});
|
|
188
|
-
|
|
189
148
|
var _tabMenu = require("@sk-web-gui/tab-menu");
|
|
190
|
-
|
|
191
149
|
Object.keys(_tabMenu).forEach(function (key) {
|
|
192
150
|
if (key === "default" || key === "__esModule") return;
|
|
193
151
|
if (key in exports && exports[key] === _tabMenu[key]) return;
|
|
194
152
|
exports[key] = _tabMenu[key];
|
|
195
153
|
});
|
|
196
|
-
|
|
197
154
|
var _dropdownFilter = require("@sk-web-gui/dropdown-filter");
|
|
198
|
-
|
|
199
155
|
Object.keys(_dropdownFilter).forEach(function (key) {
|
|
200
156
|
if (key === "default" || key === "__esModule") return;
|
|
201
157
|
if (key in exports && exports[key] === _dropdownFilter[key]) return;
|
|
202
158
|
exports[key] = _dropdownFilter[key];
|
|
203
159
|
});
|
|
204
|
-
|
|
160
|
+
var _dropdownSearch = require("@sk-web-gui/dropdown-search");
|
|
161
|
+
Object.keys(_dropdownSearch).forEach(function (key) {
|
|
162
|
+
if (key === "default" || key === "__esModule") return;
|
|
163
|
+
if (key in exports && exports[key] === _dropdownSearch[key]) return;
|
|
164
|
+
exports[key] = _dropdownSearch[key];
|
|
165
|
+
});
|
|
205
166
|
var _table = require("@sk-web-gui/table");
|
|
206
|
-
|
|
207
167
|
Object.keys(_table).forEach(function (key) {
|
|
208
168
|
if (key === "default" || key === "__esModule") return;
|
|
209
169
|
if (key in exports && exports[key] === _table[key]) return;
|
|
210
170
|
exports[key] = _table[key];
|
|
211
171
|
});
|
|
212
|
-
|
|
213
172
|
var _tag = require("@sk-web-gui/tag");
|
|
214
|
-
|
|
215
173
|
Object.keys(_tag).forEach(function (key) {
|
|
216
174
|
if (key === "default" || key === "__esModule") return;
|
|
217
175
|
if (key in exports && exports[key] === _tag[key]) return;
|
|
218
176
|
exports[key] = _tag[key];
|
|
219
177
|
});
|
|
220
|
-
|
|
221
178
|
var _searchBar = require("@sk-web-gui/search-bar");
|
|
222
|
-
|
|
223
179
|
Object.keys(_searchBar).forEach(function (key) {
|
|
224
180
|
if (key === "default" || key === "__esModule") return;
|
|
225
181
|
if (key in exports && exports[key] === _searchBar[key]) return;
|
|
226
182
|
exports[key] = _searchBar[key];
|
|
227
183
|
});
|
|
228
|
-
|
|
229
184
|
var _pagination = require("@sk-web-gui/pagination");
|
|
230
|
-
|
|
231
185
|
Object.keys(_pagination).forEach(function (key) {
|
|
232
186
|
if (key === "default" || key === "__esModule") return;
|
|
233
187
|
if (key in exports && exports[key] === _pagination[key]) return;
|
|
234
188
|
exports[key] = _pagination[key];
|
|
235
189
|
});
|
|
236
|
-
|
|
237
190
|
var _footer = require("@sk-web-gui/footer");
|
|
238
|
-
|
|
239
191
|
Object.keys(_footer).forEach(function (key) {
|
|
240
192
|
if (key === "default" || key === "__esModule") return;
|
|
241
193
|
if (key in exports && exports[key] === _footer[key]) return;
|
|
242
194
|
exports[key] = _footer[key];
|
|
243
195
|
});
|
|
244
|
-
|
|
245
196
|
var _header = require("@sk-web-gui/header");
|
|
246
|
-
|
|
247
197
|
Object.keys(_header).forEach(function (key) {
|
|
248
198
|
if (key === "default" || key === "__esModule") return;
|
|
249
199
|
if (key in exports && exports[key] === _header[key]) return;
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":[],"sources":["../../src/index.ts"],"sourcesContent":["export * from '@sk-web-gui/alert';\
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../../src/index.ts"],"sourcesContent":["export * from '@sk-web-gui/alert';\nexport * from '@sk-web-gui/alert-banner';\nexport * from '@sk-web-gui/breadcrumb';\nexport * from '@sk-web-gui/button';\nexport * from '@sk-web-gui/checkbox';\nexport * from '@sk-web-gui/dot';\nexport * from '@sk-web-gui/forms';\nexport * from '@sk-web-gui/icon';\nexport * from '@sk-web-gui/image';\nexport * from '@sk-web-gui/link';\nexport * from '@sk-web-gui/message';\nexport * from '@sk-web-gui/notification';\nexport * from '@sk-web-gui/radio';\nexport * from '@sk-web-gui/spinner';\nexport * from '@sk-web-gui/switch';\nexport * from '@sk-web-gui/theme';\nexport * from '@sk-web-gui/utils';\nexport * from '@sk-web-gui/modal';\n\nexport * from '@sk-web-gui/accordion';\nexport * from '@sk-web-gui/cookie-consent';\nexport * from '@sk-web-gui/card';\nexport * from '@sk-web-gui/divider';\n\nexport * from '@sk-web-gui/side-menu';\nexport * from '@sk-web-gui/user-menu';\nexport * from '@sk-web-gui/tab-menu';\n\nexport * from '@sk-web-gui/dropdown-filter';\nexport * from '@sk-web-gui/dropdown-search';\n\nexport * from '@sk-web-gui/table';\n\nexport * from '@sk-web-gui/tag';\n\nexport * from '@sk-web-gui/search-bar';\n\nexport * from '@sk-web-gui/pagination';\nexport * from '@sk-web-gui/footer';\nexport * from '@sk-web-gui/header';\n"],"mappings":";;;AAAA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AAEA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AAEA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AAEA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AAEA;AAAA;EAAA;EAAA;EAAA;AAAA;AAEA;AAAA;EAAA;EAAA;EAAA;AAAA;AAEA;AAAA;EAAA;EAAA;EAAA;AAAA;AAEA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA"}
|
package/dist/esm/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from '@sk-web-gui/alert';
|
|
2
|
+
export * from '@sk-web-gui/alert-banner';
|
|
2
3
|
export * from '@sk-web-gui/breadcrumb';
|
|
3
4
|
export * from '@sk-web-gui/button';
|
|
4
5
|
export * from '@sk-web-gui/checkbox';
|
|
@@ -23,6 +24,7 @@ export * from '@sk-web-gui/side-menu';
|
|
|
23
24
|
export * from '@sk-web-gui/user-menu';
|
|
24
25
|
export * from '@sk-web-gui/tab-menu';
|
|
25
26
|
export * from '@sk-web-gui/dropdown-filter';
|
|
27
|
+
export * from '@sk-web-gui/dropdown-search';
|
|
26
28
|
export * from '@sk-web-gui/table';
|
|
27
29
|
export * from '@sk-web-gui/tag';
|
|
28
30
|
export * from '@sk-web-gui/search-bar';
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":[],"sources":["../../src/index.ts"],"sourcesContent":["export * from '@sk-web-gui/alert';\
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../../src/index.ts"],"sourcesContent":["export * from '@sk-web-gui/alert';\nexport * from '@sk-web-gui/alert-banner';\nexport * from '@sk-web-gui/breadcrumb';\nexport * from '@sk-web-gui/button';\nexport * from '@sk-web-gui/checkbox';\nexport * from '@sk-web-gui/dot';\nexport * from '@sk-web-gui/forms';\nexport * from '@sk-web-gui/icon';\nexport * from '@sk-web-gui/image';\nexport * from '@sk-web-gui/link';\nexport * from '@sk-web-gui/message';\nexport * from '@sk-web-gui/notification';\nexport * from '@sk-web-gui/radio';\nexport * from '@sk-web-gui/spinner';\nexport * from '@sk-web-gui/switch';\nexport * from '@sk-web-gui/theme';\nexport * from '@sk-web-gui/utils';\nexport * from '@sk-web-gui/modal';\n\nexport * from '@sk-web-gui/accordion';\nexport * from '@sk-web-gui/cookie-consent';\nexport * from '@sk-web-gui/card';\nexport * from '@sk-web-gui/divider';\n\nexport * from '@sk-web-gui/side-menu';\nexport * from '@sk-web-gui/user-menu';\nexport * from '@sk-web-gui/tab-menu';\n\nexport * from '@sk-web-gui/dropdown-filter';\nexport * from '@sk-web-gui/dropdown-search';\n\nexport * from '@sk-web-gui/table';\n\nexport * from '@sk-web-gui/tag';\n\nexport * from '@sk-web-gui/search-bar';\n\nexport * from '@sk-web-gui/pagination';\nexport * from '@sk-web-gui/footer';\nexport * from '@sk-web-gui/header';\n"],"mappings":"AAAA,cAAc,mBAAmB;AACjC,cAAc,0BAA0B;AACxC,cAAc,wBAAwB;AACtC,cAAc,oBAAoB;AAClC,cAAc,sBAAsB;AACpC,cAAc,iBAAiB;AAC/B,cAAc,mBAAmB;AACjC,cAAc,kBAAkB;AAChC,cAAc,mBAAmB;AACjC,cAAc,kBAAkB;AAChC,cAAc,qBAAqB;AACnC,cAAc,0BAA0B;AACxC,cAAc,mBAAmB;AACjC,cAAc,qBAAqB;AACnC,cAAc,oBAAoB;AAClC,cAAc,mBAAmB;AACjC,cAAc,mBAAmB;AACjC,cAAc,mBAAmB;AAEjC,cAAc,uBAAuB;AACrC,cAAc,4BAA4B;AAC1C,cAAc,kBAAkB;AAChC,cAAc,qBAAqB;AAEnC,cAAc,uBAAuB;AACrC,cAAc,uBAAuB;AACrC,cAAc,sBAAsB;AAEpC,cAAc,6BAA6B;AAC3C,cAAc,6BAA6B;AAE3C,cAAc,mBAAmB;AAEjC,cAAc,iBAAiB;AAE/B,cAAc,wBAAwB;AAEtC,cAAc,wBAAwB;AACtC,cAAc,oBAAoB;AAClC,cAAc,oBAAoB"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,31 +1,33 @@
|
|
|
1
|
-
export * from '@sk-web-gui/alert';
|
|
2
|
-
export * from '@sk-web-gui/
|
|
3
|
-
export * from '@sk-web-gui/
|
|
4
|
-
export * from '@sk-web-gui/
|
|
5
|
-
export * from '@sk-web-gui/
|
|
6
|
-
export * from '@sk-web-gui/
|
|
7
|
-
export * from '@sk-web-gui/
|
|
8
|
-
export * from '@sk-web-gui/
|
|
9
|
-
export * from '@sk-web-gui/
|
|
10
|
-
export * from '@sk-web-gui/
|
|
11
|
-
export * from '@sk-web-gui/
|
|
12
|
-
export * from '@sk-web-gui/
|
|
13
|
-
export * from '@sk-web-gui/
|
|
14
|
-
export * from '@sk-web-gui/
|
|
15
|
-
export * from '@sk-web-gui/
|
|
16
|
-
export * from '@sk-web-gui/
|
|
17
|
-
export * from '@sk-web-gui/
|
|
18
|
-
export * from '@sk-web-gui/
|
|
19
|
-
export * from '@sk-web-gui/
|
|
20
|
-
export * from '@sk-web-gui/
|
|
21
|
-
export * from '@sk-web-gui/
|
|
22
|
-
export * from '@sk-web-gui/
|
|
23
|
-
export * from '@sk-web-gui/
|
|
24
|
-
export * from '@sk-web-gui/
|
|
25
|
-
export * from '@sk-web-gui/
|
|
26
|
-
export * from '@sk-web-gui/
|
|
27
|
-
export * from '@sk-web-gui/
|
|
28
|
-
export * from '@sk-web-gui/
|
|
29
|
-
export * from '@sk-web-gui/
|
|
30
|
-
export * from '@sk-web-gui/
|
|
31
|
-
export * from '@sk-web-gui/
|
|
1
|
+
export * from '@sk-web-gui/alert';
|
|
2
|
+
export * from '@sk-web-gui/alert-banner';
|
|
3
|
+
export * from '@sk-web-gui/breadcrumb';
|
|
4
|
+
export * from '@sk-web-gui/button';
|
|
5
|
+
export * from '@sk-web-gui/checkbox';
|
|
6
|
+
export * from '@sk-web-gui/dot';
|
|
7
|
+
export * from '@sk-web-gui/forms';
|
|
8
|
+
export * from '@sk-web-gui/icon';
|
|
9
|
+
export * from '@sk-web-gui/image';
|
|
10
|
+
export * from '@sk-web-gui/link';
|
|
11
|
+
export * from '@sk-web-gui/message';
|
|
12
|
+
export * from '@sk-web-gui/notification';
|
|
13
|
+
export * from '@sk-web-gui/radio';
|
|
14
|
+
export * from '@sk-web-gui/spinner';
|
|
15
|
+
export * from '@sk-web-gui/switch';
|
|
16
|
+
export * from '@sk-web-gui/theme';
|
|
17
|
+
export * from '@sk-web-gui/utils';
|
|
18
|
+
export * from '@sk-web-gui/modal';
|
|
19
|
+
export * from '@sk-web-gui/accordion';
|
|
20
|
+
export * from '@sk-web-gui/cookie-consent';
|
|
21
|
+
export * from '@sk-web-gui/card';
|
|
22
|
+
export * from '@sk-web-gui/divider';
|
|
23
|
+
export * from '@sk-web-gui/side-menu';
|
|
24
|
+
export * from '@sk-web-gui/user-menu';
|
|
25
|
+
export * from '@sk-web-gui/tab-menu';
|
|
26
|
+
export * from '@sk-web-gui/dropdown-filter';
|
|
27
|
+
export * from '@sk-web-gui/dropdown-search';
|
|
28
|
+
export * from '@sk-web-gui/table';
|
|
29
|
+
export * from '@sk-web-gui/tag';
|
|
30
|
+
export * from '@sk-web-gui/search-bar';
|
|
31
|
+
export * from '@sk-web-gui/pagination';
|
|
32
|
+
export * from '@sk-web-gui/footer';
|
|
33
|
+
export * from '@sk-web-gui/header';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sk-web-gui/react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.63",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -38,42 +38,44 @@
|
|
|
38
38
|
"react-dom": "^17.0.2"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@sk-web-gui/accordion": "0.1.
|
|
42
|
-
"@sk-web-gui/alert": "0.1.
|
|
43
|
-
"@sk-web-gui/
|
|
44
|
-
"@sk-web-gui/
|
|
45
|
-
"@sk-web-gui/
|
|
46
|
-
"@sk-web-gui/
|
|
47
|
-
"@sk-web-gui/
|
|
48
|
-
"@sk-web-gui/
|
|
49
|
-
"@sk-web-gui/
|
|
50
|
-
"@sk-web-gui/
|
|
51
|
-
"@sk-web-gui/
|
|
52
|
-
"@sk-web-gui/
|
|
53
|
-
"@sk-web-gui/
|
|
54
|
-
"@sk-web-gui/
|
|
55
|
-
"@sk-web-gui/
|
|
56
|
-
"@sk-web-gui/
|
|
57
|
-
"@sk-web-gui/
|
|
58
|
-
"@sk-web-gui/
|
|
59
|
-
"@sk-web-gui/
|
|
60
|
-
"@sk-web-gui/
|
|
61
|
-
"@sk-web-gui/
|
|
41
|
+
"@sk-web-gui/accordion": "0.1.15",
|
|
42
|
+
"@sk-web-gui/alert": "0.1.6",
|
|
43
|
+
"@sk-web-gui/alert-banner": "0.1.1",
|
|
44
|
+
"@sk-web-gui/breadcrumb": "0.1.7",
|
|
45
|
+
"@sk-web-gui/button": "0.1.7",
|
|
46
|
+
"@sk-web-gui/card": "0.1.8",
|
|
47
|
+
"@sk-web-gui/checkbox": "0.1.10",
|
|
48
|
+
"@sk-web-gui/cookie-consent": "0.1.9",
|
|
49
|
+
"@sk-web-gui/divider": "0.1.9",
|
|
50
|
+
"@sk-web-gui/dot": "0.1.6",
|
|
51
|
+
"@sk-web-gui/dropdown-filter": "0.1.7",
|
|
52
|
+
"@sk-web-gui/dropdown-search": "0.1.2",
|
|
53
|
+
"@sk-web-gui/footer": "0.1.3",
|
|
54
|
+
"@sk-web-gui/forms": "0.1.10",
|
|
55
|
+
"@sk-web-gui/header": "0.1.4",
|
|
56
|
+
"@sk-web-gui/icon": "0.1.6",
|
|
57
|
+
"@sk-web-gui/image": "0.1.6",
|
|
58
|
+
"@sk-web-gui/link": "0.1.7",
|
|
59
|
+
"@sk-web-gui/message": "0.1.13",
|
|
60
|
+
"@sk-web-gui/modal": "0.1.2",
|
|
61
|
+
"@sk-web-gui/notification": "0.1.13",
|
|
62
|
+
"@sk-web-gui/pagination": "0.1.10",
|
|
63
|
+
"@sk-web-gui/radio": "0.1.11",
|
|
62
64
|
"@sk-web-gui/search-bar": "0.1.4",
|
|
63
65
|
"@sk-web-gui/side-menu": "0.1.5",
|
|
64
|
-
"@sk-web-gui/spinner": "0.1.
|
|
65
|
-
"@sk-web-gui/switch": "0.1.
|
|
66
|
+
"@sk-web-gui/spinner": "0.1.6",
|
|
67
|
+
"@sk-web-gui/switch": "0.1.11",
|
|
66
68
|
"@sk-web-gui/tab-menu": "0.1.6",
|
|
67
|
-
"@sk-web-gui/table": "0.1.
|
|
68
|
-
"@sk-web-gui/tag": "0.1.
|
|
69
|
+
"@sk-web-gui/table": "0.1.18",
|
|
70
|
+
"@sk-web-gui/tag": "0.1.11",
|
|
69
71
|
"@sk-web-gui/text-editor": "0.1.4",
|
|
70
|
-
"@sk-web-gui/theme": "0.1.
|
|
71
|
-
"@sk-web-gui/user-menu": "0.1.
|
|
72
|
+
"@sk-web-gui/theme": "0.1.6",
|
|
73
|
+
"@sk-web-gui/user-menu": "0.1.19",
|
|
72
74
|
"@sk-web-gui/utils": "0.1.4"
|
|
73
75
|
},
|
|
74
76
|
"peerDependencies": {
|
|
75
77
|
"react": ">=16.8.6",
|
|
76
78
|
"react-dom": ">=16.8.6"
|
|
77
79
|
},
|
|
78
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "a14791d11b9d1fa052b5135525d06707fc3d9e7d"
|
|
79
81
|
}
|