@genesislcap/foundation-utils 14.225.3 → 14.225.4-alpha-5f6eefd.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/custom-elements.json +149 -149
  2. package/dist/dts/error/errorMap.d.ts.map +1 -1
  3. package/dist/dts/mixins/lifecycle/lifecycle.d.ts +51 -29
  4. package/dist/dts/mixins/lifecycle/lifecycle.d.ts.map +1 -1
  5. package/dist/dts/mixins/pendingState/pendingState.d.ts +45 -29
  6. package/dist/dts/mixins/pendingState/pendingState.d.ts.map +1 -1
  7. package/dist/dts/observer/observer.d.ts.map +1 -1
  8. package/dist/dts/promise/resolveAfter.d.ts.map +1 -1
  9. package/dist/dts/tsdoc-metadata.json +1 -1
  10. package/dist/esm/mixins/lifecycle/lifecycle.js +5 -5
  11. package/dist/esm/mixins/pendingState/pendingState.js +2 -2
  12. package/dist/esm/uuid/uuid.js +2 -2
  13. package/dist/foundation-utils.api.json +1221 -318
  14. package/dist/foundation-utils.d.ts +93 -58
  15. package/docs/api/foundation-utils.createerrormap.md +14 -1
  16. package/docs/api/foundation-utils.createobserver.md +5 -1
  17. package/docs/api/foundation-utils.decodefrombase64.md +14 -1
  18. package/docs/api/foundation-utils.decodefrombase64withprefix.md +13 -1
  19. package/docs/api/foundation-utils.encodetobase64.md +14 -1
  20. package/docs/api/foundation-utils.encodetobase64withprefix.md +13 -1
  21. package/docs/api/foundation-utils.getfontmixin.md +16 -1
  22. package/docs/api/foundation-utils.iniframe.md +7 -1
  23. package/docs/api/foundation-utils.insertdocumentcssrule.md +15 -1
  24. package/docs/api/foundation-utils.insertdocumentlink.md +12 -1
  25. package/docs/api/foundation-utils.insymphonydesktop.md +7 -1
  26. package/docs/api/foundation-utils.isdev.md +5 -1
  27. package/docs/api/foundation-utils.lifecyclemixin.md +56 -30
  28. package/docs/api/foundation-utils.loadfontfaces.md +13 -1
  29. package/docs/api/foundation-utils.md +18 -18
  30. package/docs/api/foundation-utils.openpopup.md +17 -1
  31. package/docs/api/foundation-utils.pendingstate.md +57 -30
  32. package/docs/api/foundation-utils.resolveafter.md +12 -1
  33. package/docs/api/foundation-utils.respondtovisibility.md +13 -1
  34. package/docs/{api-report.md → api-report.md.api.md} +93 -58
  35. package/package.json +11 -11
