@awesome-ecs/abstract 0.29.0 → 0.31.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 (35) hide show
  1. package/dist/components/index.d.cts +1 -1
  2. package/dist/components/index.d.mts +1 -1
  3. package/dist/entities/index.cjs.map +1 -1
  4. package/dist/entities/index.d.cts +3 -3
  5. package/dist/entities/index.d.mts +3 -3
  6. package/dist/entities/index.mjs.map +1 -1
  7. package/dist/factories/index.cjs.map +1 -1
  8. package/dist/factories/index.d.cts +2 -95
  9. package/dist/factories/index.d.mts +2 -95
  10. package/dist/factories/index.mjs.map +1 -1
  11. package/dist/{identity-component-B3VGtdQW.d.mts → identity-component-CuWHf7jX.d.mts} +76 -10
  12. package/dist/{identity-component-CsU-wYTX.d.cts → identity-component-DLDaOTyK.d.cts} +76 -10
  13. package/dist/{index-DTHsTJ1j.d.cts → index-BguFn1Xj.d.cts} +62 -3
  14. package/dist/index-DZlhICMZ.d.mts +1137 -0
  15. package/dist/{index-CBxqWVDf.d.mts → index-kNcUiDBd.d.mts} +62 -3
  16. package/dist/index-zohK7ftH.d.cts +1137 -0
  17. package/dist/pipelines/index.d.cts +1 -1
  18. package/dist/pipelines/index.d.mts +1 -1
  19. package/dist/systems/index.cjs +11 -0
  20. package/dist/systems/index.cjs.map +1 -1
  21. package/dist/systems/index.d.cts +2 -2
  22. package/dist/systems/index.d.mts +2 -2
  23. package/dist/systems/index.mjs +11 -1
  24. package/dist/systems/index.mjs.map +1 -1
  25. package/dist/utils/index.d.cts +3 -3
  26. package/dist/utils/index.d.mts +3 -3
  27. package/package.json +2 -2
  28. package/dist/index-BC8RgFVd.d.mts +0 -544
  29. package/dist/index-BRkKPsOV.d.cts +0 -224
  30. package/dist/index-C8yZ7-zP.d.mts +0 -224
  31. package/dist/index-DCx0PjvH.d.cts +0 -175
  32. package/dist/index-Df4VhCPr.d.cts +0 -544
  33. package/dist/index-EpAQRAeF.d.mts +0 -175
  34. package/dist/types-DqWnkvhp.d.cts +0 -70
  35. package/dist/types-aD9p7TDy.d.mts +0 -70
@@ -1,2 +1,2 @@
1
- import { a as IParentMiddleware, c as IMiddleware, i as IParentContext, l as IPipelineContext, n as INestedContext, o as IPipeline, r as INestedMiddleware, s as IMiddlewareRunner, t as IPipelineRunner, u as PipelineRuntime } from "../index-BRkKPsOV.cjs";
1
+ import { B as PipelineRuntime, F as IParentMiddleware, I as IPipeline, L as IMiddlewareRunner, M as INestedContext, N as INestedMiddleware, P as IParentContext, R as IMiddleware, j as IPipelineRunner, z as IPipelineContext } from "../index-zohK7ftH.cjs";
2
2
  export { IMiddleware, IMiddlewareRunner, INestedContext, INestedMiddleware, IParentContext, IParentMiddleware, IPipeline, IPipelineContext, IPipelineRunner, PipelineRuntime };
@@ -1,2 +1,2 @@
1
- import { a as IParentMiddleware, c as IMiddleware, i as IParentContext, l as IPipelineContext, n as INestedContext, o as IPipeline, r as INestedMiddleware, s as IMiddlewareRunner, t as IPipelineRunner, u as PipelineRuntime } from "../index-C8yZ7-zP.mjs";
1
+ import { B as PipelineRuntime, F as IParentMiddleware, I as IPipeline, L as IMiddlewareRunner, M as INestedContext, N as INestedMiddleware, P as IParentContext, R as IMiddleware, j as IPipelineRunner, z as IPipelineContext } from "../index-DZlhICMZ.mjs";
2
2
  export { IMiddleware, IMiddlewareRunner, INestedContext, INestedMiddleware, IParentContext, IParentMiddleware, IPipeline, IPipelineContext, IPipelineRunner, PipelineRuntime };
