@echojs-ecosystem/framework 0.1.0 → 0.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/core.d.ts +27 -0
- package/dist/index.d.ts +2 -28
- package/package.json +1 -1
package/dist/core.d.ts
CHANGED
|
@@ -1 +1,28 @@
|
|
|
1
1
|
export * from '@echojs-ecosystem/core';
|
|
2
|
+
import '@echojs-ecosystem/devtools';
|
|
3
|
+
import '@echojs-ecosystem/form';
|
|
4
|
+
import '@echojs-ecosystem/hyperdom/lifecycle/mount';
|
|
5
|
+
import '@echojs-ecosystem/hyperdom';
|
|
6
|
+
import '@echojs-ecosystem/i18n';
|
|
7
|
+
import '@echojs-ecosystem/persist';
|
|
8
|
+
import '@echojs-ecosystem/query';
|
|
9
|
+
import '@echojs-ecosystem/reactivity';
|
|
10
|
+
import '@echojs-ecosystem/router';
|
|
11
|
+
import '@echojs-ecosystem/store';
|
|
12
|
+
import '@echojs-ecosystem/ui';
|
|
13
|
+
import '@echojs-ecosystem/ui/button';
|
|
14
|
+
import '@echojs-ecosystem/ui/checkbox';
|
|
15
|
+
import '@echojs-ecosystem/ui/core';
|
|
16
|
+
import '@echojs-ecosystem/ui/field';
|
|
17
|
+
import '@echojs-ecosystem/ui/icon-button';
|
|
18
|
+
import '@echojs-ecosystem/ui/input-mask';
|
|
19
|
+
import '@echojs-ecosystem/ui/input-otp';
|
|
20
|
+
import '@echojs-ecosystem/ui/input-tags';
|
|
21
|
+
import '@echojs-ecosystem/ui/input';
|
|
22
|
+
import '@echojs-ecosystem/ui/label';
|
|
23
|
+
import '@echojs-ecosystem/ui/primitives';
|
|
24
|
+
import '@echojs-ecosystem/ui/provider';
|
|
25
|
+
import '@echojs-ecosystem/ui/textarea';
|
|
26
|
+
import '@echojs-ecosystem/ui/theme';
|
|
27
|
+
import '@echojs-ecosystem/ui/utils';
|
|
28
|
+
import '@echojs-ecosystem/url-state';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,28 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import '@echojs-ecosystem/router';
|
|
4
|
-
import '@echojs-ecosystem/form';
|
|
5
|
-
import '@echojs-ecosystem/persist';
|
|
6
|
-
import '@echojs-ecosystem/store';
|
|
7
|
-
import '@echojs-ecosystem/query';
|
|
8
|
-
import '@echojs-ecosystem/i18n';
|
|
9
|
-
import '@echojs-ecosystem/devtools';
|
|
10
|
-
import '@echojs-ecosystem/ui';
|
|
11
|
-
import '@echojs-ecosystem/hyperdom';
|
|
12
|
-
import '@echojs-ecosystem/hyperdom/lifecycle/mount';
|
|
13
|
-
import '@echojs-ecosystem/url-state';
|
|
14
|
-
import '@echojs-ecosystem/ui/button';
|
|
15
|
-
import '@echojs-ecosystem/ui/icon-button';
|
|
16
|
-
import '@echojs-ecosystem/ui/input';
|
|
17
|
-
import '@echojs-ecosystem/ui/input-mask';
|
|
18
|
-
import '@echojs-ecosystem/ui/input-otp';
|
|
19
|
-
import '@echojs-ecosystem/ui/input-tags';
|
|
20
|
-
import '@echojs-ecosystem/ui/textarea';
|
|
21
|
-
import '@echojs-ecosystem/ui/label';
|
|
22
|
-
import '@echojs-ecosystem/ui/field';
|
|
23
|
-
import '@echojs-ecosystem/ui/checkbox';
|
|
24
|
-
import '@echojs-ecosystem/ui/provider';
|
|
25
|
-
import '@echojs-ecosystem/ui/theme';
|
|
26
|
-
import '@echojs-ecosystem/ui/core';
|
|
27
|
-
import '@echojs-ecosystem/ui/utils';
|
|
28
|
-
import '@echojs-ecosystem/ui/primitives';
|
|
1
|
+
|
|
2
|
+
export { }
|