@descope/sdk-mixins 0.13.0 → 0.13.2

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 (47) hide show
  1. package/dist/cjs/index.js +4 -0
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/mixins/cspNonceMixin.js +34 -0
  4. package/dist/cjs/mixins/cspNonceMixin.js.map +1 -0
  5. package/dist/cjs/mixins/debuggerMixin/debugger-wc.js +5 -10
  6. package/dist/cjs/mixins/debuggerMixin/debugger-wc.js.map +1 -1
  7. package/dist/cjs/mixins/initElementMixin.js +14 -17
  8. package/dist/cjs/mixins/initElementMixin.js.map +1 -1
  9. package/dist/cjs/mixins/injectStyleMixin.js +61 -0
  10. package/dist/cjs/mixins/injectStyleMixin.js.map +1 -0
  11. package/dist/cjs/mixins/themeMixin/themeMixin.js +5 -10
  12. package/dist/cjs/mixins/themeMixin/themeMixin.js.map +1 -1
  13. package/dist/esm/index.js +2 -0
  14. package/dist/esm/index.js.map +1 -1
  15. package/dist/esm/mixins/cspNonceMixin.js +32 -0
  16. package/dist/esm/mixins/cspNonceMixin.js.map +1 -0
  17. package/dist/esm/mixins/debuggerMixin/debugger-wc.js +6 -11
  18. package/dist/esm/mixins/debuggerMixin/debugger-wc.js.map +1 -1
  19. package/dist/esm/mixins/initElementMixin.js +15 -18
  20. package/dist/esm/mixins/initElementMixin.js.map +1 -1
  21. package/dist/esm/mixins/injectStyleMixin.js +59 -0
  22. package/dist/esm/mixins/injectStyleMixin.js.map +1 -0
  23. package/dist/esm/mixins/themeMixin/themeMixin.js +5 -10
  24. package/dist/esm/mixins/themeMixin/themeMixin.js.map +1 -1
  25. package/dist/index.d.ts +900 -151
  26. package/dist/types/index.d.ts +2 -0
  27. package/dist/types/mixins/configMixin/configMixin.d.ts +12 -12
  28. package/dist/types/mixins/createStateManagementMixin.d.ts +2 -2
  29. package/dist/types/mixins/createValidateAttributesMixin/createValidateAttributesMixin.d.ts +5 -5
  30. package/dist/types/mixins/cspNonceMixin.d.ts +341 -0
  31. package/dist/types/mixins/debuggerMixin/debugger-wc.d.ts +353 -1
  32. package/dist/types/mixins/debuggerMixin/debuggerMixin.d.ts +8 -8
  33. package/dist/types/mixins/descopeUiMixin/descopeUiMixin.d.ts +16 -16
  34. package/dist/types/mixins/formMixin.d.ts +2 -2
  35. package/dist/types/mixins/initElementMixin.d.ts +21 -2
  36. package/dist/types/mixins/initLifecycleMixin.d.ts +1 -1
  37. package/dist/types/mixins/injectNpmLibMixin/injectNpmLibMixin.d.ts +2 -2
  38. package/dist/types/mixins/injectStyleMixin.d.ts +354 -0
  39. package/dist/types/mixins/loggerMixin/loggerMixin.d.ts +2 -2
  40. package/dist/types/mixins/modalMixin/modalMixin.d.ts +33 -24
  41. package/dist/types/mixins/notificationsMixin/notificationsMixin.d.ts +33 -24
  42. package/dist/types/mixins/observeAttributesMixin/observeAttributesMixin.d.ts +4 -4
  43. package/dist/types/mixins/projectIdMixin.d.ts +5 -5
  44. package/dist/types/mixins/resetMixin.d.ts +6 -6
  45. package/dist/types/mixins/staticResourcesMixin/staticResourcesMixin.d.ts +8 -8
  46. package/dist/types/mixins/themeMixin/themeMixin.d.ts +49 -33
  47. package/package.json +11 -1
package/dist/index.d.ts CHANGED
@@ -14,8 +14,8 @@ declare const logLevels: readonly ["error", "warn", "info", "debug"];
14
14
  type LogLevel = (typeof logLevels)[number];
15
15
  declare const loggerMixin: <T extends CustomElementConstructor>(superclass: T) => {
16
16
  new (...params: any[]): {
17
- "__#27717@#logger": Logger;
18
- "__#27717@#wrapLogger"(logger: Partial<Logger>): Logger;
17
+ "__#29600@#logger": Logger;
18
+ "__#29600@#wrapLogger"(logger: Partial<Logger>): Logger;
19
19
  get logger(): Logger;
20
20
  set logger(logger: Partial<Logger> | undefined);
21
21
  onLogEvent(logLevel: LogLevel, data: any[]): void;
@@ -418,10 +418,10 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
418
418
  new (...params: any[]): {
419
419
  init(): Promise<void>;
420
420
  readonly config: Promise<Config>;
421
- "__#27723@#configCacheClear"(): void;
422
- "__#27723@#_configResource": Promise<Config>;
423
- "__#27723@#fetchConfig": () => Promise<Config>;
424
- "__#27718@#isInit": boolean;
421
+ "__#29606@#configCacheClear"(): void;
422
+ "__#29606@#_configResource": Promise<Config>;
423
+ "__#29606@#fetchConfig": () => Promise<Config>;
424
+ "__#29601@#isInit": boolean;
425
425
  connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
426
426
  accessKey: string;
427
427
  readonly accessKeyLabel: string;
@@ -748,21 +748,21 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
748
748
  tabIndex: number;
749
749
  blur(): void;
750
750
  focus(options?: FocusOptions): void;
751
- "__#27722@#callbacks": Map<string, () => void>;
751
+ "__#29605@#callbacks": Map<string, () => void>;
752
752
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
753
753
  reset(...sectionIds: string[]): Promise<void>;
754
- "__#27720@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
755
- "__#27719@#observeMappings": {} & {};
754
+ "__#29603@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
755
+ "__#29602@#observeMappings": {} & {};
756
756
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
757
757
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
758
- "__#27717@#logger": Logger;
759
- "__#27717@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
758
+ "__#29600@#logger": Logger;
759
+ "__#29600@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
760
760
  get logger(): Logger;
761
761
  set logger(logger: Partial<Logger>);
762
762
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
763
- "__#27721@#lastBaseUrl"?: string;
764
- "__#27721@#workingBaseUrl"?: string;
765
- "__#27721@#getResourceUrls"(filename: string): (URL & {
763
+ "__#29604@#lastBaseUrl"?: string;
764
+ "__#29604@#workingBaseUrl"?: string;
765
+ "__#29604@#getResourceUrls"(filename: string): (URL & {
766
766
  baseUrl: string;
767
767
  }) | (URL & {
768
768
  baseUrl: string;
@@ -780,12 +780,12 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
780
780
  declare const createValidateAttributesMixin: {
781
781
  (mappings: Record<string, CheckValueFn | string>): <T extends CustomElementConstructor>(superclass: T) => {
782
782
  new (...args: any): {
783
- "__#27720@#handleError"(attrName: string, newValue: string | null): void;
783
+ "__#29603@#handleError"(attrName: string, newValue: string | null): void;
784
784
  init(): Promise<void>;
785
- "__#27719@#observeMappings": {};
785
+ "__#29602@#observeMappings": {};
786
786
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
787
787
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
788
- "__#27718@#isInit": boolean;
788
+ "__#29601@#isInit": boolean;
789
789
  connectedCallback: (() => void) & (() => void) & (() => void);
790
790
  accessKey: string;
791
791
  readonly accessKeyLabel: string;
@@ -1112,8 +1112,8 @@ declare const createValidateAttributesMixin: {
1112
1112
  tabIndex: number;
1113
1113
  blur(): void;
1114
1114
  focus(options?: FocusOptions): void;
1115
- "__#27717@#logger": Logger;
1116
- "__#27717@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1115
+ "__#29600@#logger": Logger;
1116
+ "__#29600@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1117
1117
  get logger(): Logger;
1118
1118
  set logger(logger: Partial<Logger>);
1119
1119
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -1130,19 +1130,19 @@ type DebuggerMessage = {
1130
1130
 
1131
1131
  declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T) => {
1132
1132
  new (...params: any[]): {
1133
- "__#27725@#debuggerEle": (HTMLElement & {
1133
+ "__#29609@#debuggerEle": (HTMLElement & {
1134
1134
  updateData: (data: DebuggerMessage | DebuggerMessage[]) => void;
1135
1135
  }) | null;
1136
- "__#27725@#disableDebugger"(): void;
1137
- "__#27725@#enableDebugger"(): Promise<void>;
1136
+ "__#29609@#disableDebugger"(): void;
1137
+ "__#29609@#enableDebugger"(): Promise<void>;
1138
1138
  attributeChangedCallback: (attrName: string, oldValue: string | null, newValue: string | null) => void;
1139
1139
  readonly debug: boolean;
1140
- "__#27725@#handleDebugMode"(): void;
1140
+ "__#29609@#handleDebugMode"(): void;
1141
1141
  onLogEvent(logLevel: LogLevel, args: any[]): void;
1142
1142
  init(): Promise<void>;
1143
- "__#27725@#updateDebuggerMessages"(title: string, description: string): void;
1144
- "__#27717@#logger": Logger;
1145
- "__#27717@#wrapLogger"(logger: Partial<Logger>): Logger;
1143
+ "__#29609@#updateDebuggerMessages"(title: string, description: string): void;
1144
+ "__#29600@#logger": Logger;
1145
+ "__#29600@#wrapLogger"(logger: Partial<Logger>): Logger;
1146
1146
  get logger(): Logger;
1147
1147
  set logger(logger: Partial<Logger>);
1148
1148
  accessKey: string;
@@ -1470,25 +1470,25 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
1470
1470
  tabIndex: number;
1471
1471
  blur(): void;
1472
1472
  focus(options?: FocusOptions): void;
1473
- "__#27718@#isInit": boolean;
1473
+ "__#29601@#isInit": boolean;
1474
1474
  };
1475
1475
  } & T;
1476
1476
 
1477
1477
  declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T) => {
1478
1478
  new (...params: any[]): {
1479
- "__#27726@#getComponentsVersion"(): Promise<string>;
1480
- "__#27726@#descopeUi": Promise<any>;
1479
+ "__#29610@#getComponentsVersion"(): Promise<string>;
1480
+ "__#29610@#descopeUi": Promise<any>;
1481
1481
  readonly descopeUi: Promise<any>;
1482
- "__#27726@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1483
- "__#27726@#getDescopeUi"(): Promise<any>;
1482
+ "__#29610@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1483
+ "__#29610@#getDescopeUi"(): Promise<any>;
1484
1484
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
1485
1485
  readonly baseCdnUrl: string;
1486
1486
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[]): Promise<{
1487
1487
  id: string;
1488
1488
  url: URL;
1489
1489
  }>;
1490
- "__#27717@#logger": Logger;
1491
- "__#27717@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1490
+ "__#29600@#logger": Logger;
1491
+ "__#29600@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1492
1492
  get logger(): Logger;
1493
1493
  set logger(logger: Partial<Logger>);
1494
1494
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -1820,20 +1820,20 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
1820
1820
  focus(options?: FocusOptions): void;
1821
1821
  init(): Promise<void>;
1822
1822
  readonly config: Promise<Config>;
1823
- "__#27723@#configCacheClear"(): void;
1824
- "__#27723@#_configResource": Promise<Config>;
1825
- "__#27723@#fetchConfig": () => Promise<Config>;
1826
- "__#27718@#isInit": boolean;
1827
- "__#27722@#callbacks": Map<string, () => void>;
1823
+ "__#29606@#configCacheClear"(): void;
1824
+ "__#29606@#_configResource": Promise<Config>;
1825
+ "__#29606@#fetchConfig": () => Promise<Config>;
1826
+ "__#29601@#isInit": boolean;
1827
+ "__#29605@#callbacks": Map<string, () => void>;
1828
1828
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
1829
1829
  reset(...sectionIds: string[]): Promise<void>;
1830
- "__#27720@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
1831
- "__#27719@#observeMappings": {} & {};
1830
+ "__#29603@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
1831
+ "__#29602@#observeMappings": {} & {};
1832
1832
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
1833
1833
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
1834
- "__#27721@#lastBaseUrl"?: string;
1835
- "__#27721@#workingBaseUrl"?: string;
1836
- "__#27721@#getResourceUrls"(filename: string): (URL & {
1834
+ "__#29604@#lastBaseUrl"?: string;
1835
+ "__#29604@#workingBaseUrl"?: string;
1836
+ "__#29604@#getResourceUrls"(filename: string): (URL & {
1837
1837
  baseUrl: string;
1838
1838
  }) | (URL & {
1839
1839
  baseUrl: string;
@@ -1850,7 +1850,7 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
1850
1850
 
1851
1851
  declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) => {
1852
1852
  new (...params: any[]): {
1853
- "__#27730@#ModalDriverWrapper": {
1853
+ "__#29614@#ModalDriverWrapper": {
1854
1854
  new (refOrRefFn: Element | (() => HTMLElement), config: {
1855
1855
  logger: {
1856
1856
  error(...data: any[]): void;
@@ -1860,7 +1860,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1860
1860
  };
1861
1861
  }): {
1862
1862
  setContent(template: HTMLTemplateElement): void;
1863
- "__#27729@#private": any;
1863
+ "__#29613@#private": any;
1864
1864
  beforeOpen: () => void | Promise<void>;
1865
1865
  afterClose: () => void;
1866
1866
  nodeName: string;
@@ -1868,7 +1868,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1868
1868
  open(): Promise<void>;
1869
1869
  reset(): void;
1870
1870
  remove(): void;
1871
- "__#27727@#private": any;
1871
+ "__#29611@#private": any;
1872
1872
  logger: {
1873
1873
  error(...data: any[]): void;
1874
1874
  warn(...data: any[]): void;
@@ -1881,22 +1881,22 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1881
1881
  };
1882
1882
  createModal(config?: Record<string, string>): ModalDriver;
1883
1883
  init(): Promise<void>;
1884
- "__#27726@#getComponentsVersion"(): Promise<string>;
1885
- "__#27726@#descopeUi": Promise<any>;
1884
+ "__#29610@#getComponentsVersion"(): Promise<string>;
1885
+ "__#29610@#descopeUi": Promise<any>;
1886
1886
  readonly descopeUi: Promise<any>;
1887
- "__#27726@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1888
- "__#27726@#getDescopeUi"(): Promise<any>;
1887
+ "__#29610@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1888
+ "__#29610@#getDescopeUi"(): Promise<any>;
1889
1889
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
1890
1890
  readonly baseCdnUrl: string;
1891
1891
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[]): Promise<{
1892
1892
  id: string;
1893
1893
  url: URL;
1894
1894
  }>;
1895
- "__#27717@#logger": Logger;
1896
- "__#27717@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1895
+ "__#29600@#logger": Logger;
1896
+ "__#29600@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1897
1897
  get logger(): Logger;
1898
1898
  set logger(logger: Partial<Logger>);
1899
- onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
1899
+ onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
1900
1900
  accessKey: string;
1901
1901
  readonly accessKeyLabel: string;
1902
1902
  autocapitalize: string;
@@ -1926,7 +1926,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1926
1926
  removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
1927
1927
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
1928
1928
  attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
1929
- connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
1929
+ connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
1930
1930
  readonly attributes: NamedNodeMap;
1931
1931
  readonly classList: DOMTokenList;
1932
1932
  className: string;
@@ -2219,25 +2219,25 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
2219
2219
  onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
2220
2220
  autofocus: boolean;
2221
2221
  readonly dataset: DOMStringMap;
2222
- nonce?: string;
2222
+ nonce: string;
2223
2223
  tabIndex: number;
2224
2224
  blur(): void;
2225
2225
  focus(options?: FocusOptions): void;
2226
2226
  readonly config: Promise<Config>;
2227
- "__#27723@#configCacheClear"(): void;
2228
- "__#27723@#_configResource": Promise<Config>;
2229
- "__#27723@#fetchConfig": () => Promise<Config>;
2230
- "__#27718@#isInit": boolean;
2231
- "__#27722@#callbacks": Map<string, () => void>;
2227
+ "__#29606@#configCacheClear"(): void;
2228
+ "__#29606@#_configResource": Promise<Config>;
2229
+ "__#29606@#fetchConfig": () => Promise<Config>;
2230
+ "__#29601@#isInit": boolean;
2231
+ "__#29605@#callbacks": Map<string, () => void>;
2232
2232
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
2233
2233
  reset(...sectionIds: string[]): Promise<void>;
2234
- "__#27720@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2235
- "__#27719@#observeMappings": {} & {};
2236
- observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
2237
- observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
2238
- "__#27721@#lastBaseUrl"?: string;
2239
- "__#27721@#workingBaseUrl"?: string;
2240
- "__#27721@#getResourceUrls"(filename: string): (URL & {
2234
+ "__#29603@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2235
+ "__#29602@#observeMappings": {} & {} & {};
2236
+ observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
2237
+ observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
2238
+ "__#29604@#lastBaseUrl"?: string;
2239
+ "__#29604@#workingBaseUrl"?: string;
2240
+ "__#29604@#getResourceUrls"(filename: string): (URL & {
2241
2241
  baseUrl: string;
2242
2242
  }) | (URL & {
2243
2243
  baseUrl: string;
@@ -2251,12 +2251,21 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
2251
2251
  readonly projectId: string;
2252
2252
  contentRootElement: HTMLElement;
2253
2253
  rootElement: HTMLElement;
2254
+ injectStyle(cssString: string, { prepend }?: {
2255
+ prepend?: boolean;
2256
+ }): {
2257
+ styleEle: HTMLStyleElement;
2258
+ ref: HTMLElement | ShadowRoot;
2259
+ replaceSync(cssString: string): void;
2260
+ readonly cssRules: CSSRuleList;
2261
+ } | CSSStyleSheet;
2262
+ "__#29607@#setNonce"(): void;
2254
2263
  };
2255
2264
  } & T;
2256
2265
 
2257
2266
  declare const notificationsMixin: <T extends CustomElementConstructor>(superclass: T) => {
2258
2267
  new (...params: any[]): {
2259
- "__#27731@#NotificationDriverWrapper": {
2268
+ "__#29615@#NotificationDriverWrapper": {
2260
2269
  new (refOrRefFn: Element | (() => HTMLElement), config: {
2261
2270
  logger: {
2262
2271
  error(...data: any[]): void;
@@ -2270,7 +2279,7 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2270
2279
  close(): void;
2271
2280
  show(): void;
2272
2281
  remove(): void;
2273
- "__#27727@#private": any;
2282
+ "__#29611@#private": any;
2274
2283
  logger: {
2275
2284
  error(...data: any[]): void;
2276
2285
  warn(...data: any[]): void;
@@ -2296,7 +2305,7 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2296
2305
  close(): void;
2297
2306
  show(): void;
2298
2307
  remove(): void;
2299
- "__#27727@#private": any;
2308
+ "__#29611@#private": any;
2300
2309
  logger: {
2301
2310
  error(...data: any[]): void;
2302
2311
  warn(...data: any[]): void;
@@ -2307,22 +2316,22 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2307
2316
  readonly ele: Element;
2308
2317
  };
2309
2318
  init(): Promise<void>;
2310
- "__#27726@#getComponentsVersion"(): Promise<string>;
2311
- "__#27726@#descopeUi": Promise<any>;
2319
+ "__#29610@#getComponentsVersion"(): Promise<string>;
2320
+ "__#29610@#descopeUi": Promise<any>;
2312
2321
  readonly descopeUi: Promise<any>;
2313
- "__#27726@#loadDescopeUiComponent"(componentName: string): Promise<any>;
2314
- "__#27726@#getDescopeUi"(): Promise<any>;
2322
+ "__#29610@#loadDescopeUiComponent"(componentName: string): Promise<any>;
2323
+ "__#29610@#getDescopeUi"(): Promise<any>;
2315
2324
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
2316
2325
  readonly baseCdnUrl: string;
2317
2326
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[]): Promise<{
2318
2327
  id: string;
2319
2328
  url: URL;
2320
2329
  }>;
2321
- "__#27717@#logger": Logger;
2322
- "__#27717@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
2330
+ "__#29600@#logger": Logger;
2331
+ "__#29600@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
2323
2332
  get logger(): Logger;
2324
2333
  set logger(logger: Partial<Logger>);
2325
- onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
2334
+ onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
2326
2335
  accessKey: string;
2327
2336
  readonly accessKeyLabel: string;
2328
2337
  autocapitalize: string;
@@ -2352,7 +2361,7 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2352
2361
  removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
2353
2362
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
2354
2363
  attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
2355
- connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
2364
+ connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
2356
2365
  readonly attributes: NamedNodeMap;
2357
2366
  readonly classList: DOMTokenList;
2358
2367
  className: string;
@@ -2645,25 +2654,25 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2645
2654
  onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
2646
2655
  autofocus: boolean;
2647
2656
  readonly dataset: DOMStringMap;
2648
- nonce?: string;
2657
+ nonce: string;
2649
2658
  tabIndex: number;
2650
2659
  blur(): void;
2651
2660
  focus(options?: FocusOptions): void;
2652
2661
  readonly config: Promise<Config>;
2653
- "__#27723@#configCacheClear"(): void;
2654
- "__#27723@#_configResource": Promise<Config>;
2655
- "__#27723@#fetchConfig": () => Promise<Config>;
2656
- "__#27718@#isInit": boolean;
2657
- "__#27722@#callbacks": Map<string, () => void>;
2662
+ "__#29606@#configCacheClear"(): void;
2663
+ "__#29606@#_configResource": Promise<Config>;
2664
+ "__#29606@#fetchConfig": () => Promise<Config>;
2665
+ "__#29601@#isInit": boolean;
2666
+ "__#29605@#callbacks": Map<string, () => void>;
2658
2667
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
2659
2668
  reset(...sectionIds: string[]): Promise<void>;
2660
- "__#27720@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2661
- "__#27719@#observeMappings": {} & {};
2662
- observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
2663
- observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
2664
- "__#27721@#lastBaseUrl"?: string;
2665
- "__#27721@#workingBaseUrl"?: string;
2666
- "__#27721@#getResourceUrls"(filename: string): (URL & {
2669
+ "__#29603@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2670
+ "__#29602@#observeMappings": {} & {} & {};
2671
+ observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
2672
+ observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
2673
+ "__#29604@#lastBaseUrl"?: string;
2674
+ "__#29604@#workingBaseUrl"?: string;
2675
+ "__#29604@#getResourceUrls"(filename: string): (URL & {
2667
2676
  baseUrl: string;
2668
2677
  }) | (URL & {
2669
2678
  baseUrl: string;
@@ -2677,17 +2686,26 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2677
2686
  readonly projectId: string;
2678
2687
  contentRootElement: HTMLElement;
2679
2688
  rootElement: HTMLElement;
2689
+ injectStyle(cssString: string, { prepend }?: {
2690
+ prepend?: boolean;
2691
+ }): {
2692
+ styleEle: HTMLStyleElement;
2693
+ ref: HTMLElement | ShadowRoot;
2694
+ replaceSync(cssString: string): void;
2695
+ readonly cssRules: CSSRuleList;
2696
+ } | CSSStyleSheet;
2697
+ "__#29607@#setNonce"(): void;
2680
2698
  };
2681
2699
  } & T;
2682
2700
 
2683
2701
  type OnAttrChange = (attrName: string, value: string | null) => void;
2684
2702
  declare const observeAttributesMixin: <T extends CustomElementConstructor>(superclass: T) => {
2685
2703
  new (...params: any[]): {
2686
- "__#27719@#observeMappings": {};
2704
+ "__#29602@#observeMappings": {};
2687
2705
  init(): Promise<void>;
2688
2706
  observeAttribute(attrName: string, onAttrChange: OnAttrChange): () => any;
2689
2707
  observeAttributes(attrs: string[], cb: OnAttrChange): () => void;
2690
- "__#27718@#isInit": boolean;
2708
+ "__#29601@#isInit": boolean;
2691
2709
  connectedCallback: (() => void) & (() => void);
2692
2710
  accessKey: string;
2693
2711
  readonly accessKeyLabel: string;
@@ -3014,8 +3032,8 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
3014
3032
  tabIndex: number;
3015
3033
  blur(): void;
3016
3034
  focus(options?: FocusOptions): void;
3017
- "__#27717@#logger": Logger;
3018
- "__#27717@#wrapLogger"(logger: Partial<Logger>): Logger;
3035
+ "__#29600@#logger": Logger;
3036
+ "__#29600@#wrapLogger"(logger: Partial<Logger>): Logger;
3019
3037
  get logger(): Logger;
3020
3038
  set logger(logger: Partial<Logger>);
3021
3039
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -3034,9 +3052,9 @@ declare function getResourceUrl({ projectId, filename, assetsFolder, baseUrl, }:
3034
3052
  }): CustomUrl;
3035
3053
  declare const staticResourcesMixin: <T extends CustomElementConstructor>(superclass: T) => {
3036
3054
  new (...params: any[]): {
3037
- "__#27721@#lastBaseUrl"?: string;
3038
- "__#27721@#workingBaseUrl"?: string;
3039
- "__#27721@#getResourceUrls"(filename: string): CustomUrl[] | CustomUrl;
3055
+ "__#29604@#lastBaseUrl"?: string;
3056
+ "__#29604@#workingBaseUrl"?: string;
3057
+ "__#29604@#getResourceUrls"(filename: string): CustomUrl[] | CustomUrl;
3040
3058
  fetchStaticResource<F extends Format>(filename: string, format: F): Promise<{
3041
3059
  body: F extends 'json' ? Record<string, any> : string;
3042
3060
  headers: Record<string, string>;
@@ -3370,14 +3388,14 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
3370
3388
  blur(): void;
3371
3389
  focus(options?: FocusOptions): void;
3372
3390
  readonly projectId: string;
3373
- "__#27720@#handleError"(attrName: string, newValue: string): void;
3391
+ "__#29603@#handleError"(attrName: string, newValue: string): void;
3374
3392
  init(): Promise<void>;
3375
- "__#27719@#observeMappings": {};
3393
+ "__#29602@#observeMappings": {};
3376
3394
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
3377
3395
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
3378
- "__#27718@#isInit": boolean;
3379
- "__#27717@#logger": Logger;
3380
- "__#27717@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
3396
+ "__#29601@#isInit": boolean;
3397
+ "__#29600@#logger": Logger;
3398
+ "__#29600@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
3381
3399
  get logger(): Logger;
3382
3400
  set logger(logger: Partial<Logger>);
3383
3401
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -3387,28 +3405,45 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
3387
3405
  type ThemeOptions = 'light' | 'dark' | 'os';
3388
3406
  declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) => {
3389
3407
  new (...params: any[]): {
3390
- "__#27732@#globalStyle": CSSStyleSheet;
3408
+ "__#29616@#globalStyle": ReturnType<typeof this.injectStyle>;
3391
3409
  readonly theme: ThemeOptions;
3392
3410
  readonly styleId: string;
3393
- "__#27732@#_themeResource": Promise<void | Record<string, any>>;
3394
- "__#27732@#fetchTheme"(): Promise<Record<string, any>>;
3395
- readonly "__#27732@#themeResource": Promise<void | Record<string, any>>;
3396
- "__#27732@#loadGlobalStyle"(): Promise<void>;
3397
- "__#27732@#loadComponentsStyle"(): Promise<void>;
3398
- "__#27732@#getFontsConfig"(): Promise<Record<string, {
3411
+ "__#29616@#_themeResource": Promise<void | Record<string, any>>;
3412
+ "__#29616@#fetchTheme"(): Promise<Record<string, any>>;
3413
+ readonly "__#29616@#themeResource": Promise<void | Record<string, any>>;
3414
+ "__#29616@#loadGlobalStyle"(): Promise<void>;
3415
+ "__#29616@#loadComponentsStyle"(): Promise<void>;
3416
+ "__#29616@#getFontsConfig"(): Promise<Record<string, {
3399
3417
  url?: string;
3400
3418
  }>>;
3401
- "__#27732@#loadFonts"(): Promise<void>;
3402
- "__#27732@#applyTheme"(): Promise<void>;
3403
- "__#27732@#onThemeChange": () => void;
3404
- "__#27732@#loadTheme"(): void;
3405
- "__#27732@#toggleOsThemeChangeListener": (listen: boolean) => void;
3419
+ "__#29616@#loadFonts"(): Promise<void>;
3420
+ "__#29616@#applyTheme"(): Promise<void>;
3421
+ "__#29616@#onThemeChange": () => void;
3422
+ "__#29616@#loadTheme"(): void;
3423
+ "__#29616@#toggleOsThemeChangeListener": (listen: boolean) => void;
3406
3424
  init(): Promise<void>;
3407
- "__#27719@#observeMappings": {} & {} & {} & {} & {} & {} & {};
3408
- observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
3409
- observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
3410
- "__#27718@#isInit": boolean;
3411
- connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
3425
+ injectStyle: ((cssString: string, { prepend }?: {
3426
+ prepend?: boolean;
3427
+ }) => {
3428
+ styleEle: HTMLStyleElement;
3429
+ ref: HTMLElement | ShadowRoot;
3430
+ replaceSync(cssString: string): void;
3431
+ readonly cssRules: CSSRuleList;
3432
+ } | CSSStyleSheet) & ((cssString: string, { prepend }?: {
3433
+ prepend?: boolean;
3434
+ }) => {
3435
+ styleEle: HTMLStyleElement;
3436
+ ref: HTMLElement | ShadowRoot;
3437
+ replaceSync(cssString: string): void;
3438
+ readonly cssRules: CSSRuleList;
3439
+ } | CSSStyleSheet);
3440
+ nonce: string;
3441
+ "__#29607@#setNonce": (() => void) & (() => void);
3442
+ "__#29602@#observeMappings": {} & {} & {} & {} & {} & {} & {} & {} & {};
3443
+ observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
3444
+ observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
3445
+ "__#29601@#isInit": boolean;
3446
+ connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
3412
3447
  accessKey: string;
3413
3448
  readonly accessKeyLabel: string;
3414
3449
  autocapitalize: string;
@@ -3730,28 +3765,27 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
3730
3765
  onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
3731
3766
  autofocus: boolean;
3732
3767
  readonly dataset: DOMStringMap;
3733
- nonce?: string;
3734
3768
  tabIndex: number;
3735
3769
  blur(): void;
3736
3770
  focus(options?: FocusOptions): void;
3737
- "__#27717@#logger": Logger;
3738
- "__#27717@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
3771
+ "__#29600@#logger": Logger;
3772
+ "__#29600@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
3739
3773
  get logger(): Logger;
3740
3774
  set logger(logger: Partial<Logger>);
3741
- onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
3775
+ onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
3742
3776
  contentRootElement: HTMLElement;
3743
3777
  rootElement: HTMLElement;
3744
3778
  readonly config: Promise<Config>;
3745
- "__#27723@#configCacheClear": (() => void) & (() => void);
3746
- "__#27723@#_configResource": Promise<Config>;
3747
- "__#27723@#fetchConfig": (() => Promise<Config>) & (() => Promise<Config>);
3748
- "__#27722@#callbacks": Map<string, () => void> & Map<string, () => void>;
3779
+ "__#29606@#configCacheClear": (() => void) & (() => void);
3780
+ "__#29606@#_configResource": Promise<Config>;
3781
+ "__#29606@#fetchConfig": (() => Promise<Config>) & (() => Promise<Config>);
3782
+ "__#29605@#callbacks": Map<string, () => void> & Map<string, () => void>;
3749
3783
  onReset: ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void);
3750
3784
  reset: ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>);
3751
- "__#27720@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
3752
- "__#27721@#lastBaseUrl"?: string;
3753
- "__#27721@#workingBaseUrl"?: string;
3754
- "__#27721@#getResourceUrls": ((filename: string) => (URL & {
3785
+ "__#29603@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
3786
+ "__#29604@#lastBaseUrl"?: string;
3787
+ "__#29604@#workingBaseUrl"?: string;
3788
+ "__#29604@#getResourceUrls": ((filename: string) => (URL & {
3755
3789
  baseUrl: string;
3756
3790
  }) | (URL & {
3757
3791
  baseUrl: string;
@@ -3777,11 +3811,11 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
3777
3811
  readonly baseStaticUrl: string;
3778
3812
  readonly baseUrl: string;
3779
3813
  readonly projectId: string;
3780
- "__#27726@#getComponentsVersion"(): Promise<string>;
3781
- "__#27726@#descopeUi": Promise<any>;
3814
+ "__#29610@#getComponentsVersion"(): Promise<string>;
3815
+ "__#29610@#descopeUi": Promise<any>;
3782
3816
  readonly descopeUi: Promise<any>;
3783
- "__#27726@#loadDescopeUiComponent"(componentName: string): Promise<any>;
3784
- "__#27726@#getDescopeUi"(): Promise<any>;
3817
+ "__#29610@#loadDescopeUiComponent"(componentName: string): Promise<any>;
3818
+ "__#29610@#getDescopeUi"(): Promise<any>;
3785
3819
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
3786
3820
  readonly baseCdnUrl: string;
3787
3821
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[]): Promise<{
@@ -3797,8 +3831,8 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
3797
3831
  new (...args: any): {
3798
3832
  actions: _reduxjs_toolkit.CaseReducerActions<CaseReducers, Name> & AsyncActions;
3799
3833
  subscribe: <SelectorR = State extends Draft<infer S> ? S : State>(cb: (state: SelectorR) => void, selector?: (state: State) => SelectorR) => Unsubscribe;
3800
- "__#27717@#logger": Logger;
3801
- "__#27717@#wrapLogger"(logger: Partial<Logger>): Logger;
3834
+ "__#29600@#logger": Logger;
3835
+ "__#29600@#wrapLogger"(logger: Partial<Logger>): Logger;
3802
3836
  get logger(): Logger;
3803
3837
  set logger(logger: Partial<Logger>);
3804
3838
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -4142,8 +4176,8 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
4142
4176
  getFormFieldNames(rootEle: ElementOrEmpty): string[];
4143
4177
  disableFormField(rootEle: ElementOrEmpty, name: string): void;
4144
4178
  removeFormField(rootEle: ElementOrEmpty, name: string): void;
4145
- "__#27717@#logger": Logger;
4146
- "__#27717@#wrapLogger"(logger: Partial<Logger>): Logger;
4179
+ "__#29600@#logger": Logger;
4180
+ "__#29600@#wrapLogger"(logger: Partial<Logger>): Logger;
4147
4181
  get logger(): Logger;
4148
4182
  set logger(logger: Partial<Logger>);
4149
4183
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -4480,6 +4514,22 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
4480
4514
  new (...rest: any[]): {
4481
4515
  contentRootElement: HTMLElement;
4482
4516
  rootElement: HTMLElement;
4517
+ injectStyle(cssString: string, { prepend }?: {
4518
+ prepend?: boolean;
4519
+ }): {
4520
+ styleEle: HTMLStyleElement;
4521
+ ref: HTMLElement | ShadowRoot;
4522
+ replaceSync(cssString: string): void;
4523
+ readonly cssRules: CSSRuleList;
4524
+ } | CSSStyleSheet;
4525
+ nonce: string;
4526
+ "__#29607@#setNonce"(): void;
4527
+ init(): Promise<void>;
4528
+ "__#29602@#observeMappings": {};
4529
+ observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
4530
+ observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
4531
+ "__#29601@#isInit": boolean;
4532
+ connectedCallback: (() => void) & (() => void) & (() => void);
4483
4533
  accessKey: string;
4484
4534
  readonly accessKeyLabel: string;
4485
4535
  autocapitalize: string;
@@ -4509,7 +4559,6 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
4509
4559
  removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
4510
4560
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
4511
4561
  attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
4512
- connectedCallback(): void;
4513
4562
  readonly attributes: NamedNodeMap;
4514
4563
  readonly classList: DOMTokenList;
4515
4564
  className: string;
@@ -4802,16 +4851,20 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
4802
4851
  onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
4803
4852
  autofocus: boolean;
4804
4853
  readonly dataset: DOMStringMap;
4805
- nonce?: string;
4806
4854
  tabIndex: number;
4807
4855
  blur(): void;
4808
4856
  focus(options?: FocusOptions): void;
4857
+ "__#29600@#logger": Logger;
4858
+ "__#29600@#wrapLogger"(logger: Partial<Logger>): Logger;
4859
+ get logger(): Logger;
4860
+ set logger(logger: Partial<Logger>);
4861
+ onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
4809
4862
  };
4810
4863
  } & T;
4811
4864
 
4812
4865
  declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclass: T) => {
4813
4866
  new (...params: any[]): {
4814
- "__#27718@#isInit": boolean;
4867
+ "__#29601@#isInit": boolean;
4815
4868
  connectedCallback(): void;
4816
4869
  init(): Promise<void>;
4817
4870
  accessKey: string;
@@ -5145,12 +5198,12 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
5145
5198
  declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T) => {
5146
5199
  new (...args: any): {
5147
5200
  readonly projectId: string;
5148
- "__#27720@#handleError"(attrName: string, newValue: string): void;
5201
+ "__#29603@#handleError"(attrName: string, newValue: string): void;
5149
5202
  init(): Promise<void>;
5150
- "__#27719@#observeMappings": {};
5203
+ "__#29602@#observeMappings": {};
5151
5204
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
5152
5205
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
5153
- "__#27718@#isInit": boolean;
5206
+ "__#29601@#isInit": boolean;
5154
5207
  connectedCallback: (() => void) & (() => void) & (() => void);
5155
5208
  accessKey: string;
5156
5209
  readonly accessKeyLabel: string;
@@ -5477,8 +5530,8 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
5477
5530
  tabIndex: number;
5478
5531
  blur(): void;
5479
5532
  focus(options?: FocusOptions): void;
5480
- "__#27717@#logger": Logger;
5481
- "__#27717@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
5533
+ "__#29600@#logger": Logger;
5534
+ "__#29600@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
5482
5535
  get logger(): Logger;
5483
5536
  set logger(logger: Partial<Logger>);
5484
5537
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -6159,8 +6212,8 @@ declare const injectNpmLibMixin: <T extends CustomElementConstructor>(superclass
6159
6212
  id: string;
6160
6213
  url: URL;
6161
6214
  }>;
6162
- "__#27717@#logger": Logger;
6163
- "__#27717@#wrapLogger"(logger: Partial<Logger>): Logger;
6215
+ "__#29600@#logger": Logger;
6216
+ "__#29600@#wrapLogger"(logger: Partial<Logger>): Logger;
6164
6217
  get logger(): Logger;
6165
6218
  set logger(logger: Partial<Logger>);
6166
6219
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -6493,6 +6546,702 @@ declare const injectNpmLibMixin: <T extends CustomElementConstructor>(superclass
6493
6546
  };
6494
6547
  } & T;
6495
6548
 
6549
+ declare class CSSStyleSheetMock {
6550
+ styleEle: HTMLStyleElement;
6551
+ ref: ShadowRoot | HTMLElement | null;
6552
+ constructor(ref: ShadowRoot, nonce: string, { prepend }?: {
6553
+ prepend?: boolean;
6554
+ });
6555
+ replaceSync(cssString: string): void;
6556
+ get cssRules(): CSSRuleList;
6557
+ }
6558
+ declare const injectStyleMixin: <T extends CustomElementConstructor>(superclass: T) => {
6559
+ new (...params: any[]): {
6560
+ injectStyle(cssString: string, { prepend }?: {
6561
+ prepend?: boolean;
6562
+ }): CSSStyleSheetMock | CSSStyleSheet;
6563
+ nonce: string;
6564
+ "__#29607@#setNonce"(): void;
6565
+ init(): Promise<void>;
6566
+ "__#29602@#observeMappings": {};
6567
+ observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
6568
+ observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
6569
+ "__#29601@#isInit": boolean;
6570
+ connectedCallback: (() => void) & (() => void) & (() => void);
6571
+ accessKey: string;
6572
+ readonly accessKeyLabel: string;
6573
+ autocapitalize: string;
6574
+ dir: string;
6575
+ draggable: boolean;
6576
+ hidden: boolean;
6577
+ inert: boolean;
6578
+ innerText: string;
6579
+ lang: string;
6580
+ readonly offsetHeight: number;
6581
+ readonly offsetLeft: number;
6582
+ readonly offsetParent: Element;
6583
+ readonly offsetTop: number;
6584
+ readonly offsetWidth: number;
6585
+ outerText: string;
6586
+ popover: string;
6587
+ spellcheck: boolean;
6588
+ title: string;
6589
+ translate: boolean;
6590
+ attachInternals(): ElementInternals;
6591
+ click(): void;
6592
+ hidePopover(): void;
6593
+ showPopover(): void;
6594
+ togglePopover(force?: boolean): boolean;
6595
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
6596
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
6597
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
6598
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
6599
+ attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
6600
+ readonly attributes: NamedNodeMap;
6601
+ readonly classList: DOMTokenList;
6602
+ className: string;
6603
+ readonly clientHeight: number;
6604
+ readonly clientLeft: number;
6605
+ readonly clientTop: number;
6606
+ readonly clientWidth: number;
6607
+ id: string;
6608
+ readonly localName: string;
6609
+ readonly namespaceURI: string;
6610
+ onfullscreenchange: (this: Element, ev: Event) => any;
6611
+ onfullscreenerror: (this: Element, ev: Event) => any;
6612
+ outerHTML: string;
6613
+ readonly ownerDocument: Document;
6614
+ readonly part: DOMTokenList;
6615
+ readonly prefix: string;
6616
+ readonly scrollHeight: number;
6617
+ scrollLeft: number;
6618
+ scrollTop: number;
6619
+ readonly scrollWidth: number;
6620
+ readonly shadowRoot: ShadowRoot;
6621
+ slot: string;
6622
+ readonly tagName: string;
6623
+ attachShadow(init: ShadowRootInit): ShadowRoot;
6624
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
6625
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
6626
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
6627
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
6628
+ closest<E extends Element = Element>(selectors: string): E;
6629
+ computedStyleMap(): StylePropertyMapReadOnly;
6630
+ getAttribute(qualifiedName: string): string;
6631
+ getAttributeNS(namespace: string, localName: string): string;
6632
+ getAttributeNames(): string[];
6633
+ getAttributeNode(qualifiedName: string): Attr;
6634
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
6635
+ getBoundingClientRect(): DOMRect;
6636
+ getClientRects(): DOMRectList;
6637
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
6638
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
6639
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
6640
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
6641
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
6642
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
6643
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
6644
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
6645
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
6646
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
6647
+ hasAttribute(qualifiedName: string): boolean;
6648
+ hasAttributeNS(namespace: string, localName: string): boolean;
6649
+ hasAttributes(): boolean;
6650
+ hasPointerCapture(pointerId: number): boolean;
6651
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
6652
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
6653
+ insertAdjacentText(where: InsertPosition, data: string): void;
6654
+ matches(selectors: string): boolean;
6655
+ releasePointerCapture(pointerId: number): void;
6656
+ removeAttribute(qualifiedName: string): void;
6657
+ removeAttributeNS(namespace: string, localName: string): void;
6658
+ removeAttributeNode(attr: Attr): Attr;
6659
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
6660
+ requestPointerLock(): void;
6661
+ scroll(options?: ScrollToOptions): void;
6662
+ scroll(x: number, y: number): void;
6663
+ scrollBy(options?: ScrollToOptions): void;
6664
+ scrollBy(x: number, y: number): void;
6665
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
6666
+ scrollTo(options?: ScrollToOptions): void;
6667
+ scrollTo(x: number, y: number): void;
6668
+ setAttribute(qualifiedName: string, value: string): void;
6669
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
6670
+ setAttributeNode(attr: Attr): Attr;
6671
+ setAttributeNodeNS(attr: Attr): Attr;
6672
+ setPointerCapture(pointerId: number): void;
6673
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
6674
+ webkitMatchesSelector(selectors: string): boolean;
6675
+ readonly baseURI: string;
6676
+ readonly childNodes: NodeListOf<ChildNode>;
6677
+ readonly firstChild: ChildNode;
6678
+ readonly isConnected: boolean;
6679
+ readonly lastChild: ChildNode;
6680
+ readonly nextSibling: ChildNode;
6681
+ readonly nodeName: string;
6682
+ readonly nodeType: number;
6683
+ nodeValue: string;
6684
+ readonly parentElement: HTMLElement;
6685
+ readonly parentNode: ParentNode;
6686
+ readonly previousSibling: ChildNode;
6687
+ textContent: string;
6688
+ appendChild<T_1 extends Node>(node: T_1): T_1;
6689
+ cloneNode(deep?: boolean): Node;
6690
+ compareDocumentPosition(other: Node): number;
6691
+ contains(other: Node): boolean;
6692
+ getRootNode(options?: GetRootNodeOptions): Node;
6693
+ hasChildNodes(): boolean;
6694
+ insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
6695
+ isDefaultNamespace(namespace: string): boolean;
6696
+ isEqualNode(otherNode: Node): boolean;
6697
+ isSameNode(otherNode: Node): boolean;
6698
+ lookupNamespaceURI(prefix: string): string;
6699
+ lookupPrefix(namespace: string): string;
6700
+ normalize(): void;
6701
+ removeChild<T_3 extends Node>(child: T_3): T_3;
6702
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
6703
+ readonly ELEMENT_NODE: 1;
6704
+ readonly ATTRIBUTE_NODE: 2;
6705
+ readonly TEXT_NODE: 3;
6706
+ readonly CDATA_SECTION_NODE: 4;
6707
+ readonly ENTITY_REFERENCE_NODE: 5;
6708
+ readonly ENTITY_NODE: 6;
6709
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
6710
+ readonly COMMENT_NODE: 8;
6711
+ readonly DOCUMENT_NODE: 9;
6712
+ readonly DOCUMENT_TYPE_NODE: 10;
6713
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
6714
+ readonly NOTATION_NODE: 12;
6715
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
6716
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
6717
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
6718
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
6719
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
6720
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
6721
+ dispatchEvent(event: Event): boolean;
6722
+ ariaAtomic: string;
6723
+ ariaAutoComplete: string;
6724
+ ariaBusy: string;
6725
+ ariaChecked: string;
6726
+ ariaColCount: string;
6727
+ ariaColIndex: string;
6728
+ ariaColSpan: string;
6729
+ ariaCurrent: string;
6730
+ ariaDescription: string;
6731
+ ariaDisabled: string;
6732
+ ariaExpanded: string;
6733
+ ariaHasPopup: string;
6734
+ ariaHidden: string;
6735
+ ariaInvalid: string;
6736
+ ariaKeyShortcuts: string;
6737
+ ariaLabel: string;
6738
+ ariaLevel: string;
6739
+ ariaLive: string;
6740
+ ariaModal: string;
6741
+ ariaMultiLine: string;
6742
+ ariaMultiSelectable: string;
6743
+ ariaOrientation: string;
6744
+ ariaPlaceholder: string;
6745
+ ariaPosInSet: string;
6746
+ ariaPressed: string;
6747
+ ariaReadOnly: string;
6748
+ ariaRequired: string;
6749
+ ariaRoleDescription: string;
6750
+ ariaRowCount: string;
6751
+ ariaRowIndex: string;
6752
+ ariaRowSpan: string;
6753
+ ariaSelected: string;
6754
+ ariaSetSize: string;
6755
+ ariaSort: string;
6756
+ ariaValueMax: string;
6757
+ ariaValueMin: string;
6758
+ ariaValueNow: string;
6759
+ ariaValueText: string;
6760
+ role: string;
6761
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions): Animation;
6762
+ getAnimations(options?: GetAnimationsOptions): Animation[];
6763
+ after(...nodes: (string | Node)[]): void;
6764
+ before(...nodes: (string | Node)[]): void;
6765
+ remove(): void;
6766
+ replaceWith(...nodes: (string | Node)[]): void;
6767
+ innerHTML: string;
6768
+ readonly nextElementSibling: Element;
6769
+ readonly previousElementSibling: Element;
6770
+ readonly childElementCount: number;
6771
+ readonly children: HTMLCollection;
6772
+ readonly firstElementChild: Element;
6773
+ readonly lastElementChild: Element;
6774
+ append(...nodes: (string | Node)[]): void;
6775
+ prepend(...nodes: (string | Node)[]): void;
6776
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
6777
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
6778
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
6779
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
6780
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
6781
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
6782
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
6783
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
6784
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
6785
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
6786
+ replaceChildren(...nodes: (string | Node)[]): void;
6787
+ readonly assignedSlot: HTMLSlotElement;
6788
+ readonly attributeStyleMap: StylePropertyMap;
6789
+ readonly style: CSSStyleDeclaration;
6790
+ contentEditable: string;
6791
+ enterKeyHint: string;
6792
+ inputMode: string;
6793
+ readonly isContentEditable: boolean;
6794
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
6795
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6796
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6797
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6798
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6799
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6800
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
6801
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
6802
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
6803
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
6804
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
6805
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
6806
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
6807
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6808
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
6809
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6810
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
6811
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
6812
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
6813
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6814
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
6815
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
6816
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
6817
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
6818
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
6819
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
6820
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
6821
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
6822
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
6823
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
6824
+ onerror: OnErrorEventHandlerNonNull;
6825
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
6826
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
6827
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6828
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
6829
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
6830
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
6831
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
6832
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
6833
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
6834
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
6835
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
6836
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
6837
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6838
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6839
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6840
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6841
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6842
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6843
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6844
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6845
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
6846
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
6847
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
6848
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
6849
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6850
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6851
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6852
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6853
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6854
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6855
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6856
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6857
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
6858
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
6859
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
6860
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
6861
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
6862
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
6863
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
6864
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
6865
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
6866
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
6867
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
6868
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
6869
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
6870
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
6871
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
6872
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
6873
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
6874
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
6875
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6876
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6877
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6878
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6879
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6880
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6881
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6882
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6883
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
6884
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
6885
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
6886
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
6887
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
6888
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
6889
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
6890
+ autofocus: boolean;
6891
+ readonly dataset: DOMStringMap;
6892
+ tabIndex: number;
6893
+ blur(): void;
6894
+ focus(options?: FocusOptions): void;
6895
+ "__#29600@#logger": Logger;
6896
+ "__#29600@#wrapLogger"(logger: Partial<Logger>): Logger;
6897
+ get logger(): Logger;
6898
+ set logger(logger: Partial<Logger>);
6899
+ onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
6900
+ };
6901
+ } & T;
6902
+
6903
+ declare const cspNonceMixin: <T extends CustomElementConstructor>(superclass: T) => {
6904
+ new (...params: any[]): {
6905
+ readonly nonce: string;
6906
+ "__#29607@#setNonce"(): void;
6907
+ init(): Promise<void>;
6908
+ "__#29602@#observeMappings": {};
6909
+ observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
6910
+ observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
6911
+ "__#29601@#isInit": boolean;
6912
+ connectedCallback: (() => void) & (() => void) & (() => void);
6913
+ accessKey: string;
6914
+ readonly accessKeyLabel: string;
6915
+ autocapitalize: string;
6916
+ dir: string;
6917
+ draggable: boolean;
6918
+ hidden: boolean;
6919
+ inert: boolean;
6920
+ innerText: string;
6921
+ lang: string;
6922
+ readonly offsetHeight: number;
6923
+ readonly offsetLeft: number;
6924
+ readonly offsetParent: Element;
6925
+ readonly offsetTop: number;
6926
+ readonly offsetWidth: number;
6927
+ outerText: string;
6928
+ popover: string;
6929
+ spellcheck: boolean;
6930
+ title: string;
6931
+ translate: boolean;
6932
+ attachInternals(): ElementInternals;
6933
+ click(): void;
6934
+ hidePopover(): void;
6935
+ showPopover(): void;
6936
+ togglePopover(force?: boolean): boolean;
6937
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
6938
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
6939
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
6940
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
6941
+ attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
6942
+ readonly attributes: NamedNodeMap;
6943
+ readonly classList: DOMTokenList;
6944
+ className: string;
6945
+ readonly clientHeight: number;
6946
+ readonly clientLeft: number;
6947
+ readonly clientTop: number;
6948
+ readonly clientWidth: number;
6949
+ id: string;
6950
+ readonly localName: string;
6951
+ readonly namespaceURI: string;
6952
+ onfullscreenchange: (this: Element, ev: Event) => any;
6953
+ onfullscreenerror: (this: Element, ev: Event) => any;
6954
+ outerHTML: string;
6955
+ readonly ownerDocument: Document;
6956
+ readonly part: DOMTokenList;
6957
+ readonly prefix: string;
6958
+ readonly scrollHeight: number;
6959
+ scrollLeft: number;
6960
+ scrollTop: number;
6961
+ readonly scrollWidth: number;
6962
+ readonly shadowRoot: ShadowRoot;
6963
+ slot: string;
6964
+ readonly tagName: string;
6965
+ attachShadow(init: ShadowRootInit): ShadowRoot;
6966
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
6967
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
6968
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
6969
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
6970
+ closest<E extends Element = Element>(selectors: string): E;
6971
+ computedStyleMap(): StylePropertyMapReadOnly;
6972
+ getAttribute(qualifiedName: string): string;
6973
+ getAttributeNS(namespace: string, localName: string): string;
6974
+ getAttributeNames(): string[];
6975
+ getAttributeNode(qualifiedName: string): Attr;
6976
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
6977
+ getBoundingClientRect(): DOMRect;
6978
+ getClientRects(): DOMRectList;
6979
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
6980
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
6981
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
6982
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
6983
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
6984
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
6985
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
6986
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
6987
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
6988
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
6989
+ hasAttribute(qualifiedName: string): boolean;
6990
+ hasAttributeNS(namespace: string, localName: string): boolean;
6991
+ hasAttributes(): boolean;
6992
+ hasPointerCapture(pointerId: number): boolean;
6993
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
6994
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
6995
+ insertAdjacentText(where: InsertPosition, data: string): void;
6996
+ matches(selectors: string): boolean;
6997
+ releasePointerCapture(pointerId: number): void;
6998
+ removeAttribute(qualifiedName: string): void;
6999
+ removeAttributeNS(namespace: string, localName: string): void;
7000
+ removeAttributeNode(attr: Attr): Attr;
7001
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
7002
+ requestPointerLock(): void;
7003
+ scroll(options?: ScrollToOptions): void;
7004
+ scroll(x: number, y: number): void;
7005
+ scrollBy(options?: ScrollToOptions): void;
7006
+ scrollBy(x: number, y: number): void;
7007
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
7008
+ scrollTo(options?: ScrollToOptions): void;
7009
+ scrollTo(x: number, y: number): void;
7010
+ setAttribute(qualifiedName: string, value: string): void;
7011
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
7012
+ setAttributeNode(attr: Attr): Attr;
7013
+ setAttributeNodeNS(attr: Attr): Attr;
7014
+ setPointerCapture(pointerId: number): void;
7015
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
7016
+ webkitMatchesSelector(selectors: string): boolean;
7017
+ readonly baseURI: string;
7018
+ readonly childNodes: NodeListOf<ChildNode>;
7019
+ readonly firstChild: ChildNode;
7020
+ readonly isConnected: boolean;
7021
+ readonly lastChild: ChildNode;
7022
+ readonly nextSibling: ChildNode;
7023
+ readonly nodeName: string;
7024
+ readonly nodeType: number;
7025
+ nodeValue: string;
7026
+ readonly parentElement: HTMLElement;
7027
+ readonly parentNode: ParentNode;
7028
+ readonly previousSibling: ChildNode;
7029
+ textContent: string;
7030
+ appendChild<T_1 extends Node>(node: T_1): T_1;
7031
+ cloneNode(deep?: boolean): Node;
7032
+ compareDocumentPosition(other: Node): number;
7033
+ contains(other: Node): boolean;
7034
+ getRootNode(options?: GetRootNodeOptions): Node;
7035
+ hasChildNodes(): boolean;
7036
+ insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
7037
+ isDefaultNamespace(namespace: string): boolean;
7038
+ isEqualNode(otherNode: Node): boolean;
7039
+ isSameNode(otherNode: Node): boolean;
7040
+ lookupNamespaceURI(prefix: string): string;
7041
+ lookupPrefix(namespace: string): string;
7042
+ normalize(): void;
7043
+ removeChild<T_3 extends Node>(child: T_3): T_3;
7044
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
7045
+ readonly ELEMENT_NODE: 1;
7046
+ readonly ATTRIBUTE_NODE: 2;
7047
+ readonly TEXT_NODE: 3;
7048
+ readonly CDATA_SECTION_NODE: 4;
7049
+ readonly ENTITY_REFERENCE_NODE: 5;
7050
+ readonly ENTITY_NODE: 6;
7051
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
7052
+ readonly COMMENT_NODE: 8;
7053
+ readonly DOCUMENT_NODE: 9;
7054
+ readonly DOCUMENT_TYPE_NODE: 10;
7055
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
7056
+ readonly NOTATION_NODE: 12;
7057
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
7058
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
7059
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
7060
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
7061
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
7062
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
7063
+ dispatchEvent(event: Event): boolean;
7064
+ ariaAtomic: string;
7065
+ ariaAutoComplete: string;
7066
+ ariaBusy: string;
7067
+ ariaChecked: string;
7068
+ ariaColCount: string;
7069
+ ariaColIndex: string;
7070
+ ariaColSpan: string;
7071
+ ariaCurrent: string;
7072
+ ariaDescription: string;
7073
+ ariaDisabled: string;
7074
+ ariaExpanded: string;
7075
+ ariaHasPopup: string;
7076
+ ariaHidden: string;
7077
+ ariaInvalid: string;
7078
+ ariaKeyShortcuts: string;
7079
+ ariaLabel: string;
7080
+ ariaLevel: string;
7081
+ ariaLive: string;
7082
+ ariaModal: string;
7083
+ ariaMultiLine: string;
7084
+ ariaMultiSelectable: string;
7085
+ ariaOrientation: string;
7086
+ ariaPlaceholder: string;
7087
+ ariaPosInSet: string;
7088
+ ariaPressed: string;
7089
+ ariaReadOnly: string;
7090
+ ariaRequired: string;
7091
+ ariaRoleDescription: string;
7092
+ ariaRowCount: string;
7093
+ ariaRowIndex: string;
7094
+ ariaRowSpan: string;
7095
+ ariaSelected: string;
7096
+ ariaSetSize: string;
7097
+ ariaSort: string;
7098
+ ariaValueMax: string;
7099
+ ariaValueMin: string;
7100
+ ariaValueNow: string;
7101
+ ariaValueText: string;
7102
+ role: string;
7103
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions): Animation;
7104
+ getAnimations(options?: GetAnimationsOptions): Animation[];
7105
+ after(...nodes: (string | Node)[]): void;
7106
+ before(...nodes: (string | Node)[]): void;
7107
+ remove(): void;
7108
+ replaceWith(...nodes: (string | Node)[]): void;
7109
+ innerHTML: string;
7110
+ readonly nextElementSibling: Element;
7111
+ readonly previousElementSibling: Element;
7112
+ readonly childElementCount: number;
7113
+ readonly children: HTMLCollection;
7114
+ readonly firstElementChild: Element;
7115
+ readonly lastElementChild: Element;
7116
+ append(...nodes: (string | Node)[]): void;
7117
+ prepend(...nodes: (string | Node)[]): void;
7118
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
7119
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
7120
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
7121
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
7122
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
7123
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
7124
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
7125
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
7126
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
7127
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
7128
+ replaceChildren(...nodes: (string | Node)[]): void;
7129
+ readonly assignedSlot: HTMLSlotElement;
7130
+ readonly attributeStyleMap: StylePropertyMap;
7131
+ readonly style: CSSStyleDeclaration;
7132
+ contentEditable: string;
7133
+ enterKeyHint: string;
7134
+ inputMode: string;
7135
+ readonly isContentEditable: boolean;
7136
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
7137
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7138
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7139
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7140
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7141
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7142
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
7143
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
7144
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
7145
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
7146
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
7147
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
7148
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
7149
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7150
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
7151
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7152
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
7153
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
7154
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
7155
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7156
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
7157
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
7158
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
7159
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
7160
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
7161
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
7162
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
7163
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
7164
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
7165
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
7166
+ onerror: OnErrorEventHandlerNonNull;
7167
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
7168
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
7169
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7170
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
7171
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
7172
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
7173
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
7174
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
7175
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
7176
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
7177
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
7178
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
7179
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7180
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7181
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7182
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7183
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7184
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7185
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7186
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7187
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
7188
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
7189
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
7190
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
7191
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7192
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7193
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7194
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7195
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7196
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7197
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7198
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7199
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
7200
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
7201
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
7202
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
7203
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
7204
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
7205
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
7206
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
7207
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
7208
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
7209
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
7210
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
7211
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
7212
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
7213
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
7214
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
7215
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
7216
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
7217
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7218
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7219
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7220
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7221
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7222
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7223
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7224
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7225
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
7226
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
7227
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
7228
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
7229
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
7230
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
7231
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
7232
+ autofocus: boolean;
7233
+ readonly dataset: DOMStringMap;
7234
+ tabIndex: number;
7235
+ blur(): void;
7236
+ focus(options?: FocusOptions): void;
7237
+ "__#29600@#logger": Logger;
7238
+ "__#29600@#wrapLogger"(logger: Partial<Logger>): Logger;
7239
+ get logger(): Logger;
7240
+ set logger(logger: Partial<Logger>);
7241
+ onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
7242
+ };
7243
+ } & T;
7244
+
6496
7245
  declare global {
6497
7246
  interface HTMLElement {
6498
7247
  attributeChangedCallback(attrName: string, oldValue: string | null, newValue: string | null): void;
@@ -6500,4 +7249,4 @@ declare global {
6500
7249
  }
6501
7250
  }
6502
7251
 
6503
- export { type CheckValueFn, type ClientCondition, type ClientConditionResult, type ClientScript, type ComponentsConfig, type ComponentsDynamicAttrs, type Config, type FlowConfig, type LogLevel, type Logger, type ProjectConfiguration, type ThemeOptions, baseUrlMixin, configMixin, cookieConfigMixin, createStateManagementMixin, createValidateAttributesMixin, debuggerMixin, descopeUiMixin, formMixin, getResourceUrl, initElementMixin, initLifecycleMixin, injectNpmLibMixin, loggerMixin, modalMixin, notificationsMixin, observeAttributesMixin, projectIdMixin, staticResourcesMixin, themeMixin };
7252
+ export { type CheckValueFn, type ClientCondition, type ClientConditionResult, type ClientScript, type ComponentsConfig, type ComponentsDynamicAttrs, type Config, type FlowConfig, type LogLevel, type Logger, type ProjectConfiguration, type ThemeOptions, baseUrlMixin, configMixin, cookieConfigMixin, createStateManagementMixin, createValidateAttributesMixin, cspNonceMixin, debuggerMixin, descopeUiMixin, formMixin, getResourceUrl, initElementMixin, initLifecycleMixin, injectNpmLibMixin, injectStyleMixin, loggerMixin, modalMixin, notificationsMixin, observeAttributesMixin, projectIdMixin, staticResourcesMixin, themeMixin };