@descope/sdk-mixins 0.18.0 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/dist/cjs/index.js +2 -0
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/mixins/descopeUiMixin/descopeUiMixin.js +7 -1
  4. package/dist/cjs/mixins/descopeUiMixin/descopeUiMixin.js.map +1 -1
  5. package/dist/cjs/mixins/tenantIdMixin.js +19 -0
  6. package/dist/cjs/mixins/tenantIdMixin.js.map +1 -0
  7. package/dist/cjs/mixins/themeMixin/helpers.js +20 -0
  8. package/dist/cjs/mixins/themeMixin/helpers.js.map +1 -1
  9. package/dist/cjs/mixins/themeMixin/themeMixin.js +72 -15
  10. package/dist/cjs/mixins/themeMixin/themeMixin.js.map +1 -1
  11. package/dist/esm/index.js +1 -0
  12. package/dist/esm/index.js.map +1 -1
  13. package/dist/esm/mixins/descopeUiMixin/descopeUiMixin.js +8 -2
  14. package/dist/esm/mixins/descopeUiMixin/descopeUiMixin.js.map +1 -1
  15. package/dist/esm/mixins/tenantIdMixin.js +17 -0
  16. package/dist/esm/mixins/tenantIdMixin.js.map +1 -0
  17. package/dist/esm/mixins/themeMixin/helpers.js +20 -1
  18. package/dist/esm/mixins/themeMixin/helpers.js.map +1 -1
  19. package/dist/esm/mixins/themeMixin/themeMixin.js +73 -16
  20. package/dist/esm/mixins/themeMixin/themeMixin.js.map +1 -1
  21. package/dist/index.d.ts +543 -194
  22. package/dist/types/index.d.ts +1 -0
  23. package/dist/types/mixins/configMixin/configMixin.d.ts +14 -14
  24. package/dist/types/mixins/createStateManagementMixin.d.ts +2 -2
  25. package/dist/types/mixins/createValidateAttributesMixin/createValidateAttributesMixin.d.ts +5 -5
  26. package/dist/types/mixins/cspNonceMixin.d.ts +5 -5
  27. package/dist/types/mixins/debuggerMixin/debugger-wc.d.ts +5 -5
  28. package/dist/types/mixins/debuggerMixin/debuggerMixin.d.ts +8 -8
  29. package/dist/types/mixins/descopeUiMixin/descopeUiMixin.d.ts +19 -19
  30. package/dist/types/mixins/formMixin.d.ts +2 -2
  31. package/dist/types/mixins/initElementMixin.d.ts +5 -5
  32. package/dist/types/mixins/initLifecycleMixin.d.ts +1 -1
  33. package/dist/types/mixins/injectNpmLibMixin/injectNpmLibMixin.d.ts +2 -2
  34. package/dist/types/mixins/injectStyleMixin.d.ts +5 -5
  35. package/dist/types/mixins/loggerMixin/loggerMixin.d.ts +2 -2
  36. package/dist/types/mixins/modalMixin/modalMixin.d.ts +23 -23
  37. package/dist/types/mixins/notificationsMixin/notificationsMixin.d.ts +23 -23
  38. package/dist/types/mixins/observeAttributesMixin/observeAttributesMixin.d.ts +4 -4
  39. package/dist/types/mixins/projectIdMixin.d.ts +5 -5
  40. package/dist/types/mixins/resetMixin.d.ts +6 -6
  41. package/dist/types/mixins/staticResourcesMixin/staticResourcesMixin.d.ts +10 -10
  42. package/dist/types/mixins/tenantIdMixin.d.ts +342 -0
  43. package/dist/types/mixins/themeMixin/helpers.d.ts +1 -0
  44. package/dist/types/mixins/themeMixin/themeMixin.d.ts +45 -39
  45. package/dist/types/mixins/widgetConfigMixin/widgetConfigMixin.d.ts +14 -14
  46. package/dist/types/mixins/widgetIdMixin.d.ts +5 -5
  47. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -14,8 +14,8 @@ declare const logLevels: readonly ["error", "warn", "info", "debug"];
14
14
  type LogLevel = (typeof logLevels)[number];
