@rb-games/core 0.1.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/README.md +488 -0
- package/dist/devtools/DraggableController.d.ts +10 -0
- package/dist/devtools/DraggableController.d.ts.map +1 -0
- package/dist/devtools/ResizableController.d.ts +19 -0
- package/dist/devtools/ResizableController.d.ts.map +1 -0
- package/dist/devtools/index.d.ts +7 -0
- package/dist/devtools/index.d.ts.map +1 -0
- package/dist/devtools/index.js +884 -0
- package/dist/devtools/index.js.map +1 -0
- package/dist/devtools/overlayPlugin.d.ts +3 -0
- package/dist/devtools/overlayPlugin.d.ts.map +1 -0
- package/dist/devtools/spinePropertiesPlugin.d.ts +3 -0
- package/dist/devtools/spinePropertiesPlugin.d.ts.map +1 -0
- package/dist/devtools/spriteTextPropertiesPlugin.d.ts +3 -0
- package/dist/devtools/spriteTextPropertiesPlugin.d.ts.map +1 -0
- package/dist/devtools/treePlugin.d.ts +7 -0
- package/dist/devtools/treePlugin.d.ts.map +1 -0
- package/dist/engine/PixiEngine.d.ts +404 -0
- package/dist/engine/PixiEngine.d.ts.map +1 -0
- package/dist/engine/index.d.ts +2 -0
- package/dist/engine/index.d.ts.map +1 -0
- package/dist/engine/index.js +1818 -0
- package/dist/engine/index.js.map +1 -0
- package/dist/filters/ChromaKeyFilter.d.ts +64 -0
- package/dist/filters/ChromaKeyFilter.d.ts.map +1 -0
- package/dist/filters/index.d.ts +2 -0
- package/dist/filters/index.d.ts.map +1 -0
- package/dist/filters/index.js +248 -0
- package/dist/filters/index.js.map +1 -0
- package/dist/helpers/AssetHelper.d.ts +117 -0
- package/dist/helpers/AssetHelper.d.ts.map +1 -0
- package/dist/helpers/SVGAssetHelper.d.ts +397 -0
- package/dist/helpers/SVGAssetHelper.d.ts.map +1 -0
- package/dist/helpers/SVGLoader.d.ts +46 -0
- package/dist/helpers/SVGLoader.d.ts.map +1 -0
- package/dist/helpers/SVGParser.d.ts +121 -0
- package/dist/helpers/SVGParser.d.ts.map +1 -0
- package/dist/helpers/eventBridge.d.ts +150 -0
- package/dist/helpers/eventBridge.d.ts.map +1 -0
- package/dist/helpers/index.d.ts +8 -0
- package/dist/helpers/index.d.ts.map +1 -0
- package/dist/helpers/index.js +702 -0
- package/dist/helpers/index.js.map +1 -0
- package/dist/helpers/mergeUtils.d.ts +21 -0
- package/dist/helpers/mergeUtils.d.ts.map +1 -0
- package/dist/helpers/resolvePublicPath.d.ts +6 -0
- package/dist/helpers/resolvePublicPath.d.ts.map +1 -0
- package/dist/i18n/index.d.ts +2 -0
- package/dist/i18n/index.d.ts.map +1 -0
- package/dist/i18n/index.js +527 -0
- package/dist/i18n/index.js.map +1 -0
- package/dist/i18n/sharedI18n.d.ts +11 -0
- package/dist/i18n/sharedI18n.d.ts.map +1 -0
- package/dist/layout/Align.d.ts +126 -0
- package/dist/layout/Align.d.ts.map +1 -0
- package/dist/layout/Bounds.d.ts +120 -0
- package/dist/layout/Bounds.d.ts.map +1 -0
- package/dist/layout/Distribute.d.ts +103 -0
- package/dist/layout/Distribute.d.ts.map +1 -0
- package/dist/layout/Flow.d.ts +213 -0
- package/dist/layout/Flow.d.ts.map +1 -0
- package/dist/layout/PositionUtils.d.ts +57 -0
- package/dist/layout/PositionUtils.d.ts.map +1 -0
- package/dist/layout/index.d.ts +6 -0
- package/dist/layout/index.d.ts.map +1 -0
- package/dist/layout/index.js +673 -0
- package/dist/layout/index.js.map +1 -0
- package/dist/particle/Emitter.d.ts +290 -0
- package/dist/particle/Emitter.d.ts.map +1 -0
- package/dist/particle/EmitterConfig.d.ts +228 -0
- package/dist/particle/EmitterConfig.d.ts.map +1 -0
- package/dist/particle/LinkedListContainer.d.ts +7 -0
- package/dist/particle/LinkedListContainer.d.ts.map +1 -0
- package/dist/particle/Particle.d.ts +63 -0
- package/dist/particle/Particle.d.ts.map +1 -0
- package/dist/particle/ParticleUtils.d.ts +97 -0
- package/dist/particle/ParticleUtils.d.ts.map +1 -0
- package/dist/particle/PropertyList.d.ts +40 -0
- package/dist/particle/PropertyList.d.ts.map +1 -0
- package/dist/particle/PropertyNode.d.ts +74 -0
- package/dist/particle/PropertyNode.d.ts.map +1 -0
- package/dist/particle/SpineEmitter.d.ts +55 -0
- package/dist/particle/SpineEmitter.d.ts.map +1 -0
- package/dist/particle/SpineParticle.d.ts +74 -0
- package/dist/particle/SpineParticle.d.ts.map +1 -0
- package/dist/particle/behaviors/AccelerationMovement.d.ts +62 -0
- package/dist/particle/behaviors/AccelerationMovement.d.ts.map +1 -0
- package/dist/particle/behaviors/Alpha.d.ts +60 -0
- package/dist/particle/behaviors/Alpha.d.ts.map +1 -0
- package/dist/particle/behaviors/AnimatedTexture.d.ts +111 -0
- package/dist/particle/behaviors/AnimatedTexture.d.ts.map +1 -0
- package/dist/particle/behaviors/Behaviors.d.ts +71 -0
- package/dist/particle/behaviors/Behaviors.d.ts.map +1 -0
- package/dist/particle/behaviors/BlendMode.d.ts +31 -0
- package/dist/particle/behaviors/BlendMode.d.ts.map +1 -0
- package/dist/particle/behaviors/BurstSpawn.d.ts +43 -0
- package/dist/particle/behaviors/BurstSpawn.d.ts.map +1 -0
- package/dist/particle/behaviors/Color.d.ts +60 -0
- package/dist/particle/behaviors/Color.d.ts.map +1 -0
- package/dist/particle/behaviors/MultiStateAnimatedTexture.d.ts +99 -0
- package/dist/particle/behaviors/MultiStateAnimatedTexture.d.ts.map +1 -0
- package/dist/particle/behaviors/OrderedTexture.d.ts +33 -0
- package/dist/particle/behaviors/OrderedTexture.d.ts.map +1 -0
- package/dist/particle/behaviors/PathMovement.d.ts +68 -0
- package/dist/particle/behaviors/PathMovement.d.ts.map +1 -0
- package/dist/particle/behaviors/PointSpawn.d.ts +21 -0
- package/dist/particle/behaviors/PointSpawn.d.ts.map +1 -0
- package/dist/particle/behaviors/RandomColor.d.ts +17 -0
- package/dist/particle/behaviors/RandomColor.d.ts.map +1 -0
- package/dist/particle/behaviors/RandomTexture.d.ts +32 -0
- package/dist/particle/behaviors/RandomTexture.d.ts.map +1 -0
- package/dist/particle/behaviors/Rotation.d.ts +114 -0
- package/dist/particle/behaviors/Rotation.d.ts.map +1 -0
- package/dist/particle/behaviors/Scale.d.ts +74 -0
- package/dist/particle/behaviors/Scale.d.ts.map +1 -0
- package/dist/particle/behaviors/ShapeSpawn.d.ts +58 -0
- package/dist/particle/behaviors/ShapeSpawn.d.ts.map +1 -0
- package/dist/particle/behaviors/SingleTexture.d.ts +32 -0
- package/dist/particle/behaviors/SingleTexture.d.ts.map +1 -0
- package/dist/particle/behaviors/SpeedMovement.d.ts +76 -0
- package/dist/particle/behaviors/SpeedMovement.d.ts.map +1 -0
- package/dist/particle/behaviors/SpineTexture.d.ts +173 -0
- package/dist/particle/behaviors/SpineTexture.d.ts.map +1 -0
- package/dist/particle/behaviors/ZindexBehavior.d.ts +16 -0
- package/dist/particle/behaviors/ZindexBehavior.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/Types.d.ts +104 -0
- package/dist/particle/behaviors/editor/Types.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/AccelerationMovement.d.ts +2 -0
- package/dist/particle/behaviors/editor/behaviors/AccelerationMovement.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/Alpha.d.ts +2 -0
- package/dist/particle/behaviors/editor/behaviors/Alpha.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/AnimatedTexture.d.ts +2 -0
- package/dist/particle/behaviors/editor/behaviors/AnimatedTexture.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/BlendMode.d.ts +2 -0
- package/dist/particle/behaviors/editor/behaviors/BlendMode.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/BurstSpawn.d.ts +2 -0
- package/dist/particle/behaviors/editor/behaviors/BurstSpawn.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/Color.d.ts +2 -0
- package/dist/particle/behaviors/editor/behaviors/Color.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/OrderedTexture.d.ts +2 -0
- package/dist/particle/behaviors/editor/behaviors/OrderedTexture.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/PathMovement.d.ts +2 -0
- package/dist/particle/behaviors/editor/behaviors/PathMovement.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/PointSpawn.d.ts +2 -0
- package/dist/particle/behaviors/editor/behaviors/PointSpawn.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/RandomTexture.d.ts +2 -0
- package/dist/particle/behaviors/editor/behaviors/RandomTexture.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/Rotation.d.ts +2 -0
- package/dist/particle/behaviors/editor/behaviors/Rotation.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/Scale.d.ts +2 -0
- package/dist/particle/behaviors/editor/behaviors/Scale.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/ShapeSpawn.d.ts +2 -0
- package/dist/particle/behaviors/editor/behaviors/ShapeSpawn.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/SingleTexture.d.ts +2 -0
- package/dist/particle/behaviors/editor/behaviors/SingleTexture.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/SpeedMovement.d.ts +2 -0
- package/dist/particle/behaviors/editor/behaviors/SpeedMovement.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/behaviors/index.d.ts +15 -0
- package/dist/particle/behaviors/editor/behaviors/index.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/index.d.ts +5 -0
- package/dist/particle/behaviors/editor/index.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/shapes/PolygonalChain.d.ts +2 -0
- package/dist/particle/behaviors/editor/shapes/PolygonalChain.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/shapes/Rectangle.d.ts +2 -0
- package/dist/particle/behaviors/editor/shapes/Rectangle.d.ts.map +1 -0
- package/dist/particle/behaviors/editor/shapes/Torus.d.ts +2 -0
- package/dist/particle/behaviors/editor/shapes/Torus.d.ts.map +1 -0
- package/dist/particle/behaviors/index.d.ts +25 -0
- package/dist/particle/behaviors/index.d.ts.map +1 -0
- package/dist/particle/behaviors/shapes/PolygonalChain.d.ts +57 -0
- package/dist/particle/behaviors/shapes/PolygonalChain.d.ts.map +1 -0
- package/dist/particle/behaviors/shapes/Rectangle.d.ts +59 -0
- package/dist/particle/behaviors/shapes/Rectangle.d.ts.map +1 -0
- package/dist/particle/behaviors/shapes/SpawnShape.d.ts +32 -0
- package/dist/particle/behaviors/shapes/SpawnShape.d.ts.map +1 -0
- package/dist/particle/behaviors/shapes/Torus.d.ts +71 -0
- package/dist/particle/behaviors/shapes/Torus.d.ts.map +1 -0
- package/dist/particle/behaviors/shapes/index.d.ts +5 -0
- package/dist/particle/behaviors/shapes/index.d.ts.map +1 -0
- package/dist/particle/index.d.ts +11 -0
- package/dist/particle/index.d.ts.map +1 -0
- package/dist/particle/index.js +2845 -0
- package/dist/particle/index.js.map +1 -0
- package/dist/plugins/Plugin.types.d.ts +80 -0
- package/dist/plugins/Plugin.types.d.ts.map +1 -0
- package/dist/plugins/device/DeviceOptimizerPlugin.d.ts +187 -0
- package/dist/plugins/device/DeviceOptimizerPlugin.d.ts.map +1 -0
- package/dist/plugins/device/DeviceOptimizerPlugin.types.d.ts +134 -0
- package/dist/plugins/device/DeviceOptimizerPlugin.types.d.ts.map +1 -0
- package/dist/plugins/device/index.d.ts +3 -0
- package/dist/plugins/device/index.d.ts.map +1 -0
- package/dist/plugins/display/DisplayPlugin.d.ts +208 -0
- package/dist/plugins/display/DisplayPlugin.d.ts.map +1 -0
- package/dist/plugins/display/DisplayPlugin.types.d.ts +174 -0
- package/dist/plugins/display/DisplayPlugin.types.d.ts.map +1 -0
- package/dist/plugins/display/displayViewport.d.ts +10 -0
- package/dist/plugins/display/displayViewport.d.ts.map +1 -0
- package/dist/plugins/display/index.d.ts +4 -0
- package/dist/plugins/display/index.d.ts.map +1 -0
- package/dist/plugins/eventbus/EventBusPlugin.d.ts +21 -0
- package/dist/plugins/eventbus/EventBusPlugin.d.ts.map +1 -0
- package/dist/plugins/eventbus/EventBusPlugin.types.d.ts +24 -0
- package/dist/plugins/eventbus/EventBusPlugin.types.d.ts.map +1 -0
- package/dist/plugins/eventbus/index.d.ts +3 -0
- package/dist/plugins/eventbus/index.d.ts.map +1 -0
- package/dist/plugins/gsap/GsapPlugin.d.ts +307 -0
- package/dist/plugins/gsap/GsapPlugin.d.ts.map +1 -0
- package/dist/plugins/gsap/index.d.ts +2 -0
- package/dist/plugins/gsap/index.d.ts.map +1 -0
- package/dist/plugins/index.d.ts +13 -0
- package/dist/plugins/index.d.ts.map +1 -0
- package/dist/plugins/index.js +12806 -0
- package/dist/plugins/index.js.map +1 -0
- package/dist/plugins/input/InputPlugin.const.d.ts +80 -0
- package/dist/plugins/input/InputPlugin.const.d.ts.map +1 -0
- package/dist/plugins/input/InputPlugin.d.ts +141 -0
- package/dist/plugins/input/InputPlugin.d.ts.map +1 -0
- package/dist/plugins/input/InputPlugin.types.d.ts +41 -0
- package/dist/plugins/input/InputPlugin.types.d.ts.map +1 -0
- package/dist/plugins/input/KeyboardManager.d.ts +139 -0
- package/dist/plugins/input/KeyboardManager.d.ts.map +1 -0
- package/dist/plugins/input/KeyboardManager.types.d.ts +27 -0
- package/dist/plugins/input/KeyboardManager.types.d.ts.map +1 -0
- package/dist/plugins/input/index.d.ts +4 -0
- package/dist/plugins/input/index.d.ts.map +1 -0
- package/dist/plugins/language/I18NextPlugin.d.ts +30 -0
- package/dist/plugins/language/I18NextPlugin.d.ts.map +1 -0
- package/dist/plugins/language/I18NextPlugin.types.d.ts +29 -0
- package/dist/plugins/language/I18NextPlugin.types.d.ts.map +1 -0
- package/dist/plugins/language/index.d.ts +3 -0
- package/dist/plugins/language/index.d.ts.map +1 -0
- package/dist/plugins/resource/ResourcePlugin.d.ts +189 -0
- package/dist/plugins/resource/ResourcePlugin.d.ts.map +1 -0
- package/dist/plugins/resource/ResourcePlugin.types.d.ts +153 -0
- package/dist/plugins/resource/ResourcePlugin.types.d.ts.map +1 -0
- package/dist/plugins/resource/index.d.ts +3 -0
- package/dist/plugins/resource/index.d.ts.map +1 -0
- package/dist/plugins/scene/Scene.d.ts +203 -0
- package/dist/plugins/scene/Scene.d.ts.map +1 -0
- package/dist/plugins/scene/ScenePlugin.d.ts +162 -0
- package/dist/plugins/scene/ScenePlugin.d.ts.map +1 -0
- package/dist/plugins/scene/ScenePlugin.types.d.ts +35 -0
- package/dist/plugins/scene/ScenePlugin.types.d.ts.map +1 -0
- package/dist/plugins/scene/index.d.ts +4 -0
- package/dist/plugins/scene/index.d.ts.map +1 -0
- package/dist/plugins/sentry/SentryPlugin.d.ts +66 -0
- package/dist/plugins/sentry/SentryPlugin.d.ts.map +1 -0
- package/dist/plugins/sentry/SentryPlugin.types.d.ts +8 -0
- package/dist/plugins/sentry/SentryPlugin.types.d.ts.map +1 -0
- package/dist/plugins/sentry/index.d.ts +3 -0
- package/dist/plugins/sentry/index.d.ts.map +1 -0
- package/dist/plugins/service/ServiceAdapter.d.ts +88 -0
- package/dist/plugins/service/ServiceAdapter.d.ts.map +1 -0
- package/dist/plugins/service/ServiceEventHelper.d.ts +6 -0
- package/dist/plugins/service/ServiceEventHelper.d.ts.map +1 -0
- package/dist/plugins/service/ServicePlugin.d.ts +135 -0
- package/dist/plugins/service/ServicePlugin.d.ts.map +1 -0
- package/dist/plugins/service/ServicePlugin.types.d.ts +14 -0
- package/dist/plugins/service/ServicePlugin.types.d.ts.map +1 -0
- package/dist/plugins/service/adapters/DevAuthAdapter.d.ts +56 -0
- package/dist/plugins/service/adapters/DevAuthAdapter.d.ts.map +1 -0
- package/dist/plugins/service/adapters/RGSAdapter.d.ts +82 -0
- package/dist/plugins/service/adapters/RGSAdapter.d.ts.map +1 -0
- package/dist/plugins/service/adapters/index.d.ts +7 -0
- package/dist/plugins/service/adapters/index.d.ts.map +1 -0
- package/dist/plugins/service/adapters/resolvePublicIp.d.ts +10 -0
- package/dist/plugins/service/adapters/resolvePublicIp.d.ts.map +1 -0
- package/dist/plugins/service/index.d.ts +10 -0
- package/dist/plugins/service/index.d.ts.map +1 -0
- package/dist/plugins/service/types/api.types.d.ts +299 -0
- package/dist/plugins/service/types/api.types.d.ts.map +1 -0
- package/dist/plugins/service/types/index.d.ts +6 -0
- package/dist/plugins/service/types/index.d.ts.map +1 -0
- package/dist/plugins/skin/ISkin.d.ts +62 -0
- package/dist/plugins/skin/ISkin.d.ts.map +1 -0
- package/dist/plugins/skin/Skin.d.ts +155 -0
- package/dist/plugins/skin/Skin.d.ts.map +1 -0
- package/dist/plugins/skin/SkinPlugin.d.ts +285 -0
- package/dist/plugins/skin/SkinPlugin.d.ts.map +1 -0
- package/dist/plugins/skin/SkinPlugin.types.d.ts +56 -0
- package/dist/plugins/skin/SkinPlugin.types.d.ts.map +1 -0
- package/dist/plugins/skin/index.d.ts +5 -0
- package/dist/plugins/skin/index.d.ts.map +1 -0
- package/dist/plugins/sound/SoundPlugin.d.ts +319 -0
- package/dist/plugins/sound/SoundPlugin.d.ts.map +1 -0
- package/dist/plugins/sound/SoundPlugin.types.d.ts +102 -0
- package/dist/plugins/sound/SoundPlugin.types.d.ts.map +1 -0
- package/dist/plugins/sound/SoundTestGUI.d.ts +42 -0
- package/dist/plugins/sound/SoundTestGUI.d.ts.map +1 -0
- package/dist/plugins/sound/index.d.ts +4 -0
- package/dist/plugins/sound/index.d.ts.map +1 -0
- package/dist/state-machine/ConfigBuilder.d.ts +239 -0
- package/dist/state-machine/ConfigBuilder.d.ts.map +1 -0
- package/dist/state-machine/StateMachine.d.ts +251 -0
- package/dist/state-machine/StateMachine.d.ts.map +1 -0
- package/dist/state-machine/guards.d.ts +151 -0
- package/dist/state-machine/guards.d.ts.map +1 -0
- package/dist/state-machine/index.d.ts +5 -0
- package/dist/state-machine/index.d.ts.map +1 -0
- package/dist/state-machine/index.js +954 -0
- package/dist/state-machine/index.js.map +1 -0
- package/dist/state-machine/types.d.ts +65 -0
- package/dist/state-machine/types.d.ts.map +1 -0
- package/dist/store/DataStore.d.ts +167 -0
- package/dist/store/DataStore.d.ts.map +1 -0
- package/dist/store/index.d.ts +3 -0
- package/dist/store/index.d.ts.map +1 -0
- package/dist/store/index.js +197 -0
- package/dist/store/index.js.map +1 -0
- package/dist/ui/behaviors/ButtonBehavior.d.ts +245 -0
- package/dist/ui/behaviors/ButtonBehavior.d.ts.map +1 -0
- package/dist/ui/behaviors/InputBehavior.d.ts +169 -0
- package/dist/ui/behaviors/InputBehavior.d.ts.map +1 -0
- package/dist/ui/behaviors/ScrollbarBehavior.d.ts +371 -0
- package/dist/ui/behaviors/ScrollbarBehavior.d.ts.map +1 -0
- package/dist/ui/behaviors/index.d.ts +4 -0
- package/dist/ui/behaviors/index.d.ts.map +1 -0
- package/dist/ui/components/ButtonComp.d.ts +138 -0
- package/dist/ui/components/ButtonComp.d.ts.map +1 -0
- package/dist/ui/components/Comp.utils.d.ts +390 -0
- package/dist/ui/components/Comp.utils.d.ts.map +1 -0
- package/dist/ui/components/Component.types.d.ts +41 -0
- package/dist/ui/components/Component.types.d.ts.map +1 -0
- package/dist/ui/components/InputComp.d.ts +43 -0
- package/dist/ui/components/InputComp.d.ts.map +1 -0
- package/dist/ui/components/LabelBox.d.ts +49 -0
- package/dist/ui/components/LabelBox.d.ts.map +1 -0
- package/dist/ui/components/ListTableComp.d.ts +106 -0
- package/dist/ui/components/ListTableComp.d.ts.map +1 -0
- package/dist/ui/components/Skinable.d.ts +261 -0
- package/dist/ui/components/Skinable.d.ts.map +1 -0
- package/dist/ui/components/SliderComp.d.ts +60 -0
- package/dist/ui/components/SliderComp.d.ts.map +1 -0
- package/dist/ui/components/SpriteTextBBCode.d.ts +16 -0
- package/dist/ui/components/SpriteTextBBCode.d.ts.map +1 -0
- package/dist/ui/components/StepperComp.d.ts +89 -0
- package/dist/ui/components/StepperComp.d.ts.map +1 -0
- package/dist/ui/components/index.d.ts +12 -0
- package/dist/ui/components/index.d.ts.map +1 -0
- package/dist/ui/components/spriteText/SpriteText.d.ts +114 -0
- package/dist/ui/components/spriteText/SpriteText.d.ts.map +1 -0
- package/dist/ui/components/spriteText/SpriteText.types.d.ts +109 -0
- package/dist/ui/components/spriteText/SpriteText.types.d.ts.map +1 -0
- package/dist/ui/components/spriteText/SpriteTextAlignment.d.ts +25 -0
- package/dist/ui/components/spriteText/SpriteTextAlignment.d.ts.map +1 -0
- package/dist/ui/components/spriteText/SpriteTextBezier.d.ts +20 -0
- package/dist/ui/components/spriteText/SpriteTextBezier.d.ts.map +1 -0
- package/dist/ui/components/spriteText/SpriteTextCurve.d.ts +4 -0
- package/dist/ui/components/spriteText/SpriteTextCurve.d.ts.map +1 -0
- package/dist/ui/components/spriteText/SpriteTextKerning.d.ts +7 -0
- package/dist/ui/components/spriteText/SpriteTextKerning.d.ts.map +1 -0
- package/dist/ui/components/spriteText/SpriteTextTexture.d.ts +16 -0
- package/dist/ui/components/spriteText/SpriteTextTexture.d.ts.map +1 -0
- package/dist/ui/components/spriteText/SpriteTextWrap.d.ts +19 -0
- package/dist/ui/components/spriteText/SpriteTextWrap.d.ts.map +1 -0
- package/dist/ui/components/spriteText/index.d.ts +3 -0
- package/dist/ui/components/spriteText/index.d.ts.map +1 -0
- package/dist/ui/index.d.ts +3 -0
- package/dist/ui/index.d.ts.map +1 -0
- package/dist/ui/index.js +4778 -0
- package/dist/ui/index.js.map +1 -0
- package/dist/utils/ArrayUtils.d.ts +24 -0
- package/dist/utils/ArrayUtils.d.ts.map +1 -0
- package/dist/utils/ColorUtils.d.ts +34 -0
- package/dist/utils/ColorUtils.d.ts.map +1 -0
- package/dist/utils/DataInjector.d.ts +67 -0
- package/dist/utils/DataInjector.d.ts.map +1 -0
- package/dist/utils/Logger.d.ts +332 -0
- package/dist/utils/Logger.d.ts.map +1 -0
- package/dist/utils/NumberFormatter.d.ts +126 -0
- package/dist/utils/NumberFormatter.d.ts.map +1 -0
- package/dist/utils/ObjectUtils.d.ts +64 -0
- package/dist/utils/ObjectUtils.d.ts.map +1 -0
- package/dist/utils/PixiUtils.d.ts +118 -0
- package/dist/utils/PixiUtils.d.ts.map +1 -0
- package/dist/utils/Throttle.d.ts +103 -0
- package/dist/utils/Throttle.d.ts.map +1 -0
- package/dist/utils/index.d.ts +9 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/index.js +899 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/vite/index.d.ts +3 -0
- package/dist/vite/index.d.ts.map +1 -0
- package/dist/vite/index.js +126 -0
- package/dist/vite/index.js.map +1 -0
- package/dist/vite/mergeLocalesPlugin.d.ts +22 -0
- package/dist/vite/mergeLocalesPlugin.d.ts.map +1 -0
- package/package.json +143 -0
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import { Texture, LoaderParser } from 'pixi.js';
|
|
2
|
+
/**
|
|
3
|
+
* Style definitions for SVG elements using CSS selectors.
|
|
4
|
+
*
|
|
5
|
+
* Maps CSS selectors to attribute-value pairs that will be applied to matching SVG elements.
|
|
6
|
+
* Commonly used for dynamic theming and color changes.
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* ```typescript
|
|
10
|
+
* const styles: SVGStyleData = {
|
|
11
|
+
* '#primary': { fill: '#4CAF50', stroke: '#388E3C' },
|
|
12
|
+
* '.icon': { fill: '#FFFFFF' },
|
|
13
|
+
* 'circle': { opacity: '0.8' }
|
|
14
|
+
* };
|
|
15
|
+
* ```
|
|
16
|
+
*
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export interface SVGStyleData {
|
|
20
|
+
/** CSS selector as key, attributes as value */
|
|
21
|
+
[selector: string]: {
|
|
22
|
+
/** SVG attribute name (e.g., 'fill', 'stroke', 'opacity') */
|
|
23
|
+
[attribute: string]: string;
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Configuration data for loading and processing SVG files.
|
|
28
|
+
*
|
|
29
|
+
* This interface defines all options available when loading an SVG asset,
|
|
30
|
+
* including styling, sizing, and resolution settings.
|
|
31
|
+
*
|
|
32
|
+
* @example
|
|
33
|
+
* ```typescript
|
|
34
|
+
* const loadData: SVGLoadData = {
|
|
35
|
+
* styles: {
|
|
36
|
+
* '#background': { fill: '#4CAF50' },
|
|
37
|
+
* '#icon': { fill: '#FFFFFF' }
|
|
38
|
+
* },
|
|
39
|
+
* size: { width: 128, height: 128 },
|
|
40
|
+
* resolution: 2
|
|
41
|
+
* };
|
|
42
|
+
* ```
|
|
43
|
+
*
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export interface SVGLoadData {
|
|
47
|
+
/** Style definitions to apply to SVG elements */
|
|
48
|
+
styles?: SVGStyleData;
|
|
49
|
+
/** Target size for rasterization (width and height in pixels) */
|
|
50
|
+
size?: {
|
|
51
|
+
width: number;
|
|
52
|
+
height: number;
|
|
53
|
+
};
|
|
54
|
+
/** Resolution multiplier for high-DPI displays (default: 1) */
|
|
55
|
+
resolution?: number;
|
|
56
|
+
/** Button states for multi-state assets (used by SVGAssetHelper) */
|
|
57
|
+
states?: string[];
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Global configuration for the SVG parser.
|
|
61
|
+
*
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
export interface SVGParserConfig {
|
|
65
|
+
/** Glob pattern to match SVG files (uses minimatch) */
|
|
66
|
+
testPattern?: string;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* PixiJS LoaderParser implementation for SVG files.
|
|
70
|
+
*
|
|
71
|
+
* This parser integrates with PixiJS Assets system to automatically detect,
|
|
72
|
+
* load, and process SVG files as textures. It handles:
|
|
73
|
+
* - SVG file detection via URL pattern matching
|
|
74
|
+
* - Style manipulation using CSS selectors
|
|
75
|
+
* - Size and resolution configuration
|
|
76
|
+
* - Canvas rasterization for texture generation
|
|
77
|
+
*
|
|
78
|
+
* The parser is registered with PixiJS Assets via SVGLoader.install().
|
|
79
|
+
*
|
|
80
|
+
* @remarks
|
|
81
|
+
* This parser uses DOMParser and Canvas API to convert SVG to raster textures.
|
|
82
|
+
* All SVG manipulations happen before rasterization, ensuring clean output.
|
|
83
|
+
*
|
|
84
|
+
* @example
|
|
85
|
+
* ```typescript
|
|
86
|
+
* // Parser is automatically used after SVGLoader.install()
|
|
87
|
+
* await Assets.load({
|
|
88
|
+
* alias: 'icon',
|
|
89
|
+
* src: 'assets/icon.svg',
|
|
90
|
+
* data: {
|
|
91
|
+
* styles: { '#primary': { fill: '#4CAF50' } },
|
|
92
|
+
* size: { width: 64, height: 64 },
|
|
93
|
+
* resolution: 2
|
|
94
|
+
* }
|
|
95
|
+
* });
|
|
96
|
+
* ```
|
|
97
|
+
*
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export declare const SVGParser: LoaderParser<Texture, SVGLoadData>;
|
|
101
|
+
/**
|
|
102
|
+
* Configures the SVG parser with global settings.
|
|
103
|
+
*
|
|
104
|
+
* This function allows customization of the parser behavior, such as
|
|
105
|
+
* specifying custom glob patterns for SVG file matching.
|
|
106
|
+
*
|
|
107
|
+
* Typically called by SVGLoader.install() but can be used independently.
|
|
108
|
+
*
|
|
109
|
+
* @param config - Parser configuration options
|
|
110
|
+
*
|
|
111
|
+
* @example
|
|
112
|
+
* ```typescript
|
|
113
|
+
* configureSVGParser({
|
|
114
|
+
* testPattern: 'assets/svg/*.svg'
|
|
115
|
+
* });
|
|
116
|
+
* ```
|
|
117
|
+
*
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
export declare function configureSVGParser(config: SVGParserConfig): void;
|
|
121
|
+
//# sourceMappingURL=SVGParser.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SVGParser.d.ts","sourceRoot":"","sources":["../../helpers/SVGParser.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAiB,YAAY,EAAgC,MAAM,SAAS,CAAC;AAI7F;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,WAAW,YAAY;IAC3B,+CAA+C;IAC/C,CAAC,QAAQ,EAAE,MAAM,GAAG;QAClB,6DAA6D;QAC7D,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAAC;KAC7B,CAAC;CACH;AAED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAM,WAAW,WAAW;IAC1B,iDAAiD;IACjD,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,iEAAiE;IACjE,IAAI,CAAC,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IACzC,+DAA+D;IAC/D,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,oEAAoE;IACpE,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACnB;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC9B,uDAAuD;IACvD,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAwGD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,eAAO,MAAM,SAAS,EAAE,YAAY,CAAC,OAAO,EAAE,WAAW,CAyExD,CAAC;AAEF;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,eAAe,GAAG,IAAI,CAEhE"}
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
import type { EventEmitter } from 'pixi.js';
|
|
2
|
+
/**
|
|
3
|
+
* Extract namespace prefix from event names (supports nested namespaces)
|
|
4
|
+
* Example: ExtractNamespace<'hud:spin'> = 'hud'
|
|
5
|
+
* Example: ExtractNamespace<'menu:autoplay:start'> = 'menu:autoplay'
|
|
6
|
+
*/
|
|
7
|
+
type ExtractNamespace<T extends string> = T extends `${infer Prefix}:${infer Rest}` ? Rest extends `${string}:${string}` ? `${Prefix}:${ExtractNamespace<Rest>}` : Prefix : never;
|
|
8
|
+
/**
|
|
9
|
+
* Get all unique namespaces from event map (supports nested namespaces)
|
|
10
|
+
* Example: GetNamespaces<{'hud:spin': ..., 'menu:autoplay:start': ...}> = 'hud' | 'menu:autoplay'
|
|
11
|
+
*/
|
|
12
|
+
type GetNamespaces<T> = ExtractNamespace<Extract<keyof T, string>>;
|
|
13
|
+
/**
|
|
14
|
+
* Filter events by namespace
|
|
15
|
+
* Example: FilterByNamespace<SlotBaseEvents, 'hud'> = { 'hud:spin': () => void, ... }
|
|
16
|
+
*/
|
|
17
|
+
type FilterByNamespace<T, NS extends string> = {
|
|
18
|
+
[K in Extract<keyof T, `${NS}:${string}`>]: T[K];
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* Remove namespace prefix from event names (supports nested namespaces)
|
|
22
|
+
* Example: StripNamespace<'hud:spin', 'hud'> = 'spin'
|
|
23
|
+
* Example: StripNamespace<'menu:autoplay:start', 'menu:autoplay'> = 'start'
|
|
24
|
+
*/
|
|
25
|
+
type StripNamespace<T extends string, NS extends string> = T extends `${NS}:${infer Rest}` ? Rest : T;
|
|
26
|
+
/**
|
|
27
|
+
* Transform event map by removing namespace prefix
|
|
28
|
+
* Example: TransformEventMap<{ 'hud:spin': () => void }, 'hud'> = { 'spin': () => void }
|
|
29
|
+
*/
|
|
30
|
+
type TransformEventMap<T, NS extends string> = {
|
|
31
|
+
[K in Extract<keyof T, string> as StripNamespace<K, NS>]: K extends keyof T ? T[K] : never;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* Configuration for event bridge
|
|
35
|
+
*/
|
|
36
|
+
export interface EventBridgeConfig {
|
|
37
|
+
/**
|
|
38
|
+
* Namespace prefix to add to forwarded events
|
|
39
|
+
* Example: 'hud' will transform 'spin' to 'hud:spin'
|
|
40
|
+
*/
|
|
41
|
+
namespace?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Custom transform function for event name and arguments
|
|
44
|
+
* Takes precedence over namespace if provided
|
|
45
|
+
*/
|
|
46
|
+
transform?: (event: string, ...args: any[]) => [string, ...any[]];
|
|
47
|
+
/**
|
|
48
|
+
* Filter function to selectively forward events
|
|
49
|
+
* Return true to forward, false to skip
|
|
50
|
+
*/
|
|
51
|
+
filter?: (event: string) => boolean;
|
|
52
|
+
/**
|
|
53
|
+
* Intercept function for side effects before forwarding
|
|
54
|
+
* Useful for UI state changes, logging, etc.
|
|
55
|
+
*/
|
|
56
|
+
intercept?: (event: string, ...args: any[]) => void;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Event bridge handle for cleanup
|
|
60
|
+
*/
|
|
61
|
+
export interface EventBridgeHandle {
|
|
62
|
+
/**
|
|
63
|
+
* Disconnect the bridge and restore original emit behavior
|
|
64
|
+
*/
|
|
65
|
+
disconnect: () => void;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Type-safe event bridge configuration
|
|
69
|
+
*/
|
|
70
|
+
export interface TypedEventBridgeConfig<TSource extends Record<string, any>, TTarget extends Record<string, any>, NS extends GetNamespaces<TTarget>> extends Omit<EventBridgeConfig, 'namespace' | 'filter' | 'intercept'> {
|
|
71
|
+
namespace: NS;
|
|
72
|
+
filter?: (event: keyof TSource) => boolean;
|
|
73
|
+
intercept?: <K extends keyof TSource>(event: K, ...args: Parameters<TSource[K]>) => void;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* Creates an event bridge that automatically forwards all emitted events from source to target.
|
|
77
|
+
* This eliminates the need for manual event binding boilerplate.
|
|
78
|
+
*
|
|
79
|
+
* **Auto-cleanup:** If the source component has a `destroy()` method, the bridge will
|
|
80
|
+
* automatically clean up when the component is destroyed, preventing memory leaks.
|
|
81
|
+
* You can also manually disconnect using the returned handle.
|
|
82
|
+
*
|
|
83
|
+
* @example
|
|
84
|
+
* // Simple namespace forwarding
|
|
85
|
+
* createEventBridge(this.gameHud, this.eventBusPlugin, {
|
|
86
|
+
* namespace: 'hud'
|
|
87
|
+
* });
|
|
88
|
+
* // Now: gameHud.emit('spin') → eventBus.emit('hud:spin')
|
|
89
|
+
* // Auto-cleanup when gameHud.destroy() is called
|
|
90
|
+
*
|
|
91
|
+
* @example
|
|
92
|
+
* // With side effects
|
|
93
|
+
* createEventBridge(this.gameHud, this.eventBusPlugin, {
|
|
94
|
+
* namespace: 'hud',
|
|
95
|
+
* intercept: (event) => {
|
|
96
|
+
* if (event === 'autoplay') this.autoplayMenu.visible = !this.autoplayMenu.visible;
|
|
97
|
+
* }
|
|
98
|
+
* });
|
|
99
|
+
*
|
|
100
|
+
* @example
|
|
101
|
+
* // Manual cleanup (optional)
|
|
102
|
+
* const handle = createEventBridge(this.component, this.eventBus, {
|
|
103
|
+
* transform: (event, ...args) => [`custom:${event}`, ...args]
|
|
104
|
+
* });
|
|
105
|
+
* // Later...
|
|
106
|
+
* handle.disconnect(); // Manual cleanup if needed
|
|
107
|
+
*
|
|
108
|
+
* @param source - The EventEmitter to bridge from
|
|
109
|
+
* @param target - The EventEmitter to forward events to
|
|
110
|
+
* @param config - Bridge configuration options
|
|
111
|
+
* @returns Handle with disconnect method for manual cleanup
|
|
112
|
+
*/
|
|
113
|
+
export declare function createEventBridge(source: EventEmitter, target: {
|
|
114
|
+
emit(event: any, ...args: any[]): boolean;
|
|
115
|
+
}, config?: EventBridgeConfig): EventBridgeHandle;
|
|
116
|
+
/**
|
|
117
|
+
* Type-safe event bridge creator
|
|
118
|
+
* Ensures source events match target events after namespace transformation
|
|
119
|
+
*
|
|
120
|
+
* @example
|
|
121
|
+
* // Define source events (without namespace)
|
|
122
|
+
* interface HudEvents {
|
|
123
|
+
* spin: () => void;
|
|
124
|
+
* autoplay: () => void;
|
|
125
|
+
* }
|
|
126
|
+
*
|
|
127
|
+
* // Define target events (with namespace)
|
|
128
|
+
* interface GameEvents {
|
|
129
|
+
* 'hud:spin': () => void;
|
|
130
|
+
* 'hud:autoplay': () => void;
|
|
131
|
+
* 'menu:close': () => void;
|
|
132
|
+
* }
|
|
133
|
+
*
|
|
134
|
+
* // Type-safe bridge - TypeScript validates that HudEvents matches 'hud' namespace in GameEvents
|
|
135
|
+
* createTypedEventBridge<GameEvents, 'hud', HudEvents>(
|
|
136
|
+
* hudComponent,
|
|
137
|
+
* eventBus,
|
|
138
|
+
* { namespace: 'hud' }
|
|
139
|
+
* );
|
|
140
|
+
*
|
|
141
|
+
* @param source - The EventEmitter to bridge from
|
|
142
|
+
* @param target - The EventEmitter to forward events to
|
|
143
|
+
* @param config - Type-safe bridge configuration
|
|
144
|
+
* @returns Handle with disconnect method for manual cleanup
|
|
145
|
+
*/
|
|
146
|
+
export declare function createTypedEventBridge<TTarget extends Record<string, any>, NS extends GetNamespaces<TTarget>, TSource extends TransformEventMap<FilterByNamespace<TTarget, NS>, NS>>(source: EventEmitter, target: {
|
|
147
|
+
emit(event: any, ...args: any[]): boolean;
|
|
148
|
+
}, config: TypedEventBridgeConfig<TSource, TTarget, NS>): EventBridgeHandle;
|
|
149
|
+
export {};
|
|
150
|
+
//# sourceMappingURL=eventBridge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"eventBridge.d.ts","sourceRoot":"","sources":["../../helpers/eventBridge.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from './SVGLoader';
|
|
2
|
+
export * from './SVGParser';
|
|
3
|
+
export * from './SVGAssetHelper';
|
|
4
|
+
export * from './AssetHelper';
|
|
5
|
+
export * from './resolvePublicPath';
|
|
6
|
+
export * from './eventBridge';
|
|
7
|
+
export * from './mergeUtils';
|
|
8
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../helpers/index.ts"],"names":[],"mappings":"AACA,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AAGjC,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AAGpC,cAAc,eAAe,CAAC;AAG9B,cAAc,cAAc,CAAC"}
|