@esportsplus/ui 0.18.0 → 0.18.1

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.
@@ -1 +1,10 @@
1
+ import checkbox from './checkbox.js';
2
+ import description from './description.js';
3
+ import input from './input.js';
4
+ import select from './select.js';
5
+ import title from './title.js';
1
6
  import './scss/index.scss';
7
+ const { checkbox: cb, radio, switch: sw } = checkbox;
8
+ const { file, text, textarea } = input;
9
+ export default { checkbox: cb, description, file, radio, select, switch: sw, textarea, text, title };
10
+ export { cb as checkbox, description, file, radio, select, sw as switch, textarea, text, title };
package/package.json CHANGED
@@ -47,7 +47,7 @@
47
47
  "private": false,
48
48
  "sideEffects": false,
49
49
  "type": "module",
50
- "version": "0.18.0",
50
+ "version": "0.18.1",
51
51
  "scripts": {
52
52
  "build": "run-s build:vite build:ts",
53
53
  "build:ts": "tsc && tsc-alias",
@@ -1,10 +1,15 @@
1
1
  import checkbox from './checkbox';
2
2
  import description from './description';
3
- import select from './select';
4
3
  import input from './input';
4
+ import select from './select';
5
5
  import title from './title';
6
6
  import './scss/index.scss';
7
7
 
8
8
 
9
- // export default { checkbox, description, file, select, switch: s, textarea, text, title };
10
- // export { checkbox, description, file, select, s as switch, textarea, text, title };
9
+ const { checkbox: cb, radio, switch: sw } = checkbox;
10
+
11
+ const { file, text, textarea } = input;
12
+
13
+
14
+ export default { checkbox: cb, description, file, radio, select, switch: sw, textarea, text, title };
15
+ export { cb as checkbox, description, file, radio, select, sw as switch, textarea, text, title };