@acorex/components 22.0.0-next.36 → 22.0.0-next.37

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/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "22.0.0-next.36",
3
+ "version": "22.0.0-next.37",
4
4
  "peerDependencies": {
5
- "@acorex/core": "22.0.0-next.36",
6
- "@acorex/cdk": "22.0.0-next.36",
5
+ "@acorex/core": "22.0.0-next.37",
6
+ "@acorex/cdk": "22.0.0-next.37",
7
7
  "polytype": ">=0.17.0",
8
8
  "angular-imask": ">=7.6.1",
9
9
  "imask": ">=7.6.1",
@@ -865,7 +865,6 @@ declare class AXConversationComposerActionRegistry {
865
865
  private readonly _actions;
866
866
  private readonly translation;
867
867
  private readonly injector;
868
- private readonly fileTypeRegistry;
869
868
  private readonly composerTabRegistry;
870
869
  constructor();
871
870
  /** All registered actions */
@@ -886,6 +885,8 @@ declare class AXConversationComposerActionRegistry {
886
885
  * Register a composer action
887
886
  */
888
887
  register(action: AXConversationComposerAction): void;
888
+ /** Resolved lazily to avoid a DI cycle with {@link AXConversationComposerFileTypesProvider}. */
889
+ private fileTypeRegistry;
889
890
  private ensureFileTypeExists;
890
891
  /**
891
892
  * Unregister a composer action
@@ -5471,9 +5472,12 @@ declare const AX_CONVERSATION_FILE_TYPES_READY: InjectionToken<boolean>;
5471
5472
  /** Registers validation rules and lazy conversation file-type catalogs for composer actions. */
5472
5473
  declare function provideConversationComposerFileTypes(): Provider[];
5473
5474
 
5474
- /** Lazy-loads conversation file catalogs referenced by registered composer actions. */
5475
+ /**
5476
+ * Lazy-loads conversation file catalogs for the root file-type registry.
5477
+ * Must not inject {@link AXConversationComposerActionRegistry} — that registry
5478
+ * depends on {@link AXFileTypeRegistryService}, which would create a circular DI cycle.
5479
+ */
5475
5480
  declare class AXConversationComposerFileTypesProvider extends AXFileTypeInfoProvider {
5476
- private readonly composerActions;
5477
5481
  items(): Promise<AXFileType[]>;
5478
5482
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXConversationComposerFileTypesProvider, never>;
5479
5483
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXConversationComposerFileTypesProvider>;