@descope/sdk-mixins 0.19.0 → 0.21.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 +4 -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/fetchWidgetPagesMixin/createFetchWidgetPagesMixin.js +70 -0
  6. package/dist/cjs/mixins/fetchWidgetPagesMixin/createFetchWidgetPagesMixin.js.map +1 -0
  7. package/dist/cjs/mixins/localeMixin/localeMixin.js +33 -0
  8. package/dist/cjs/mixins/localeMixin/localeMixin.js.map +1 -0
  9. package/dist/esm/index.js +2 -0
  10. package/dist/esm/index.js.map +1 -1
  11. package/dist/esm/mixins/descopeUiMixin/descopeUiMixin.js +8 -2
  12. package/dist/esm/mixins/descopeUiMixin/descopeUiMixin.js.map +1 -1
  13. package/dist/esm/mixins/fetchWidgetPagesMixin/createFetchWidgetPagesMixin.js +68 -0
  14. package/dist/esm/mixins/fetchWidgetPagesMixin/createFetchWidgetPagesMixin.js.map +1 -0
  15. package/dist/esm/mixins/localeMixin/localeMixin.js +31 -0
  16. package/dist/esm/mixins/localeMixin/localeMixin.js.map +1 -0
  17. package/dist/index.d.ts +941 -200
  18. package/dist/types/index.d.ts +2 -0
  19. package/dist/types/mixins/configMixin/configMixin.d.ts +14 -14
  20. package/dist/types/mixins/configMixin/types.d.ts +2 -0
  21. package/dist/types/mixins/createStateManagementMixin.d.ts +2 -2
  22. package/dist/types/mixins/createValidateAttributesMixin/createValidateAttributesMixin.d.ts +5 -5
  23. package/dist/types/mixins/cspNonceMixin.d.ts +5 -5
  24. package/dist/types/mixins/debuggerMixin/debugger-wc.d.ts +5 -5
  25. package/dist/types/mixins/debuggerMixin/debuggerMixin.d.ts +8 -8
  26. package/dist/types/mixins/descopeUiMixin/descopeUiMixin.d.ts +19 -19
  27. package/dist/types/mixins/fetchWidgetPagesMixin/createFetchWidgetPagesMixin.d.ts +393 -0
  28. package/dist/types/mixins/fetchWidgetPagesMixin/index.d.ts +1 -0
  29. package/dist/types/mixins/formMixin.d.ts +2 -2
  30. package/dist/types/mixins/initElementMixin.d.ts +5 -5
  31. package/dist/types/mixins/initLifecycleMixin.d.ts +1 -1
  32. package/dist/types/mixins/injectNpmLibMixin/injectNpmLibMixin.d.ts +2 -2
  33. package/dist/types/mixins/injectStyleMixin.d.ts +5 -5
  34. package/dist/types/mixins/localeMixin/index.d.ts +1 -0
  35. package/dist/types/mixins/localeMixin/localeMixin.d.ts +344 -0
  36. package/dist/types/mixins/loggerMixin/loggerMixin.d.ts +2 -2
  37. package/dist/types/mixins/modalMixin/modalMixin.d.ts +23 -23
  38. package/dist/types/mixins/notificationsMixin/notificationsMixin.d.ts +23 -23
  39. package/dist/types/mixins/observeAttributesMixin/observeAttributesMixin.d.ts +4 -4
  40. package/dist/types/mixins/projectIdMixin.d.ts +5 -5
  41. package/dist/types/mixins/resetMixin.d.ts +6 -6
  42. package/dist/types/mixins/staticResourcesMixin/staticResourcesMixin.d.ts +10 -10
  43. package/dist/types/mixins/tenantIdMixin.d.ts +5 -5
  44. package/dist/types/mixins/themeMixin/themeMixin.d.ts +40 -40
  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 +3 -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
- "__#34158@#logger": Logger;
18
- "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
17
+ "__#36547@#logger": Logger;
18
+ "__#36547@#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;
@@ -401,6 +401,8 @@ type FlowConfig = {
401
401
  };
402
402
  type WidgetConfig = {
403
403
  allowSubTenants?: boolean;
404
+ version?: number;
405
+ targetLocales?: string[];
404
406
  };
