@chamn/render 0.0.9 → 0.0.11

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 (52) hide show
  1. package/dist/commonComponent/index.d.ts +12 -0
  2. package/dist/const/index.d.ts +2 -0
  3. package/dist/core/ReactErrorBoundary.d.ts +26 -0
  4. package/dist/core/adapter.d.ts +64 -0
  5. package/dist/core/adapterReact.d.ts +108 -0
  6. package/dist/core/designReactRender.d.ts +47 -0
  7. package/dist/core/refManager.d.ts +7 -0
  8. package/dist/core/render.d.ts +32 -0
  9. package/dist/core/storeManager.d.ts +11 -0
  10. package/dist/core/type.d.ts +9 -0
  11. package/dist/{index.cjs.js → index.js} +2 -2
  12. package/dist/index.js.map +1 -0
  13. package/dist/{index.es.js → index.mjs} +94 -83
  14. package/dist/index.mjs.map +1 -0
  15. package/dist/index.umd.js +1 -1
  16. package/dist/index.umd.js.map +1 -1
  17. package/dist/util/assetsLoader.d.ts +15 -0
  18. package/dist/util/index.d.ts +20 -0
  19. package/package.json +14 -9
  20. package/.eslintignore +0 -1
  21. package/.eslintrc.js +0 -30
  22. package/.prettierrc.json +0 -7
  23. package/CHANGELOG.md +0 -40
  24. package/__tests__/demo.test.ts +0 -3
  25. package/build.config.ts +0 -20
  26. package/dist/index.cjs.js.map +0 -1
  27. package/dist/index.es.js.map +0 -1
  28. package/index.html +0 -16
  29. package/jest.config.js +0 -196
  30. package/public/vite.svg +0 -1
  31. package/src/_dev_/components.tsx +0 -12
  32. package/src/_dev_/dev.tsx +0 -12
  33. package/src/_dev_/index.css +0 -13
  34. package/src/_dev_/page/DesignerRenderDemo.tsx +0 -65
  35. package/src/_dev_/page/RenderDemo.tsx +0 -60
  36. package/src/_dev_/router.tsx +0 -15
  37. package/src/commonComponent/index.tsx +0 -184
  38. package/src/const/index.ts +0 -5
  39. package/src/core/ReactErrorBoundary.ts +0 -91
  40. package/src/core/adapter.ts +0 -133
  41. package/src/core/adapterReact.ts +0 -734
  42. package/src/core/designReactRender.ts +0 -325
  43. package/src/core/refManager.ts +0 -18
  44. package/src/core/render.ts +0 -123
  45. package/src/core/storeManager.ts +0 -57
  46. package/src/core/type.ts +0 -10
  47. package/src/util/assetsLoader.ts +0 -73
  48. package/src/util/index.ts +0 -164
  49. package/src/vite-env.d.ts +0 -1
  50. package/stats.html +0 -6177
  51. package/tsconfig.json +0 -26
  52. /package/{src/index.ts → dist/index.d.ts} +0 -0
package/tsconfig.json DELETED
@@ -1,26 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ESNext",
4
- "useDefineForClassFields": true,
5
- "lib": [
6
- "DOM",
7
- "DOM.Iterable",
8
- "ESNext"
9
- ],
10
- "allowJs": false,
11
- "skipLibCheck": true,
12
- "esModuleInterop": false,
13
- "allowSyntheticDefaultImports": true,
14
- "strict": true,
15
- "forceConsistentCasingInFileNames": true,
16
- "module": "ESNext",
17
- "moduleResolution": "Node",
18
- "resolveJsonModule": true,
19
- "isolatedModules": false,
20
- "noEmit": true,
21
- "jsx": "react"
22
- },
23
- "include": [
24
- "src"
25
- ],
26
- }
File without changes