@descope/sdk-mixins 0.0.0-next-bd24a0f1-20250505 → 0.0.0-next-1e6d5ae0-20250528

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 (51) 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/injectNpmLibMixin/injectNpmLibMixin.js +1 -1
  10. package/dist/cjs/mixins/injectNpmLibMixin/injectNpmLibMixin.js.map +1 -1
  11. package/dist/cjs/mixins/injectStyleMixin.js +61 -0
  12. package/dist/cjs/mixins/injectStyleMixin.js.map +1 -0
  13. package/dist/cjs/mixins/themeMixin/themeMixin.js +10 -13
  14. package/dist/cjs/mixins/themeMixin/themeMixin.js.map +1 -1
  15. package/dist/esm/index.js +2 -0
  16. package/dist/esm/index.js.map +1 -1
  17. package/dist/esm/mixins/cspNonceMixin.js +32 -0
  18. package/dist/esm/mixins/cspNonceMixin.js.map +1 -0
  19. package/dist/esm/mixins/debuggerMixin/debugger-wc.js +6 -11
  20. package/dist/esm/mixins/debuggerMixin/debugger-wc.js.map +1 -1
  21. package/dist/esm/mixins/initElementMixin.js +15 -18
  22. package/dist/esm/mixins/initElementMixin.js.map +1 -1
  23. package/dist/esm/mixins/injectNpmLibMixin/injectNpmLibMixin.js +1 -1
  24. package/dist/esm/mixins/injectNpmLibMixin/injectNpmLibMixin.js.map +1 -1
  25. package/dist/esm/mixins/injectStyleMixin.js +59 -0
  26. package/dist/esm/mixins/injectStyleMixin.js.map +1 -0
  27. package/dist/esm/mixins/themeMixin/themeMixin.js +10 -13
  28. package/dist/esm/mixins/themeMixin/themeMixin.js.map +1 -1
  29. package/dist/index.d.ts +999 -249
  30. package/dist/types/index.d.ts +2 -0
  31. package/dist/types/mixins/configMixin/configMixin.d.ts +12 -12
  32. package/dist/types/mixins/createStateManagementMixin.d.ts +2 -2
  33. package/dist/types/mixins/createValidateAttributesMixin/createValidateAttributesMixin.d.ts +5 -5
  34. package/dist/types/mixins/cspNonceMixin.d.ts +341 -0
  35. package/dist/types/mixins/debuggerMixin/debugger-wc.d.ts +353 -1
  36. package/dist/types/mixins/debuggerMixin/debuggerMixin.d.ts +8 -8
  37. package/dist/types/mixins/descopeUiMixin/descopeUiMixin.d.ts +16 -16
  38. package/dist/types/mixins/formMixin.d.ts +2 -2
  39. package/dist/types/mixins/initElementMixin.d.ts +21 -2
  40. package/dist/types/mixins/initLifecycleMixin.d.ts +1 -1
  41. package/dist/types/mixins/injectNpmLibMixin/injectNpmLibMixin.d.ts +2 -2
  42. package/dist/types/mixins/injectStyleMixin.d.ts +355 -0
  43. package/dist/types/mixins/loggerMixin/loggerMixin.d.ts +2 -2
  44. package/dist/types/mixins/modalMixin/modalMixin.d.ts +33 -24
  45. package/dist/types/mixins/notificationsMixin/notificationsMixin.d.ts +33 -24
  46. package/dist/types/mixins/observeAttributesMixin/observeAttributesMixin.d.ts +4 -4
  47. package/dist/types/mixins/projectIdMixin.d.ts +5 -5
  48. package/dist/types/mixins/resetMixin.d.ts +6 -6
  49. package/dist/types/mixins/staticResourcesMixin/staticResourcesMixin.d.ts +8 -8
  50. package/dist/types/mixins/themeMixin/themeMixin.d.ts +50 -33
  51. package/package.json +13 -3
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
+ "__#29604@#logger": Logger;
18
+ "__#29604@#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
+ "__#29610@#configCacheClear"(): void;
422
+ "__#29610@#_configResource": Promise<Config>;
423
+ "__#29610@#fetchConfig": () => Promise<Config>;
424
+ "__#29605@#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
+ "__#29609@#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
+ "__#29607@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
755
+ "__#29606@#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
+ "__#29604@#logger": Logger;
759
+ "__#29604@#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
+ "__#29608@#lastBaseUrl"?: string;
764
+ "__#29608@#workingBaseUrl"?: string;
765
+ "__#29608@#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
+ "__#29607@#handleError"(attrName: string, newValue: string | null): void;
784
784
  init(): Promise<void>;
785
- "__#27719@#observeMappings": {};
785
+ "__#29606@#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
+ "__#29605@#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
+ "__#29604@#logger": Logger;
1116
+ "__#29604@#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
+ "__#29613@#debuggerEle": (HTMLElement & {
1134
1134
  updateData: (data: DebuggerMessage | DebuggerMessage[]) => void;
1135
1135
  }) | null;
1136
- "__#27725@#disableDebugger"(): void;
1137
- "__#27725@#enableDebugger"(): Promise<void>;
1136
+ "__#29613@#disableDebugger"(): void;
1137
+ "__#29613@#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
+ "__#29613@#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
+ "__#29613@#updateDebuggerMessages"(title: string, description: string): void;
1144
+ "__#29604@#logger": Logger;
1145
+ "__#29604@#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
+ "__#29605@#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
+ "__#29614@#getComponentsVersion"(): Promise<string>;
1480
+ "__#29614@#descopeUi": Promise<any>;
1481
1481
  readonly descopeUi: Promise<any>;
1482
- "__#27726@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1483
- "__#27726@#getDescopeUi"(): Promise<any>;
1482
+ "__#29614@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1483
+ "__#29614@#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
+ "__#29604@#logger": Logger;
1491
+ "__#29604@#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
+ "__#29610@#configCacheClear"(): void;
1824
+ "__#29610@#_configResource": Promise<Config>;
1825
+ "__#29610@#fetchConfig": () => Promise<Config>;
1826
+ "__#29605@#isInit": boolean;
1827
+ "__#29609@#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
+ "__#29607@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
1831
+ "__#29606@#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
+ "__#29608@#lastBaseUrl"?: string;
1835
+ "__#29608@#workingBaseUrl"?: string;
1836
+ "__#29608@#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
+ "__#29618@#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
+ "__#29617@#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
+ "__#29615@#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
+ "__#29614@#getComponentsVersion"(): Promise<string>;
1885
+ "__#29614@#descopeUi": Promise<any>;
1886
1886
  readonly descopeUi: Promise<any>;