15
15
  declare const loggerMixin: <T extends CustomElementConstructor>(superclass: T) => {
16
16
  new (...params: any[]): {
17
- "__#33506@#logger": Logger;
18
- "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
17
+ "__#34158@#logger": Logger;
18
+ "__#34158@#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;
@@ -425,10 +425,10 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
425
425
  new (...params: any[]): {
426
426
  init(): Promise<void>;
427
427
  readonly config: Promise<Config>;
428
- "__#33512@#configCacheClear"(): void;
429
- "__#33512@#_configResource": Promise<Config>;
430
- "__#33512@#fetchConfig": () => Promise<Config>;
431
- "__#33507@#isInit": boolean;
428
+ "__#34164@#configCacheClear"(): void;
429
+ "__#34164@#_configResource": Promise<Config>;
430
+ "__#34164@#fetchConfig": () => Promise<Config>;
431
+ "__#34159@#isInit": boolean;
432
432
  connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
433
433
  accessKey: string;
434
434
  readonly accessKeyLabel: string;
@@ -755,27 +755,27 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
755
755
  tabIndex: number;
756
756
  blur(): void;
757
757
  focus(options?: FocusOptions): void;
758
- "__#33511@#callbacks": Map<string, () => void>;
758
+ "__#34163@#callbacks": Map<string, () => void>;
759
759
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
760
760
  reset(...sectionIds: string[]): Promise<void>;
761
- "__#33509@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
762
- "__#33508@#observeMappings": {} & {};
761
+ "__#34161@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
762
+ "__#34160@#observeMappings": {} & {};
763
763
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
764
764
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
765
- "__#33506@#logger": Logger;
766
- "__#33506@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
765
+ "__#34158@#logger": Logger;
766
+ "__#34158@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
767
767
  get logger(): Logger;
768
768
  set logger(logger: Partial<Logger>);
769
769
  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);
770
- "__#33510@#lastBaseUrl"?: string;
771
- "__#33510@#workingBaseUrl"?: string;
772
- "__#33510@#failedUrls": Set<string>;
773
- "__#33510@#getResourceUrls"(filename: string): (URL & {
770
+ "__#34162@#lastBaseUrl"?: string;
771
+ "__#34162@#workingBaseUrl"?: string;
772
+ "__#34162@#failedUrls": Set<string>;
773
+ "__#34162@#getResourceUrls"(filename: string): (URL & {
774
774
  baseUrl: string;
775
775
  }) | (URL & {
776
776
  baseUrl: string;
777
777
  })[];
778
- "__#33510@#createResourceUrl"(filename: string, baseUrl: string): URL & {
778
+ "__#34162@#createResourceUrl"(filename: string, baseUrl: string): URL & {
779
779
  baseUrl: string;
780
780
  };
781
781
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -791,12 +791,12 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
791
791
  declare const createValidateAttributesMixin: {
792
792
  (mappings: Record<string, CheckValueFn | string>): <T extends CustomElementConstructor>(superclass: T) => {
793
793
  new (...args: any): {
794
- "__#33509@#handleError"(attrName: string, newValue: string | null): void;
794
+ "__#34161@#handleError"(attrName: string, newValue: string | null): void;
795
795
  init(): Promise<void>;
796
- "__#33508@#observeMappings": {};
796
+ "__#34160@#observeMappings": {};
797
797
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
798
798
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
799
- "__#33507@#isInit": boolean;
799
+ "__#34159@#isInit": boolean;
800
800
  connectedCallback: (() => void) & (() => void) & (() => void);
801
801
  accessKey: string;
802
802
  readonly accessKeyLabel: string;
@@ -1123,8 +1123,8 @@ declare const createValidateAttributesMixin: {
1123
1123
  tabIndex: number;
1124
1124
  blur(): void;
1125
1125
  focus(options?: FocusOptions): void;
1126
- "__#33506@#logger": Logger;
1127
- "__#33506@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1126
+ "__#34158@#logger": Logger;
1127
+ "__#34158@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1128
1128
  get logger(): Logger;
1129
1129
  set logger(logger: Partial<Logger>);
1130
1130
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -1141,19 +1141,19 @@ type DebuggerMessage = {
1141
1141
 
1142
1142
  declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T) => {
1143
1143
  new (...params: any[]): {
1144
- "__#33515@#debuggerEle": (HTMLElement & {
1144
+ "__#34167@#debuggerEle": (HTMLElement & {
1145
1145
  updateData: (data: DebuggerMessage | DebuggerMessage[]) => void;
1146
1146
  }) | null;
1147
- "__#33515@#disableDebugger"(): void;
1148
- "__#33515@#enableDebugger"(): Promise<void>;
1147
+ "__#34167@#disableDebugger"(): void;
1148
+ "__#34167@#enableDebugger"(): Promise<void>;
1149
1149
  attributeChangedCallback: (attrName: string, oldValue: string | null, newValue: string | null) => void;
1150
1150
  readonly debug: boolean;
1151
- "__#33515@#handleDebugMode"(): void;
1151
+ "__#34167@#handleDebugMode"(): void;
1152
1152
  onLogEvent(logLevel: LogLevel, args: any[]): void;
1153
1153
  init(): Promise<void>;
1154
- "__#33515@#updateDebuggerMessages"(title: string, description: string): void;
1155
- "__#33506@#logger": Logger;
1156
- "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
1154
+ "__#34167@#updateDebuggerMessages"(title: string, description: string): void;
1155
+ "__#34158@#logger": Logger;
1156
+ "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
1157
1157
  get logger(): Logger;
1158
1158
  set logger(logger: Partial<Logger>);
1159
1159
  accessKey: string;
@@ -1481,7 +1481,7 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
1481
1481
  tabIndex: number;
1482
1482
  blur(): void;
1483
1483
  focus(options?: FocusOptions): void;
1484
- "__#33507@#isInit": boolean;
1484
+ "__#34159@#isInit": boolean;
1485
1485
  };
1486
1486
  } & T;
1487
1487
 
@@ -1493,17 +1493,17 @@ type ScriptData = {
1493
1493
 
1494
1494
  declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T) => {
1495
1495
  new (...params: any[]): {
1496
- "__#33516@#getComponentsVersion"(): Promise<string>;
1497
- "__#33516@#getComponentsVersionSri"(): Promise<string>;
1498
- "__#33516@#descopeUi": Promise<any>;
1496
+ "__#34168@#getComponentsVersion"(): Promise<string>;
1497
+ "__#34168@#getComponentsVersionSri"(): Promise<string>;
1498
+ "__#34168@#descopeUi": Promise<any>;
1499
1499
  readonly descopeUi: Promise<any>;
1500
- "__#33516@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1501
- "__#33516@#getDescopeUi"(): Promise<any>;
1500
+ "__#34168@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1501
+ "__#34168@#getDescopeUi"(): Promise<any>;
1502
1502
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
1503
1503
  readonly baseCdnUrl: string;
1504
1504
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
1505
- "__#33506@#logger": Logger;
1506
- "__#33506@#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);
1505
+ "__#34158@#logger": Logger;
1506
+ "__#34158@#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);
1507
1507
  get logger(): Logger;
1508
1508
  set logger(logger: Partial<Logger>);
1509
1509
  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);
@@ -1835,26 +1835,26 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
1835
1835
  focus(options?: FocusOptions): void;
1836
1836
  init(): Promise<void>;
1837
1837
  readonly config: Promise<Config>;
1838
- "__#33512@#configCacheClear"(): void;
1839
- "__#33512@#_configResource": Promise<Config>;
1840
- "__#33512@#fetchConfig": () => Promise<Config>;
1841
- "__#33507@#isInit": boolean;
1842
- "__#33511@#callbacks": Map<string, () => void>;
1838
+ "__#34164@#configCacheClear"(): void;
1839
+ "__#34164@#_configResource": Promise<Config>;
1840
+ "__#34164@#fetchConfig": () => Promise<Config>;
1841
+ "__#34159@#isInit": boolean;
1842
+ "__#34163@#callbacks": Map<string, () => void>;
1843
1843
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
1844
1844
  reset(...sectionIds: string[]): Promise<void>;
1845
- "__#33509@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
1846
- "__#33508@#observeMappings": {} & {};
1845
+ "__#34161@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
1846
+ "__#34160@#observeMappings": {} & {};
1847
1847
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
1848
1848
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
1849
- "__#33510@#lastBaseUrl"?: string;
1850
- "__#33510@#workingBaseUrl"?: string;
1851
- "__#33510@#failedUrls": Set<string>;
1852
- "__#33510@#getResourceUrls"(filename: string): (URL & {
1849
+ "__#34162@#lastBaseUrl"?: string;
1850
+ "__#34162@#workingBaseUrl"?: string;
1851
+ "__#34162@#failedUrls": Set<string>;
1852
+ "__#34162@#getResourceUrls"(filename: string): (URL & {
1853
1853
  baseUrl: string;
1854
1854
  }) | (URL & {
1855
1855
  baseUrl: string;
1856
1856
  })[];
1857
- "__#33510@#createResourceUrl"(filename: string, baseUrl: string): URL & {
1857
+ "__#34162@#createResourceUrl"(filename: string, baseUrl: string): URL & {
1858
1858
  baseUrl: string;
1859
1859
  };
1860
1860
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -1869,7 +1869,7 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
1869
1869
 
1870
1870
  declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) => {
1871
1871
  new (...params: any[]): {
1872
- "__#33520@#ModalDriverWrapper": {
1872
+ "__#34172@#ModalDriverWrapper": {
1873
1873
  new (refOrRefFn: Element | (() => HTMLElement), config: {
1874
1874
  logger: {
1875
1875
  error(...data: any[]): void;
@@ -1879,7 +1879,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1879
1879
  };
1880
1880
  }): {
1881
1881
  setContent(template: HTMLTemplateElement): void;
1882
- "__#33519@#private": any;
1882
+ "__#34171@#private": any;
1883
1883
  beforeOpen: () => void | Promise<void>;
1884
1884
  afterClose: () => void;
1885
1885
  nodeName: string;
@@ -1887,7 +1887,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1887
1887
  open(): Promise<void>;
1888
1888
  reset(): void;
1889
1889
  remove(): void;
1890
- "__#33517@#private": any;
1890
+ "__#34169@#private": any;
1891
1891
  logger: {
1892
1892
  error(...data: any[]): void;
1893
1893
  warn(...data: any[]): void;
@@ -1901,17 +1901,17 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1901
1901
  };
1902
1902
  createModal(config?: Record<string, string>): ModalDriver;
1903
1903
  init(): Promise<void>;
1904
- "__#33516@#getComponentsVersion"(): Promise<string>;
1905
- "__#33516@#getComponentsVersionSri"(): Promise<string>;
1906
- "__#33516@#descopeUi": Promise<any>;
1904
+ "__#34168@#getComponentsVersion"(): Promise<string>;
1905
+ "__#34168@#getComponentsVersionSri"(): Promise<string>;
1906
+ "__#34168@#descopeUi": Promise<any>;
1907
1907
  readonly descopeUi: Promise<any>;
1908
- "__#33516@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1909
- "__#33516@#getDescopeUi"(): Promise<any>;
1908
+ "__#34168@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1909
+ "__#34168@#getDescopeUi"(): Promise<any>;
1910
1910
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
1911
1911
  readonly baseCdnUrl: string;
1912
1912
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
1913
- "__#33506@#logger": Logger;
1914
- "__#33506@#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);
1913
+ "__#34158@#logger": Logger;
1914
+ "__#34158@#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);
1915
1915
  get logger(): Logger;
1916
1916
  set logger(logger: Partial<Logger>);
1917
1917
  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);
@@ -2242,26 +2242,26 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
2242
2242
  blur(): void;
2243
2243
  focus(options?: FocusOptions): void;
2244
2244
  readonly config: Promise<Config>;
2245
- "__#33512@#configCacheClear"(): void;
2246
- "__#33512@#_configResource": Promise<Config>;
2247
- "__#33512@#fetchConfig": () => Promise<Config>;
2248
- "__#33507@#isInit": boolean;
2249
- "__#33511@#callbacks": Map<string, () => void>;
2245
+ "__#34164@#configCacheClear"(): void;
2246
+ "__#34164@#_configResource": Promise<Config>;
2247
+ "__#34164@#fetchConfig": () => Promise<Config>;
2248
+ "__#34159@#isInit": boolean;
2249
+ "__#34163@#callbacks": Map<string, () => void>;
2250
2250
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
2251
2251
  reset(...sectionIds: string[]): Promise<void>;
2252
- "__#33509@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2253
- "__#33508@#observeMappings": {} & {} & {};
2252
+ "__#34161@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2253
+ "__#34160@#observeMappings": {} & {} & {};
2254
2254
  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);
2255
2255
  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);
2256
- "__#33510@#lastBaseUrl"?: string;
2257
- "__#33510@#workingBaseUrl"?: string;
2258
- "__#33510@#failedUrls": Set<string>;
2259
- "__#33510@#getResourceUrls"(filename: string): (URL & {
2256
+ "__#34162@#lastBaseUrl"?: string;
2257
+ "__#34162@#workingBaseUrl"?: string;
2258
+ "__#34162@#failedUrls": Set<string>;
2259
+ "__#34162@#getResourceUrls"(filename: string): (URL & {
2260
2260
  baseUrl: string;
2261
2261
  }) | (URL & {
2262
2262
  baseUrl: string;
2263
2263
  })[];
2264
- "__#33510@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2264
+ "__#34162@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2265
2265
  baseUrl: string;
2266
2266
  };
2267
2267
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -2281,13 +2281,13 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
2281
2281
  replaceSync(cssString: string): void;
2282
2282
  readonly cssRules: CSSRuleList;
2283
2283
  } | CSSStyleSheet;
2284
- "__#33513@#setNonce"(): void;
2284
+ "__#34165@#setNonce"(): void;
2285
2285
  };
2286
2286
  } & T;
2287
2287
 
2288
2288
  declare const notificationsMixin: <T extends CustomElementConstructor>(superclass: T) => {
2289
2289
  new (...params: any[]): {
2290
- "__#33521@#NotificationDriverWrapper": {
2290
+ "__#34173@#NotificationDriverWrapper": {
2291
2291
  new (refOrRefFn: Element | (() => HTMLElement), config: {
2292
2292
  logger: {
2293
2293
  error(...data: any[]): void;
@@ -2301,7 +2301,7 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2301
2301
  close(): void;
2302
2302
  show(): void;
2303
2303
  remove(): void;
2304
- "__#33517@#private": any;
2304
+ "__#34169@#private": any;
2305
2305
  logger: {
2306
2306
  error(...data: any[]): void;
2307
2307
  warn(...data: any[]): void;
@@ -2328,7 +2328,7 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2328
2328
  close(): void;
2329
2329
  show(): void;
2330
2330
  remove(): void;
2331
- "__#33517@#private": any;
2331
+ "__#34169@#private": any;
2332
2332
  logger: {
2333
2333
  error(...data: any[]): void;
2334
2334
  warn(...data: any[]): void;
@@ -2340,17 +2340,17 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2340
2340
  readonly isExists: boolean;
2341
2341
  };
2342
2342
  init(): Promise<void>;
2343
- "__#33516@#getComponentsVersion"(): Promise<string>;
2344
- "__#33516@#getComponentsVersionSri"(): Promise<string>;
2345
- "__#33516@#descopeUi": Promise<any>;
2343
+ "__#34168@#getComponentsVersion"(): Promise<string>;
2344
+ "__#34168@#getComponentsVersionSri"(): Promise<string>;
2345
+ "__#34168@#descopeUi": Promise<any>;
2346
2346
  readonly descopeUi: Promise<any>;
2347
- "__#33516@#loadDescopeUiComponent"(componentName: string): Promise<any>;
2348
- "__#33516@#getDescopeUi"(): Promise<any>;
2347
+ "__#34168@#loadDescopeUiComponent"(componentName: string): Promise<any>;
2348
+ "__#34168@#getDescopeUi"(): Promise<any>;
2349
2349
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
2350
2350
  readonly baseCdnUrl: string;
2351
2351
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
2352
- "__#33506@#logger": Logger;
2353
- "__#33506@#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);
2352
+ "__#34158@#logger": Logger;
2353
+ "__#34158@#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);
2354
2354
  get logger(): Logger;
2355
2355
  set logger(logger: Partial<Logger>);
2356
2356
  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);
@@ -2681,26 +2681,26 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2681
2681
  blur(): void;
2682
2682
  focus(options?: FocusOptions): void;
2683
2683
  readonly config: Promise<Config>;
2684
- "__#33512@#configCacheClear"(): void;
2685
- "__#33512@#_configResource": Promise<Config>;
2686
- "__#33512@#fetchConfig": () => Promise<Config>;
2687
- "__#33507@#isInit": boolean;
2688
- "__#33511@#callbacks": Map<string, () => void>;
2684
+ "__#34164@#configCacheClear"(): void;
2685
+ "__#34164@#_configResource": Promise<Config>;
2686
+ "__#34164@#fetchConfig": () => Promise<Config>;
2687
+ "__#34159@#isInit": boolean;
2688
+ "__#34163@#callbacks": Map<string, () => void>;
2689
2689
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
2690
2690
  reset(...sectionIds: string[]): Promise<void>;
2691
- "__#33509@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2692
- "__#33508@#observeMappings": {} & {} & {};
2691
+ "__#34161@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2692
+ "__#34160@#observeMappings": {} & {} & {};
2693
2693
  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);
2694
2694
  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);
2695
- "__#33510@#lastBaseUrl"?: string;
2696
- "__#33510@#workingBaseUrl"?: string;
2697
- "__#33510@#failedUrls": Set<string>;
2698
- "__#33510@#getResourceUrls"(filename: string): (URL & {
2695
+ "__#34162@#lastBaseUrl"?: string;
2696
+ "__#34162@#workingBaseUrl"?: string;
2697
+ "__#34162@#failedUrls": Set<string>;
2698
+ "__#34162@#getResourceUrls"(filename: string): (URL & {
2699
2699
  baseUrl: string;
2700
2700
  }) | (URL & {
2701
2701
  baseUrl: string;
2702
2702
  })[];
2703
- "__#33510@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2703
+ "__#34162@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2704
2704
  baseUrl: string;
2705
2705
  };
2706
2706
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -2720,18 +2720,18 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2720
2720
  replaceSync(cssString: string): void;
2721
2721
  readonly cssRules: CSSRuleList;
2722
2722
  } | CSSStyleSheet;
2723
- "__#33513@#setNonce"(): void;
2723
+ "__#34165@#setNonce"(): void;
2724
2724
  };
2725
2725
  } & T;
2726
2726
 
2727
2727
  type OnAttrChange = (attrName: string, value: string | null) => void;
2728
2728
  declare const observeAttributesMixin: <T extends CustomElementConstructor>(superclass: T) => {
2729
2729
  new (...params: any[]): {
2730
- "__#33508@#observeMappings": {};
2730
+ "__#34160@#observeMappings": {};
2731
2731
  init(): Promise<void>;
2732
2732
  observeAttribute(attrName: string, onAttrChange: OnAttrChange): () => any;
2733
2733
  observeAttributes(attrs: string[], cb: OnAttrChange): () => void;
2734
- "__#33507@#isInit": boolean;
2734
+ "__#34159@#isInit": boolean;
2735
2735
  connectedCallback: (() => void) & (() => void);
2736
2736
  accessKey: string;
2737
2737
  readonly accessKeyLabel: string;
@@ -3058,8 +3058,8 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
3058
3058
  tabIndex: number;
3059
3059
  blur(): void;
3060
3060
  focus(options?: FocusOptions): void;
3061
- "__#33506@#logger": Logger;
3062
- "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
3061
+ "__#34158@#logger": Logger;
3062
+ "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
3063
3063
  get logger(): Logger;
3064
3064
  set logger(logger: Partial<Logger>);
3065
3065
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -3078,11 +3078,11 @@ declare function getResourceUrl({ projectId, filename, assetsFolder, baseUrl, }:
3078
3078
  }): CustomUrl;
3079
3079
  declare const staticResourcesMixin: <T extends CustomElementConstructor>(superclass: T) => {
3080
3080
  new (...params: any[]): {
3081
- "__#33510@#lastBaseUrl"?: string;
3082
- "__#33510@#workingBaseUrl"?: string;
3083
- "__#33510@#failedUrls": Set<string>;
3084
- "__#33510@#getResourceUrls"(filename: string): CustomUrl[] | CustomUrl;
3085
- "__#33510@#createResourceUrl"(filename: string, baseUrl: string): CustomUrl;
3081
+ "__#34162@#lastBaseUrl"?: string;
3082
+ "__#34162@#workingBaseUrl"?: string;
3083
+ "__#34162@#failedUrls": Set<string>;
3084
+ "__#34162@#getResourceUrls"(filename: string): CustomUrl[] | CustomUrl;
3085
+ "__#34162@#createResourceUrl"(filename: string, baseUrl: string): CustomUrl;
3086
3086
  fetchStaticResource<F extends Format>(filename: string, format: F): Promise<{
3087
3087
  body: F extends 'json' ? Record<string, any> : string;
3088
3088
  headers: Record<string, string>;
@@ -3416,14 +3416,14 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
3416
3416
  blur(): void;
3417
3417
  focus(options?: FocusOptions): void;
3418
3418
  readonly projectId: string;
3419
- "__#33509@#handleError"(attrName: string, newValue: string): void;
3419
+ "__#34161@#handleError"(attrName: string, newValue: string): void;
3420
3420
  init(): Promise<void>;
3421
- "__#33508@#observeMappings": {};
3421
+ "__#34160@#observeMappings": {};
3422
3422
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
3423
3423
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
3424
- "__#33507@#isInit": boolean;
3425
- "__#33506@#logger": Logger;
3426
- "__#33506@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
3424
+ "__#34159@#isInit": boolean;
3425
+ "__#34158@#logger": Logger;
3426
+ "__#34158@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
3427
3427
  get logger(): Logger;
3428
3428
  set logger(logger: Partial<Logger>);
3429
3429
  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);
@@ -3445,12 +3445,12 @@ declare const injectStyleMixin: <T extends CustomElementConstructor>(superclass:
3445
3445
  prepend?: boolean;
3446
3446
  }): CSSStyleSheetMock | CSSStyleSheet;
3447
3447
  nonce: string;
3448
- "__#33513@#setNonce"(): void;
3448
+ "__#34165@#setNonce"(): void;
3449
3449
  init(): Promise<void>;
3450
- "__#33508@#observeMappings": {};
3450
+ "__#34160@#observeMappings": {};
3451
3451
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
3452
3452
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
3453
- "__#33507@#isInit": boolean;
3453
+ "__#34159@#isInit": boolean;
3454
3454
  connectedCallback: (() => void) & (() => void) & (() => void);
3455
3455
  accessKey: string;
3456
3456
  readonly accessKeyLabel: string;
@@ -3776,8 +3776,8 @@ declare const injectStyleMixin: <T extends CustomElementConstructor>(superclass:
3776
3776
  tabIndex: number;
3777
3777
  blur(): void;
3778
3778
  focus(options?: FocusOptions): void;
3779
- "__#33506@#logger": Logger;
3780
- "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
3779
+ "__#34158@#logger": Logger;
3780
+ "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
3781
3781
  get logger(): Logger;
3782
3782
  set logger(logger: Partial<Logger>);
3783
3783
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -3788,26 +3788,31 @@ type InjectedStyle = CSSStyleSheet | CSSStyleSheetMock;
3788
3788
  type ThemeOptions = 'light' | 'dark' | 'os';
3789
3789
  declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) => {
3790
3790
  new (...params: any[]): {
3791
- "__#33522@#globalStyle": InjectedStyle;
3792
- "__#33522@#customStyle": InjectedStyle;
3791
+ "__#34174@#globalStyle": InjectedStyle;
3792
+ "__#34174@#tenantStyle": InjectedStyle;
3793
+ "__#34174@#customStyle": InjectedStyle;
3793
3794
  readonly theme: ThemeOptions;
3794
3795
  readonly styleId: string;
3795
3796
  readonly themeOverride: Record<string, any>;
3796
- "__#33522@#getThemeOverrideString"(): string;
3797
- "__#33522@#_themeResource": Promise<void | Record<string, any>>;
3798
- "__#33522@#fetchTheme"(): Promise<Record<string, any>>;
3799
- readonly "__#33522@#themeResource": Promise<void | Record<string, any>>;
3800
- "__#33522@#loadGlobalStyle"(): Promise<void>;
3801
- "__#33522@#loadCustomStyle"(): Promise<void>;
3802
- "__#33522@#loadComponentsStyle"(): Promise<void>;
3803
- "__#33522@#getFontsConfig"(): Promise<Record<string, {
3797
+ "__#34174@#getThemeOverrideString"(): string;
3798
+ "__#34174@#_themeResource": Promise<void | Record<string, any>>;
3799
+ "__#34174@#_tenantThemeResource": Promise<Record<string, any> | undefined>;
3800
+ "__#34174@#fetchTheme"(): Promise<Record<string, any>>;
3801
+ readonly "__#34174@#themeResource": Promise<void | Record<string, any>>;
3802
+ "__#34174@#loadGlobalStyle"(): Promise<void>;
3803
+ "__#34174@#fetchTenantTheme"(): Promise<Record<string, any>>;
3804
+ readonly "__#34174@#tenantThemeResource": Promise<Record<string, any>>;
3805
+ "__#34174@#loadTenantStyle"(): Promise<void>;
3806
+ "__#34174@#loadCustomStyle"(): Promise<void>;
3807
+ "__#34174@#loadComponentsStyle"(): Promise<void>;
3808
+ "__#34174@#getFontsConfig"(): Promise<Record<string, {
3804
3809
  url?: string;
3805
3810
  }>>;
3806
- "__#33522@#loadFonts"(): Promise<void>;
3807
- "__#33522@#applyTheme"(): Promise<void>;
3808
- "__#33522@#onThemeChange": () => void;
3809
- "__#33522@#loadTheme"(): void;
3810
- "__#33522@#toggleOsThemeChangeListener": (listen: boolean) => void;
3811
+ "__#34174@#loadFonts"(): Promise<void>;
3812
+ "__#34174@#applyTheme"(): Promise<void>;
3813
+ "__#34174@#onThemeChange": () => void;
3814
+ "__#34174@#loadTheme"(): void;
3815
+ "__#34174@#toggleOsThemeChangeListener": (listen: boolean) => void;
3811
3816
  init(): Promise<void>;
3812
3817
  injectStyle: ((cssString: string, { prepend }?: {
3813
3818
  prepend?: boolean;
@@ -3825,12 +3830,12 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
3825
3830
  readonly cssRules: CSSRuleList;
3826
3831
  } | CSSStyleSheet);
3827
3832
  nonce: string;
3828
- "__#33513@#setNonce": (() => void) & (() => void);
3829
- "__#33508@#observeMappings": {} & {} & {} & {} & {} & {} & {} & {} & {};
3830
- 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);
3831
- 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);
3832
- "__#33507@#isInit": boolean;
3833
- connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
3833
+ "__#34165@#setNonce": (() => void) & (() => void);
3834
+ "__#34160@#observeMappings": {} & {} & {} & {} & {} & {} & {} & {} & {} & {};
3835
+ 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) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
3836
+ 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) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
3837
+ "__#34159@#isInit": boolean;
3838
+ connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
3834
3839
  accessKey: string;
3835
3840
  readonly accessKeyLabel: string;
3836
3841
  autocapitalize: string;
@@ -4155,25 +4160,25 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
4155
4160
  tabIndex: number;
4156
4161
  blur(): void;
4157
4162
  focus(options?: FocusOptions): void;
4158
- "__#33506@#logger": Logger;
4159
- "__#33506@#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);
4163
+ "__#34158@#logger": Logger;
4164
+ "__#34158@#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) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
4160
4165
  get logger(): Logger;
4161
4166
  set logger(logger: Partial<Logger>);
4162
- 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);
4167
+ 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) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
4163
4168
  contentRootElement: HTMLElement;
4164
4169
  rootElement: HTMLElement;
4165
4170
  readonly config: Promise<Config>;
4166
- "__#33512@#configCacheClear": (() => void) & (() => void);
4167
- "__#33512@#_configResource": Promise<Config>;
4168
- "__#33512@#fetchConfig": (() => Promise<Config>) & (() => Promise<Config>);
4169
- "__#33511@#callbacks": Map<string, () => void> & Map<string, () => void>;
4171
+ "__#34164@#configCacheClear": (() => void) & (() => void);
4172
+ "__#34164@#_configResource": Promise<Config>;
4173
+ "__#34164@#fetchConfig": (() => Promise<Config>) & (() => Promise<Config>);
4174
+ "__#34163@#callbacks": Map<string, () => void> & Map<string, () => void>;
4170
4175
  onReset: ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void);
4171
4176
  reset: ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>);
4172
- "__#33509@#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);
4173
- "__#33510@#lastBaseUrl"?: string;
4174
- "__#33510@#workingBaseUrl"?: string;
4175
- "__#33510@#failedUrls": Set<string>;
4176
- "__#33510@#getResourceUrls": ((filename: string) => (URL & {
4177
+ "__#34161@#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) & ((attrName: string, newValue: string) => void);
4178
+ "__#34162@#lastBaseUrl"?: string;
4179
+ "__#34162@#workingBaseUrl"?: string;
4180
+ "__#34162@#failedUrls": Set<string>;
4181
+ "__#34162@#getResourceUrls": ((filename: string) => (URL & {
4177
4182
  baseUrl: string;
4178
4183
  }) | (URL & {
4179
4184
  baseUrl: string;
@@ -4186,7 +4191,7 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
4186
4191
  }) | (URL & {
4187
4192
  baseUrl: string;
4188
4193
  })[]);
4189
- "__#33510@#createResourceUrl": ((filename: string, baseUrl: string) => URL & {
4194
+ "__#34162@#createResourceUrl": ((filename: string, baseUrl: string) => URL & {
4190
4195
  baseUrl: string;
4191
4196
  }) & ((filename: string, baseUrl: string) => URL & {
4192
4197
  baseUrl: string;
@@ -4206,15 +4211,16 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
4206
4211
  readonly baseStaticUrl: string;
4207
4212
  readonly baseUrl: string;
4208
4213
  readonly projectId: string;
4209
- "__#33516@#getComponentsVersion"(): Promise<string>;
4210
- "__#33516@#getComponentsVersionSri"(): Promise<string>;
4211
- "__#33516@#descopeUi": Promise<any>;
4214
+ "__#34168@#getComponentsVersion"(): Promise<string>;
4215
+ "__#34168@#getComponentsVersionSri"(): Promise<string>;
4216
+ "__#34168@#descopeUi": Promise<any>;
4212
4217
  readonly descopeUi: Promise<any>;
4213
- "__#33516@#loadDescopeUiComponent"(componentName: string): Promise<any>;
4214
- "__#33516@#getDescopeUi"(): Promise<any>;
4218
+ "__#34168@#loadDescopeUiComponent"(componentName: string): Promise<any>;
4219
+ "__#34168@#getDescopeUi"(): Promise<any>;
4215
4220
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
4216
4221
  readonly baseCdnUrl: string;
4217
4222
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
4223
+ readonly tenantId: string;
4218
4224
  };
4219
4225
  } & T;
4220
4226
 
@@ -4226,8 +4232,8 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
4226
4232
  new (...args: any): {
4227
4233
  actions: _reduxjs_toolkit.CaseReducerActions<CaseReducers, Name> & AsyncActions;
4228
4234
  subscribe: <SelectorR = State extends Draft<infer S> ? S : State>(cb: (state: SelectorR) => void, selector?: (state: State) => SelectorR) => Unsubscribe;
4229
- "__#33506@#logger": Logger;
4230
- "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
4235
+ "__#34158@#logger": Logger;
4236
+ "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
4231
4237
  get logger(): Logger;
4232
4238
  set logger(logger: Partial<Logger>);
4233
4239
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -4571,8 +4577,8 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
4571
4577
  getFormFieldNames(rootEle: ElementOrEmpty): string[];
4572
4578
  disableFormField(rootEle: ElementOrEmpty, name: string): void;
4573
4579
  removeFormField(rootEle: ElementOrEmpty, name: string): void;
4574
- "__#33506@#logger": Logger;
4575
- "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
4580
+ "__#34158@#logger": Logger;
4581
+ "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
4576
4582
  get logger(): Logger;
4577
4583
  set logger(logger: Partial<Logger>);
4578
4584
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -4918,12 +4924,12 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
4918
4924
  readonly cssRules: CSSRuleList;
4919
4925
  } | CSSStyleSheet;
4920
4926
  nonce: string;
4921
- "__#33513@#setNonce"(): void;
4927
+ "__#34165@#setNonce"(): void;
4922
4928
  init(): Promise<void>;
4923
- "__#33508@#observeMappings": {};
4929
+ "__#34160@#observeMappings": {};
4924
4930
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
4925
4931
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
4926
- "__#33507@#isInit": boolean;
4932
+ "__#34159@#isInit": boolean;
4927
4933
  connectedCallback: (() => void) & (() => void) & (() => void);
4928
4934
  accessKey: string;
4929
4935
  readonly accessKeyLabel: string;
@@ -5249,8 +5255,8 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
5249
5255
  tabIndex: number;
5250
5256
  blur(): void;
5251
5257
  focus(options?: FocusOptions): void;
5252
- "__#33506@#logger": Logger;
5253
- "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
5258
+ "__#34158@#logger": Logger;
5259
+ "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
5254
5260
  get logger(): Logger;
5255
5261
  set logger(logger: Partial<Logger>);
5256
5262
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -5259,7 +5265,7 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
5259
5265
 
5260
5266
  declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclass: T) => {
5261
5267
  new (...params: any[]): {
5262
- "__#33507@#isInit": boolean;
5268
+ "__#34159@#isInit": boolean;
5263
5269
  connectedCallback(): void;
5264
5270
  init(): Promise<void>;
5265
5271
  accessKey: string;
@@ -5593,12 +5599,12 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
5593
5599
  declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T) => {
5594
5600
  new (...args: any): {
5595
5601
  readonly projectId: string;
5596
- "__#33509@#handleError"(attrName: string, newValue: string): void;
5602
+ "__#34161@#handleError"(attrName: string, newValue: string): void;
5597
5603
  init(): Promise<void>;
5598
- "__#33508@#observeMappings": {};
5604
+ "__#34160@#observeMappings": {};
5599
5605
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
5600
5606
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
5601
- "__#33507@#isInit": boolean;
5607
+ "__#34159@#isInit": boolean;
5602
5608
  connectedCallback: (() => void) & (() => void) & (() => void);
5603
5609
  accessKey: string;
5604
5610
  readonly accessKeyLabel: string;
@@ -5925,8 +5931,351 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
5925
5931
  tabIndex: number;
5926
5932
  blur(): void;
5927
5933
  focus(options?: FocusOptions): void;
5928
- "__#33506@#logger": Logger;
5929
- "__#33506@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
5934
+ "__#34158@#logger": Logger;
5935
+ "__#34158@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
5936
+ get logger(): Logger;
5937
+ set logger(logger: Partial<Logger>);
5938
+ onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
5939
+ };
5940
+ } & T;
5941
+
5942
+ declare const tenantIdMixin: <T extends CustomElementConstructor>(superclass: T) => {
5943
+ new (...args: any): {
5944
+ readonly tenantId: string;
5945
+ "__#34161@#handleError"(attrName: string, newValue: string): void;
5946
+ init(): Promise<void>;
5947
+ "__#34160@#observeMappings": {};
5948
+ observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
5949
+ observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
5950
+ "__#34159@#isInit": boolean;
5951
+ connectedCallback: (() => void) & (() => void) & (() => void);
5952
+ accessKey: string;
5953
+ readonly accessKeyLabel: string;
5954
+ autocapitalize: string;
5955
+ dir: string;
5956
+ draggable: boolean;
5957
+ hidden: boolean;
5958
+ inert: boolean;
5959
+ innerText: string;
5960
+ lang: string;
5961
+ readonly offsetHeight: number;
5962
+ readonly offsetLeft: number;
5963
+ readonly offsetParent: Element;
5964
+ readonly offsetTop: number;
5965
+ readonly offsetWidth: number;
5966
+ outerText: string;
5967
+ popover: string;
5968
+ spellcheck: boolean;
5969
+ title: string;
5970
+ translate: boolean;
5971
+ attachInternals(): ElementInternals;
5972
+ click(): void;
5973
+ hidePopover(): void;
5974
+ showPopover(): void;
5975
+ togglePopover(force?: boolean): boolean;
5976
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
5977
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
5978
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
5979
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
5980
+ attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
5981
+ readonly attributes: NamedNodeMap;
5982
+ readonly classList: DOMTokenList;
5983
+ className: string;
5984
+ readonly clientHeight: number;
5985
+ readonly clientLeft: number;
5986
+ readonly clientTop: number;
5987
+ readonly clientWidth: number;
5988
+ id: string;
5989
+ readonly localName: string;
5990
+ readonly namespaceURI: string;
5991
+ onfullscreenchange: (this: Element, ev: Event) => any;
5992
+ onfullscreenerror: (this: Element, ev: Event) => any;
5993
+ outerHTML: string;
5994
+ readonly ownerDocument: Document;
5995
+ readonly part: DOMTokenList;
5996
+ readonly prefix: string;
5997
+ readonly scrollHeight: number;
5998
+ scrollLeft: number;
5999
+ scrollTop: number;
6000
+ readonly scrollWidth: number;
6001
+ readonly shadowRoot: ShadowRoot;
6002
+ slot: string;
6003
+ readonly tagName: string;
6004
+ attachShadow(init: ShadowRootInit): ShadowRoot;
6005
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
6006
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
6007
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
6008
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
6009
+ closest<E extends Element = Element>(selectors: string): E;
6010
+ computedStyleMap(): StylePropertyMapReadOnly;
6011
+ getAttribute(qualifiedName: string): string;
6012
+ getAttributeNS(namespace: string, localName: string): string;
6013
+ getAttributeNames(): string[];
6014
+ getAttributeNode(qualifiedName: string): Attr;
6015
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
6016
+ getBoundingClientRect(): DOMRect;
6017
+ getClientRects(): DOMRectList;
6018
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
6019
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
6020
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
6021
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
6022
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
6023
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
6024
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
6025
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
6026
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
6027
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
6028
+ hasAttribute(qualifiedName: string): boolean;
6029
+ hasAttributeNS(namespace: string, localName: string): boolean;
6030
+ hasAttributes(): boolean;
6031
+ hasPointerCapture(pointerId: number): boolean;
6032
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
6033
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
6034
+ insertAdjacentText(where: InsertPosition, data: string): void;
6035
+ matches(selectors: string): boolean;
6036
+ releasePointerCapture(pointerId: number): void;
6037
+ removeAttribute(qualifiedName: string): void;
6038
+ removeAttributeNS(namespace: string, localName: string): void;
6039
+ removeAttributeNode(attr: Attr): Attr;
6040
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
6041
+ requestPointerLock(): void;
6042
+ scroll(options?: ScrollToOptions): void;
6043
+ scroll(x: number, y: number): void;
6044
+ scrollBy(options?: ScrollToOptions): void;
6045
+ scrollBy(x: number, y: number): void;
6046
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
6047
+ scrollTo(options?: ScrollToOptions): void;
6048
+ scrollTo(x: number, y: number): void;
6049
+ setAttribute(qualifiedName: string, value: string): void;
6050
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
6051
+ setAttributeNode(attr: Attr): Attr;
6052
+ setAttributeNodeNS(attr: Attr): Attr;
6053
+ setPointerCapture(pointerId: number): void;
6054
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
6055
+ webkitMatchesSelector(selectors: string): boolean;
6056
+ readonly baseURI: string;
6057
+ readonly childNodes: NodeListOf<ChildNode>;
6058
+ readonly firstChild: ChildNode;
6059
+ readonly isConnected: boolean;
6060
+ readonly lastChild: ChildNode;
6061
+ readonly nextSibling: ChildNode;
6062
+ readonly nodeName: string;
6063
+ readonly nodeType: number;
6064
+ nodeValue: string;
6065
+ readonly parentElement: HTMLElement;
6066
+ readonly parentNode: ParentNode;
6067
+ readonly previousSibling: ChildNode;
6068
+ textContent: string;
6069
+ appendChild<T_1 extends Node>(node: T_1): T_1;
6070
+ cloneNode(deep?: boolean): Node;
6071
+ compareDocumentPosition(other: Node): number;
6072
+ contains(other: Node): boolean;
6073
+ getRootNode(options?: GetRootNodeOptions): Node;
6074
+ hasChildNodes(): boolean;
6075
+ insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
6076
+ isDefaultNamespace(namespace: string): boolean;
6077
+ isEqualNode(otherNode: Node): boolean;
6078
+ isSameNode(otherNode: Node): boolean;
6079
+ lookupNamespaceURI(prefix: string): string;
6080
+ lookupPrefix(namespace: string): string;
6081
+ normalize(): void;
6082
+ removeChild<T_3 extends Node>(child: T_3): T_3;
6083
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
6084
+ readonly ELEMENT_NODE: 1;
6085
+ readonly ATTRIBUTE_NODE: 2;
6086
+ readonly TEXT_NODE: 3;
6087
+ readonly CDATA_SECTION_NODE: 4;
6088
+ readonly ENTITY_REFERENCE_NODE: 5;
6089
+ readonly ENTITY_NODE: 6;
6090
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
6091
+ readonly COMMENT_NODE: 8;
6092
+ readonly DOCUMENT_NODE: 9;
6093
+ readonly DOCUMENT_TYPE_NODE: 10;
6094
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
6095
+ readonly NOTATION_NODE: 12;
6096
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
6097
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
6098
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
6099
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
6100
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
6101
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
6102
+ dispatchEvent(event: Event): boolean;
6103
+ ariaAtomic: string;
6104
+ ariaAutoComplete: string;
6105
+ ariaBusy: string;
6106
+ ariaChecked: string;
6107
+ ariaColCount: string;
6108
+ ariaColIndex: string;
6109
+ ariaColSpan: string;
6110
+ ariaCurrent: string;
6111
+ ariaDescription: string;
6112
+ ariaDisabled: string;
6113
+ ariaExpanded: string;
6114
+ ariaHasPopup: string;
6115
+ ariaHidden: string;
6116
+ ariaInvalid: string;
6117
+ ariaKeyShortcuts: string;
6118
+ ariaLabel: string;
6119
+ ariaLevel: string;
6120
+ ariaLive: string;
6121
+ ariaModal: string;
6122
+ ariaMultiLine: string;
6123
+ ariaMultiSelectable: string;
6124
+ ariaOrientation: string;
6125
+ ariaPlaceholder: string;
6126
+ ariaPosInSet: string;
6127
+ ariaPressed: string;
6128
+ ariaReadOnly: string;
6129
+ ariaRequired: string;
6130
+ ariaRoleDescription: string;
6131
+ ariaRowCount: string;
6132
+ ariaRowIndex: string;
6133
+ ariaRowSpan: string;
6134
+ ariaSelected: string;
6135
+ ariaSetSize: string;
6136
+ ariaSort: string;
6137
+ ariaValueMax: string;
6138
+ ariaValueMin: string;
6139
+ ariaValueNow: string;
6140
+ ariaValueText: string;
6141
+ role: string;
6142
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions): Animation;
6143
+ getAnimations(options?: GetAnimationsOptions): Animation[];
6144
+ after(...nodes: (string | Node)[]): void;
6145
+ before(...nodes: (string | Node)[]): void;
6146
+ remove(): void;
6147
+ replaceWith(...nodes: (string | Node)[]): void;
6148
+ innerHTML: string;
6149
+ readonly nextElementSibling: Element;
6150
+ readonly previousElementSibling: Element;
6151
+ readonly childElementCount: number;
6152
+ readonly children: HTMLCollection;
6153
+ readonly firstElementChild: Element;
6154
+ readonly lastElementChild: Element;
6155
+ append(...nodes: (string | Node)[]): void;
6156
+ prepend(...nodes: (string | Node)[]): void;
6157
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
6158
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
6159
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
6160
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
6161
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
6162
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
6163
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
6164
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
6165
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
6166
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
6167
+ replaceChildren(...nodes: (string | Node)[]): void;
6168
+ readonly assignedSlot: HTMLSlotElement;
6169
+ readonly attributeStyleMap: StylePropertyMap;
6170
+ readonly style: CSSStyleDeclaration;
6171
+ contentEditable: string;
6172
+ enterKeyHint: string;
6173
+ inputMode: string;
6174
+ readonly isContentEditable: boolean;
6175
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
6176
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6177
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6178
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6179
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6180
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6181
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
6182
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
6183
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
6184
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
6185
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
6186
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
6187
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
6188
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6189
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
6190
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6191
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
6192
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
6193
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
6194
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6195
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
6196
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
6197
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
6198
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
6199
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
6200
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
6201
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
6202
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
6203
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
6204
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
6205
+ onerror: OnErrorEventHandlerNonNull;
6206
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
6207
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
6208
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6209
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
6210
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
6211
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
6212
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
6213
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
6214
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
6215
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
6216
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
6217
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
6218
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6219
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6220
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6221
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6222
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6223
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6224
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6225
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6226
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
6227
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
6228
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
6229
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
6230
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6231
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6232
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6233
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6234
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6235
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6236
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6237
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6238
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
6239
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
6240
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
6241
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
6242
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
6243
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
6244
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
6245
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
6246
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
6247
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
6248
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
6249
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
6250
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
6251
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
6252
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
6253
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
6254
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
6255
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
6256
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6257
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6258
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6259
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6260
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6261
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6262
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6263
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6264
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
6265
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
6266
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
6267
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
6268
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
6269
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
6270
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
6271
+ autofocus: boolean;
6272
+ readonly dataset: DOMStringMap;
6273
+ nonce?: string;
6274
+ tabIndex: number;
6275
+ blur(): void;
6276
+ focus(options?: FocusOptions): void;
6277
+ "__#34158@#logger": Logger;
6278
+ "__#34158@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
5930
6279
  get logger(): Logger;
5931
6280
  set logger(logger: Partial<Logger>);
5932
6281
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -5936,12 +6285,12 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
5936
6285
  declare const widgetIdMixin: <T extends CustomElementConstructor>(superclass: T) => {
5937
6286
  new (...args: any): {
5938
6287
  readonly widgetId: string;
5939
- "__#33509@#handleError"(attrName: string, newValue: string): void;
6288
+ "__#34161@#handleError"(attrName: string, newValue: string): void;
5940
6289
  init(): Promise<void>;
5941
- "__#33508@#observeMappings": {};
6290
+ "__#34160@#observeMappings": {};
5942
6291
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
5943
6292
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
5944
- "__#33507@#isInit": boolean;
6293
+ "__#34159@#isInit": boolean;
5945
6294
  connectedCallback: (() => void) & (() => void) & (() => void);
5946
6295
  accessKey: string;
5947
6296
  readonly accessKeyLabel: string;
@@ -6268,8 +6617,8 @@ declare const widgetIdMixin: <T extends CustomElementConstructor>(superclass: T)
6268
6617
  tabIndex: number;
6269
6618
  blur(): void;
6270
6619
  focus(options?: FocusOptions): void;
6271
- "__#33506@#logger": Logger;
6272
- "__#33506@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
6620
+ "__#34158@#logger": Logger;
6621
+ "__#34158@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
6273
6622
  get logger(): Logger;
6274
6623
  set logger(logger: Partial<Logger>);
6275
6624
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -6281,11 +6630,11 @@ declare const widgetConfigMixin: <T extends CustomElementConstructor>(superclass
6281
6630
  init(): Promise<void>;
6282
6631
  getWidgetConfig(): Promise<WidgetConfig | undefined>;
6283
6632
  readonly widgetId: string;
6284
- "__#33509@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
6285
- "__#33508@#observeMappings": {} & {} & {};
6633
+ "__#34161@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
6634
+ "__#34160@#observeMappings": {} & {} & {};
6286
6635
  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);
6287
6636
  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);
6288
- "__#33507@#isInit": boolean;
6637
+ "__#34159@#isInit": boolean;
6289
6638
  connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
6290
6639
  accessKey: string;
6291
6640
  readonly accessKeyLabel: string;
@@ -6612,27 +6961,27 @@ declare const widgetConfigMixin: <T extends CustomElementConstructor>(superclass
6612
6961
  tabIndex: number;
6613
6962
  blur(): void;
6614
6963
  focus(options?: FocusOptions): void;
6615
- "__#33506@#logger": Logger;
6616
- "__#33506@#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);
6964
+ "__#34158@#logger": Logger;
6965
+ "__#34158@#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);
6617
6966
  get logger(): Logger;
6618
6967
  set logger(logger: Partial<Logger>);
6619
6968
  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);
6620
6969
  readonly config: Promise<Config>;
6621
- "__#33512@#configCacheClear"(): void;
6622
- "__#33512@#_configResource": Promise<Config>;
6623
- "__#33512@#fetchConfig": () => Promise<Config>;
6624
- "__#33511@#callbacks": Map<string, () => void>;
6970
+ "__#34164@#configCacheClear"(): void;
6971
+ "__#34164@#_configResource": Promise<Config>;
6972
+ "__#34164@#fetchConfig": () => Promise<Config>;
6973
+ "__#34163@#callbacks": Map<string, () => void>;
6625
6974
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
6626
6975
  reset(...sectionIds: string[]): Promise<void>;
6627
- "__#33510@#lastBaseUrl"?: string;
6628
- "__#33510@#workingBaseUrl"?: string;
6629
- "__#33510@#failedUrls": Set<string>;
6630
- "__#33510@#getResourceUrls"(filename: string): (URL & {
6976
+ "__#34162@#lastBaseUrl"?: string;
6977
+ "__#34162@#workingBaseUrl"?: string;
6978
+ "__#34162@#failedUrls": Set<string>;
6979
+ "__#34162@#getResourceUrls"(filename: string): (URL & {
6631
6980
  baseUrl: string;
6632
6981
  }) | (URL & {
6633
6982
  baseUrl: string;
6634
6983
  })[];
6635
- "__#33510@#createResourceUrl"(filename: string, baseUrl: string): URL & {
6984
+ "__#34162@#createResourceUrl"(filename: string, baseUrl: string): URL & {
6636
6985
  baseUrl: string;
6637
6986
  };
6638
6987
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -7316,8 +7665,8 @@ declare const injectNpmLibMixin: <T extends CustomElementConstructor>(superclass
7316
7665
  new (...params: any[]): {
7317
7666
  readonly baseCdnUrl: string;
7318
7667
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
7319
- "__#33506@#logger": Logger;
7320
- "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
7668
+ "__#34158@#logger": Logger;
7669
+ "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
7321
7670
  get logger(): Logger;
7322
7671
  set logger(logger: Partial<Logger>);
7323
7672
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -7653,12 +8002,12 @@ declare const injectNpmLibMixin: <T extends CustomElementConstructor>(superclass
7653
8002
  declare const cspNonceMixin: <T extends CustomElementConstructor>(superclass: T) => {
7654
8003
  new (...params: any[]): {
7655
8004
  readonly nonce: string;
7656
- "__#33513@#setNonce"(): void;
8005
+ "__#34165@#setNonce"(): void;
7657
8006
  init(): Promise<void>;
7658
- "__#33508@#observeMappings": {};
8007
+ "__#34160@#observeMappings": {};
7659
8008
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
7660
8009
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
7661
- "__#33507@#isInit": boolean;
8010
+ "__#34159@#isInit": boolean;
7662
8011
  connectedCallback: (() => void) & (() => void) & (() => void);
7663
8012
  accessKey: string;
7664
8013
  readonly accessKeyLabel: string;
@@ -7984,8 +8333,8 @@ declare const cspNonceMixin: <T extends CustomElementConstructor>(superclass: T)
7984
8333
  tabIndex: number;
7985
8334
  blur(): void;
7986
8335
  focus(options?: FocusOptions): void;
7987
- "__#33506@#logger": Logger;
7988
- "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
8336
+ "__#34158@#logger": Logger;
8337
+ "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
7989
8338
  get logger(): Logger;
7990
8339
  set logger(logger: Partial<Logger>);
7991
8340
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -7999,4 +8348,4 @@ declare global {
7999
8348
  }
8000
8349
  }
8001
8350
 
8002
- export { type CheckValueFn, type ClientCondition, type ClientConditionResult, type ClientScript, type ComponentsConfig, type ComponentsDynamicAttrs, type Config, DEFAULT_STYLE_ID, type FlowConfig, type InjectedStyle, type LogLevel, type Logger, type ProjectConfiguration, type ThemeOptions, type WidgetConfig, baseUrlMixin, configMixin, cookieConfigMixin, createStateManagementMixin, createValidateAttributesMixin, cspNonceMixin, debuggerMixin, descopeUiMixin, formMixin, getResourceUrl, initElementMixin, initLifecycleMixin, injectNpmLibMixin, injectStyleMixin, loggerMixin, modalMixin, notificationsMixin, observeAttributesMixin, projectIdMixin, staticResourcesMixin, themeMixin, widgetConfigMixin, widgetIdMixin };
8351
+ export { type CheckValueFn, type ClientCondition, type ClientConditionResult, type ClientScript, type ComponentsConfig, type ComponentsDynamicAttrs, type Config, DEFAULT_STYLE_ID, type FlowConfig, type InjectedStyle, type LogLevel, type Logger, type ProjectConfiguration, type ThemeOptions, type WidgetConfig, baseUrlMixin, configMixin, cookieConfigMixin, createStateManagementMixin, createValidateAttributesMixin, cspNonceMixin, debuggerMixin, descopeUiMixin, formMixin, getResourceUrl, initElementMixin, initLifecycleMixin, injectNpmLibMixin, injectStyleMixin, loggerMixin, modalMixin, notificationsMixin, observeAttributesMixin, projectIdMixin, staticResourcesMixin, tenantIdMixin, themeMixin, widgetConfigMixin, widgetIdMixin };