@safe-engine/pixi 7.0.3 → 8.0.4

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 (46) hide show
  1. package/README.md +4 -4
  2. package/dist/app.d.ts +2 -2
  3. package/dist/app.d.ts.map +1 -1
  4. package/dist/app.js +20 -17
  5. package/dist/components/GUIComponent.d.ts +6 -4
  6. package/dist/components/GUIComponent.d.ts.map +1 -1
  7. package/dist/components/GUIComponent.js +1 -2
  8. package/dist/components/NodeComp.js +1 -1
  9. package/dist/components/RenderComponent.d.ts +1 -1
  10. package/dist/core/LoadingBar.js +8 -8
  11. package/dist/systems/GUISystem.d.ts.map +1 -1
  12. package/dist/systems/GUISystem.js +2 -7
  13. package/dist/systems/RenderSystem.d.ts.map +1 -1
  14. package/dist/systems/RenderSystem.js +3 -2
  15. package/package.json +5 -5
  16. package/.github/workflows/npm-publish.yml +0 -35
  17. package/dist/components/EnhancedComponent.d.ts +0 -22
  18. package/dist/components/EnhancedComponent.d.ts.map +0 -1
  19. package/dist/components/EnhancedComponent.js +0 -62
  20. package/dist/core/Scene.d.ts +0 -6
  21. package/dist/core/Scene.d.ts.map +0 -1
  22. package/dist/core/Scene.js +0 -39
  23. package/dist/core/Vec2.d.ts +0 -20
  24. package/dist/core/Vec2.d.ts.map +0 -1
  25. package/dist/core/Vec2.js +0 -70
  26. package/dist/core/decorator.d.ts +0 -9
  27. package/dist/core/decorator.d.ts.map +0 -1
  28. package/dist/core/decorator.js +0 -46
  29. package/dist/gworld.d.ts +0 -8
  30. package/dist/gworld.d.ts.map +0 -1
  31. package/dist/gworld.js +0 -43
  32. package/dist/helper/utils.d.ts +0 -11
  33. package/dist/helper/utils.d.ts.map +0 -1
  34. package/dist/helper/utils.js +0 -40
  35. package/src/app.ts +0 -53
  36. package/src/components/GUIComponent.ts +0 -141
  37. package/src/components/NodeComp.ts +0 -416
  38. package/src/components/RenderComponent.ts +0 -66
  39. package/src/core/Color.ts +0 -3
  40. package/src/core/LoadingBar.ts +0 -63
  41. package/src/core/Size.ts +0 -21
  42. package/src/helper/html-text-parser.ts +0 -364
  43. package/src/index.ts +0 -7
  44. package/src/systems/GUISystem.ts +0 -80
  45. package/src/systems/RenderSystem.ts +0 -70
  46. package/tsconfig.json +0 -24
package/tsconfig.json DELETED
@@ -1,24 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "lib": [
4
- "es2017",
5
- "dom"
6
- ],
7
- "outDir": "dist",
8
- "target": "ES6",
9
- "declaration": true,
10
- "declarationMap": true,
11
- "skipLibCheck": true,
12
- "esModuleInterop": true,
13
- "allowSyntheticDefaultImports": true,
14
- "strict": false,
15
- "forceConsistentCasingInFileNames": true,
16
- "module": "CommonJS",
17
- "moduleResolution": "node",
18
- "resolveJsonModule": true,
19
- "isolatedModules": true,
20
- "experimentalDecorators": true,
21
- "emitDecoratorMetadata": true,
22
- "noEmit": false
23
- }
24
- }