1887
- "__#27726@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1888
- "__#27726@#getDescopeUi"(): Promise<any>;
1887
+ "__#29614@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1888
+ "__#29614@#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
+ "__#29604@#logger": Logger;
1896
+ "__#29604@#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
+ "__#29610@#configCacheClear"(): void;
2228
+ "__#29610@#_configResource": Promise<Config>;
2229
+ "__#29610@#fetchConfig": () => Promise<Config>;
2230
+ "__#29605@#isInit": boolean;
2231
+ "__#29609@#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
+ "__#29607@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2235
+ "__#29606@#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
+ "__#29608@#lastBaseUrl"?: string;
2239
+ "__#29608@#workingBaseUrl"?: string;
2240
+ "__#29608@#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
+ "__#29611@#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
+ "__#29619@#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
+ "__#29615@#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
+ "__#29615@#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
+ "__#29614@#getComponentsVersion"(): Promise<string>;
2320
+ "__#29614@#descopeUi": Promise<any>;
2312
2321
  readonly descopeUi: Promise<any>;
2313
- "__#27726@#loadDescopeUiComponent"(componentName: string): Promise<any>;
2314
- "__#27726@#getDescopeUi"(): Promise<any>;
2322
+ "__#29614@#loadDescopeUiComponent"(componentName: string): Promise<any>;
2323
+ "__#29614@#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
+ "__#29604@#logger": Logger;
2331
+ "__#29604@#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
+ "__#29610@#configCacheClear"(): void;
2663
+ "__#29610@#_configResource": Promise<Config>;
2664
+ "__#29610@#fetchConfig": () => Promise<Config>;
2665
+ "__#29605@#isInit": boolean;
2666
+ "__#29609@#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
+ "__#29607@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2670
+ "__#29606@#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
+ "__#29608@#lastBaseUrl"?: string;
2674
+ "__#29608@#workingBaseUrl"?: string;
2675
+ "__#29608@#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
+ "__#29611@#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
+ "__#29606@#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
+ "__#29605@#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
+ "__#29604@#logger": Logger;
3036
+ "__#29604@#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
+ "__#29608@#lastBaseUrl"?: string;
3056
+ "__#29608@#workingBaseUrl"?: string;
3057
+ "__#29608@#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,45 +3388,42 @@ 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
+ "__#29607@#handleError"(attrName: string, newValue: string): void;
3374
3392
  init(): Promise<void>;
3375
- "__#27719@#observeMappings": {};
3393
+ "__#29606@#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
+ "__#29605@#isInit": boolean;
3397
+ "__#29604@#logger": Logger;
3398
+ "__#29604@#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);
3384
3402
  };
3385
3403
  } & T;
3386
3404
 
3387
- type ThemeOptions = 'light' | 'dark' | 'os';
3388
- declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) => {
3405
+ declare class CSSStyleSheetMock {
3406
+ styleEle: HTMLStyleElement;
3407
+ ref: ShadowRoot | HTMLElement | null;
3408
+ constructor(ref: ShadowRoot, nonce: string, { prepend }?: {
3409
+ prepend?: boolean;
3410
+ });
3411
+ replaceSync(cssString: string): void;
3412
+ get cssRules(): CSSRuleList;
3413
+ }
3414
+ declare const injectStyleMixin: <T extends CustomElementConstructor>(superclass: T) => {
3389
3415
  new (...params: any[]): {
3390
- "__#27732@#globalStyle": CSSStyleSheet;
3391
- readonly theme: ThemeOptions;
3392
- 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, {
3399
- url?: string;
3400
- }>>;
3401
- "__#27732@#loadFonts"(): Promise<void>;
3402
- "__#27732@#applyTheme"(): Promise<void>;
3403
- "__#27732@#onThemeChange": () => void;
3404
- "__#27732@#loadTheme"(): void;
3405
- "__#27732@#toggleOsThemeChangeListener": (listen: boolean) => void;
3416
+ injectStyle(cssString: string, { prepend }?: {
3417
+ prepend?: boolean;
3418
+ }): CSSStyleSheetMock | CSSStyleSheet;
3419
+ nonce: string;
3420
+ "__#29611@#setNonce"(): void;
3406
3421
  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);
3422
+ "__#29606@#observeMappings": {};
3423
+ observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
3424
+ observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
3425
+ "__#29605@#isInit": boolean;
3426
+ connectedCallback: (() => void) & (() => void) & (() => void);
3412
3427
  accessKey: string;
3413
3428
  readonly accessKeyLabel: string;
3414
3429
  autocapitalize: string;
@@ -3730,78 +3745,60 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
3730
3745
  onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
3731
3746
  autofocus: boolean;
3732
3747
  readonly dataset: DOMStringMap;
3733
- nonce?: string;
3734
3748
  tabIndex: number;
3735
3749
  blur(): void;
3736
3750
  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);
3751
+ "__#29604@#logger": Logger;
3752
+ "__#29604@#wrapLogger"(logger: Partial<Logger>): Logger;
3739
3753
  get logger(): Logger;
3740
3754
  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);
3742
- contentRootElement: HTMLElement;
3743
- rootElement: HTMLElement;
3744
- 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>;
3749
- onReset: ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void);
3750
- 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 & {
3755
- baseUrl: string;
3756
- }) | (URL & {
3757
- baseUrl: string;
3758
- })[]) & ((filename: string) => (URL & {
3759
- baseUrl: string;
3760
- }) | (URL & {
3761
- baseUrl: string;
3762
- })[]) & ((filename: string) => (URL & {
3763
- baseUrl: string;
3764
- }) | (URL & {
3765
- baseUrl: string;
3766
- })[]);
3767
- fetchStaticResource: (<F extends "text" | "json">(filename: string, format: F) => Promise<{
3768
- body: F extends "json" ? Record<string, any> : string;
3769
- headers: Record<string, string>;
3770
- }>) & (<F_1 extends "text" | "json">(filename: string, format: F_1) => Promise<{
3771
- body: F_1 extends "json" ? Record<string, any> : string;
3772
- headers: Record<string, string>;
3773
- }>) & (<F_2 extends "text" | "json">(filename: string, format: F_2) => Promise<{
3774
- body: F_2 extends "json" ? Record<string, any> : string;
3775
- headers: Record<string, string>;
3776
- }>);
3777
- readonly baseStaticUrl: string;
3778
- readonly baseUrl: string;
3779
- readonly projectId: string;
3780
- "__#27726@#getComponentsVersion"(): Promise<string>;
3781
- "__#27726@#descopeUi": Promise<any>;
3782
- readonly descopeUi: Promise<any>;
3783
- "__#27726@#loadDescopeUiComponent"(componentName: string): Promise<any>;
3784
- "__#27726@#getDescopeUi"(): Promise<any>;
3785
- loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
3786
- readonly baseCdnUrl: string;
3787
- injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[]): Promise<{
3788
- id: string;
3789
- url: URL;
3790
- }>;
3755
+ onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
3791
3756
  };