405
407
  type ProjectConfiguration = {
406
408
  componentsVersion: string;
@@ -425,10 +427,10 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
425
427
  new (...params: any[]): {
426
428
  init(): Promise<void>;
427
429
  readonly config: Promise<Config>;
428
- "__#34164@#configCacheClear"(): void;
429
- "__#34164@#_configResource": Promise<Config>;
430
- "__#34164@#fetchConfig": () => Promise<Config>;
431
- "__#34159@#isInit": boolean;
430
+ "__#36553@#configCacheClear"(): void;
431
+ "__#36553@#_configResource": Promise<Config>;
432
+ "__#36553@#fetchConfig": () => Promise<Config>;
433
+ "__#36548@#isInit": boolean;
432
434
  connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
433
435
  accessKey: string;
434
436
  readonly accessKeyLabel: string;
@@ -755,27 +757,27 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
755
757
  tabIndex: number;
756
758
  blur(): void;
757
759
  focus(options?: FocusOptions): void;
758
- "__#34163@#callbacks": Map<string, () => void>;
760
+ "__#36552@#callbacks": Map<string, () => void>;
759
761
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
760
762
  reset(...sectionIds: string[]): Promise<void>;
761
- "__#34161@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
762
- "__#34160@#observeMappings": {} & {};
763
+ "__#36550@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
764
+ "__#36549@#observeMappings": {} & {};
763
765
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
764
766
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
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
+ "__#36547@#logger": Logger;
768
+ "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
767
769
  get logger(): Logger;
768
770
  set logger(logger: Partial<Logger>);
769
771
  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
- "__#34162@#lastBaseUrl"?: string;
771
- "__#34162@#workingBaseUrl"?: string;
772
- "__#34162@#failedUrls": Set<string>;
773
- "__#34162@#getResourceUrls"(filename: string): (URL & {
772
+ "__#36551@#lastBaseUrl"?: string;
773
+ "__#36551@#workingBaseUrl"?: string;
774
+ "__#36551@#failedUrls": Set<string>;
775
+ "__#36551@#getResourceUrls"(filename: string): (URL & {
774
776
  baseUrl: string;
775
777
  }) | (URL & {
776
778
  baseUrl: string;
777
779
  })[];
778
- "__#34162@#createResourceUrl"(filename: string, baseUrl: string): URL & {
780
+ "__#36551@#createResourceUrl"(filename: string, baseUrl: string): URL & {
779
781
  baseUrl: string;
780
782
  };
781
783
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -791,12 +793,12 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
791
793
  declare const createValidateAttributesMixin: {
792
794
  (mappings: Record<string, CheckValueFn | string>): <T extends CustomElementConstructor>(superclass: T) => {
793
795
  new (...args: any): {
794
- "__#34161@#handleError"(attrName: string, newValue: string | null): void;
796
+ "__#36550@#handleError"(attrName: string, newValue: string | null): void;
795
797
  init(): Promise<void>;
796
- "__#34160@#observeMappings": {};
798
+ "__#36549@#observeMappings": {};
797
799
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
798
800
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
799
- "__#34159@#isInit": boolean;
801
+ "__#36548@#isInit": boolean;
800
802
  connectedCallback: (() => void) & (() => void) & (() => void);
801
803
  accessKey: string;
802
804
  readonly accessKeyLabel: string;
@@ -1123,8 +1125,8 @@ declare const createValidateAttributesMixin: {
1123
1125
  tabIndex: number;
1124
1126
  blur(): void;
1125
1127
  focus(options?: FocusOptions): void;
1126
- "__#34158@#logger": Logger;
1127
- "__#34158@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1128
+ "__#36547@#logger": Logger;
1129
+ "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1128
1130
  get logger(): Logger;
1129
1131
  set logger(logger: Partial<Logger>);
1130
1132
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -1141,19 +1143,19 @@ type DebuggerMessage = {
1141
1143
 
1142
1144
  declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T) => {
1143
1145
  new (...params: any[]): {
1144
- "__#34167@#debuggerEle": (HTMLElement & {
1146
+ "__#36556@#debuggerEle": (HTMLElement & {
1145
1147
  updateData: (data: DebuggerMessage | DebuggerMessage[]) => void;
1146
1148
  }) | null;
1147
- "__#34167@#disableDebugger"(): void;
1148
- "__#34167@#enableDebugger"(): Promise<void>;
1149
+ "__#36556@#disableDebugger"(): void;
1150
+ "__#36556@#enableDebugger"(): Promise<void>;
1149
1151
  attributeChangedCallback: (attrName: string, oldValue: string | null, newValue: string | null) => void;
1150
1152
  readonly debug: boolean;
1151
- "__#34167@#handleDebugMode"(): void;
1153
+ "__#36556@#handleDebugMode"(): void;
1152
1154
  onLogEvent(logLevel: LogLevel, args: any[]): void;
1153
1155
  init(): Promise<void>;
1154
- "__#34167@#updateDebuggerMessages"(title: string, description: string): void;
1155
- "__#34158@#logger": Logger;
1156
- "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
1156
+ "__#36556@#updateDebuggerMessages"(title: string, description: string): void;
1157
+ "__#36547@#logger": Logger;
1158
+ "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
1157
1159
  get logger(): Logger;
1158
1160
  set logger(logger: Partial<Logger>);
1159
1161
  accessKey: string;
@@ -1481,7 +1483,7 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
1481
1483
  tabIndex: number;
1482
1484
  blur(): void;
1483
1485
  focus(options?: FocusOptions): void;
1484
- "__#34159@#isInit": boolean;
1486
+ "__#36548@#isInit": boolean;
1485
1487
  };
1486
1488
  } & T;
1487
1489
 
@@ -1493,17 +1495,17 @@ type ScriptData = {
1493
1495
 
1494
1496
  declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T) => {
1495
1497
  new (...params: any[]): {
1496
- "__#34168@#getComponentsVersion"(): Promise<string>;
1497
- "__#34168@#getComponentsVersionSri"(): Promise<string>;
1498
- "__#34168@#descopeUi": Promise<any>;
1498
+ "__#36557@#getComponentsVersion"(): Promise<string>;
1499
+ "__#36557@#getComponentsVersionSri"(): Promise<string>;
1500
+ "__#36557@#descopeUi": Promise<any>;
1499
1501
  readonly descopeUi: Promise<any>;
1500
- "__#34168@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1501
- "__#34168@#getDescopeUi"(): Promise<any>;
1502
+ "__#36557@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1503
+ "__#36557@#getDescopeUi"(): Promise<any>;
1502
1504
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
1503
1505
  readonly baseCdnUrl: string;
1504
1506
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
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
+ "__#36547@#logger": Logger;
1508
+ "__#36547@#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
1509
  get logger(): Logger;
1508
1510
  set logger(logger: Partial<Logger>);
1509
1511
  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 +1837,26 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
1835
1837
  focus(options?: FocusOptions): void;
1836
1838
  init(): Promise<void>;
1837
1839
  readonly config: Promise<Config>;
1838
- "__#34164@#configCacheClear"(): void;
1839
- "__#34164@#_configResource": Promise<Config>;
1840
- "__#34164@#fetchConfig": () => Promise<Config>;
1841
- "__#34159@#isInit": boolean;
1842
- "__#34163@#callbacks": Map<string, () => void>;
1840
+ "__#36553@#configCacheClear"(): void;
1841
+ "__#36553@#_configResource": Promise<Config>;
1842
+ "__#36553@#fetchConfig": () => Promise<Config>;
1843
+ "__#36548@#isInit": boolean;
1844
+ "__#36552@#callbacks": Map<string, () => void>;
1843
1845
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
1844
1846
  reset(...sectionIds: string[]): Promise<void>;
1845
- "__#34161@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
1846
- "__#34160@#observeMappings": {} & {};
1847
+ "__#36550@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
1848
+ "__#36549@#observeMappings": {} & {};
1847
1849
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
1848
1850
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
1849
- "__#34162@#lastBaseUrl"?: string;
1850
- "__#34162@#workingBaseUrl"?: string;
1851
- "__#34162@#failedUrls": Set<string>;
1852
- "__#34162@#getResourceUrls"(filename: string): (URL & {
1851
+ "__#36551@#lastBaseUrl"?: string;
1852
+ "__#36551@#workingBaseUrl"?: string;
1853
+ "__#36551@#failedUrls": Set<string>;
1854
+ "__#36551@#getResourceUrls"(filename: string): (URL & {
1853
1855
  baseUrl: string;
1854
1856
  }) | (URL & {
1855
1857
  baseUrl: string;
1856
1858
  })[];
1857
- "__#34162@#createResourceUrl"(filename: string, baseUrl: string): URL & {
1859
+ "__#36551@#createResourceUrl"(filename: string, baseUrl: string): URL & {
1858
1860
  baseUrl: string;
1859
1861
  };
1860
1862
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -1869,7 +1871,7 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
1869
1871
 
1870
1872
  declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) => {
1871
1873
  new (...params: any[]): {
1872
- "__#34172@#ModalDriverWrapper": {
1874
+ "__#36561@#ModalDriverWrapper": {
1873
1875
  new (refOrRefFn: Element | (() => HTMLElement), config: {
1874
1876
  logger: {
1875
1877
  error(...data: any[]): void;
@@ -1879,7 +1881,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1879
1881
  };
1880
1882
  }): {
1881
1883
  setContent(template: HTMLTemplateElement): void;
1882
- "__#34171@#private": any;
1884
+ "__#36560@#private": any;
1883
1885
  beforeOpen: () => void | Promise<void>;
1884
1886
  afterClose: () => void;
1885
1887
  nodeName: string;
@@ -1887,7 +1889,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1887
1889
  open(): Promise<void>;
1888
1890
  reset(): void;
1889
1891
  remove(): void;
1890
- "__#34169@#private": any;
1892
+ "__#36558@#private": any;
1891
1893
  logger: {
1892
1894
  error(...data: any[]): void;
1893
1895
  warn(...data: any[]): void;
@@ -1901,17 +1903,17 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1901
1903
  };
1902
1904
  createModal(config?: Record<string, string>): ModalDriver;
1903
1905
  init(): Promise<void>;
1904
- "__#34168@#getComponentsVersion"(): Promise<string>;
1905
- "__#34168@#getComponentsVersionSri"(): Promise<string>;
1906
- "__#34168@#descopeUi": Promise<any>;
1906
+ "__#36557@#getComponentsVersion"(): Promise<string>;
1907
+ "__#36557@#getComponentsVersionSri"(): Promise<string>;
1908
+ "__#36557@#descopeUi": Promise<any>;
1907
1909
  readonly descopeUi: Promise<any>;
1908
- "__#34168@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1909
- "__#34168@#getDescopeUi"(): Promise<any>;
1910
+ "__#36557@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1911
+ "__#36557@#getDescopeUi"(): Promise<any>;
1910
1912
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
1911
1913
  readonly baseCdnUrl: string;
1912
1914
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
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
+ "__#36547@#logger": Logger;
1916
+ "__#36547@#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
1917
  get logger(): Logger;
1916
1918
  set logger(logger: Partial<Logger>);
1917
1919
  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 +2244,26 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
2242
2244
  blur(): void;
2243
2245
  focus(options?: FocusOptions): void;
2244
2246
  readonly config: Promise<Config>;
2245
- "__#34164@#configCacheClear"(): void;
2246
- "__#34164@#_configResource": Promise<Config>;
2247
- "__#34164@#fetchConfig": () => Promise<Config>;
2248
- "__#34159@#isInit": boolean;
2249
- "__#34163@#callbacks": Map<string, () => void>;
2247
+ "__#36553@#configCacheClear"(): void;
2248
+ "__#36553@#_configResource": Promise<Config>;
2249
+ "__#36553@#fetchConfig": () => Promise<Config>;
2250
+ "__#36548@#isInit": boolean;
2251
+ "__#36552@#callbacks": Map<string, () => void>;
2250
2252
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
2251
2253
  reset(...sectionIds: string[]): Promise<void>;
2252
- "__#34161@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2253
- "__#34160@#observeMappings": {} & {} & {};
2254
+ "__#36550@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2255
+ "__#36549@#observeMappings": {} & {} & {};
2254
2256
  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
2257
  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
- "__#34162@#lastBaseUrl"?: string;
2257
- "__#34162@#workingBaseUrl"?: string;
2258
- "__#34162@#failedUrls": Set<string>;
2259
- "__#34162@#getResourceUrls"(filename: string): (URL & {
2258
+ "__#36551@#lastBaseUrl"?: string;
2259
+ "__#36551@#workingBaseUrl"?: string;
2260
+ "__#36551@#failedUrls": Set<string>;
2261
+ "__#36551@#getResourceUrls"(filename: string): (URL & {
2260
2262
  baseUrl: string;
2261
2263
  }) | (URL & {
2262
2264
  baseUrl: string;
2263
2265
  })[];
2264
- "__#34162@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2266
+ "__#36551@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2265
2267
  baseUrl: string;
2266
2268
  };
2267
2269
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -2281,13 +2283,13 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
2281
2283
  replaceSync(cssString: string): void;
2282
2284
  readonly cssRules: CSSRuleList;
2283
2285
  } | CSSStyleSheet;
2284
- "__#34165@#setNonce"(): void;
2286
+ "__#36554@#setNonce"(): void;
2285
2287
  };
2286
2288
  } & T;
2287
2289
 
2288
2290
  declare const notificationsMixin: <T extends CustomElementConstructor>(superclass: T) => {
2289
2291
  new (...params: any[]): {
2290
- "__#34173@#NotificationDriverWrapper": {
2292
+ "__#36562@#NotificationDriverWrapper": {
2291
2293
  new (refOrRefFn: Element | (() => HTMLElement), config: {
2292
2294
  logger: {
2293
2295
  error(...data: any[]): void;
@@ -2301,7 +2303,7 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2301
2303
  close(): void;
2302
2304
  show(): void;
2303
2305
  remove(): void;
2304
- "__#34169@#private": any;
2306
+ "__#36558@#private": any;
2305
2307
  logger: {
2306
2308
  error(...data: any[]): void;
2307
2309
  warn(...data: any[]): void;
@@ -2328,7 +2330,7 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2328
2330
  close(): void;
2329
2331
  show(): void;
2330
2332
  remove(): void;
2331
- "__#34169@#private": any;
2333
+ "__#36558@#private": any;
2332
2334
  logger: {
2333
2335
  error(...data: any[]): void;
2334
2336
  warn(...data: any[]): void;
@@ -2340,17 +2342,17 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2340
2342
  readonly isExists: boolean;
2341
2343
  };
2342
2344
  init(): Promise<void>;
2343
- "__#34168@#getComponentsVersion"(): Promise<string>;
2344
- "__#34168@#getComponentsVersionSri"(): Promise<string>;
2345
- "__#34168@#descopeUi": Promise<any>;
2345
+ "__#36557@#getComponentsVersion"(): Promise<string>;
2346
+ "__#36557@#getComponentsVersionSri"(): Promise<string>;
2347
+ "__#36557@#descopeUi": Promise<any>;
2346
2348
  readonly descopeUi: Promise<any>;
2347
- "__#34168@#loadDescopeUiComponent"(componentName: string): Promise<any>;
2348
- "__#34168@#getDescopeUi"(): Promise<any>;
2349
+ "__#36557@#loadDescopeUiComponent"(componentName: string): Promise<any>;
2350
+ "__#36557@#getDescopeUi"(): Promise<any>;
2349
2351
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
2350
2352
  readonly baseCdnUrl: string;
2351
2353
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
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
+ "__#36547@#logger": Logger;
2355
+ "__#36547@#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
2356
  get logger(): Logger;
2355
2357
  set logger(logger: Partial<Logger>);
2356
2358
  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 +2683,26 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2681
2683
  blur(): void;
2682
2684
  focus(options?: FocusOptions): void;
2683
2685
  readonly config: Promise<Config>;
2684
- "__#34164@#configCacheClear"(): void;
2685
- "__#34164@#_configResource": Promise<Config>;
2686
- "__#34164@#fetchConfig": () => Promise<Config>;
2687
- "__#34159@#isInit": boolean;
2688
- "__#34163@#callbacks": Map<string, () => void>;
2686
+ "__#36553@#configCacheClear"(): void;
2687
+ "__#36553@#_configResource": Promise<Config>;
2688
+ "__#36553@#fetchConfig": () => Promise<Config>;
2689
+ "__#36548@#isInit": boolean;
2690
+ "__#36552@#callbacks": Map<string, () => void>;
2689
2691
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
2690
2692
  reset(...sectionIds: string[]): Promise<void>;
2691
- "__#34161@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2692
- "__#34160@#observeMappings": {} & {} & {};
2693
+ "__#36550@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2694
+ "__#36549@#observeMappings": {} & {} & {};
2693
2695
  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
2696
  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
- "__#34162@#lastBaseUrl"?: string;
2696
- "__#34162@#workingBaseUrl"?: string;
2697
- "__#34162@#failedUrls": Set<string>;
2698
- "__#34162@#getResourceUrls"(filename: string): (URL & {
2697
+ "__#36551@#lastBaseUrl"?: string;
2698
+ "__#36551@#workingBaseUrl"?: string;
2699
+ "__#36551@#failedUrls": Set<string>;
2700
+ "__#36551@#getResourceUrls"(filename: string): (URL & {
2699
2701
  baseUrl: string;
2700
2702
  }) | (URL & {
2701
2703
  baseUrl: string;
2702
2704
  })[];
2703
- "__#34162@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2705
+ "__#36551@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2704
2706
  baseUrl: string;
2705
2707
  };
2706
2708
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -2720,18 +2722,18 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2720
2722
  replaceSync(cssString: string): void;
2721
2723
  readonly cssRules: CSSRuleList;
2722
2724
  } | CSSStyleSheet;
2723
- "__#34165@#setNonce"(): void;
2725
+ "__#36554@#setNonce"(): void;
2724
2726
  };
2725
2727
  } & T;
2726
2728
 
2727
2729
  type OnAttrChange = (attrName: string, value: string | null) => void;
2728
2730
  declare const observeAttributesMixin: <T extends CustomElementConstructor>(superclass: T) => {
2729
2731
  new (...params: any[]): {
2730
- "__#34160@#observeMappings": {};
2732
+ "__#36549@#observeMappings": {};
2731
2733
  init(): Promise<void>;
2732
2734
  observeAttribute(attrName: string, onAttrChange: OnAttrChange): () => any;
2733
2735
  observeAttributes(attrs: string[], cb: OnAttrChange): () => void;
2734
- "__#34159@#isInit": boolean;
2736
+ "__#36548@#isInit": boolean;
2735
2737
  connectedCallback: (() => void) & (() => void);
2736
2738
  accessKey: string;
2737
2739
  readonly accessKeyLabel: string;
@@ -3058,8 +3060,8 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
3058
3060
  tabIndex: number;
3059
3061
  blur(): void;
3060
3062
  focus(options?: FocusOptions): void;
3061
- "__#34158@#logger": Logger;
3062
- "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
3063
+ "__#36547@#logger": Logger;
3064
+ "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
3063
3065
  get logger(): Logger;
3064
3066
  set logger(logger: Partial<Logger>);
3065
3067
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -3078,11 +3080,11 @@ declare function getResourceUrl({ projectId, filename, assetsFolder, baseUrl, }:
3078
3080
  }): CustomUrl;
3079
3081
  declare const staticResourcesMixin: <T extends CustomElementConstructor>(superclass: T) => {
3080
3082
  new (...params: any[]): {
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;
3083
+ "__#36551@#lastBaseUrl"?: string;
3084
+ "__#36551@#workingBaseUrl"?: string;
3085
+ "__#36551@#failedUrls": Set<string>;
3086
+ "__#36551@#getResourceUrls"(filename: string): CustomUrl[] | CustomUrl;
3087
+ "__#36551@#createResourceUrl"(filename: string, baseUrl: string): CustomUrl;
3086
3088
  fetchStaticResource<F extends Format>(filename: string, format: F): Promise<{
3087
3089
  body: F extends 'json' ? Record<string, any> : string;
3088
3090
  headers: Record<string, string>;
@@ -3416,14 +3418,14 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
3416
3418
  blur(): void;
3417
3419
  focus(options?: FocusOptions): void;
3418
3420
  readonly projectId: string;
3419
- "__#34161@#handleError"(attrName: string, newValue: string): void;
3421
+ "__#36550@#handleError"(attrName: string, newValue: string): void;
3420
3422
  init(): Promise<void>;
3421
- "__#34160@#observeMappings": {};
3423
+ "__#36549@#observeMappings": {};
3422
3424
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
3423
3425
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
3424
- "__#34159@#isInit": boolean;
3425
- "__#34158@#logger": Logger;
3426
- "__#34158@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
3426
+ "__#36548@#isInit": boolean;
3427
+ "__#36547@#logger": Logger;
3428
+ "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
3427
3429
  get logger(): Logger;
3428
3430
  set logger(logger: Partial<Logger>);
3429
3431
  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 +3447,12 @@ declare const injectStyleMixin: <T extends CustomElementConstructor>(superclass:
3445
3447
  prepend?: boolean;
3446
3448
  }): CSSStyleSheetMock | CSSStyleSheet;
3447
3449
  nonce: string;
3448
- "__#34165@#setNonce"(): void;
3450
+ "__#36554@#setNonce"(): void;
3449
3451
  init(): Promise<void>;
3450
- "__#34160@#observeMappings": {};
3452
+ "__#36549@#observeMappings": {};
3451
3453
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
3452
3454
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
3453
- "__#34159@#isInit": boolean;
3455
+ "__#36548@#isInit": boolean;
3454
3456
  connectedCallback: (() => void) & (() => void) & (() => void);
3455
3457
  accessKey: string;
3456
3458
  readonly accessKeyLabel: string;
@@ -3776,8 +3778,8 @@ declare const injectStyleMixin: <T extends CustomElementConstructor>(superclass:
3776
3778
  tabIndex: number;
3777
3779
  blur(): void;
3778
3780
  focus(options?: FocusOptions): void;
3779
- "__#34158@#logger": Logger;
3780
- "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
3781
+ "__#36547@#logger": Logger;
3782
+ "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
3781
3783
  get logger(): Logger;
3782
3784
  set logger(logger: Partial<Logger>);
3783
3785
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -3788,31 +3790,31 @@ type InjectedStyle = CSSStyleSheet | CSSStyleSheetMock;
3788
3790
  type ThemeOptions = 'light' | 'dark' | 'os';
3789
3791
  declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) => {
3790
3792
  new (...params: any[]): {
3791
- "__#34174@#globalStyle": InjectedStyle;
3792
- "__#34174@#tenantStyle": InjectedStyle;
3793
- "__#34174@#customStyle": InjectedStyle;
3793
+ "__#36563@#globalStyle": InjectedStyle;
3794
+ "__#36563@#tenantStyle": InjectedStyle;
3795
+ "__#36563@#customStyle": InjectedStyle;
3794
3796
  readonly theme: ThemeOptions;
3795
3797
  readonly styleId: string;
3796
3798
  readonly themeOverride: Record<string, any>;
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, {
3799
+ "__#36563@#getThemeOverrideString"(): string;
3800
+ "__#36563@#_themeResource": Promise<void | Record<string, any>>;
3801
+ "__#36563@#_tenantThemeResource": Promise<Record<string, any> | undefined>;
3802
+ "__#36563@#fetchTheme"(): Promise<Record<string, any>>;
3803
+ readonly "__#36563@#themeResource": Promise<void | Record<string, any>>;
3804
+ "__#36563@#loadGlobalStyle"(): Promise<void>;
3805
+ "__#36563@#fetchTenantTheme"(): Promise<Record<string, any>>;
3806
+ readonly "__#36563@#tenantThemeResource": Promise<Record<string, any>>;
3807
+ "__#36563@#loadTenantStyle"(): Promise<void>;
3808
+ "__#36563@#loadCustomStyle"(): Promise<void>;
3809
+ "__#36563@#loadComponentsStyle"(): Promise<void>;
3810
+ "__#36563@#getFontsConfig"(): Promise<Record<string, {
3809
3811
  url?: string;
3810
3812
  }>>;
3811
- "__#34174@#loadFonts"(): Promise<void>;
3812
- "__#34174@#applyTheme"(): Promise<void>;
3813
- "__#34174@#onThemeChange": () => void;
3814
- "__#34174@#loadTheme"(): void;
3815
- "__#34174@#toggleOsThemeChangeListener": (listen: boolean) => void;
3813
+ "__#36563@#loadFonts"(): Promise<void>;
3814
+ "__#36563@#applyTheme"(): Promise<void>;
3815
+ "__#36563@#onThemeChange": () => void;
3816
+ "__#36563@#loadTheme"(): void;
3817
+ "__#36563@#toggleOsThemeChangeListener": (listen: boolean) => void;
3816
3818
  init(): Promise<void>;
3817
3819
  injectStyle: ((cssString: string, { prepend }?: {
3818
3820
  prepend?: boolean;
@@ -3830,11 +3832,11 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
3830
3832
  readonly cssRules: CSSRuleList;
3831
3833
  } | CSSStyleSheet);
3832
3834
  nonce: string;
3833
- "__#34165@#setNonce": (() => void) & (() => void);
3834
- "__#34160@#observeMappings": {} & {} & {} & {} & {} & {} & {} & {} & {} & {};
3835
+ "__#36554@#setNonce": (() => void) & (() => void);
3836
+ "__#36549@#observeMappings": {} & {} & {} & {} & {} & {} & {} & {} & {} & {};
3835
3837
  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
3838
  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;
3839
+ "__#36548@#isInit": boolean;
3838
3840
  connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
3839
3841
  accessKey: string;
3840
3842
  readonly accessKeyLabel: string;
@@ -4160,25 +4162,25 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
4160
4162
  tabIndex: number;
4161
4163
  blur(): void;
4162
4164
  focus(options?: FocusOptions): void;
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);
4165
+ "__#36547@#logger": Logger;
4166
+ "__#36547@#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);
4165
4167
  get logger(): Logger;
4166
4168
  set logger(logger: Partial<Logger>);
4167
4169
  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);
4168
4170
  contentRootElement: HTMLElement;
4169
4171
  rootElement: HTMLElement;
4170
4172
  readonly config: Promise<Config>;
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>;
4173
+ "__#36553@#configCacheClear": (() => void) & (() => void);
4174
+ "__#36553@#_configResource": Promise<Config>;
4175
+ "__#36553@#fetchConfig": (() => Promise<Config>) & (() => Promise<Config>);
4176
+ "__#36552@#callbacks": Map<string, () => void> & Map<string, () => void>;
4175
4177
  onReset: ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void);
4176
4178
  reset: ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>);
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 & {
4179
+ "__#36550@#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);
4180
+ "__#36551@#lastBaseUrl"?: string;
4181
+ "__#36551@#workingBaseUrl"?: string;
4182
+ "__#36551@#failedUrls": Set<string>;
4183
+ "__#36551@#getResourceUrls": ((filename: string) => (URL & {
4182
4184
  baseUrl: string;
4183
4185
  }) | (URL & {
4184
4186
  baseUrl: string;
@@ -4191,7 +4193,7 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
4191
4193
  }) | (URL & {
4192
4194
  baseUrl: string;
4193
4195
  })[]);
4194
- "__#34162@#createResourceUrl": ((filename: string, baseUrl: string) => URL & {
4196
+ "__#36551@#createResourceUrl": ((filename: string, baseUrl: string) => URL & {
4195
4197
  baseUrl: string;
4196
4198
  }) & ((filename: string, baseUrl: string) => URL & {
4197
4199
  baseUrl: string;
@@ -4211,12 +4213,12 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
4211
4213
  readonly baseStaticUrl: string;
4212
4214
  readonly baseUrl: string;
4213
4215
  readonly projectId: string;
4214
- "__#34168@#getComponentsVersion"(): Promise<string>;
4215
- "__#34168@#getComponentsVersionSri"(): Promise<string>;
4216
- "__#34168@#descopeUi": Promise<any>;
4216
+ "__#36557@#getComponentsVersion"(): Promise<string>;
4217
+ "__#36557@#getComponentsVersionSri"(): Promise<string>;
4218
+ "__#36557@#descopeUi": Promise<any>;
4217
4219
  readonly descopeUi: Promise<any>;
4218
- "__#34168@#loadDescopeUiComponent"(componentName: string): Promise<any>;
4219
- "__#34168@#getDescopeUi"(): Promise<any>;
4220
+ "__#36557@#loadDescopeUiComponent"(componentName: string): Promise<any>;
4221
+ "__#36557@#getDescopeUi"(): Promise<any>;
4220
4222
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
4221
4223
  readonly baseCdnUrl: string;
4222
4224
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
@@ -4232,8 +4234,8 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
4232
4234
  new (...args: any): {
4233
4235
  actions: _reduxjs_toolkit.CaseReducerActions<CaseReducers, Name> & AsyncActions;
4234
4236
  subscribe: <SelectorR = State extends Draft<infer S> ? S : State>(cb: (state: SelectorR) => void, selector?: (state: State) => SelectorR) => Unsubscribe;
4235
- "__#34158@#logger": Logger;
4236
- "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
4237
+ "__#36547@#logger": Logger;
4238
+ "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
4237
4239
  get logger(): Logger;
4238
4240
  set logger(logger: Partial<Logger>);
4239
4241
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -4577,8 +4579,8 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
4577
4579
  getFormFieldNames(rootEle: ElementOrEmpty): string[];
4578
4580
  disableFormField(rootEle: ElementOrEmpty, name: string): void;
4579
4581
  removeFormField(rootEle: ElementOrEmpty, name: string): void;
4580
- "__#34158@#logger": Logger;
4581
- "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
4582
+ "__#36547@#logger": Logger;
4583
+ "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
4582
4584
  get logger(): Logger;
4583
4585
  set logger(logger: Partial<Logger>);
4584
4586
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -4924,12 +4926,12 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
4924
4926
  readonly cssRules: CSSRuleList;
4925
4927
  } | CSSStyleSheet;
4926
4928
  nonce: string;
4927
- "__#34165@#setNonce"(): void;
4929
+ "__#36554@#setNonce"(): void;
4928
4930
  init(): Promise<void>;
4929
- "__#34160@#observeMappings": {};
4931
+ "__#36549@#observeMappings": {};
4930
4932
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
4931
4933
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
4932
- "__#34159@#isInit": boolean;
4934
+ "__#36548@#isInit": boolean;
4933
4935
  connectedCallback: (() => void) & (() => void) & (() => void);
4934
4936
  accessKey: string;
4935
4937
  readonly accessKeyLabel: string;
@@ -5255,8 +5257,8 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
5255
5257
  tabIndex: number;
5256
5258
  blur(): void;
5257
5259
  focus(options?: FocusOptions): void;
5258
- "__#34158@#logger": Logger;
5259
- "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
5260
+ "__#36547@#logger": Logger;
5261
+ "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
5260
5262
  get logger(): Logger;
5261
5263
  set logger(logger: Partial<Logger>);
5262
5264
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -5265,7 +5267,7 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
5265
5267
 
5266
5268
  declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclass: T) => {
5267
5269
  new (...params: any[]): {
5268
- "__#34159@#isInit": boolean;
5270
+ "__#36548@#isInit": boolean;
5269
5271
  connectedCallback(): void;
5270
5272
  init(): Promise<void>;
5271
5273
  accessKey: string;
@@ -5599,12 +5601,12 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
5599
5601
  declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T) => {
5600
5602
  new (...args: any): {
5601
5603
  readonly projectId: string;
5602
- "__#34161@#handleError"(attrName: string, newValue: string): void;
5604
+ "__#36550@#handleError"(attrName: string, newValue: string): void;
5603
5605
  init(): Promise<void>;
5604
- "__#34160@#observeMappings": {};
5606
+ "__#36549@#observeMappings": {};
5605
5607
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
5606
5608
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
5607
- "__#34159@#isInit": boolean;
5609
+ "__#36548@#isInit": boolean;
5608
5610
  connectedCallback: (() => void) & (() => void) & (() => void);
5609
5611
  accessKey: string;
5610
5612
  readonly accessKeyLabel: string;
@@ -5931,8 +5933,8 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
5931
5933
  tabIndex: number;
5932
5934
  blur(): void;
5933
5935
  focus(options?: FocusOptions): void;
5934
- "__#34158@#logger": Logger;
5935
- "__#34158@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
5936
+ "__#36547@#logger": Logger;
5937
+ "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
5936
5938
  get logger(): Logger;
5937
5939
  set logger(logger: Partial<Logger>);
5938
5940
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -5942,12 +5944,12 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
5942
5944
  declare const tenantIdMixin: <T extends CustomElementConstructor>(superclass: T) => {
5943
5945
  new (...args: any): {
5944
5946
  readonly tenantId: string;
5945
- "__#34161@#handleError"(attrName: string, newValue: string): void;
5947
+ "__#36550@#handleError"(attrName: string, newValue: string): void;
5946
5948
  init(): Promise<void>;
5947
- "__#34160@#observeMappings": {};
5949
+ "__#36549@#observeMappings": {};
5948
5950
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
5949
5951
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
5950
- "__#34159@#isInit": boolean;
5952
+ "__#36548@#isInit": boolean;
5951
5953
  connectedCallback: (() => void) & (() => void) & (() => void);
5952
5954
  accessKey: string;
5953
5955
  readonly accessKeyLabel: string;
@@ -6274,8 +6276,8 @@ declare const tenantIdMixin: <T extends CustomElementConstructor>(superclass: T)
6274
6276
  tabIndex: number;
6275
6277
  blur(): void;
6276
6278
  focus(options?: FocusOptions): void;
6277
- "__#34158@#logger": Logger;
6278
- "__#34158@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
6279
+ "__#36547@#logger": Logger;
6280
+ "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
6279
6281
  get logger(): Logger;
6280
6282
  set logger(logger: Partial<Logger>);
6281
6283
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -6285,12 +6287,12 @@ declare const tenantIdMixin: <T extends CustomElementConstructor>(superclass: T)
6285
6287
  declare const widgetIdMixin: <T extends CustomElementConstructor>(superclass: T) => {
6286
6288
  new (...args: any): {
6287
6289
  readonly widgetId: string;
6288
- "__#34161@#handleError"(attrName: string, newValue: string): void;
6290
+ "__#36550@#handleError"(attrName: string, newValue: string): void;
6289
6291
  init(): Promise<void>;
6290
- "__#34160@#observeMappings": {};
6292
+ "__#36549@#observeMappings": {};
6291
6293
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
6292
6294
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
6293
- "__#34159@#isInit": boolean;
6295
+ "__#36548@#isInit": boolean;
6294
6296
  connectedCallback: (() => void) & (() => void) & (() => void);
6295
6297
  accessKey: string;
6296
6298
  readonly accessKeyLabel: string;
@@ -6617,8 +6619,8 @@ declare const widgetIdMixin: <T extends CustomElementConstructor>(superclass: T)
6617
6619
  tabIndex: number;
6618
6620
  blur(): void;
6619
6621
  focus(options?: FocusOptions): void;
6620
- "__#34158@#logger": Logger;
6621
- "__#34158@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
6622
+ "__#36547@#logger": Logger;
6623
+ "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
6622
6624
  get logger(): Logger;
6623
6625
  set logger(logger: Partial<Logger>);
6624
6626
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -6630,11 +6632,11 @@ declare const widgetConfigMixin: <T extends CustomElementConstructor>(superclass
6630
6632
  init(): Promise<void>;
6631
6633
  getWidgetConfig(): Promise<WidgetConfig | undefined>;
6632
6634
  readonly widgetId: string;
6633
- "__#34161@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
6634
- "__#34160@#observeMappings": {} & {} & {};
6635
+ "__#36550@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
6636
+ "__#36549@#observeMappings": {} & {} & {};
6635
6637
  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);
6636
6638
  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);
6637
- "__#34159@#isInit": boolean;
6639
+ "__#36548@#isInit": boolean;
6638
6640
  connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
6639
6641
  accessKey: string;
6640
6642
  readonly accessKeyLabel: string;
@@ -6961,27 +6963,27 @@ declare const widgetConfigMixin: <T extends CustomElementConstructor>(superclass
6961
6963
  tabIndex: number;
6962
6964
  blur(): void;
6963
6965
  focus(options?: FocusOptions): void;
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);
6966
+ "__#36547@#logger": Logger;
6967
+ "__#36547@#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);
6966
6968
  get logger(): Logger;
6967
6969
  set logger(logger: Partial<Logger>);
6968
6970
  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);
6969
6971
  readonly config: Promise<Config>;
6970
- "__#34164@#configCacheClear"(): void;
6971
- "__#34164@#_configResource": Promise<Config>;
6972
- "__#34164@#fetchConfig": () => Promise<Config>;
6973
- "__#34163@#callbacks": Map<string, () => void>;
6972
+ "__#36553@#configCacheClear"(): void;
6973
+ "__#36553@#_configResource": Promise<Config>;
6974
+ "__#36553@#fetchConfig": () => Promise<Config>;
6975
+ "__#36552@#callbacks": Map<string, () => void>;
6974
6976
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
6975
6977
  reset(...sectionIds: string[]): Promise<void>;
6976
- "__#34162@#lastBaseUrl"?: string;
6977
- "__#34162@#workingBaseUrl"?: string;
6978
- "__#34162@#failedUrls": Set<string>;
6979
- "__#34162@#getResourceUrls"(filename: string): (URL & {
6978
+ "__#36551@#lastBaseUrl"?: string;
6979
+ "__#36551@#workingBaseUrl"?: string;
6980
+ "__#36551@#failedUrls": Set<string>;
6981
+ "__#36551@#getResourceUrls"(filename: string): (URL & {
6980
6982
  baseUrl: string;
6981
6983
  }) | (URL & {
6982
6984
  baseUrl: string;
6983
6985
  })[];
6984
- "__#34162@#createResourceUrl"(filename: string, baseUrl: string): URL & {
6986
+ "__#36551@#createResourceUrl"(filename: string, baseUrl: string): URL & {
6985
6987
  baseUrl: string;
6986
6988
  };
6987
6989
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -6994,6 +6996,745 @@ declare const widgetConfigMixin: <T extends CustomElementConstructor>(superclass
6994
6996
  };
6995
6997
  } & T;
6996
6998
 
6999
+ /**
7000
+ * Exposes the widget's locale to mixins that need it (HTML fetching, flow propagation).
7001
+ * Mirrors web-component's BaseDescopeWc locale handling:
7002
+ * - `locale` getter returns the raw attribute value, defaulting to '' when unset (like themeMixin's
7003
+ * theme/styleId), so callers can pass it straight to setAttribute without emitting "undefined".
7004
+ * - `localeCandidates` returns the lowercased locales to try, most-specific first: the resolved
7005
+ * locale and then its language-only fallback (e.g. 'en-us' then 'en'), matching the
7006
+ * web-component's getHtmlFilenameWithLocale probe order. Falls back to navigator.language.
7007
+ * - `firstAvailableLocale(availableLocales)` returns the most-specific candidate that the consumer
7008
+ * actually publishes (e.g. a widget's config.json targetLocales), or '' when none match.
7009
+ */
7010
+ declare const localeMixin: <T extends CustomElementConstructor>(superclass: T) => {
7011
+ new (...params: any[]): {
7012
+ readonly locale: string;
7013
+ readonly localeCandidates: string[];
7014
+ firstAvailableLocale(availableLocales: string[]): string;
7015
+ accessKey: string;
7016
+ readonly accessKeyLabel: string;
7017
+ autocapitalize: string;
7018
+ dir: string;
7019
+ draggable: boolean;
7020
+ hidden: boolean;
7021
+ inert: boolean;
7022
+ innerText: string;
7023
+ lang: string;
7024
+ readonly offsetHeight: number;
7025
+ readonly offsetLeft: number;
7026
+ readonly offsetParent: Element;
7027
+ readonly offsetTop: number;
7028
+ readonly offsetWidth: number;
7029
+ outerText: string;
7030
+ popover: string;
7031
+ spellcheck: boolean;
7032
+ title: string;
7033
+ translate: boolean;
7034
+ attachInternals(): ElementInternals;
7035
+ click(): void;
7036
+ hidePopover(): void;
7037
+ showPopover(): void;
7038
+ togglePopover(force?: boolean): boolean;
7039
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
7040
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
7041
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
7042
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
7043
+ attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
7044
+ connectedCallback(): void;
7045
+ readonly attributes: NamedNodeMap;
7046
+ readonly classList: DOMTokenList;
7047
+ className: string;
7048
+ readonly clientHeight: number;
7049
+ readonly clientLeft: number;
7050
+ readonly clientTop: number;
7051
+ readonly clientWidth: number;
7052
+ id: string;
7053
+ readonly localName: string;
7054
+ readonly namespaceURI: string;
7055
+ onfullscreenchange: (this: Element, ev: Event) => any;
7056
+ onfullscreenerror: (this: Element, ev: Event) => any;
7057
+ outerHTML: string;
7058
+ readonly ownerDocument: Document;
7059
+ readonly part: DOMTokenList;
7060
+ readonly prefix: string;
7061
+ readonly scrollHeight: number;
7062
+ scrollLeft: number;
7063
+ scrollTop: number;
7064
+ readonly scrollWidth: number;
7065
+ readonly shadowRoot: ShadowRoot;
7066
+ slot: string;
7067
+ readonly tagName: string;
7068
+ attachShadow(init: ShadowRootInit): ShadowRoot;
7069
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
7070
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
7071
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
7072
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
7073
+ closest<E extends Element = Element>(selectors: string): E;
7074
+ computedStyleMap(): StylePropertyMapReadOnly;
7075
+ getAttribute(qualifiedName: string): string;
7076
+ getAttributeNS(namespace: string, localName: string): string;
7077
+ getAttributeNames(): string[];
7078
+ getAttributeNode(qualifiedName: string): Attr;
7079
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
7080
+ getBoundingClientRect(): DOMRect;
7081
+ getClientRects(): DOMRectList;
7082
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
7083
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
7084
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
7085
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
7086
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
7087
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
7088
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
7089
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
7090
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
7091
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
7092
+ hasAttribute(qualifiedName: string): boolean;
7093
+ hasAttributeNS(namespace: string, localName: string): boolean;
7094
+ hasAttributes(): boolean;
7095
+ hasPointerCapture(pointerId: number): boolean;
7096
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
7097
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
7098
+ insertAdjacentText(where: InsertPosition, data: string): void;
7099
+ matches(selectors: string): boolean;
7100
+ releasePointerCapture(pointerId: number): void;
7101
+ removeAttribute(qualifiedName: string): void;
7102
+ removeAttributeNS(namespace: string, localName: string): void;
7103
+ removeAttributeNode(attr: Attr): Attr;
7104
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
7105
+ requestPointerLock(): void;
7106
+ scroll(options?: ScrollToOptions): void;
7107
+ scroll(x: number, y: number): void;
7108
+ scrollBy(options?: ScrollToOptions): void;
7109
+ scrollBy(x: number, y: number): void;
7110
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
7111
+ scrollTo(options?: ScrollToOptions): void;
7112
+ scrollTo(x: number, y: number): void;
7113
+ setAttribute(qualifiedName: string, value: string): void;
7114
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
7115
+ setAttributeNode(attr: Attr): Attr;
7116
+ setAttributeNodeNS(attr: Attr): Attr;
7117
+ setPointerCapture(pointerId: number): void;
7118
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
7119
+ webkitMatchesSelector(selectors: string): boolean;
7120
+ readonly baseURI: string;
7121
+ readonly childNodes: NodeListOf<ChildNode>;
7122
+ readonly firstChild: ChildNode;
7123
+ readonly isConnected: boolean;
7124
+ readonly lastChild: ChildNode;
7125
+ readonly nextSibling: ChildNode;
7126
+ readonly nodeName: string;
7127
+ readonly nodeType: number;
7128
+ nodeValue: string;
7129
+ readonly parentElement: HTMLElement;
7130
+ readonly parentNode: ParentNode;
7131
+ readonly previousSibling: ChildNode;
7132
+ textContent: string;
7133
+ appendChild<T_1 extends Node>(node: T_1): T_1;
7134
+ cloneNode(deep?: boolean): Node;
7135
+ compareDocumentPosition(other: Node): number;
7136
+ contains(other: Node): boolean;
7137
+ getRootNode(options?: GetRootNodeOptions): Node;
7138
+ hasChildNodes(): boolean;
7139
+ insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
7140
+ isDefaultNamespace(namespace: string): boolean;
7141
+ isEqualNode(otherNode: Node): boolean;
7142
+ isSameNode(otherNode: Node): boolean;
7143
+ lookupNamespaceURI(prefix: string): string;
7144
+ lookupPrefix(namespace: string): string;
7145
+ normalize(): void;
7146
+ removeChild<T_3 extends Node>(child: T_3): T_3;
7147
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
7148
+ readonly ELEMENT_NODE: 1;
7149
+ readonly ATTRIBUTE_NODE: 2;
7150
+ readonly TEXT_NODE: 3;
7151
+ readonly CDATA_SECTION_NODE: 4;
7152
+ readonly ENTITY_REFERENCE_NODE: 5;
7153
+ readonly ENTITY_NODE: 6;
7154
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
7155
+ readonly COMMENT_NODE: 8;
7156
+ readonly DOCUMENT_NODE: 9;
7157
+ readonly DOCUMENT_TYPE_NODE: 10;
7158
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
7159
+ readonly NOTATION_NODE: 12;
7160
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
7161
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
7162
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
7163
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
7164
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
7165
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
7166
+ dispatchEvent(event: Event): boolean;
7167
+ ariaAtomic: string;
7168
+ ariaAutoComplete: string;
7169
+ ariaBusy: string;
7170
+ ariaChecked: string;
7171
+ ariaColCount: string;
7172
+ ariaColIndex: string;
7173
+ ariaColSpan: string;
7174
+ ariaCurrent: string;
7175
+ ariaDescription: string;
7176
+ ariaDisabled: string;
7177
+ ariaExpanded: string;
7178
+ ariaHasPopup: string;
7179
+ ariaHidden: string;
7180
+ ariaInvalid: string;
7181
+ ariaKeyShortcuts: string;
7182
+ ariaLabel: string;
7183
+ ariaLevel: string;
7184
+ ariaLive: string;
7185
+ ariaModal: string;
7186
+ ariaMultiLine: string;
7187
+ ariaMultiSelectable: string;
7188
+ ariaOrientation: string;
7189
+ ariaPlaceholder: string;
7190
+ ariaPosInSet: string;
7191
+ ariaPressed: string;
7192
+ ariaReadOnly: string;
7193
+ ariaRequired: string;
7194
+ ariaRoleDescription: string;
7195
+ ariaRowCount: string;
7196
+ ariaRowIndex: string;
7197
+ ariaRowSpan: string;
7198
+ ariaSelected: string;
7199
+ ariaSetSize: string;
7200
+ ariaSort: string;
7201
+ ariaValueMax: string;
7202
+ ariaValueMin: string;
7203
+ ariaValueNow: string;
7204
+ ariaValueText: string;
7205
+ role: string;
7206
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions): Animation;
7207
+ getAnimations(options?: GetAnimationsOptions): Animation[];
7208
+ after(...nodes: (string | Node)[]): void;
7209
+ before(...nodes: (string | Node)[]): void;
7210
+ remove(): void;
7211
+ replaceWith(...nodes: (string | Node)[]): void;
7212
+ innerHTML: string;
7213
+ readonly nextElementSibling: Element;
7214
+ readonly previousElementSibling: Element;
7215
+ readonly childElementCount: number;
7216
+ readonly children: HTMLCollection;
7217
+ readonly firstElementChild: Element;
7218
+ readonly lastElementChild: Element;
7219
+ append(...nodes: (string | Node)[]): void;
7220
+ prepend(...nodes: (string | Node)[]): void;
7221
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
7222
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
7223
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
7224
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
7225
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
7226
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
7227
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
7228
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
7229
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
7230
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
7231
+ replaceChildren(...nodes: (string | Node)[]): void;
7232
+ readonly assignedSlot: HTMLSlotElement;
7233
+ readonly attributeStyleMap: StylePropertyMap;
7234
+ readonly style: CSSStyleDeclaration;
7235
+ contentEditable: string;
7236
+ enterKeyHint: string;
7237
+ inputMode: string;
7238
+ readonly isContentEditable: boolean;
7239
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
7240
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7241
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7242
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7243
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7244
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7245
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
7246
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
7247
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
7248
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
7249
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
7250
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
7251
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
7252
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7253
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
7254
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7255
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
7256
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
7257
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
7258
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7259
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
7260
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
7261
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
7262
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
7263
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
7264
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
7265
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
7266
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
7267
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
7268
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
7269
+ onerror: OnErrorEventHandlerNonNull;
7270
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
7271
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
7272
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7273
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
7274
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
7275
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
7276
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
7277
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
7278
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
7279
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
7280
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
7281
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
7282
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7283
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7284
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7285
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7286
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7287
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7288
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7289
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7290
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
7291
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
7292
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
7293
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
7294
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7295
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7296
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7297
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7298
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7299
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7300
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7301
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7302
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
7303
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
7304
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
7305
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
7306
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
7307
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
7308
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
7309
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
7310
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
7311
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
7312
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
7313
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
7314
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
7315
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
7316
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
7317
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
7318
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
7319
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
7320
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7321
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7322
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7323
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7324
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7325
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7326
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7327
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7328
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
7329
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
7330
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
7331
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
7332
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
7333
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
7334
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
7335
+ autofocus: boolean;
7336
+ readonly dataset: DOMStringMap;
7337
+ nonce?: string;
7338
+ tabIndex: number;
7339
+ blur(): void;
7340
+ focus(options?: FocusOptions): void;
7341
+ };
7342
+ } & T;
7343
+
7344
+ /**
7345
+ * Builds a widget's fetchWidgetPagesMixin. Every widget shares identical logic and differs only by
7346
+ * its published base directory (the widget type/name under which its screens live in S3), so each
7347
+ * widget calls this with its own dir:
7348
+ *
7349
+ * export const fetchWidgetPagesMixin = createFetchWidgetPagesMixin('user-profile-widget');
7350
+ *
7351
+ * `fetchWidgetPage` fetches `<base>/<widgetId>/<file>`, transparently preferring a localized
7352
+ * `<file>-<locale>.html` variant when the widget publishes that locale (config.json targetLocales),
7353
+ * and falling back to the default page otherwise.
7354
+ */
7355
+ declare const createFetchWidgetPagesMixin: (widgetPagesBaseDir: string) => <T extends CustomElementConstructor>(superclass: T) => {
7356
+ new (...params: any[]): {
7357
+ init(): Promise<void>;
7358
+ fetchWidgetPage(filename: string): Promise<string>;
7359
+ "__#36564@#tryFetchLocalized"(filename: string): Promise<string | undefined>;
7360
+ readonly locale: string;
7361
+ readonly localeCandidates: string[];
7362
+ firstAvailableLocale(availableLocales: string[]): string;
7363
+ accessKey: string;
7364
+ readonly accessKeyLabel: string;
7365
+ autocapitalize: string;
7366
+ dir: string;
7367
+ draggable: boolean;
7368
+ hidden: boolean;
7369
+ inert: boolean;
7370
+ innerText: string;
7371
+ lang: string;
7372
+ readonly offsetHeight: number;
7373
+ readonly offsetLeft: number;
7374
+ readonly offsetParent: Element;
7375
+ readonly offsetTop: number;
7376
+ readonly offsetWidth: number;
7377
+ outerText: string;
7378
+ popover: string;
7379
+ spellcheck: boolean;
7380
+ title: string;
7381
+ translate: boolean;
7382
+ attachInternals(): ElementInternals;
7383
+ click(): void;
7384
+ hidePopover(): void;
7385
+ showPopover(): void;
7386
+ togglePopover(force?: boolean): boolean;
7387
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
7388
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
7389
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
7390
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
7391
+ attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
7392
+ connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
7393
+ readonly attributes: NamedNodeMap;
7394
+ readonly classList: DOMTokenList;
7395
+ className: string;
7396
+ readonly clientHeight: number;
7397
+ readonly clientLeft: number;
7398
+ readonly clientTop: number;
7399
+ readonly clientWidth: number;
7400
+ id: string;
7401
+ readonly localName: string;
7402
+ readonly namespaceURI: string;
7403
+ onfullscreenchange: (this: Element, ev: Event) => any;
7404
+ onfullscreenerror: (this: Element, ev: Event) => any;
7405
+ outerHTML: string;
7406
+ readonly ownerDocument: Document;
7407
+ readonly part: DOMTokenList;
7408
+ readonly prefix: string;
7409
+ readonly scrollHeight: number;
7410
+ scrollLeft: number;
7411
+ scrollTop: number;
7412
+ readonly scrollWidth: number;
7413
+ readonly shadowRoot: ShadowRoot;
7414
+ slot: string;
7415
+ readonly tagName: string;
7416
+ attachShadow(init: ShadowRootInit): ShadowRoot;
7417
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
7418
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
7419
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
7420
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
7421
+ closest<E extends Element = Element>(selectors: string): E;
7422
+ computedStyleMap(): StylePropertyMapReadOnly;
7423
+ getAttribute(qualifiedName: string): string;
7424
+ getAttributeNS(namespace: string, localName: string): string;
7425
+ getAttributeNames(): string[];
7426
+ getAttributeNode(qualifiedName: string): Attr;
7427
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
7428
+ getBoundingClientRect(): DOMRect;
7429
+ getClientRects(): DOMRectList;
7430
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
7431
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
7432
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
7433
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
7434
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
7435
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
7436
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
7437
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
7438
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
7439
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
7440
+ hasAttribute(qualifiedName: string): boolean;
7441
+ hasAttributeNS(namespace: string, localName: string): boolean;
7442
+ hasAttributes(): boolean;
7443
+ hasPointerCapture(pointerId: number): boolean;
7444
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
7445
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
7446
+ insertAdjacentText(where: InsertPosition, data: string): void;
7447
+ matches(selectors: string): boolean;
7448
+ releasePointerCapture(pointerId: number): void;
7449
+ removeAttribute(qualifiedName: string): void;
7450
+ removeAttributeNS(namespace: string, localName: string): void;
7451
+ removeAttributeNode(attr: Attr): Attr;
7452
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
7453
+ requestPointerLock(): void;
7454
+ scroll(options?: ScrollToOptions): void;
7455
+ scroll(x: number, y: number): void;
7456
+ scrollBy(options?: ScrollToOptions): void;
7457
+ scrollBy(x: number, y: number): void;
7458
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
7459
+ scrollTo(options?: ScrollToOptions): void;
7460
+ scrollTo(x: number, y: number): void;
7461
+ setAttribute(qualifiedName: string, value: string): void;
7462
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
7463
+ setAttributeNode(attr: Attr): Attr;
7464
+ setAttributeNodeNS(attr: Attr): Attr;
7465
+ setPointerCapture(pointerId: number): void;
7466
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
7467
+ webkitMatchesSelector(selectors: string): boolean;
7468
+ readonly baseURI: string;
7469
+ readonly childNodes: NodeListOf<ChildNode>;
7470
+ readonly firstChild: ChildNode;
7471
+ readonly isConnected: boolean;
7472
+ readonly lastChild: ChildNode;
7473
+ readonly nextSibling: ChildNode;
7474
+ readonly nodeName: string;
7475
+ readonly nodeType: number;
7476
+ nodeValue: string;
7477
+ readonly parentElement: HTMLElement;
7478
+ readonly parentNode: ParentNode;
7479
+ readonly previousSibling: ChildNode;
7480
+ textContent: string;
7481
+ appendChild<T_1 extends Node>(node: T_1): T_1;
7482
+ cloneNode(deep?: boolean): Node;
7483
+ compareDocumentPosition(other: Node): number;
7484
+ contains(other: Node): boolean;
7485
+ getRootNode(options?: GetRootNodeOptions): Node;
7486
+ hasChildNodes(): boolean;
7487
+ insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
7488
+ isDefaultNamespace(namespace: string): boolean;
7489
+ isEqualNode(otherNode: Node): boolean;
7490
+ isSameNode(otherNode: Node): boolean;
7491
+ lookupNamespaceURI(prefix: string): string;
7492
+ lookupPrefix(namespace: string): string;
7493
+ normalize(): void;
7494
+ removeChild<T_3 extends Node>(child: T_3): T_3;
7495
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
7496
+ readonly ELEMENT_NODE: 1;
7497
+ readonly ATTRIBUTE_NODE: 2;
7498
+ readonly TEXT_NODE: 3;
7499
+ readonly CDATA_SECTION_NODE: 4;
7500
+ readonly ENTITY_REFERENCE_NODE: 5;
7501
+ readonly ENTITY_NODE: 6;
7502
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
7503
+ readonly COMMENT_NODE: 8;
7504
+ readonly DOCUMENT_NODE: 9;
7505
+ readonly DOCUMENT_TYPE_NODE: 10;
7506
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
7507
+ readonly NOTATION_NODE: 12;
7508
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
7509
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
7510
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
7511
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
7512
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
7513
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
7514
+ dispatchEvent(event: Event): boolean;
7515
+ ariaAtomic: string;
7516
+ ariaAutoComplete: string;
7517
+ ariaBusy: string;
7518
+ ariaChecked: string;
7519
+ ariaColCount: string;
7520
+ ariaColIndex: string;
7521
+ ariaColSpan: string;
7522
+ ariaCurrent: string;
7523
+ ariaDescription: string;
7524
+ ariaDisabled: string;
7525
+ ariaExpanded: string;
7526
+ ariaHasPopup: string;
7527
+ ariaHidden: string;
7528
+ ariaInvalid: string;
7529
+ ariaKeyShortcuts: string;
7530
+ ariaLabel: string;
7531
+ ariaLevel: string;
7532
+ ariaLive: string;
7533
+ ariaModal: string;
7534
+ ariaMultiLine: string;
7535
+ ariaMultiSelectable: string;
7536
+ ariaOrientation: string;
7537
+ ariaPlaceholder: string;
7538
+ ariaPosInSet: string;
7539
+ ariaPressed: string;
7540
+ ariaReadOnly: string;
7541
+ ariaRequired: string;
7542
+ ariaRoleDescription: string;
7543
+ ariaRowCount: string;
7544
+ ariaRowIndex: string;
7545
+ ariaRowSpan: string;
7546
+ ariaSelected: string;
7547
+ ariaSetSize: string;
7548
+ ariaSort: string;
7549
+ ariaValueMax: string;
7550
+ ariaValueMin: string;
7551
+ ariaValueNow: string;
7552
+ ariaValueText: string;
7553
+ role: string;
7554
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions): Animation;
7555
+ getAnimations(options?: GetAnimationsOptions): Animation[];
7556
+ after(...nodes: (string | Node)[]): void;
7557
+ before(...nodes: (string | Node)[]): void;
7558
+ remove(): void;
7559
+ replaceWith(...nodes: (string | Node)[]): void;
7560
+ innerHTML: string;
7561
+ readonly nextElementSibling: Element;
7562
+ readonly previousElementSibling: Element;
7563
+ readonly childElementCount: number;
7564
+ readonly children: HTMLCollection;
7565
+ readonly firstElementChild: Element;
7566
+ readonly lastElementChild: Element;
7567
+ append(...nodes: (string | Node)[]): void;
7568
+ prepend(...nodes: (string | Node)[]): void;
7569
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
7570
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
7571
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
7572
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
7573
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
7574
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
7575
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
7576
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
7577
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
7578
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
7579
+ replaceChildren(...nodes: (string | Node)[]): void;
7580
+ readonly assignedSlot: HTMLSlotElement;
7581
+ readonly attributeStyleMap: StylePropertyMap;
7582
+ readonly style: CSSStyleDeclaration;
7583
+ contentEditable: string;
7584
+ enterKeyHint: string;
7585
+ inputMode: string;
7586
+ readonly isContentEditable: boolean;
7587
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
7588
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7589
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7590
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7591
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
7592
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7593
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
7594
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
7595
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
7596
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
7597
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
7598
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
7599
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
7600
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7601
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
7602
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7603
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
7604
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
7605
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
7606
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7607
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
7608
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
7609
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
7610
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
7611
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
7612
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
7613
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
7614
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
7615
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
7616
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
7617
+ onerror: OnErrorEventHandlerNonNull;
7618
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
7619
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
7620
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7621
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
7622
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
7623
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
7624
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
7625
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
7626
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
7627
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
7628
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
7629
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
7630
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7631
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7632
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7633
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7634
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7635
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7636
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7637
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
7638
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
7639
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
7640
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
7641
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
7642
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7643
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7644
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7645
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7646
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7647
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7648
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7649
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
7650
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
7651
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
7652
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
7653
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
7654
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
7655
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
7656
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
7657
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
7658
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
7659
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
7660
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
7661
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
7662
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
7663
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
7664
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
7665
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
7666
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
7667
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
7668
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7669
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7670
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7671
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
7672
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7673
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7674
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7675
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
7676
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
7677
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
7678
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
7679
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
7680
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
7681
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
7682
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
7683
+ autofocus: boolean;
7684
+ readonly dataset: DOMStringMap;
7685
+ nonce?: string;
7686
+ tabIndex: number;
7687
+ blur(): void;
7688
+ focus(options?: FocusOptions): void;
7689
+ getWidgetConfig(): Promise<WidgetConfig>;
7690
+ readonly widgetId: string;
7691
+ "__#36550@#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);
7692
+ "__#36549@#observeMappings": {} & {} & {} & {} & {};
7693
+ 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);
7694
+ 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);
7695
+ "__#36548@#isInit": boolean;
7696
+ "__#36547@#logger": Logger;
7697
+ "__#36547@#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);
7698
+ get logger(): Logger;
7699
+ set logger(logger: Partial<Logger>);
7700
+ 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);
7701
+ readonly config: Promise<Config>;
7702
+ "__#36553@#configCacheClear"(): void;
7703
+ "__#36553@#_configResource": Promise<Config>;
7704
+ "__#36553@#fetchConfig": () => Promise<Config>;
7705
+ "__#36552@#callbacks": Map<string, () => void>;
7706
+ onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
7707
+ reset(...sectionIds: string[]): Promise<void>;
7708
+ "__#36551@#lastBaseUrl"?: string;
7709
+ "__#36551@#workingBaseUrl"?: string;
7710
+ "__#36551@#failedUrls": Set<string>;
7711
+ "__#36551@#getResourceUrls": ((filename: string) => (URL & {
7712
+ baseUrl: string;
7713
+ }) | (URL & {
7714
+ baseUrl: string;
7715
+ })[]) & ((filename: string) => (URL & {
7716
+ baseUrl: string;
7717
+ }) | (URL & {
7718
+ baseUrl: string;
7719
+ })[]);
7720
+ "__#36551@#createResourceUrl": ((filename: string, baseUrl: string) => URL & {
7721
+ baseUrl: string;
7722
+ }) & ((filename: string, baseUrl: string) => URL & {
7723
+ baseUrl: string;
7724
+ });
7725
+ fetchStaticResource: (<F extends "text" | "json">(filename: string, format: F) => Promise<{
7726
+ body: F extends "json" ? Record<string, any> : string;
7727
+ headers: Record<string, string>;
7728
+ }>) & (<F_1 extends "text" | "json">(filename: string, format: F_1) => Promise<{
7729
+ body: F_1 extends "json" ? Record<string, any> : string;
7730
+ headers: Record<string, string>;
7731
+ }>);
7732
+ readonly baseStaticUrl: string;
7733
+ readonly baseUrl: string;
7734
+ readonly projectId: string;
7735
+ };
7736
+ } & T;
7737
+
6997
7738
  declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T) => {
6998
7739
  new (...params: any[]): {
6999
7740
  readonly baseUrl: string;
@@ -7665,8 +8406,8 @@ declare const injectNpmLibMixin: <T extends CustomElementConstructor>(superclass
7665
8406
  new (...params: any[]): {
7666
8407
  readonly baseCdnUrl: string;
7667
8408
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
7668
- "__#34158@#logger": Logger;
7669
- "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
8409
+ "__#36547@#logger": Logger;
8410
+ "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
7670
8411
  get logger(): Logger;
7671
8412
  set logger(logger: Partial<Logger>);
7672
8413
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -8002,12 +8743,12 @@ declare const injectNpmLibMixin: <T extends CustomElementConstructor>(superclass
8002
8743
  declare const cspNonceMixin: <T extends CustomElementConstructor>(superclass: T) => {
8003
8744
  new (...params: any[]): {
8004
8745
  readonly nonce: string;
8005
- "__#34165@#setNonce"(): void;
8746
+ "__#36554@#setNonce"(): void;
8006
8747
  init(): Promise<void>;
8007
- "__#34160@#observeMappings": {};
8748
+ "__#36549@#observeMappings": {};
8008
8749
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
8009
8750
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
8010
- "__#34159@#isInit": boolean;
8751
+ "__#36548@#isInit": boolean;
8011
8752
  connectedCallback: (() => void) & (() => void) & (() => void);
8012
8753
  accessKey: string;
8013
8754
  readonly accessKeyLabel: string;
@@ -8333,8 +9074,8 @@ declare const cspNonceMixin: <T extends CustomElementConstructor>(superclass: T)
8333
9074
  tabIndex: number;
8334
9075
  blur(): void;
8335
9076
  focus(options?: FocusOptions): void;
8336
- "__#34158@#logger": Logger;
8337
- "__#34158@#wrapLogger"(logger: Partial<Logger>): Logger;
9077
+ "__#36547@#logger": Logger;
9078
+ "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
8338
9079
  get logger(): Logger;
8339
9080
  set logger(logger: Partial<Logger>);
8340
9081
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -8348,4 +9089,4 @@ declare global {
8348
9089
  }
8349
9090
  }
8350
9091
 
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 };
9092
+ 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, createFetchWidgetPagesMixin, createStateManagementMixin, createValidateAttributesMixin, cspNonceMixin, debuggerMixin, descopeUiMixin, formMixin, getResourceUrl, initElementMixin, initLifecycleMixin, injectNpmLibMixin, injectStyleMixin, localeMixin, loggerMixin, modalMixin, notificationsMixin, observeAttributesMixin, projectIdMixin, staticResourcesMixin, tenantIdMixin, themeMixin, widgetConfigMixin, widgetIdMixin };