@yoyaflow/yoya-ui 0.3.2 → 0.4.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.
Files changed (42) hide show
  1. package/README.md +407 -124
  2. package/README.zh-CN.md +375 -131
  3. package/dist/yoya.core.chunk.js +4275 -0
  4. package/dist/yoya.core.chunk.min.js +9 -0
  5. package/dist/yoya.core.js +3 -1779
  6. package/dist/yoya.core.min.js +1 -0
  7. package/dist/yoya.devtools.js +3 -0
  8. package/dist/yoya.devtools.min.js +1 -0
  9. package/dist/yoya.echart.js +182 -592
  10. package/dist/yoya.echart.min.js +1 -0
  11. package/dist/yoya.router.full.js +5271 -0
  12. package/dist/yoya.router.full.min.js +43 -0
  13. package/dist/yoya.router.js +1330 -0
  14. package/dist/yoya.router.min.js +35 -0
  15. package/dist/yoya.three.js +360 -0
  16. package/dist/yoya.three.min.js +1 -0
  17. package/dist/yoya.ui-router.full.js +21843 -0
  18. package/dist/yoya.ui-router.full.min.js +43 -0
  19. package/dist/yoya.ui-router.umd.js +43 -0
  20. package/dist/yoya.ui-router.umd.min.js +43 -0
  21. package/dist/yoya.ui.css +80 -0
  22. package/dist/yoya.ui.full.js +20169 -0
  23. package/dist/yoya.ui.full.min.js +1 -0
  24. package/dist/yoya.ui.js +12227 -9083
  25. package/dist/yoya.ui.min.js +1 -0
  26. package/package.json +27 -11
  27. package/types/core.d.ts +122 -1
  28. package/types/data-display.d.ts +44 -2
  29. package/types/devtools.d.ts +156 -0
  30. package/types/feedback.d.ts +13 -0
  31. package/types/form.d.ts +1 -1
  32. package/types/index.d.ts +1 -1
  33. package/types/ssr.d.ts +27 -7
  34. package/types/three.d.ts +77 -0
  35. package/types/yoya.devtools.d.ts +5 -0
  36. package/types/yoya.router.d.ts +7 -0
  37. package/types/yoya.three.d.ts +4 -0
  38. package/types/yoya.ui-router.d.ts +19 -0
  39. package/types/yoya.ui.d.ts +2 -7
  40. package/dist/yoya-ui.umd.js +0 -35
  41. package/dist/yoya.ssr.js +0 -2856
  42. package/types/yoya.ssr.d.ts +0 -9
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Entry types for the self-contained `yoya.ui-router.full` bundle:
3
+ * core + ui (components / layout / theme) + router + SSR primitives.
4
+ */
5
+ export * from './core.js';
6
+ export * from './html.js';
7
+ export * from './svg.js';
8
+ export * from './layout.js';
9
+ export * from './actions.js';
10
+ export * from './navigation.js';
11
+ export * from './feedback.js';
12
+ export * from './form.js';
13
+ export * from './data-display.js';
14
+ export * from './async.js';
15
+ export * from './i18n.js';
16
+ export * from './theme.js';
17
+ export * from './router.js';
18
+ export * from './effects.js';
19
+ export * from './ssr.js';
@@ -1,9 +1,7 @@
1
1
  /**
2
- * Entry types for the `yoya-ui` root export (and `yoya-ui/ui`).
2
+ * Entry types for `yoya-ui/ui`: components + layout + theme.
3
+ * Core is provided by `yoya-ui/core`; router/SSR by `yoya-ui/router`.
3
4
  */
4
- export * from './core.js';
5
- export * from './html.js';
6
- export * from './svg.js';
7
5
  export * from './layout.js';
8
6
  export * from './actions.js';
9
7
  export * from './navigation.js';
@@ -13,7 +11,4 @@ export * from './data-display.js';
13
11
  export * from './async.js';
14
12
  export * from './i18n.js';
15
13
  export * from './theme.js';
16
- export * from './router.js';
17
14
  export * from './effects.js';
18
- export { VEchart, vEchart } from './chart.js';
19
- export * from './ssr.js';