assign-gingerly 0.0.31 → 0.0.32

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.
@@ -226,6 +226,14 @@ export interface IAssignGingerlyOptions {
226
226
  registry?: typeof EnhancementRegistry | EnhancementRegistry;
227
227
  bypassChecks?: boolean;
228
228
  withMethods?: string[] | Set<string>;
229
+ aka?: Record<string, string>;
230
+
231
+ /**
232
+ * AbortSignal for cleaning up reactive subscriptions (@eachTime)
233
+ * Required when using @eachTime symbol for reactive iteration
234
+ * When the signal is aborted, all event listeners are automatically removed
235
+ */
236
+ signal?: AbortSignal;
229
237
  }
230
238
 
231
239
  /**
@@ -242,7 +250,6 @@ export declare class EnhancementRegisteredEvent extends Event {
242
250
  * Extends EventTarget to dispatch events when configs are registered
243
251
  */
244
252
  export declare class EnhancementRegistry extends EventTarget {
245
- private items;
246
253
  push(items: EnhancementConfig | EnhancementConfig[]): void;
247
254
  getItems(): EnhancementConfig[];
248
255
  findBySymbol(symbol: symbol | string): EnhancementConfig | undefined;
@@ -303,5 +310,7 @@ export declare class ElementEnhancementGateway{
303
310
  }
304
311
 
305
312
  export interface ElementEnhancement{
306
- dispose(regItem: EnhancementConfig): void;
313
+ get(registryItem: EnhancementConfig | string | symbol, mountCtx?: any): any;
314
+ dispose(registryItem: EnhancementConfig | string | symbol): void;
315
+ whenResolved(registryItem: EnhancementConfig | string | symbol, mountCtx?: any): Promise<any>;
307
316
  }