@@ -1,4 +1,14 @@
1
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ //#region src/systems/pipeline/system-context-control.ts
3
+ let SystemContextControlState = /* @__PURE__ */ function(SystemContextControlState) {
4
+ SystemContextControlState["none"] = "none";
5
+ SystemContextControlState["enableCurrentSystem"] = "enableCurrentSystem";
6
+ SystemContextControlState["disableCurrentSystem"] = "disableCurrentSystem";
7
+ SystemContextControlState["enableCurrentModule"] = "enableCurrentModule";
8
+ SystemContextControlState["disableCurrentModule"] = "disableCurrentModule";
9
+ return SystemContextControlState;
10
+ }({});
11
+ //#endregion
2
12
  //#region src/systems/system-type.ts
3
13
  /**
4
14
  * The four phases of entity system execution in each frame.
@@ -29,6 +39,7 @@ let SystemType = /* @__PURE__ */ function(SystemType) {
29
39
  return SystemType;
30
40
  }({});
31
41
  //#endregion
42
+ exports.SystemContextControlState = SystemContextControlState;
32
43
  exports.SystemType = SystemType;
33
44
 
34
45
  //# sourceMappingURL=index.cjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","names":[],"sources":["../../src/systems/system-type.ts"],"sourcesContent":["/**\r\n * The four phases of entity system execution in each frame.\r\n * Each phase serves a specific purpose in the entity lifecycle and can be extended by custom system types.\r\n * The runtime handles each phase in order, allowing systems to perform stage-specific operations.\r\n */\r\nexport enum SystemType {\r\n /**\r\n * Initial setup and resource allocation for the entity.\r\n * Runs once when the entity is first created or initialized.\r\n */\r\n initialize = 0,\r\n\r\n /**\r\n * Main logic and state updates for the entity.\r\n * Runs on every update to change entity behavior and properties.\r\n */\r\n update = 1,\r\n\r\n /**\r\n * Output and visualization operations.\r\n * Runs after updates to render or display the entity state.\r\n */\r\n render = 2,\r\n\r\n /**\r\n * Synchronization and persistence.\r\n * Runs last to synchronize state with external systems or storage.\r\n */\r\n sync = 3\r\n}\r\n"],"mappings":";;;;;;;AAKA,IAAY,aAAL,yBAAA,YAAA;;;;;AAKL,YAAA,WAAA,gBAAA,KAAA;;;;;AAMA,YAAA,WAAA,YAAA,KAAA;;;;;AAMA,YAAA,WAAA,YAAA,KAAA;;;;;AAMA,YAAA,WAAA,UAAA,KAAA;;KACD"}
1
+ {"version":3,"file":"index.cjs","names":[],"sources":["../../src/systems/pipeline/system-context-control.ts","../../src/systems/system-type.ts"],"sourcesContent":["import { IEntity } from '@awesome-ecs/abstract/entities';\r\nimport { ISystemMiddleware } from './system-middleware';\r\n\r\nexport enum SystemContextControlState {\r\n none = 'none',\r\n enableCurrentSystem = 'enableCurrentSystem',\r\n disableCurrentSystem = 'disableCurrentSystem',\r\n enableCurrentModule = 'enableCurrentModule',\r\n disableCurrentModule = 'disableCurrentModule'\r\n}\r\n\r\n/**\r\n * Interface for controlling the execution of systems and modules within a system context.\r\n * This allows middleware to enable or disable specific systems or entire modules for the current entity.\r\n */\r\nexport interface ISystemContextControl {\r\n /**\r\n * Disables the current system for the current entity.\r\n */\r\n disableCurrentSystem(): void;\r\n\r\n /**\r\n * Re-enables the current system for the current entity.\r\n */\r\n enableCurrentSystem(): void;\r\n\r\n /**\r\n * Disables the current module for the current entity.\r\n */\r\n disableCurrentModule(): void;\r\n\r\n /**\r\n * Re-enables the current module for the current entity.\r\n */\r\n enableCurrentModule(): void;\r\n}\r\n\r\n/**\r\n * Extended system context interface that includes control state for middleware to manage system and module execution.\r\n * This allows middleware to query and modify the execution state of systems and modules during pipeline processing.\r\n */\r\nexport interface ISystemContextControlState extends ISystemContextControl {\r\n /**\r\n * Current state of system/module execution control, indicating whether the current system or module is enabled or disabled.\r\n */\r\n readonly state: SystemContextControlState;\r\n\r\n /**\r\n * Checks if a specific middleware is currently disabled in the context, allowing middleware to conditionally execute logic based on the enabled/disabled state of other middleware.\r\n * @param middleware - The middleware to check for disabled state.\r\n * @returns True if the specified middleware is currently disabled, false otherwise.\r\n */\r\n isMiddlewareDisabled(middleware: ISystemMiddleware<IEntity>): boolean;\r\n\r\n /**\r\n * Disables a specific middleware in the context.\r\n * @param middleware - The middleware to disable.\r\n */\r\n disableMiddleware(middleware: ISystemMiddleware<IEntity>): void;\r\n\r\n /**\r\n * Enables a specific middleware in the context.\r\n * @param middleware - The middleware to enable.\r\n */\r\n enableMiddleware(middleware: ISystemMiddleware<IEntity>): void;\r\n\r\n /**\r\n * Disables an entire module of middleware in the context.\r\n * @param middleware - A middleware from the module to disable.\r\n */\r\n disableModule(middleware: ISystemMiddleware<IEntity>): void;\r\n\r\n /**\r\n * Enables an entire module of middleware in the context.\r\n * @param middleware - A middleware from the module to enable.\r\n */\r\n enableModule(middleware: ISystemMiddleware<IEntity>): void;\r\n}\r\n","/**\r\n * The four phases of entity system execution in each frame.\r\n * Each phase serves a specific purpose in the entity lifecycle and can be extended by custom system types.\r\n * The runtime handles each phase in order, allowing systems to perform stage-specific operations.\r\n */\r\nexport enum SystemType {\r\n /**\r\n * Initial setup and resource allocation for the entity.\r\n * Runs once when the entity is first created or initialized.\r\n */\r\n initialize = 0,\r\n\r\n /**\r\n * Main logic and state updates for the entity.\r\n * Runs on every update to change entity behavior and properties.\r\n */\r\n update = 1,\r\n\r\n /**\r\n * Output and visualization operations.\r\n * Runs after updates to render or display the entity state.\r\n */\r\n render = 2,\r\n\r\n /**\r\n * Synchronization and persistence.\r\n * Runs last to synchronize state with external systems or storage.\r\n */\r\n sync = 3\r\n}\r\n"],"mappings":";;AAGA,IAAY,4BAAL,yBAAA,2BAAA;AACL,2BAAA,UAAA;AACA,2BAAA,yBAAA;AACA,2BAAA,0BAAA;AACA,2BAAA,yBAAA;AACA,2BAAA,0BAAA;;KACD;;;;;;;;ACJD,IAAY,aAAL,yBAAA,YAAA;;;;;AAKL,YAAA,WAAA,gBAAA,KAAA;;;;;AAMA,YAAA,WAAA,YAAA,KAAA;;;;;AAMA,YAAA,WAAA,YAAA,KAAA;;;;;AAMA,YAAA,WAAA,UAAA,KAAA;;KACD"}
@@ -1,2 +1,2 @@
1
- import { a as ISystemsModuleRepository, c as ISystemsModule, d as ISystemContextSnapshot, f as ISystemContextScheduler, h as ISystemContextEvents, i as ISystemContextEntity, l as SystemType, m as ISystemContextProxies, n as ISystemsRuntimeContext, o as ISystemsModuleBuilder, p as ISystemContextRepository, r as ISystemsRuntime, s as ISystemMiddleware, t as ISystemsRuntimeMiddleware, u as ISystemContext } from "../index-Df4VhCPr.cjs";
2
- export { ISystemContext, ISystemContextEntity, ISystemContextEvents, ISystemContextProxies, ISystemContextRepository, ISystemContextScheduler, ISystemContextSnapshot, ISystemMiddleware, ISystemsModule, ISystemsModuleBuilder, ISystemsModuleRepository, ISystemsRuntime, ISystemsRuntimeContext, ISystemsRuntimeMiddleware, SystemType };
1
+ import { A as SystemModuleName, C as ISystemContextControl, D as MiddlewareRegistry, E as ISystemMiddleware, O as MiddlewareRegistryReadonly, S as ISystemContextEvents, T as SystemContextControlState, _ as ISystemContext, a as ISystemsRuntime, b as ISystemContextRepository, c as ISystemsModuleBuilder, g as IMutableSystemContext, i as ISystemsRuntimeContext, k as SystemMiddlewareName, l as ISystemsModuleBuilderReadonly, o as ISystemsModuleRepository, r as ISystemsRuntimeMiddleware, s as ISystemsModule, u as SystemType, v as ISystemContextSnapshot, w as ISystemContextControlState, x as ISystemContextProxies, y as ISystemContextScheduler } from "../index-zohK7ftH.cjs";
2
+ export { IMutableSystemContext, ISystemContext, ISystemContextControl, ISystemContextControlState, ISystemContextEvents, ISystemContextProxies, ISystemContextRepository, ISystemContextScheduler, ISystemContextSnapshot, ISystemMiddleware, ISystemsModule, ISystemsModuleBuilder, ISystemsModuleBuilderReadonly, ISystemsModuleRepository, ISystemsRuntime, ISystemsRuntimeContext, ISystemsRuntimeMiddleware, MiddlewareRegistry, MiddlewareRegistryReadonly, SystemContextControlState, SystemMiddlewareName, SystemModuleName, SystemType };
@@ -1,2 +1,2 @@
1
- import { a as ISystemsModuleRepository, c as ISystemsModule, d as ISystemContextSnapshot, f as ISystemContextScheduler, h as ISystemContextEvents, i as ISystemContextEntity, l as SystemType, m as ISystemContextProxies, n as ISystemsRuntimeContext, o as ISystemsModuleBuilder, p as ISystemContextRepository, r as ISystemsRuntime, s as ISystemMiddleware, t as ISystemsRuntimeMiddleware, u as ISystemContext } from "../index-BC8RgFVd.mjs";
2
- export { ISystemContext, ISystemContextEntity, ISystemContextEvents, ISystemContextProxies, ISystemContextRepository, ISystemContextScheduler, ISystemContextSnapshot, ISystemMiddleware, ISystemsModule, ISystemsModuleBuilder, ISystemsModuleRepository, ISystemsRuntime, ISystemsRuntimeContext, ISystemsRuntimeMiddleware, SystemType };
1
+ import { A as SystemModuleName, C as ISystemContextControl, D as MiddlewareRegistry, E as ISystemMiddleware, O as MiddlewareRegistryReadonly, S as ISystemContextEvents, T as SystemContextControlState, _ as ISystemContext, a as ISystemsRuntime, b as ISystemContextRepository, c as ISystemsModuleBuilder, g as IMutableSystemContext, i as ISystemsRuntimeContext, k as SystemMiddlewareName, l as ISystemsModuleBuilderReadonly, o as ISystemsModuleRepository, r as ISystemsRuntimeMiddleware, s as ISystemsModule, u as SystemType, v as ISystemContextSnapshot, w as ISystemContextControlState, x as ISystemContextProxies, y as ISystemContextScheduler } from "../index-DZlhICMZ.mjs";
2
+ export { IMutableSystemContext, ISystemContext, ISystemContextControl, ISystemContextControlState, ISystemContextEvents, ISystemContextProxies, ISystemContextRepository, ISystemContextScheduler, ISystemContextSnapshot, ISystemMiddleware, ISystemsModule, ISystemsModuleBuilder, ISystemsModuleBuilderReadonly, ISystemsModuleRepository, ISystemsRuntime, ISystemsRuntimeContext, ISystemsRuntimeMiddleware, MiddlewareRegistry, MiddlewareRegistryReadonly, SystemContextControlState, SystemMiddlewareName, SystemModuleName, SystemType };
@@ -1,3 +1,13 @@
1
+ //#region src/systems/pipeline/system-context-control.ts
2
+ let SystemContextControlState = /* @__PURE__ */ function(SystemContextControlState) {
3
+ SystemContextControlState["none"] = "none";
4
+ SystemContextControlState["enableCurrentSystem"] = "enableCurrentSystem";
5
+ SystemContextControlState["disableCurrentSystem"] = "disableCurrentSystem";
6
+ SystemContextControlState["enableCurrentModule"] = "enableCurrentModule";
7
+ SystemContextControlState["disableCurrentModule"] = "disableCurrentModule";
8
+ return SystemContextControlState;
9
+ }({});
10
+ //#endregion
1
11
  //#region src/systems/system-type.ts