3792
3757
  } & T;
3758
+ type InjectedStyle = CSSStyleSheet | CSSStyleSheetMock;
3793
3759
 
3794
- declare const createStateManagementMixin: <State, CaseReducers extends SliceCaseReducers<State>, Name extends string, Selectors extends SliceSelectors<State>, ReducerPath extends string = Name, AsyncActions extends Record<string, any> = {}>(options: CreateSliceOptions<State, CaseReducers, Name, ReducerPath, Selectors> & {
3795
- asyncActions?: AsyncActions;
3796
- }) => <T extends CustomElementConstructor>(superclass: T) => {
3797
- new (...args: any): {
3798
- actions: _reduxjs_toolkit.CaseReducerActions<CaseReducers, Name> & AsyncActions;
3799
- 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;
3802
- get logger(): Logger;
3803
- set logger(logger: Partial<Logger>);
3804
- onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
3760
+ type ThemeOptions = 'light' | 'dark' | 'os';
3761
+ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) => {
3762
+ new (...params: any[]): {
3763
+ "__#29620@#globalStyle": InjectedStyle;
3764
+ readonly theme: ThemeOptions;
3765
+ readonly styleId: string;
3766
+ "__#29620@#_themeResource": Promise<void | Record<string, any>>;
3767
+ "__#29620@#fetchTheme"(): Promise<Record<string, any>>;
3768
+ readonly "__#29620@#themeResource": Promise<void | Record<string, any>>;
3769
+ "__#29620@#loadGlobalStyle"(): Promise<void>;
3770
+ "__#29620@#loadComponentsStyle"(): Promise<void>;
3771
+ "__#29620@#getFontsConfig"(): Promise<Record<string, {
3772
+ url?: string;
3773
+ }>>;
3774
+ "__#29620@#loadFonts"(): Promise<void>;
3775
+ "__#29620@#applyTheme"(): Promise<void>;
3776
+ "__#29620@#onThemeChange": () => void;
3777
+ "__#29620@#loadTheme"(): void;
3778
+ "__#29620@#toggleOsThemeChangeListener": (listen: boolean) => void;
3779
+ init(): Promise<void>;
3780
+ injectStyle: ((cssString: string, { prepend }?: {
3781
+ prepend?: boolean;
3782
+ }) => {
3783
+ styleEle: HTMLStyleElement;
3784
+ ref: HTMLElement | ShadowRoot;
3785
+ replaceSync(cssString: string): void;
3786
+ readonly cssRules: CSSRuleList;
3787
+ } | CSSStyleSheet) & ((cssString: string, { prepend }?: {
3788
+ prepend?: boolean;
3789
+ }) => {
3790
+ styleEle: HTMLStyleElement;
3791
+ ref: HTMLElement | ShadowRoot;
3792
+ replaceSync(cssString: string): void;
3793
+ readonly cssRules: CSSRuleList;
3794
+ } | CSSStyleSheet);
3795
+ nonce: string;
3796
+ "__#29611@#setNonce": (() => void) & (() => void);
3797
+ "__#29606@#observeMappings": {} & {} & {} & {} & {} & {} & {} & {} & {};
3798
+ 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);
3799
+ 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);
3800
+ "__#29605@#isInit": boolean;
3801
+ connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
3805
3802
  accessKey: string;
3806
3803
  readonly accessKeyLabel: string;
3807
3804
  autocapitalize: string;
@@ -3831,7 +3828,6 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
3831
3828
  removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
3832
3829
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
3833
3830
  attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
3834
- connectedCallback(): void;
3835
3831
  readonly attributes: NamedNodeMap;
3836
3832
  readonly classList: DOMTokenList;
3837
3833
  className: string;
@@ -4124,26 +4120,74 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
4124
4120
  onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
4125
4121
  autofocus: boolean;
4126
4122
  readonly dataset: DOMStringMap;
4127
- nonce?: string;
4128
4123
  tabIndex: number;
4129
4124
  blur(): void;
4130
4125
  focus(options?: FocusOptions): void;
4126
+ "__#29604@#logger": Logger;
4127
+ "__#29604@#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);
4128
+ get logger(): Logger;
4129
+ set logger(logger: Partial<Logger>);
4130
+ 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);
4131
+ contentRootElement: HTMLElement;
4132
+ rootElement: HTMLElement;
4133
+ readonly config: Promise<Config>;
4134
+ "__#29610@#configCacheClear": (() => void) & (() => void);
4135
+ "__#29610@#_configResource": Promise<Config>;
4136
+ "__#29610@#fetchConfig": (() => Promise<Config>) & (() => Promise<Config>);
4137
+ "__#29609@#callbacks": Map<string, () => void> & Map<string, () => void>;
4138
+ onReset: ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void);
4139
+ reset: ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>);
4140
+ "__#29607@#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);
4141
+ "__#29608@#lastBaseUrl"?: string;
4142
+ "__#29608@#workingBaseUrl"?: string;
4143
+ "__#29608@#getResourceUrls": ((filename: string) => (URL & {
4144
+ baseUrl: string;
4145
+ }) | (URL & {
4146
+ baseUrl: string;
4147
+ })[]) & ((filename: string) => (URL & {
4148
+ baseUrl: string;
4149
+ }) | (URL & {
4150
+ baseUrl: string;
4151
+ })[]) & ((filename: string) => (URL & {
4152
+ baseUrl: string;
4153
+ }) | (URL & {
4154
+ baseUrl: string;
4155
+ })[]);
4156
+ fetchStaticResource: (<F extends "text" | "json">(filename: string, format: F) => Promise<{
4157
+ body: F extends "json" ? Record<string, any> : string;
4158
+ headers: Record<string, string>;
4159
+ }>) & (<F_1 extends "text" | "json">(filename: string, format: F_1) => Promise<{
4160
+ body: F_1 extends "json" ? Record<string, any> : string;
4161
+ headers: Record<string, string>;
4162
+ }>) & (<F_2 extends "text" | "json">(filename: string, format: F_2) => Promise<{
4163
+ body: F_2 extends "json" ? Record<string, any> : string;
4164
+ headers: Record<string, string>;
4165
+ }>);
4166
+ readonly baseStaticUrl: string;
4167
+ readonly baseUrl: string;
4168
+ readonly projectId: string;
4169
+ "__#29614@#getComponentsVersion"(): Promise<string>;
4170
+ "__#29614@#descopeUi": Promise<any>;
4171
+ readonly descopeUi: Promise<any>;
4172
+ "__#29614@#loadDescopeUiComponent"(componentName: string): Promise<any>;
4173
+ "__#29614@#getDescopeUi"(): Promise<any>;
4174
+ loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
4175
+ readonly baseCdnUrl: string;
4176
+ injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[]): Promise<{
4177
+ id: string;
4178
+ url: URL;
4179
+ }>;
4131
4180
  };