@@ -97,11 +97,15 @@ export declare const PendingState: <TBase extends ConstructablePendingState>(Bas
97
97
  readonly offsetTop: number;
98
98
  readonly offsetWidth: number;
99
99
  outerText: string;
100
+ popover: string;
100
101
  spellcheck: boolean;
101
102
  title: string;
102
103
  translate: boolean;
103
104
  attachInternals(): ElementInternals;
104
105
  click(): void;
106
+ hidePopover(): void;
107
+ showPopover(): void;
108
+ togglePopover(force?: boolean): boolean;
105
109
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
106
110
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
107
111
  removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
@@ -130,9 +134,12 @@ export declare const PendingState: <TBase extends ConstructablePendingState>(Bas
130
134
  slot: string;
131
135
  readonly tagName: string;
132
136
  attachShadow(init: ShadowRootInit): ShadowRoot;
137
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
133
138
  closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
134
139
  closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
140
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
135
141
  closest<E extends Element = Element>(selectors: string): E;
142
+ computedStyleMap(): StylePropertyMapReadOnly;
136
143
  getAttribute(qualifiedName: string): string;
137
144
  getAttributeNS(namespace: string, localName: string): string;
138
145
  getAttributeNames(): string[];
@@ -141,11 +148,14 @@ export declare const PendingState: <TBase extends ConstructablePendingState>(Bas
141
148
  getBoundingClientRect(): DOMRect;
142
149
  getClientRects(): DOMRectList;
143
150
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
144
- getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
145
- getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
151
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
152
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
153
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
154
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
146
155
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
147
156
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
148
157
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
158
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
149
159
  getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
150
160
  hasAttribute(qualifiedName: string): boolean;
151
161
  hasAttributeNS(namespace: string, localName: string): boolean;
@@ -203,24 +213,24 @@ export declare const PendingState: <TBase extends ConstructablePendingState>(Bas
203
213
  normalize(): void;
204
214
  removeChild<T_2 extends Node>(child: T_2): T_2;
205
215
  replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
206
- readonly ATTRIBUTE_NODE: number;
207
- readonly CDATA_SECTION_NODE: number;
208
- readonly COMMENT_NODE: number;
209
- readonly DOCUMENT_FRAGMENT_NODE: number;
210
- readonly DOCUMENT_NODE: number;
211
- readonly DOCUMENT_POSITION_CONTAINED_BY: number;
212
- readonly DOCUMENT_POSITION_CONTAINS: number;
213
- readonly DOCUMENT_POSITION_DISCONNECTED: number;
214
- readonly DOCUMENT_POSITION_FOLLOWING: number;
215
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
216
- readonly DOCUMENT_POSITION_PRECEDING: number;
217
- readonly DOCUMENT_TYPE_NODE: number;
218
- readonly ELEMENT_NODE: number;
219
- readonly ENTITY_NODE: number;
220
- readonly ENTITY_REFERENCE_NODE: number;
221
- readonly NOTATION_NODE: number;
222
- readonly PROCESSING_INSTRUCTION_NODE: number;
223
- readonly TEXT_NODE: number;
216
+ readonly ELEMENT_NODE: 1;
217
+ readonly ATTRIBUTE_NODE: 2;
218
+ readonly TEXT_NODE: 3;
219
+ readonly CDATA_SECTION_NODE: 4;
220
+ readonly ENTITY_REFERENCE_NODE: 5;
221
+ readonly ENTITY_NODE: 6;
222
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
223
+ readonly COMMENT_NODE: 8;
224
+ readonly DOCUMENT_NODE: 9;
225
+ readonly DOCUMENT_TYPE_NODE: 10;
226
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
227
+ readonly NOTATION_NODE: 12;
228
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
229
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
230
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
231
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
232
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
233
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
224
234
  dispatchEvent(event: Event): boolean;
225
235
  ariaAtomic: string;
226
236
  ariaAutoComplete: string;
@@ -228,9 +238,9 @@ export declare const PendingState: <TBase extends ConstructablePendingState>(Bas
228
238
  ariaChecked: string;
229
239
  ariaColCount: string;
230
240
  ariaColIndex: string;
231
- ariaColIndexText: string;
232
241
  ariaColSpan: string;
233
242
  ariaCurrent: string;
243
+ ariaDescription: string;
234
244
  ariaDisabled: string;
235
245
  ariaExpanded: string;
236
246
  ariaHasPopup: string;
@@ -252,7 +262,6 @@ export declare const PendingState: <TBase extends ConstructablePendingState>(Bas
252
262
  ariaRoleDescription: string;
253
263
  ariaRowCount: string;
254
264
  ariaRowIndex: string;
255
- ariaRowIndexText: string;
256
265
  ariaRowSpan: string;
257
266
  ariaSelected: string;
258
267
  ariaSetSize: string;
@@ -277,17 +286,19 @@ export declare const PendingState: <TBase extends ConstructablePendingState>(Bas
277
286
  readonly lastElementChild: Element;
278
287
  append(...nodes: (string | Node)[]): void;
279
288
  prepend(...nodes: (string | Node)[]): void;
280
- querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
281
- querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
289
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
290
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
291
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
292
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
282
293
  querySelector<E_1 extends Element = Element>(selectors: string): E_1;
283
- querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
284
- querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
294
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
295
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
296
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
297
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
285
298
  querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
286
299
  replaceChildren(...nodes: (string | Node)[]): void;
287
300
  readonly assignedSlot: HTMLSlotElement;
288
- oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
289
- oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
290
- onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
301
+ readonly attributeStyleMap: StylePropertyMap;
291
302
  readonly style: CSSStyleDeclaration;
292
303
  contentEditable: string;
293
304
  enterKeyHint: string;
@@ -300,6 +311,7 @@ export declare const PendingState: <TBase extends ConstructablePendingState>(Bas
300
311
  onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
301
312
  onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
302
313
  onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
314
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
303
315
  onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
304
316
  oncancel: (this: GlobalEventHandlers, ev: Event) => any;
305
317
  oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
@@ -308,7 +320,9 @@ export declare const PendingState: <TBase extends ConstructablePendingState>(Bas
308
320
  onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
309
321
  onclose: (this: GlobalEventHandlers, ev: Event) => any;
310
322
  oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
323
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
311
324
  oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
325
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
312
326
  ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
313
327
  ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
314
328
  ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
@@ -341,6 +355,7 @@ export declare const PendingState: <TBase extends ConstructablePendingState>(Bas
341
355
  onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
342
356
  onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
343
357
  onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
358
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
344
359
  onpause: (this: GlobalEventHandlers, ev: Event) => any;
345
360
  onplay: (this: GlobalEventHandlers, ev: Event) => any;
346
361
  onplaying: (this: GlobalEventHandlers, ev: Event) => any;
@@ -357,6 +372,7 @@ export declare const PendingState: <TBase extends ConstructablePendingState>(Bas
357
372
  onreset: (this: GlobalEventHandlers, ev: Event) => any;
358
373
  onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
359
374
  onscroll: (this: GlobalEventHandlers, ev: Event) => any;
375
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
360
376
  onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
361
377
  onseeked: (this: GlobalEventHandlers, ev: Event) => any;
362
378
  onseeking: (this: GlobalEventHandlers, ev: Event) => any;
@@ -1 +1 @@
1
- {"version":3,"file":"pendingState.d.ts","sourceRoot":"","sources":["../../../../src/mixins/pendingState/pendingState.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,WAAW,EAAc,MAAM,yBAAyB,CAAC;AAGjF;;;GAGG;AACH,OAAO,MAAM,qBAAqB,GAAG;IACnC,OAAO,EAAE,OAAO,CAAC,IAAI,CAAC,CAAC;CACxB,CAAC;AAEF;;;GAGG;AACH,OAAO,MAAM,0BAA0B,GAAG;IACxC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,KAAK,CAAC;CACd,CAAC;AAEF;;;GAGG;AACH,oBAAY,kBAAkB;IAC5B,KAAK,kBAAkB;IACvB,KAAK,wBAAwB;CAC9B;AAED;;;GAGG;AACH,MAAM,CAAC,OAAO,MAAM,iBAAiB,GAAG,WAAW,CAAC,qBAAqB,CAAC,CAAC;AAE3E;;;GAGG;AACH,MAAM,CAAC,OAAO,MAAM,sBAAsB,GAAG,WAAW,CAAC,0BAA0B,CAAC,CAAC;AAErF;;;GAGG;AACH,MAAM,CAAC,OAAO,MAAM,yBAAyB,GAAG,aAAa,CAAC,WAAW,GAAG,WAAW,CAAC,CAAC;AAEzF;;;GAGG;AACH,eAAO,MAAM,YAAY;;QAErB;;;WAGG;;QAGH;;;WAGG;;QAGH;;;WAGG;;QAIH;;;WAGG;;QAKH;;;WAGG;6BACyB,IAAI;QAUhC;;;WAGG;gCAC4B,IAAI;QAMnC;;;;WAIG;mCACqC,iBAAiB,GAAG,QAAQ,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAsB5E,CAAC"}
1
+ {"version":3,"file":"pendingState.d.ts","sourceRoot":"","sources":["../../../../src/mixins/pendingState/pendingState.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,WAAW,EAAc,MAAM,yBAAyB,CAAC;AAGjF;;;GAGG;AACH,OAAO,MAAM,qBAAqB,GAAG;IACnC,OAAO,EAAE,OAAO,CAAC,IAAI,CAAC,CAAC;CACxB,CAAC;AAEF;;;GAGG;AACH,OAAO,MAAM,0BAA0B,GAAG;IACxC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,KAAK,CAAC;CACd,CAAC;AAEF;;;GAGG;AACH,oBAAY,kBAAkB;IAC5B,KAAK,kBAAkB;IACvB,KAAK,wBAAwB;CAC9B;AAED;;;GAGG;AACH,MAAM,CAAC,OAAO,MAAM,iBAAiB,GAAG,WAAW,CAAC,qBAAqB,CAAC,CAAC;AAE3E;;;GAGG;AACH,MAAM,CAAC,OAAO,MAAM,sBAAsB,GAAG,WAAW,CAAC,0BAA0B,CAAC,CAAC;AAErF;;;GAGG;AACH,MAAM,CAAC,OAAO,MAAM,yBAAyB,GAAG,aAAa,CAAC,WAAW,GAAG,WAAW,CAAC,CAAC;AAEzF;;;GAGG;AACH,eAAO,MAAM,YAAY,kDAAmD,KAAK;;QAE7E;;;WAGG;;QAGH;;;WAGG;;QAGH;;;WAGG;;QAIH;;;WAGG;;QAKH;;;WAGG;6BACyB,IAAI;QAUhC;;;WAGG;gCAC4B,IAAI;QAMnC;;;;WAIG;mCACqC,iBAAiB,GAAG,QAAQ,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAsB5E,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"observer.d.ts","sourceRoot":"","sources":["../../../src/observer/observer.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,MAAM,QAAQ,CAAC,SAAS,IAAI,CAAC,EAAE,EAAE,SAAS,KAAK,IAAI,CAAC;AAC1D;;;;GAIG;AACH,MAAM,MAAM,SAAS,CAAC,SAAS,IAAI,CAAC,QAAQ,EAAE,QAAQ,CAAC,SAAS,CAAC,KAAK,MAAM,IAAI,CAAC;AACjF;;;GAGG;AACH,MAAM,MAAM,OAAO,CAAC,SAAS,IAAI,CAAC,KAAK,EAAE,SAAS,KAAK,IAAI,CAAC;AAE5D;;;GAGG;AACH,MAAM,WAAW,QAAQ,CAAC,SAAS;IACjC,SAAS,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAChC,OAAO,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;CAC7B;AAED;;;GAGG;AACH,eAAO,MAAM,cAAc,sCAW1B,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB,YAAa,WAAW,mBAAmB,OAAO,KAAK,GAAG,SAYzF,CAAC"}
1
+ {"version":3,"file":"observer.d.ts","sourceRoot":"","sources":["../../../src/observer/observer.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,MAAM,QAAQ,CAAC,SAAS,IAAI,CAAC,EAAE,EAAE,SAAS,KAAK,IAAI,CAAC;AAC1D;;;;GAIG;AACH,MAAM,MAAM,SAAS,CAAC,SAAS,IAAI,CAAC,QAAQ,EAAE,QAAQ,CAAC,SAAS,CAAC,KAAK,MAAM,IAAI,CAAC;AACjF;;;GAGG;AACH,MAAM,MAAM,OAAO,CAAC,SAAS,IAAI,CAAC,KAAK,EAAE,SAAS,KAAK,IAAI,CAAC;AAE5D;;;GAGG;AACH,MAAM,WAAW,QAAQ,CAAC,SAAS;IACjC,SAAS,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAChC,OAAO,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;CAC7B;AAED;;;GAGG;AACH,eAAO,MAAM,cAAc,mBAAkB,SAAS,SAAS,CAW9D,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB,YAAa,WAAW,mBAAmB,OAAO,KAAK,GAAG,SAYzF,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"resolveAfter.d.ts","sourceRoot":"","sources":["../../../src/promise/resolveAfter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,YAAY,gBAAiB,MAAM,sCAM/C,CAAC"}
1
+ {"version":3,"file":"resolveAfter.d.ts","sourceRoot":"","sources":["../../../src/promise/resolveAfter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,YAAY,gBAAiB,MAAM,gBAAgB,MAAM,CAAC,KAAG,QAAQ,CAAC,CAMlF,CAAC"}
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.34.9"
8
+ "packageVersion": "7.48.0"
9
9
  }
10
10
  ]
11
11
  }
@@ -129,7 +129,7 @@ export const LifecycleMixin = (Base) => { var _instances, __container, __latestT
129
129
  __shouldForceLifecycle = new WeakMap(),
130
130
  _instances = new WeakSet(),
131
131
  __blockLifecycleDueToTokenChange = function __blockLifecycleDueToTokenChange(lifecycleType) {
132
- var _a, _b;
132
+ var _b, _c;
133
133
  if (__classPrivateFieldGet(this, __container, "f")._key !== 'foundation-layout') {
134
134
  throw new Error('LifecycleMixin: should not be checking a token change if container not in the layout');
135
135
  }
@@ -137,7 +137,7 @@ export const LifecycleMixin = (Base) => { var _instances, __container, __latestT
137
137
  let result = false;
138
138
  if (lifecycleType === 'connect') {
139
139
  // We always want to allow a first connection in the layout
140
- __classPrivateFieldSet(this, __latestTokenCode, (_a = __classPrivateFieldGet(this, __container, "f").lifecycleUpdateToken) !== null && _a !== void 0 ? _a : '', "f");
140
+ __classPrivateFieldSet(this, __latestTokenCode, (_b = __classPrivateFieldGet(this, __container, "f").lifecycleUpdateToken) !== null && _b !== void 0 ? _b : '', "f");
141
141
  }
142
142
  else if (lifecycleType === 'disconnect') {
143
143
  result = tokensDifferent;
@@ -150,13 +150,13 @@ export const LifecycleMixin = (Base) => { var _instances, __container, __latestT
150
150
  }
151
151
  else if (lifecycleType === 'reconnect') {
152
152
  result = tokensDifferent;
153
- __classPrivateFieldSet(this, __latestTokenCode, (_b = __classPrivateFieldGet(this, __container, "f").lifecycleUpdateToken) !== null && _b !== void 0 ? _b : '', "f");
153
+ __classPrivateFieldSet(this, __latestTokenCode, (_c = __classPrivateFieldGet(this, __container, "f").lifecycleUpdateToken) !== null && _c !== void 0 ? _c : '', "f");
154
154
  clearTimeout(__classPrivateFieldGet(this, __cleanupTimeout, "f"));
155
155
  }
156
156
  return result;
157
157
  },
158
158
  __tryFindContainingLayout = function __tryFindContainingLayout(e) {
159
- var _a;
159
+ var _b;
160
160
  /**
161
161
  * This is a special case where the element is part of the layout cache
162
162
  * signified by a symbol put on the document cache root
@@ -169,7 +169,7 @@ export const LifecycleMixin = (Base) => { var _instances, __container, __latestT
169
169
  * without finding a containing FoundationLayout
170
170
  * hence, this item is not in a custom layout
171
171
  */
172
- if (e.getRootNode() instanceof Document || !((_a = e.getRootNode()) === null || _a === void 0 ? void 0 : _a.host)) {
172
+ if (e.getRootNode() instanceof Document || !((_b = e.getRootNode()) === null || _b === void 0 ? void 0 : _b.host)) {
173
173
  return { _key: 'dom' };
174
174
  }
175
175
  const shadowHost = e.getRootNode().host;
@@ -67,8 +67,8 @@ export const PendingState = (Base) => {
67
67
  * @param event - The `pending-state` event.
68
68
  * @internal
69
69
  */
70
- onPendingState({ detail }) {
71
- return __awaiter(this, void 0, void 0, function* () {
70
+ onPendingState(_a) {
71
+ return __awaiter(this, arguments, void 0, function* ({ detail }) {
72
72
  const { promise } = detail;
73
73
  if (promise) {
74
74
  this.hasPendingChildren = true;
@@ -28,8 +28,8 @@ class UUIDService {
28
28
  * @param withLogging - Optional. Whether to log the generated UUID to the console. Defaults to false.
29
29
  * @returns A promise that resolves to the generated UUID.
30
30
  */
31
- createRemoteId(withLogging = false) {
32
- return __awaiter(this, void 0, void 0, function* () {
31
+ createRemoteId() {
32
+ return __awaiter(this, arguments, void 0, function* (withLogging = false) {
33
33
  /**
34
34
  * TODO: Revisit async nature of id generation with potential server involvement
35
35
  * Use this.config to customize uuidv4.