2
12
  /**
3
13
  * The four phases of entity system execution in each frame.
@@ -28,6 +38,6 @@ let SystemType = /* @__PURE__ */ function(SystemType) {
28
38
  return SystemType;
29
39
  }({});
30
40
  //#endregion
31
- export { SystemType };
41
+ export { SystemContextControlState, SystemType };
32
42
 
33
43
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":[],"sources":["../../src/systems/system-type.ts"],"sourcesContent":["/**\r\n * The four phases of entity system execution in each frame.\r\n * Each phase serves a specific purpose in the entity lifecycle and can be extended by custom system types.\r\n * The runtime handles each phase in order, allowing systems to perform stage-specific operations.\r\n */\r\nexport enum SystemType {\r\n /**\r\n * Initial setup and resource allocation for the entity.\r\n * Runs once when the entity is first created or initialized.\r\n */\r\n initialize = 0,\r\n\r\n /**\r\n * Main logic and state updates for the entity.\r\n * Runs on every update to change entity behavior and properties.\r\n */\r\n update = 1,\r\n\r\n /**\r\n * Output and visualization operations.\r\n * Runs after updates to render or display the entity state.\r\n */\r\n render = 2,\r\n\r\n /**\r\n * Synchronization and persistence.\r\n * Runs last to synchronize state with external systems or storage.\r\n */\r\n sync = 3\r\n}\r\n"],"mappings":";;;;;;AAKA,IAAY,aAAL,yBAAA,YAAA;;;;;AAKL,YAAA,WAAA,gBAAA,KAAA;;;;;AAMA,YAAA,WAAA,YAAA,KAAA;;;;;AAMA,YAAA,WAAA,YAAA,KAAA;;;;;AAMA,YAAA,WAAA,UAAA,KAAA;;KACD"}
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../../src/systems/pipeline/system-context-control.ts","../../src/systems/system-type.ts"],"sourcesContent":["import { IEntity } from '@awesome-ecs/abstract/entities';\r\nimport { ISystemMiddleware } from './system-middleware';\r\n\r\nexport enum SystemContextControlState {\r\n none = 'none',\r\n enableCurrentSystem = 'enableCurrentSystem',\r\n disableCurrentSystem = 'disableCurrentSystem',\r\n enableCurrentModule = 'enableCurrentModule',\r\n disableCurrentModule = 'disableCurrentModule'\r\n}\r\n\r\n/**\r\n * Interface for controlling the execution of systems and modules within a system context.\r\n * This allows middleware to enable or disable specific systems or entire modules for the current entity.\r\n */\r\nexport interface ISystemContextControl {\r\n /**\r\n * Disables the current system for the current entity.\r\n */\r\n disableCurrentSystem(): void;\r\n\r\n /**\r\n * Re-enables the current system for the current entity.\r\n */\r\n enableCurrentSystem(): void;\r\n\r\n /**\r\n * Disables the current module for the current entity.\r\n */\r\n disableCurrentModule(): void;\r\n\r\n /**\r\n * Re-enables the current module for the current entity.\r\n */\r\n enableCurrentModule(): void;\r\n}\r\n\r\n/**\r\n * Extended system context interface that includes control state for middleware to manage system and module execution.\r\n * This allows middleware to query and modify the execution state of systems and modules during pipeline processing.\r\n */\r\nexport interface ISystemContextControlState extends ISystemContextControl {\r\n /**\r\n * Current state of system/module execution control, indicating whether the current system or module is enabled or disabled.\r\n */\r\n readonly state: SystemContextControlState;\r\n\r\n /**\r\n * Checks if a specific middleware is currently disabled in the context, allowing middleware to conditionally execute logic based on the enabled/disabled state of other middleware.\r\n * @param middleware - The middleware to check for disabled state.\r\n * @returns True if the specified middleware is currently disabled, false otherwise.\r\n */\r\n isMiddlewareDisabled(middleware: ISystemMiddleware<IEntity>): boolean;\r\n\r\n /**\r\n * Disables a specific middleware in the context.\r\n * @param middleware - The middleware to disable.\r\n */\r\n disableMiddleware(middleware: ISystemMiddleware<IEntity>): void;\r\n\r\n /**\r\n * Enables a specific middleware in the context.\r\n * @param middleware - The middleware to enable.\r\n */\r\n enableMiddleware(middleware: ISystemMiddleware<IEntity>): void;\r\n\r\n /**\r\n * Disables an entire module of middleware in the context.\r\n * @param middleware - A middleware from the module to disable.\r\n */\r\n disableModule(middleware: ISystemMiddleware<IEntity>): void;\r\n\r\n /**\r\n * Enables an entire module of middleware in the context.\r\n * @param middleware - A middleware from the module to enable.\r\n */\r\n enableModule(middleware: ISystemMiddleware<IEntity>): void;\r\n}\r\n","/**\r\n * The four phases of entity system execution in each frame.\r\n * Each phase serves a specific purpose in the entity lifecycle and can be extended by custom system types.\r\n * The runtime handles each phase in order, allowing systems to perform stage-specific operations.\r\n */\r\nexport enum SystemType {\r\n /**\r\n * Initial setup and resource allocation for the entity.\r\n * Runs once when the entity is first created or initialized.\r\n */\r\n initialize = 0,\r\n\r\n /**\r\n * Main logic and state updates for the entity.\r\n * Runs on every update to change entity behavior and properties.\r\n */\r\n update = 1,\r\n\r\n /**\r\n * Output and visualization operations.\r\n * Runs after updates to render or display the entity state.\r\n */\r\n render = 2,\r\n\r\n /**\r\n * Synchronization and persistence.\r\n * Runs last to synchronize state with external systems or storage.\r\n */\r\n sync = 3\r\n}\r\n"],"mappings":";AAGA,IAAY,4BAAL,yBAAA,2BAAA;AACL,2BAAA,UAAA;AACA,2BAAA,yBAAA;AACA,2BAAA,0BAAA;AACA,2BAAA,yBAAA;AACA,2BAAA,0BAAA;;KACD;;;;;;;;ACJD,IAAY,aAAL,yBAAA,YAAA;;;;;AAKL,YAAA,WAAA,gBAAA,KAAA;;;;;AAMA,YAAA,WAAA,YAAA,KAAA;;;;;AAMA,YAAA,WAAA,YAAA,KAAA;;;;;AAMA,YAAA,WAAA,UAAA,KAAA;;KACD"}
@@ -1,3 +1,3 @@
1
- import { a as ImmutableObject, c as Mutable, i as ImmutableMap, l as MutableDeep, n as Immutable, o as ImmutableObjectDeep, r as ImmutableArray, s as ImmutableSet, t as BooleanProps } from "../types-DqWnkvhp.cjs";
2
- import { a as ILogger, c as IJsonSerializer, i as PerformanceTimerUid, l as dispatchSequential, n as PerformanceMetricOptions, o as ILoggerOptions, r as PerformanceTimeEntry, s as LogLevel, t as IPerformanceTimer } from "../index-DCx0PjvH.cjs";
3
- export { BooleanProps, IJsonSerializer, ILogger, ILoggerOptions, IPerformanceTimer, Immutable, ImmutableArray, ImmutableMap, ImmutableObject, ImmutableObjectDeep, ImmutableSet, LogLevel, Mutable, MutableDeep, PerformanceMetricOptions, PerformanceTimeEntry, PerformanceTimerUid, dispatchSequential };
1
+ import { a as ImmutableArray, c as ImmutableObjectDeep, d as MutableDeep, i as Immutable, l as ImmutableSet, o as ImmutableMap, r as BooleanProps, s as ImmutableObject, u as Mutable } from "../identity-component-DLDaOTyK.cjs";
2
+ import { $ as dispatchSequential, G as MiddlewareMetricsSummary, H as PerformanceMetricOptions, J as TickSnapshot, K as RenderSnapshot, Q as IJsonSerializer, U as PerformanceTimeEntry, V as IPerformanceTimer, W as PerformanceTimerUid, X as ILoggerOptions, Y as ILogger, Z as LogLevel, q as TickMetricEntry } from "../index-zohK7ftH.cjs";
3
+ export { BooleanProps, IJsonSerializer, ILogger, ILoggerOptions, IPerformanceTimer, Immutable, ImmutableArray, ImmutableMap, ImmutableObject, ImmutableObjectDeep, ImmutableSet, LogLevel, MiddlewareMetricsSummary, Mutable, MutableDeep, PerformanceMetricOptions, PerformanceTimeEntry, PerformanceTimerUid, RenderSnapshot, TickMetricEntry, TickSnapshot, dispatchSequential };
@@ -1,3 +1,3 @@
1
- import { a as ImmutableObject, c as Mutable, i as ImmutableMap, l as MutableDeep, n as Immutable, o as ImmutableObjectDeep, r as ImmutableArray, s as ImmutableSet, t as BooleanProps } from "../types-aD9p7TDy.mjs";
2
- import { a as ILogger, c as IJsonSerializer, i as PerformanceTimerUid, l as dispatchSequential, n as PerformanceMetricOptions, o as ILoggerOptions, r as PerformanceTimeEntry, s as LogLevel, t as IPerformanceTimer } from "../index-EpAQRAeF.mjs";
3
- export { BooleanProps, IJsonSerializer, ILogger, ILoggerOptions, IPerformanceTimer, Immutable, ImmutableArray, ImmutableMap, ImmutableObject, ImmutableObjectDeep, ImmutableSet, LogLevel, Mutable, MutableDeep, PerformanceMetricOptions, PerformanceTimeEntry, PerformanceTimerUid, dispatchSequential };
1
+ import { a as ImmutableArray, c as ImmutableObjectDeep, d as MutableDeep, i as Immutable, l as ImmutableSet, o as ImmutableMap, r as BooleanProps, s as ImmutableObject, u as Mutable } from "../identity-component-CuWHf7jX.mjs";
2
+ import { $ as dispatchSequential, G as MiddlewareMetricsSummary, H as PerformanceMetricOptions, J as TickSnapshot, K as RenderSnapshot, Q as IJsonSerializer, U as PerformanceTimeEntry, V as IPerformanceTimer, W as PerformanceTimerUid, X as ILoggerOptions, Y as ILogger, Z as LogLevel, q as TickMetricEntry } from "../index-DZlhICMZ.mjs";
3
+ export { BooleanProps, IJsonSerializer, ILogger, ILoggerOptions, IPerformanceTimer, Immutable, ImmutableArray, ImmutableMap, ImmutableObject, ImmutableObjectDeep, ImmutableSet, LogLevel, MiddlewareMetricsSummary, Mutable, MutableDeep, PerformanceMetricOptions, PerformanceTimeEntry, PerformanceTimerUid, RenderSnapshot, TickMetricEntry, TickSnapshot, dispatchSequential };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awesome-ecs/abstract",
3
- "version": "0.29.0",
3
+ "version": "0.31.0",
4
4
  "description": "A comprehensive Entity-Component-System (ECS) Architecture implementation. Abstract components.",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -97,5 +97,5 @@
97
97
  "url": "https://github.com/privatebytes/awesome-ecs/issues"
98
98
  },
99
99
  "homepage": "https://github.com/privatebytes/awesome-ecs#readme",
100
- "gitHead": "37f8cf92c99229fac359cc6513e8a0abf002308b"
100
+ "gitHead": "23e307e2b48e442855dc940daad1c18985d9d94d"
101
101
  }