4132
4181
  } & T;
4133
4182
 
4134
- type ElementOrEmpty = Element | null | undefined;
4135
- declare const formMixin: <T extends CustomElementConstructor>(superclass: T) => {
4136
- new (...params: any[]): {
4137
- validateForm(rootEle: ElementOrEmpty): boolean;
4138
- getFormInputs(rootEle: ElementOrEmpty): HTMLInputElement[];
4139
- getFormData(rootEle: ElementOrEmpty): any;
4140
- setFormData(rootEle: ElementOrEmpty, data: Record<string, any>): void;
4141
- resetFormData(rootEle: ElementOrEmpty): void;
4142
- getFormFieldNames(rootEle: ElementOrEmpty): string[];
4143
- disableFormField(rootEle: ElementOrEmpty, name: string): void;
4144
- removeFormField(rootEle: ElementOrEmpty, name: string): void;
4145
- "__#27717@#logger": Logger;
4146
- "__#27717@#wrapLogger"(logger: Partial<Logger>): Logger;
4183
+ declare const createStateManagementMixin: <State, CaseReducers extends SliceCaseReducers<State>, Name extends string, Selectors extends SliceSelectors<State>, ReducerPath extends string = Name, AsyncActions extends Record<string, any> = {}>(options: CreateSliceOptions<State, CaseReducers, Name, ReducerPath, Selectors> & {
4184
+ asyncActions?: AsyncActions;
4185
+ }) => <T extends CustomElementConstructor>(superclass: T) => {
4186
+ new (...args: any): {
4187
+ actions: _reduxjs_toolkit.CaseReducerActions<CaseReducers, Name> & AsyncActions;
4188
+ subscribe: <SelectorR = State extends Draft<infer S> ? S : State>(cb: (state: SelectorR) => void, selector?: (state: State) => SelectorR) => Unsubscribe;
4189
+ "__#29604@#logger": Logger;
4190
+ "__#29604@#wrapLogger"(logger: Partial<Logger>): Logger;
4147
4191
  get logger(): Logger;
4148
4192
  set logger(logger: Partial<Logger>);
4149
4193
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -4476,10 +4520,22 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
4476
4520
  };
4477
4521
  } & T;
4478
4522
 
4479
- declare const initElementMixin: <T extends CustomElementConstructor>(superclass: T) => {
4480
- new (...rest: any[]): {
4481
- contentRootElement: HTMLElement;
4482
- rootElement: HTMLElement;
4523
+ type ElementOrEmpty = Element | null | undefined;
4524
+ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) => {
4525
+ new (...params: any[]): {
4526
+ validateForm(rootEle: ElementOrEmpty): boolean;
4527
+ getFormInputs(rootEle: ElementOrEmpty): HTMLInputElement[];
4528
+ getFormData(rootEle: ElementOrEmpty): any;
4529
+ setFormData(rootEle: ElementOrEmpty, data: Record<string, any>): void;
4530
+ resetFormData(rootEle: ElementOrEmpty): void;
4531
+ getFormFieldNames(rootEle: ElementOrEmpty): string[];
4532
+ disableFormField(rootEle: ElementOrEmpty, name: string): void;
4533
+ removeFormField(rootEle: ElementOrEmpty, name: string): void;
4534
+ "__#29604@#logger": Logger;
4535
+ "__#29604@#wrapLogger"(logger: Partial<Logger>): Logger;
4536
+ get logger(): Logger;
4537
+ set logger(logger: Partial<Logger>);
4538
+ onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
4483
4539
  accessKey: string;
4484
4540
  readonly accessKeyLabel: string;
4485
4541
  autocapitalize: string;
@@ -4809,11 +4865,26 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
4809
4865
  };
4810
4866
  } & T;
4811
4867
 
4812
- declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclass: T) => {
4813
- new (...params: any[]): {
4814
- "__#27718@#isInit": boolean;
4815
- connectedCallback(): void;
4868
+ declare const initElementMixin: <T extends CustomElementConstructor>(superclass: T) => {
4869
+ new (...rest: any[]): {
4870
+ contentRootElement: HTMLElement;
4871
+ rootElement: HTMLElement;
4872
+ injectStyle(cssString: string, { prepend }?: {
4873
+ prepend?: boolean;
4874
+ }): {
4875
+ styleEle: HTMLStyleElement;
4876
+ ref: HTMLElement | ShadowRoot;
4877
+ replaceSync(cssString: string): void;
4878
+ readonly cssRules: CSSRuleList;
4879
+ } | CSSStyleSheet;
4880
+ nonce: string;
4881
+ "__#29611@#setNonce"(): void;
4816
4882
  init(): Promise<void>;
4883
+ "__#29606@#observeMappings": {};
4884
+ observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
4885
+ observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
4886
+ "__#29605@#isInit": boolean;
4887
+ connectedCallback: (() => void) & (() => void) & (() => void);
4817
4888
  accessKey: string;
4818
4889
  readonly accessKeyLabel: string;
4819
4890
  autocapitalize: string;
@@ -5135,23 +5206,22 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
5135
5206
  onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
5136
5207
  autofocus: boolean;
5137
5208
  readonly dataset: DOMStringMap;
5138
- nonce?: string;
5139
5209
  tabIndex: number;
5140
5210
  blur(): void;
5141
5211
  focus(options?: FocusOptions): void;
5212
+ "__#29604@#logger": Logger;
5213
+ "__#29604@#wrapLogger"(logger: Partial<Logger>): Logger;
5214
+ get logger(): Logger;
5215
+ set logger(logger: Partial<Logger>);
5216
+ onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
5142
5217
  };
5143
5218
  } & T;
5144
5219
 
5145
- declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T) => {
5146
- new (...args: any): {
5147
- readonly projectId: string;
5148
- "__#27720@#handleError"(attrName: string, newValue: string): void;
5220
+ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclass: T) => {
5221
+ new (...params: any[]): {
5222
+ "__#29605@#isInit": boolean;
5223
+ connectedCallback(): void;
5149
5224
  init(): Promise<void>;
5150
- "__#27719@#observeMappings": {};
5151
- observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
5152
- observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
5153
- "__#27718@#isInit": boolean;
5154
- connectedCallback: (() => void) & (() => void) & (() => void);
5155
5225
  accessKey: string;
5156
5226
  readonly accessKeyLabel: string;
5157
5227
  autocapitalize: string;
@@ -5477,17 +5547,19 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
5477
5547
  tabIndex: number;
5478
5548
  blur(): void;
5479
5549
  focus(options?: FocusOptions): void;
5480
- "__#27717@#logger": Logger;
5481
- "__#27717@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
5482
- get logger(): Logger;
5483
- set logger(logger: Partial<Logger>);
5484
- onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
5485
5550
  };
5486
5551
  } & T;
5487
5552
 
5488
- declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T) => {
5489
- new (...params: any[]): {
5490
- readonly baseUrl: string;
5553
+ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T) => {
5554
+ new (...args: any): {
5555
+ readonly projectId: string;
5556
+ "__#29607@#handleError"(attrName: string, newValue: string): void;
5557
+ init(): Promise<void>;
5558
+ "__#29606@#observeMappings": {};
5559
+ observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
5560
+ observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
5561
+ "__#29605@#isInit": boolean;
5562
+ connectedCallback: (() => void) & (() => void) & (() => void);
5491
5563
  accessKey: string;
5492
5564
  readonly accessKeyLabel: string;
5493
5565
  autocapitalize: string;
@@ -5517,7 +5589,6 @@ declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T)
5517
5589
  removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
5518
5590
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
5519
5591
  attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
5520
- connectedCallback(): void;
5521
5592
  readonly attributes: NamedNodeMap;
5522
5593
  readonly classList: DOMTokenList;
5523
5594
  className: string;
@@ -5814,12 +5885,17 @@ declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T)
5814
5885
  tabIndex: number;
5815
5886
  blur(): void;
5816
5887
  focus(options?: FocusOptions): void;
5888
+ "__#29604@#logger": Logger;
5889
+ "__#29604@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
5890
+ get logger(): Logger;
5891
+ set logger(logger: Partial<Logger>);
5892
+ onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
5817
5893
  };
5818
5894
  } & T;
5819
5895
 
5820
- declare const cookieConfigMixin: <T extends CustomElementConstructor>(superclass: T) => {
5896
+ declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T) => {
5821
5897
  new (...params: any[]): {
5822
- readonly refreshCookieName: string;
5898
+ readonly baseUrl: string;
5823
5899
  accessKey: string;
5824
5900
  readonly accessKeyLabel: string;
5825
5901
  autocapitalize: string;
@@ -6149,21 +6225,9 @@ declare const cookieConfigMixin: <T extends CustomElementConstructor>(superclass
6149
6225
  };
6150
6226
  } & T;
6151
6227
 
6152
- declare global {
6153
- var descope: any;
6154
- }
6155
- declare const injectNpmLibMixin: <T extends CustomElementConstructor>(superclass: T) => {
6228
+ declare const cookieConfigMixin: <T extends CustomElementConstructor>(superclass: T) => {
6156
6229
  new (...params: any[]): {
6157
- readonly baseCdnUrl: string;
6158
- injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[]): Promise<{
6159
- id: string;
6160
- url: URL;
6161
- }>;
6162
- "__#27717@#logger": Logger;
6163
- "__#27717@#wrapLogger"(logger: Partial<Logger>): Logger;
6164
- get logger(): Logger;
6165
- set logger(logger: Partial<Logger>);
6166
- onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
6230
+ readonly refreshCookieName: string;
6167
6231
  accessKey: string;
6168
6232
  readonly accessKeyLabel: string;
6169
6233
  autocapitalize: string;
@@ -6493,6 +6557,692 @@ declare const injectNpmLibMixin: <T extends CustomElementConstructor>(superclass
6493
6557
  };
6494
6558
  } & T;
6495
6559
 
6560
+ declare global {
6561
+ var descope: any;
6562
+ }
6563
+ declare const injectNpmLibMixin: <T extends CustomElementConstructor>(superclass: T) => {
6564
+ new (...params: any[]): {
6565
+ readonly baseCdnUrl: string;
6566
+ injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[]): Promise<{
6567
+ id: string;
6568
+ url: URL;
6569
+ }>;
6570
+ "__#29604@#logger": Logger;
6571
+ "__#29604@#wrapLogger"(logger: Partial<Logger>): Logger;
6572
+ get logger(): Logger;
6573
+ set logger(logger: Partial<Logger>);
6574
+ onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
6575
+ accessKey: string;
6576
+ readonly accessKeyLabel: string;
6577
+ autocapitalize: string;
6578
+ dir: string;
6579
+ draggable: boolean;
6580
+ hidden: boolean;
6581
+ inert: boolean;
6582
+ innerText: string;
6583
+ lang: string;
6584
+ readonly offsetHeight: number;
6585
+ readonly offsetLeft: number;
6586
+ readonly offsetParent: Element;
6587
+ readonly offsetTop: number;
6588
+ readonly offsetWidth: number;
6589
+ outerText: string;
6590
+ popover: string;
6591
+ spellcheck: boolean;
6592
+ title: string;
6593
+ translate: boolean;
6594
+ attachInternals(): ElementInternals;
6595
+ click(): void;
6596
+ hidePopover(): void;
6597
+ showPopover(): void;
6598
+ togglePopover(force?: boolean): boolean;
6599
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
6600
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
6601
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
6602
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
6603
+ attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
6604
+ connectedCallback(): void;
6605
+ readonly attributes: NamedNodeMap;
6606
+ readonly classList: DOMTokenList;
6607
+ className: string;
6608
+ readonly clientHeight: number;
6609
+ readonly clientLeft: number;
6610
+ readonly clientTop: number;
6611
+ readonly clientWidth: number;
6612
+ id: string;
6613
+ readonly localName: string;
6614
+ readonly namespaceURI: string;
6615
+ onfullscreenchange: (this: Element, ev: Event) => any;
6616
+ onfullscreenerror: (this: Element, ev: Event) => any;
6617
+ outerHTML: string;
6618
+ readonly ownerDocument: Document;
6619
+ readonly part: DOMTokenList;
6620
+ readonly prefix: string;
6621
+ readonly scrollHeight: number;
6622
+ scrollLeft: number;
6623
+ scrollTop: number;
6624
+ readonly scrollWidth: number;
6625
+ readonly shadowRoot: ShadowRoot;
6626
+ slot: string;
6627
+ readonly tagName: string;
6628
+ attachShadow(init: ShadowRootInit): ShadowRoot;
6629
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
6630
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
6631
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
6632
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
6633
+ closest<E extends Element = Element>(selectors: string): E;
6634
+ computedStyleMap(): StylePropertyMapReadOnly;
6635
+ getAttribute(qualifiedName: string): string;
6636
+ getAttributeNS(namespace: string, localName: string): string;
6637
+ getAttributeNames(): string[];
6638
+ getAttributeNode(qualifiedName: string): Attr;
6639
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
6640
+ getBoundingClientRect(): DOMRect;
6641
+ getClientRects(): DOMRectList;
6642
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
6643
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
6644
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
6645
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
6646
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
6647
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
6648
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
6649
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
6650
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
6651
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
6652
+ hasAttribute(qualifiedName: string): boolean;
6653
+ hasAttributeNS(namespace: string, localName: string): boolean;
6654
+ hasAttributes(): boolean;
6655
+ hasPointerCapture(pointerId: number): boolean;
6656
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
6657
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
6658
+ insertAdjacentText(where: InsertPosition, data: string): void;
6659
+ matches(selectors: string): boolean;
6660
+ releasePointerCapture(pointerId: number): void;
6661
+ removeAttribute(qualifiedName: string): void;
6662
+ removeAttributeNS(namespace: string, localName: string): void;
6663
+ removeAttributeNode(attr: Attr): Attr;
6664
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
6665
+ requestPointerLock(): void;
6666
+ scroll(options?: ScrollToOptions): void;
6667
+ scroll(x: number, y: number): void;
6668
+ scrollBy(options?: ScrollToOptions): void;
6669
+ scrollBy(x: number, y: number): void;
6670
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
6671
+ scrollTo(options?: ScrollToOptions): void;
6672
+ scrollTo(x: number, y: number): void;
6673
+ setAttribute(qualifiedName: string, value: string): void;
6674
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
6675
+ setAttributeNode(attr: Attr): Attr;
6676
+ setAttributeNodeNS(attr: Attr): Attr;
6677
+ setPointerCapture(pointerId: number): void;
6678
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
6679
+ webkitMatchesSelector(selectors: string): boolean;
6680
+ readonly baseURI: string;
6681
+ readonly childNodes: NodeListOf<ChildNode>;
6682
+ readonly firstChild: ChildNode;
6683
+ readonly isConnected: boolean;
6684
+ readonly lastChild: ChildNode;
6685
+ readonly nextSibling: ChildNode;
6686
+ readonly nodeName: string;
6687
+ readonly nodeType: number;
6688
+ nodeValue: string;
6689
+ readonly parentElement: HTMLElement;
6690
+ readonly parentNode: ParentNode;
6691
+ readonly previousSibling: ChildNode;
6692
+ textContent: string;
6693
+ appendChild<T_1 extends Node>(node: T_1): T_1;
6694
+ cloneNode(deep?: boolean): Node;
6695
+ compareDocumentPosition(other: Node): number;
6696
+ contains(other: Node): boolean;
6697
+ getRootNode(options?: GetRootNodeOptions): Node;
6698
+ hasChildNodes(): boolean;
6699
+ insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
6700
+ isDefaultNamespace(namespace: string): boolean;
6701
+ isEqualNode(otherNode: Node): boolean;
6702
+ isSameNode(otherNode: Node): boolean;
6703
+ lookupNamespaceURI(prefix: string): string;
6704
+ lookupPrefix(namespace: string): string;
6705
+ normalize(): void;
6706
+ removeChild<T_3 extends Node>(child: T_3): T_3;
6707
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
6708
+ readonly ELEMENT_NODE: 1;
6709
+ readonly ATTRIBUTE_NODE: 2;
6710
+ readonly TEXT_NODE: 3;
6711
+ readonly CDATA_SECTION_NODE: 4;
6712
+ readonly ENTITY_REFERENCE_NODE: 5;
6713
+ readonly ENTITY_NODE: 6;
6714
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
6715
+ readonly COMMENT_NODE: 8;
6716
+ readonly DOCUMENT_NODE: 9;
6717
+ readonly DOCUMENT_TYPE_NODE: 10;
6718
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
6719
+ readonly NOTATION_NODE: 12;
6720
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
6721
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
6722
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
6723
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
6724
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
6725
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
6726
+ dispatchEvent(event: Event): boolean;
6727
+ ariaAtomic: string;
6728
+ ariaAutoComplete: string;
6729
+ ariaBusy: string;
6730
+ ariaChecked: string;
6731
+ ariaColCount: string;
6732
+ ariaColIndex: string;
6733
+ ariaColSpan: string;
6734
+ ariaCurrent: string;
6735
+ ariaDescription: string;
6736
+ ariaDisabled: string;
6737
+ ariaExpanded: string;
6738
+ ariaHasPopup: string;
6739
+ ariaHidden: string;
6740
+ ariaInvalid: string;
6741
+ ariaKeyShortcuts: string;
6742
+ ariaLabel: string;
6743
+ ariaLevel: string;
6744
+ ariaLive: string;
6745
+ ariaModal: string;
6746
+ ariaMultiLine: string;
6747
+ ariaMultiSelectable: string;
6748
+ ariaOrientation: string;
6749
+ ariaPlaceholder: string;
6750
+ ariaPosInSet: string;
6751
+ ariaPressed: string;
6752
+ ariaReadOnly: string;
6753
+ ariaRequired: string;
6754
+ ariaRoleDescription: string;
6755
+ ariaRowCount: string;
6756
+ ariaRowIndex: string;
6757
+ ariaRowSpan: string;
6758
+ ariaSelected: string;
6759
+ ariaSetSize: string;
6760
+ ariaSort: string;
6761
+ ariaValueMax: string;
6762
+ ariaValueMin: string;
6763
+ ariaValueNow: string;
6764
+ ariaValueText: string;
6765
+ role: string;
6766
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions): Animation;
6767
+ getAnimations(options?: GetAnimationsOptions): Animation[];
6768
+ after(...nodes: (string | Node)[]): void;
6769
+ before(...nodes: (string | Node)[]): void;
6770
+ remove(): void;
6771
+ replaceWith(...nodes: (string | Node)[]): void;
6772
+ innerHTML: string;
6773
+ readonly nextElementSibling: Element;
6774
+ readonly previousElementSibling: Element;
6775
+ readonly childElementCount: number;
6776
+ readonly children: HTMLCollection;
6777
+ readonly firstElementChild: Element;
6778
+ readonly lastElementChild: Element;
6779
+ append(...nodes: (string | Node)[]): void;
6780
+ prepend(...nodes: (string | Node)[]): void;
6781
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
6782
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
6783
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
6784
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
6785
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
6786
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
6787
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
6788
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
6789
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
6790
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
6791
+ replaceChildren(...nodes: (string | Node)[]): void;
6792
+ readonly assignedSlot: HTMLSlotElement;
6793
+ readonly attributeStyleMap: StylePropertyMap;
6794
+ readonly style: CSSStyleDeclaration;
6795
+ contentEditable: string;
6796
+ enterKeyHint: string;
6797
+ inputMode: string;
6798
+ readonly isContentEditable: boolean;
6799
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
6800
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6801
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6802
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6803
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6804
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6805
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
6806
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
6807
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
6808
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
6809
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
6810
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
6811
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
6812
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6813
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
6814
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6815
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
6816
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
6817
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
6818
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6819
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
6820
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
6821
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
6822
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
6823
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
6824
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
6825
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
6826
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
6827
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
6828
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
6829
+ onerror: OnErrorEventHandlerNonNull;
6830
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
6831
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
6832
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6833
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
6834
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
6835
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
6836
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
6837
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
6838
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
6839
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
6840
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
6841
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
6842
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6843
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6844
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6845
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6846
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6847
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6848
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6849
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6850
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
6851
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
6852
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
6853
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
6854
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6855
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6856
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6857
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6858
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6859
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6860
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6861
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6862
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
6863
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
6864
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
6865
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
6866
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
6867
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
6868
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
6869
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
6870
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
6871
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
6872
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
6873
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
6874
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
6875
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
6876
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
6877
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
6878
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
6879
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
6880
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6881
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6882
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6883
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6884
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6885
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6886
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6887
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6888
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
6889
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
6890
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
6891
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
6892
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
6893
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
6894
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
6895
+ autofocus: boolean;
6896
+ readonly dataset: DOMStringMap;
6897
+ nonce?: string;
6898
+ tabIndex: number;
6899
+ blur(): void;
6900
+ focus(options?: FocusOptions): void;
6901
+ };
6902
+ } & T;
6903
+
6904
+ declare const cspNonceMixin: <T extends CustomElementConstructor>(superclass: T) => {
6905
+ new (...params: any[]): {
6906
+ readonly nonce: string;
6907
+ "__#29611@#setNonce"(): void;
6908
+ init(): Promise<void>;
6909
+ "__#29606@#observeMappings": {};
6910
+ observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
6911
+ observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
6912
+ "__#29605@#isInit": boolean;
6913
+ connectedCallback: (() => void) & (() => void) & (() => void);
6914
+ accessKey: string;
6915
+ readonly accessKeyLabel: string;
6916
+ autocapitalize: string;
6917
+ dir: string;
6918
+ draggable: boolean;
6919
+ hidden: boolean;
6920
+ inert: boolean;
6921
+ innerText: string;
6922
+ lang: string;
6923
+ readonly offsetHeight: number;
6924
+ readonly offsetLeft: number;
6925
+ readonly offsetParent: Element;
6926
+ readonly offsetTop: number;
6927
+ readonly offsetWidth: number;
6928
+ outerText: string;
6929
+ popover: string;
6930
+ spellcheck: boolean;
6931
+ title: string;
6932
+ translate: boolean;
6933
+ attachInternals(): ElementInternals;
6934
+ click(): void;
6935
+ hidePopover(): void;
6936
+ showPopover(): void;
6937
+ togglePopover(force?: boolean): boolean;
6938
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
6939
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
6940
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
6941
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
6942
+ attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
6943
+ readonly attributes: NamedNodeMap;
6944
+ readonly classList: DOMTokenList;
6945
+ className: string;
6946
+ readonly clientHeight: number;
6947
+ readonly clientLeft: number;
6948
+ readonly clientTop: number;
6949
+ readonly clientWidth: number;
6950
+ id: string;
6951
+ readonly localName: string;
6952
+ readonly namespaceURI: string;
6953
+ onfullscreenchange: (this: Element, ev: Event) => any;
6954
+ onfullscreenerror: (this: Element, ev: Event) => any;
6955
+ outerHTML: string;
6956
+ readonly ownerDocument: Document;
6957
+ readonly part: DOMTokenList;
6958
+ readonly prefix: string;
6959
+ readonly scrollHeight: number;
6960
+ scrollLeft: number;
6961
+ scrollTop: number;
6962
+ readonly scrollWidth: number;
6963
+ readonly shadowRoot: ShadowRoot;
6964
+ slot: string;
6965
+ readonly tagName: string;
6966
+ attachShadow(init: ShadowRootInit): ShadowRoot;
6967
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
6968
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
6969
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
6970
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
6971
+ closest<E extends Element = Element>(selectors: string): E;
6972
+ computedStyleMap(): StylePropertyMapReadOnly;
6973
+ getAttribute(qualifiedName: string): string;
6974
+ getAttributeNS(namespace: string, localName: string): string;
6975
+ getAttributeNames(): string[];
6976
+ getAttributeNode(qualifiedName: string): Attr;
6977
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
6978
+ getBoundingClientRect(): DOMRect;
6979
+ getClientRects(): DOMRectList;
6980
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
6981
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
6982
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
6983
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
6984
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
6985
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
6986
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
6987
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
6988
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
6989
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
6990
+ hasAttribute(qualifiedName: string): boolean;
6991
+ hasAttributeNS(namespace: string, localName: string): boolean;
6992
+ hasAttributes(): boolean;
6993
+ hasPointerCapture(pointerId: number): boolean;
6994
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
6995
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
6996
+ insertAdjacentText(where: InsertPosition, data: string): void;
6997
+ matches(selectors: string): boolean;
6998
+ releasePointerCapture(pointerId: number): void;
6999
+ removeAttribute(qualifiedName: string): void;
7000
+ removeAttributeNS(namespace: string, localName: string): void;
7001
+ removeAttributeNode(attr: Attr): Attr;
7002
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
7003
+ requestPointerLock(): void;
7004
+ scroll(options?: ScrollToOptions): void;
7005
+ scroll(x: number, y: number): void;
7006
+ scrollBy(options?: ScrollToOptions): void;
7007
+ scrollBy(x: number, y: number): void;
7008
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
7009
+ scrollTo(options?: ScrollToOptions): void;
7010
+ scrollTo(x: number, y: number): void;
7011
+ setAttribute(qualifiedName: string, value: string): void;
7012
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
7013
+ setAttributeNode(attr: Attr): Attr;
7014
+ setAttributeNodeNS(attr: Attr): Attr;
7015
+ setPointerCapture(pointerId: number): void;
7016
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
7017
+ webkitMatchesSelector(selectors: string): boolean;
7018
+ readonly baseURI: string;
7019
+ readonly childNodes: NodeListOf<ChildNode>;
7020
+ readonly firstChild: ChildNode;
7021
+ readonly isConnected: boolean;
7022
+ readonly lastChild: ChildNode;
7023
+ readonly nextSibling: ChildNode;
7024
+ readonly nodeName: string;
7025
+ readonly nodeType: number;
7026
+ nodeValue: string;
7027
+ readonly parentElement: HTMLElement;
7028
+ readonly parentNode: ParentNode;
7029
+ readonly previousSibling: ChildNode;
7030
+ textContent: string;
7031
+ appendChild<T_1 extends Node>(node: T_1): T_1;
7032
+ cloneNode(deep?: boolean): Node;
7033
+ compareDocumentPosition(other: Node): number;
7034
+ contains(other: Node): boolean;
7035
+ getRootNode(options?: GetRootNodeOptions): Node;
7036
+ hasChildNodes(): boolean;
7037
+ insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
7038
+ isDefaultNamespace(namespace: string): boolean;
7039
+ isEqualNode(otherNode: Node): boolean;
7040
+ isSameNode(otherNode: Node): boolean;
7041
+ lookupNamespaceURI(prefix: string): string;
7042
+ lookupPrefix(namespace: string): string;
7043
+ normalize(): void;
7044
+ removeChild<T_3 extends Node>(child: T_3): T_3;
7045
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
7046
+ readonly ELEMENT_NODE: 1;
7047
+ readonly ATTRIBUTE_NODE: 2;
7048
+ readonly TEXT_NODE: 3;
7049
+ readonly CDATA_SECTION_NODE: 4;
7050
+ readonly ENTITY_REFERENCE_NODE: 5;
7051
+ readonly ENTITY_NODE: 6;
7052
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
7053
+ readonly COMMENT_NODE: 8;
7054
+ readonly DOCUMENT_NODE: 9;
7055
+ readonly DOCUMENT_TYPE_NODE: 10;
7056
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
7057
+ readonly NOTATION_NODE: 12;
7058
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
7059
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
7060
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
7061
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
7062
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
7063
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
7064
+ dispatchEvent(event: Event): boolean;
7065
+ ariaAtomic: string;
7066
+ ariaAutoComplete: string;
7067
+ ariaBusy: string;
7068
+ ariaChecked: string;
7069
+ ariaColCount: string;
7070
+ ariaColIndex: string;
7071
+ ariaColSpan: string;
7072
+ ariaCurrent: string;
7073
+ ariaDescription: string;
7074
+ ariaDisabled: string;
7075
+ ariaExpanded: string;
7076
+ ariaHasPopup: string;
7077
+ ariaHidden: string;
7078
+ ariaInvalid: string;
7079
+ ariaKeyShortcuts: string;
7080
+ ariaLabel: string;
7081
+ ariaLevel: string;
7082
+ ariaLive: string;
7083
+ ariaModal: string;
7084
+ ariaMultiLine: string;
7085
+ ariaMultiSelectable: string;
7086
+ ariaOrientation: string;
7087
+ ariaPlaceholder: string;
7088
+ ariaPosInSet: string;
7089
+ ariaPressed: string;
7090
+ ariaReadOnly: string;
7091
+ ariaRequired: string;
7092
+ ariaRoleDescription: string;
7093
+ ariaRowCount: string;
7094
+ ariaRowIndex: string;
7095
+ ariaRowSpan: string;
7096
+ ariaSelected: string;
7097
+ ariaSetSize: string;
7098
+ ariaSort: string;
7099
+ ariaValueMax: string;
7100
+ ariaValueMin: string;
7101
+ ariaValueNow: string;
7102
+ ariaValueText: string;
7103
+ role: string;
7104
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions): Animation;
7105
+ getAnimations(options?: GetAnimationsOptions): Animation[];
7106
+ after(...nodes: (string | Node)[]): void;
7107
+ before(...nodes: (string | Node)[]): void;
7108
+ remove(): void;
7109
+ replaceWith(...nodes: (string | Node)[]): void;
7110
+ innerHTML: string;
7111
+ readonly nextElementSibling: Element;
7112
+ readonly previousElementSibling: Element;
7113
+ readonly childElementCount: number;
7114
+ readonly children: HTMLCollection;
7115
+ readonly firstElementChild: Element;
7116
+ readonly lastElementChild: Element;
7117
+ append(...nodes: (string | Node)[]): void;
7118
+ prepend(...nodes: (string | Node)[]): void;
7119
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
7120
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
7121
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
7122
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
7123
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
7124
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
7125
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
7126
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
7127
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
7128
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
7129
+ replaceChildren(...nodes: (string | Node)[]): void;
7130
+ readonly assignedSlot: HTMLSlotElement;
7131
+ readonly attributeStyleMap: StylePropertyMap;
7132
+ readonly style: CSSStyleDeclaration;
7133
+ contentEditable: string;
7134
+ enterKeyHint: string;
7135
+ inputMode: string;
7136
+ readonly isContentEditable: boolean;
7137
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
7138
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7139
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7140
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7141
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7142
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7143
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
7144
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
7145
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
7146
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
7147
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
7148
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
7149
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
7150
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7151
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
7152
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7153
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
7154
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
7155
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
7156
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7157
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
7158
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
7159
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
7160
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
7161
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
7162
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
7163
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
7164
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
7165
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
7166
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
7167
+ onerror: OnErrorEventHandlerNonNull;
7168
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
7169
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
7170
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7171
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
7172
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
7173
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
7174
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
7175
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
7176
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
7177
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
7178
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
7179
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
7180
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7181
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7182
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7183
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7184
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7185
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7186
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7187
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7188
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
7189
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
7190
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
7191
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
7192
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7193
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7194
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7195
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7196
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7197
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7198
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7199
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7200
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
7201
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
7202
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
7203
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
7204
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
7205
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
7206
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
7207
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
7208
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
7209
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
7210
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
7211
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
7212
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
7213
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
7214
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
7215
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
7216
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
7217
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
7218
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7219
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7220
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7221
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7222
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7223
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7224
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7225
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7226
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
7227
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
7228
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
7229
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
7230
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
7231
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
7232
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
7233
+ autofocus: boolean;
7234
+ readonly dataset: DOMStringMap;
7235
+ tabIndex: number;
7236
+ blur(): void;
7237
+ focus(options?: FocusOptions): void;
7238
+ "__#29604@#logger": Logger;
7239
+ "__#29604@#wrapLogger"(logger: Partial<Logger>): Logger;
7240
+ get logger(): Logger;
7241
+ set logger(logger: Partial<Logger>);
7242
+ onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
7243
+ };
7244
+ } & T;
7245
+
6496
7246
  declare global {
6497
7247
  interface HTMLElement {
6498
7248
  attributeChangedCallback(attrName: string, oldValue: string | null, newValue: string | null): void;
@@ -6500,4 +7250,4 @@ declare global {
6500
7250
  }
6501
7251
  }
6502
7252
 
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 };
7253
+ export { type CheckValueFn, type ClientCondition, type ClientConditionResult, type ClientScript, type ComponentsConfig, type ComponentsDynamicAttrs, type Config, type FlowConfig, type InjectedStyle, 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 };