@descope/sdk-mixins 0.17.1 → 0.18.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 (39) hide show
  1. package/dist/cjs/index.js +4 -0
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/mixins/widgetConfigMixin/widgetConfigMixin.js +27 -0
  4. package/dist/cjs/mixins/widgetConfigMixin/widgetConfigMixin.js.map +1 -0
  5. package/dist/cjs/mixins/widgetIdMixin.js +17 -0
  6. package/dist/cjs/mixins/widgetIdMixin.js.map +1 -0
  7. package/dist/esm/index.js +2 -0
  8. package/dist/esm/index.js.map +1 -1
  9. package/dist/esm/mixins/widgetConfigMixin/widgetConfigMixin.js +25 -0
  10. package/dist/esm/mixins/widgetConfigMixin/widgetConfigMixin.js.map +1 -0
  11. package/dist/esm/mixins/widgetIdMixin.js +15 -0
  12. package/dist/esm/mixins/widgetIdMixin.js.map +1 -0
  13. package/dist/index.d.ts +889 -171
  14. package/dist/types/index.d.ts +2 -0
  15. package/dist/types/mixins/configMixin/configMixin.d.ts +14 -14
  16. package/dist/types/mixins/configMixin/types.d.ts +6 -0
  17. package/dist/types/mixins/createStateManagementMixin.d.ts +2 -2
  18. package/dist/types/mixins/createValidateAttributesMixin/createValidateAttributesMixin.d.ts +5 -5
  19. package/dist/types/mixins/cspNonceMixin.d.ts +5 -5
  20. package/dist/types/mixins/debuggerMixin/debugger-wc.d.ts +5 -5
  21. package/dist/types/mixins/debuggerMixin/debuggerMixin.d.ts +8 -8
  22. package/dist/types/mixins/descopeUiMixin/descopeUiMixin.d.ts +19 -19
  23. package/dist/types/mixins/formMixin.d.ts +2 -2
  24. package/dist/types/mixins/initElementMixin.d.ts +5 -5
  25. package/dist/types/mixins/initLifecycleMixin.d.ts +1 -1
  26. package/dist/types/mixins/injectNpmLibMixin/injectNpmLibMixin.d.ts +2 -2
  27. package/dist/types/mixins/injectStyleMixin.d.ts +5 -5
  28. package/dist/types/mixins/loggerMixin/loggerMixin.d.ts +2 -2
  29. package/dist/types/mixins/modalMixin/modalMixin.d.ts +23 -23
  30. package/dist/types/mixins/notificationsMixin/notificationsMixin.d.ts +23 -23
  31. package/dist/types/mixins/observeAttributesMixin/observeAttributesMixin.d.ts +4 -4
  32. package/dist/types/mixins/projectIdMixin.d.ts +5 -5
  33. package/dist/types/mixins/resetMixin.d.ts +6 -6
  34. package/dist/types/mixins/staticResourcesMixin/staticResourcesMixin.d.ts +10 -10
  35. package/dist/types/mixins/themeMixin/themeMixin.d.ts +35 -35
  36. package/dist/types/mixins/widgetConfigMixin/index.d.ts +1 -0
  37. package/dist/types/mixins/widgetConfigMixin/widgetConfigMixin.d.ts +369 -0
  38. package/dist/types/mixins/widgetIdMixin.d.ts +342 -0
  39. package/package.json +2 -2
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
- "__#32282@#logger": Logger;
18
- "__#32282@#wrapLogger"(logger: Partial<Logger>): Logger;
17
+ "__#33506@#logger": Logger;
18
+ "__#33506@#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;
@@ -399,6 +399,9 @@ type FlowConfig = {
399
399
  fingerprintEnabled?: boolean;
400
400
  fingerprintKey?: string;
401
401
  };
402
+ type WidgetConfig = {
403
+ allowSubTenants?: boolean;
404
+ };
402
405
  type ProjectConfiguration = {
403
406
  componentsVersion: string;
404
407
  componentsVersionSri?: string;
@@ -406,6 +409,9 @@ type ProjectConfiguration = {
406
409
  flows: {
407
410
  [key: string]: FlowConfig;
408
411
  };
412
+ widgets?: {
413
+ [key: string]: WidgetConfig;
414
+ };
409
415
  styles: Record<string, Style>;
410
416
  };
411
417
  type Config = {
@@ -419,10 +425,10 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
419
425
  new (...params: any[]): {
420
426
  init(): Promise<void>;
421
427
  readonly config: Promise<Config>;
422
- "__#32288@#configCacheClear"(): void;
423
- "__#32288@#_configResource": Promise<Config>;
424
- "__#32288@#fetchConfig": () => Promise<Config>;
425
- "__#32283@#isInit": boolean;
428
+ "__#33512@#configCacheClear"(): void;
429
+ "__#33512@#_configResource": Promise<Config>;
430
+ "__#33512@#fetchConfig": () => Promise<Config>;
431
+ "__#33507@#isInit": boolean;
426
432
  connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
427
433
  accessKey: string;
428
434
  readonly accessKeyLabel: string;
@@ -749,27 +755,27 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
749
755
  tabIndex: number;
750
756
  blur(): void;
751
757
  focus(options?: FocusOptions): void;
752
- "__#32287@#callbacks": Map<string, () => void>;
758
+ "__#33511@#callbacks": Map<string, () => void>;
753
759
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
754
760
  reset(...sectionIds: string[]): Promise<void>;
755
- "__#32285@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
756
- "__#32284@#observeMappings": {} & {};
761
+ "__#33509@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
762
+ "__#33508@#observeMappings": {} & {};
757
763
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
758
764
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
759
- "__#32282@#logger": Logger;
760
- "__#32282@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
765
+ "__#33506@#logger": Logger;
766
+ "__#33506@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
761
767
  get logger(): Logger;
762
768
  set logger(logger: Partial<Logger>);
763
769
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
764
- "__#32286@#lastBaseUrl"?: string;
765
- "__#32286@#workingBaseUrl"?: string;
766
- "__#32286@#failedUrls": Set<string>;
767
- "__#32286@#getResourceUrls"(filename: string): (URL & {
770
+ "__#33510@#lastBaseUrl"?: string;
771
+ "__#33510@#workingBaseUrl"?: string;
772
+ "__#33510@#failedUrls": Set<string>;
773
+ "__#33510@#getResourceUrls"(filename: string): (URL & {
768
774
  baseUrl: string;
769
775
  }) | (URL & {
770
776
  baseUrl: string;
771
777
  })[];
772
- "__#32286@#createResourceUrl"(filename: string, baseUrl: string): URL & {
778
+ "__#33510@#createResourceUrl"(filename: string, baseUrl: string): URL & {
773
779
  baseUrl: string;
774
780
  };
775
781
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -785,12 +791,12 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
785
791
  declare const createValidateAttributesMixin: {
786
792
  (mappings: Record<string, CheckValueFn | string>): <T extends CustomElementConstructor>(superclass: T) => {
787
793
  new (...args: any): {
788
- "__#32285@#handleError"(attrName: string, newValue: string | null): void;
794
+ "__#33509@#handleError"(attrName: string, newValue: string | null): void;
789
795
  init(): Promise<void>;
790
- "__#32284@#observeMappings": {};
796
+ "__#33508@#observeMappings": {};
791
797
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
792
798
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
793
- "__#32283@#isInit": boolean;
799
+ "__#33507@#isInit": boolean;
794
800
  connectedCallback: (() => void) & (() => void) & (() => void);
795
801
  accessKey: string;
796
802
  readonly accessKeyLabel: string;
@@ -1117,8 +1123,8 @@ declare const createValidateAttributesMixin: {
1117
1123
  tabIndex: number;
1118
1124
  blur(): void;
1119
1125
  focus(options?: FocusOptions): void;
1120
- "__#32282@#logger": Logger;
1121
- "__#32282@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1126
+ "__#33506@#logger": Logger;
1127
+ "__#33506@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1122
1128
  get logger(): Logger;
1123
1129
  set logger(logger: Partial<Logger>);
1124
1130
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -1135,19 +1141,19 @@ type DebuggerMessage = {
1135
1141
 
1136
1142
  declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T) => {
1137
1143
  new (...params: any[]): {
1138
- "__#32291@#debuggerEle": (HTMLElement & {
1144
+ "__#33515@#debuggerEle": (HTMLElement & {
1139
1145
  updateData: (data: DebuggerMessage | DebuggerMessage[]) => void;
1140
1146
  }) | null;
1141
- "__#32291@#disableDebugger"(): void;
1142
- "__#32291@#enableDebugger"(): Promise<void>;
1147
+ "__#33515@#disableDebugger"(): void;
1148
+ "__#33515@#enableDebugger"(): Promise<void>;
1143
1149
  attributeChangedCallback: (attrName: string, oldValue: string | null, newValue: string | null) => void;
1144
1150
  readonly debug: boolean;
1145
- "__#32291@#handleDebugMode"(): void;
1151
+ "__#33515@#handleDebugMode"(): void;
1146
1152
  onLogEvent(logLevel: LogLevel, args: any[]): void;
1147
1153
  init(): Promise<void>;
1148
- "__#32291@#updateDebuggerMessages"(title: string, description: string): void;
1149
- "__#32282@#logger": Logger;
1150
- "__#32282@#wrapLogger"(logger: Partial<Logger>): Logger;
1154
+ "__#33515@#updateDebuggerMessages"(title: string, description: string): void;
1155
+ "__#33506@#logger": Logger;
1156
+ "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
1151
1157
  get logger(): Logger;
1152
1158
  set logger(logger: Partial<Logger>);
1153
1159
  accessKey: string;
@@ -1475,7 +1481,7 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
1475
1481
  tabIndex: number;
1476
1482
  blur(): void;
1477
1483
  focus(options?: FocusOptions): void;
1478
- "__#32283@#isInit": boolean;
1484
+ "__#33507@#isInit": boolean;
1479
1485
  };
1480
1486
  } & T;
1481
1487
 
@@ -1487,17 +1493,17 @@ type ScriptData = {
1487
1493
 
1488
1494
  declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T) => {
1489
1495
  new (...params: any[]): {
1490
- "__#32292@#getComponentsVersion"(): Promise<string>;
1491
- "__#32292@#getComponentsVersionSri"(): Promise<string>;
1492
- "__#32292@#descopeUi": Promise<any>;
1496
+ "__#33516@#getComponentsVersion"(): Promise<string>;
1497
+ "__#33516@#getComponentsVersionSri"(): Promise<string>;
1498
+ "__#33516@#descopeUi": Promise<any>;
1493
1499
  readonly descopeUi: Promise<any>;
1494
- "__#32292@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1495
- "__#32292@#getDescopeUi"(): Promise<any>;
1500
+ "__#33516@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1501
+ "__#33516@#getDescopeUi"(): Promise<any>;
1496
1502
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
1497
1503
  readonly baseCdnUrl: string;
1498
1504
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
1499
- "__#32282@#logger": Logger;
1500
- "__#32282@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1505
+ "__#33506@#logger": Logger;
1506
+ "__#33506@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1501
1507
  get logger(): Logger;
1502
1508
  set logger(logger: Partial<Logger>);
1503
1509
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -1829,26 +1835,26 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
1829
1835
  focus(options?: FocusOptions): void;
1830
1836
  init(): Promise<void>;
1831
1837
  readonly config: Promise<Config>;
1832
- "__#32288@#configCacheClear"(): void;
1833
- "__#32288@#_configResource": Promise<Config>;
1834
- "__#32288@#fetchConfig": () => Promise<Config>;
1835
- "__#32283@#isInit": boolean;
1836
- "__#32287@#callbacks": Map<string, () => void>;
1838
+ "__#33512@#configCacheClear"(): void;
1839
+ "__#33512@#_configResource": Promise<Config>;
1840
+ "__#33512@#fetchConfig": () => Promise<Config>;
1841
+ "__#33507@#isInit": boolean;
1842
+ "__#33511@#callbacks": Map<string, () => void>;
1837
1843
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
1838
1844
  reset(...sectionIds: string[]): Promise<void>;
1839
- "__#32285@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
1840
- "__#32284@#observeMappings": {} & {};
1845
+ "__#33509@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
1846
+ "__#33508@#observeMappings": {} & {};
1841
1847
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
1842
1848
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
1843
- "__#32286@#lastBaseUrl"?: string;
1844
- "__#32286@#workingBaseUrl"?: string;
1845
- "__#32286@#failedUrls": Set<string>;
1846
- "__#32286@#getResourceUrls"(filename: string): (URL & {
1849
+ "__#33510@#lastBaseUrl"?: string;
1850
+ "__#33510@#workingBaseUrl"?: string;
1851
+ "__#33510@#failedUrls": Set<string>;
1852
+ "__#33510@#getResourceUrls"(filename: string): (URL & {
1847
1853
  baseUrl: string;
1848
1854
  }) | (URL & {
1849
1855
  baseUrl: string;
1850
1856
  })[];
1851
- "__#32286@#createResourceUrl"(filename: string, baseUrl: string): URL & {
1857
+ "__#33510@#createResourceUrl"(filename: string, baseUrl: string): URL & {
1852
1858
  baseUrl: string;
1853
1859
  };
1854
1860
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -1863,7 +1869,7 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
1863
1869
 
1864
1870
  declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) => {
1865
1871
  new (...params: any[]): {
1866
- "__#32296@#ModalDriverWrapper": {
1872
+ "__#33520@#ModalDriverWrapper": {
1867
1873
  new (refOrRefFn: Element | (() => HTMLElement), config: {
1868
1874
  logger: {
1869
1875
  error(...data: any[]): void;
@@ -1873,7 +1879,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1873
1879
  };
1874
1880
  }): {
1875
1881
  setContent(template: HTMLTemplateElement): void;
1876
- "__#32295@#private": any;
1882
+ "__#33519@#private": any;
1877
1883
  beforeOpen: () => void | Promise<void>;
1878
1884
  afterClose: () => void;
1879
1885
  nodeName: string;
@@ -1881,7 +1887,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1881
1887
  open(): Promise<void>;
1882
1888
  reset(): void;
1883
1889
  remove(): void;
1884
- "__#32293@#private": any;
1890
+ "__#33517@#private": any;
1885
1891
  logger: {
1886
1892
  error(...data: any[]): void;
1887
1893
  warn(...data: any[]): void;
@@ -1895,17 +1901,17 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1895
1901
  };
1896
1902
  createModal(config?: Record<string, string>): ModalDriver;
1897
1903
  init(): Promise<void>;
1898
- "__#32292@#getComponentsVersion"(): Promise<string>;
1899
- "__#32292@#getComponentsVersionSri"(): Promise<string>;
1900
- "__#32292@#descopeUi": Promise<any>;
1904
+ "__#33516@#getComponentsVersion"(): Promise<string>;
1905
+ "__#33516@#getComponentsVersionSri"(): Promise<string>;
1906
+ "__#33516@#descopeUi": Promise<any>;
1901
1907
  readonly descopeUi: Promise<any>;
1902
- "__#32292@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1903
- "__#32292@#getDescopeUi"(): Promise<any>;
1908
+ "__#33516@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1909
+ "__#33516@#getDescopeUi"(): Promise<any>;
1904
1910
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
1905
1911
  readonly baseCdnUrl: string;
1906
1912
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
1907
- "__#32282@#logger": Logger;
1908
- "__#32282@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1913
+ "__#33506@#logger": Logger;
1914
+ "__#33506@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1909
1915
  get logger(): Logger;
1910
1916
  set logger(logger: Partial<Logger>);
1911
1917
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -2236,26 +2242,26 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
2236
2242
  blur(): void;
2237
2243
  focus(options?: FocusOptions): void;
2238
2244
  readonly config: Promise<Config>;
2239
- "__#32288@#configCacheClear"(): void;
2240
- "__#32288@#_configResource": Promise<Config>;
2241
- "__#32288@#fetchConfig": () => Promise<Config>;
2242
- "__#32283@#isInit": boolean;
2243
- "__#32287@#callbacks": Map<string, () => void>;
2245
+ "__#33512@#configCacheClear"(): void;
2246
+ "__#33512@#_configResource": Promise<Config>;
2247
+ "__#33512@#fetchConfig": () => Promise<Config>;
2248
+ "__#33507@#isInit": boolean;
2249
+ "__#33511@#callbacks": Map<string, () => void>;
2244
2250
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
2245
2251
  reset(...sectionIds: string[]): Promise<void>;
2246
- "__#32285@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2247
- "__#32284@#observeMappings": {} & {} & {};
2252
+ "__#33509@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2253
+ "__#33508@#observeMappings": {} & {} & {};
2248
2254
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
2249
2255
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
2250
- "__#32286@#lastBaseUrl"?: string;
2251
- "__#32286@#workingBaseUrl"?: string;
2252
- "__#32286@#failedUrls": Set<string>;
2253
- "__#32286@#getResourceUrls"(filename: string): (URL & {
2256
+ "__#33510@#lastBaseUrl"?: string;
2257
+ "__#33510@#workingBaseUrl"?: string;
2258
+ "__#33510@#failedUrls": Set<string>;
2259
+ "__#33510@#getResourceUrls"(filename: string): (URL & {
2254
2260
  baseUrl: string;
2255
2261
  }) | (URL & {
2256
2262
  baseUrl: string;
2257
2263
  })[];
2258
- "__#32286@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2264
+ "__#33510@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2259
2265
  baseUrl: string;
2260
2266
  };
2261
2267
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -2275,13 +2281,13 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
2275
2281
  replaceSync(cssString: string): void;
2276
2282
  readonly cssRules: CSSRuleList;
2277
2283
  } | CSSStyleSheet;
2278
- "__#32289@#setNonce"(): void;
2284
+ "__#33513@#setNonce"(): void;
2279
2285
  };
2280
2286
  } & T;
2281
2287
 
2282
2288
  declare const notificationsMixin: <T extends CustomElementConstructor>(superclass: T) => {
2283
2289
  new (...params: any[]): {
2284
- "__#32297@#NotificationDriverWrapper": {
2290
+ "__#33521@#NotificationDriverWrapper": {
2285
2291
  new (refOrRefFn: Element | (() => HTMLElement), config: {
2286
2292
  logger: {
2287
2293
  error(...data: any[]): void;
@@ -2295,7 +2301,7 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2295
2301
  close(): void;
2296
2302
  show(): void;
2297
2303
  remove(): void;
2298
- "__#32293@#private": any;
2304
+ "__#33517@#private": any;
2299
2305
  logger: {
2300
2306
  error(...data: any[]): void;
2301
2307
  warn(...data: any[]): void;
@@ -2322,7 +2328,7 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2322
2328
  close(): void;
2323
2329
  show(): void;
2324
2330
  remove(): void;
2325
- "__#32293@#private": any;
2331
+ "__#33517@#private": any;
2326
2332
  logger: {
2327
2333
  error(...data: any[]): void;
2328
2334
  warn(...data: any[]): void;
@@ -2334,17 +2340,17 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2334
2340
  readonly isExists: boolean;
2335
2341
  };
2336
2342
  init(): Promise<void>;
2337
- "__#32292@#getComponentsVersion"(): Promise<string>;
2338
- "__#32292@#getComponentsVersionSri"(): Promise<string>;
2339
- "__#32292@#descopeUi": Promise<any>;
2343
+ "__#33516@#getComponentsVersion"(): Promise<string>;
2344
+ "__#33516@#getComponentsVersionSri"(): Promise<string>;
2345
+ "__#33516@#descopeUi": Promise<any>;
2340
2346
  readonly descopeUi: Promise<any>;
2341
- "__#32292@#loadDescopeUiComponent"(componentName: string): Promise<any>;
2342
- "__#32292@#getDescopeUi"(): Promise<any>;
2347
+ "__#33516@#loadDescopeUiComponent"(componentName: string): Promise<any>;
2348
+ "__#33516@#getDescopeUi"(): Promise<any>;
2343
2349
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
2344
2350
  readonly baseCdnUrl: string;
2345
2351
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
2346
- "__#32282@#logger": Logger;
2347
- "__#32282@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
2352
+ "__#33506@#logger": Logger;
2353
+ "__#33506@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
2348
2354
  get logger(): Logger;
2349
2355
  set logger(logger: Partial<Logger>);
2350
2356
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -2675,26 +2681,26 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2675
2681
  blur(): void;
2676
2682
  focus(options?: FocusOptions): void;
2677
2683
  readonly config: Promise<Config>;
2678
- "__#32288@#configCacheClear"(): void;
2679
- "__#32288@#_configResource": Promise<Config>;
2680
- "__#32288@#fetchConfig": () => Promise<Config>;
2681
- "__#32283@#isInit": boolean;
2682
- "__#32287@#callbacks": Map<string, () => void>;
2684
+ "__#33512@#configCacheClear"(): void;
2685
+ "__#33512@#_configResource": Promise<Config>;
2686
+ "__#33512@#fetchConfig": () => Promise<Config>;
2687
+ "__#33507@#isInit": boolean;
2688
+ "__#33511@#callbacks": Map<string, () => void>;
2683
2689
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
2684
2690
  reset(...sectionIds: string[]): Promise<void>;
2685
- "__#32285@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2686
- "__#32284@#observeMappings": {} & {} & {};
2691
+ "__#33509@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2692
+ "__#33508@#observeMappings": {} & {} & {};
2687
2693
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
2688
2694
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
2689
- "__#32286@#lastBaseUrl"?: string;
2690
- "__#32286@#workingBaseUrl"?: string;
2691
- "__#32286@#failedUrls": Set<string>;
2692
- "__#32286@#getResourceUrls"(filename: string): (URL & {
2695
+ "__#33510@#lastBaseUrl"?: string;
2696
+ "__#33510@#workingBaseUrl"?: string;
2697
+ "__#33510@#failedUrls": Set<string>;
2698
+ "__#33510@#getResourceUrls"(filename: string): (URL & {
2693
2699
  baseUrl: string;
2694
2700
  }) | (URL & {
2695
2701
  baseUrl: string;
2696
2702
  })[];
2697
- "__#32286@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2703
+ "__#33510@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2698
2704
  baseUrl: string;
2699
2705
  };
2700
2706
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -2714,18 +2720,18 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2714
2720
  replaceSync(cssString: string): void;
2715
2721
  readonly cssRules: CSSRuleList;
2716
2722
  } | CSSStyleSheet;
2717
- "__#32289@#setNonce"(): void;
2723
+ "__#33513@#setNonce"(): void;
2718
2724
  };
2719
2725
  } & T;
2720
2726
 
2721
2727
  type OnAttrChange = (attrName: string, value: string | null) => void;
2722
2728
  declare const observeAttributesMixin: <T extends CustomElementConstructor>(superclass: T) => {
2723
2729
  new (...params: any[]): {
2724
- "__#32284@#observeMappings": {};
2730
+ "__#33508@#observeMappings": {};
2725
2731
  init(): Promise<void>;
2726
2732
  observeAttribute(attrName: string, onAttrChange: OnAttrChange): () => any;
2727
2733
  observeAttributes(attrs: string[], cb: OnAttrChange): () => void;
2728
- "__#32283@#isInit": boolean;
2734
+ "__#33507@#isInit": boolean;
2729
2735
  connectedCallback: (() => void) & (() => void);
2730
2736
  accessKey: string;
2731
2737
  readonly accessKeyLabel: string;
@@ -3052,8 +3058,8 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
3052
3058
  tabIndex: number;
3053
3059
  blur(): void;
3054
3060
  focus(options?: FocusOptions): void;
3055
- "__#32282@#logger": Logger;
3056
- "__#32282@#wrapLogger"(logger: Partial<Logger>): Logger;
3061
+ "__#33506@#logger": Logger;
3062
+ "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
3057
3063
  get logger(): Logger;
3058
3064
  set logger(logger: Partial<Logger>);
3059
3065
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -3072,11 +3078,11 @@ declare function getResourceUrl({ projectId, filename, assetsFolder, baseUrl, }:
3072
3078
  }): CustomUrl;
3073
3079
  declare const staticResourcesMixin: <T extends CustomElementConstructor>(superclass: T) => {
3074
3080
  new (...params: any[]): {
3075
- "__#32286@#lastBaseUrl"?: string;
3076
- "__#32286@#workingBaseUrl"?: string;
3077
- "__#32286@#failedUrls": Set<string>;
3078
- "__#32286@#getResourceUrls"(filename: string): CustomUrl[] | CustomUrl;
3079
- "__#32286@#createResourceUrl"(filename: string, baseUrl: string): CustomUrl;
3081
+ "__#33510@#lastBaseUrl"?: string;
3082
+ "__#33510@#workingBaseUrl"?: string;
3083
+ "__#33510@#failedUrls": Set<string>;
3084
+ "__#33510@#getResourceUrls"(filename: string): CustomUrl[] | CustomUrl;
3085
+ "__#33510@#createResourceUrl"(filename: string, baseUrl: string): CustomUrl;
3080
3086
  fetchStaticResource<F extends Format>(filename: string, format: F): Promise<{
3081
3087
  body: F extends 'json' ? Record<string, any> : string;
3082
3088
  headers: Record<string, string>;
@@ -3410,14 +3416,14 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
3410
3416
  blur(): void;
3411
3417
  focus(options?: FocusOptions): void;
3412
3418
  readonly projectId: string;
3413
- "__#32285@#handleError"(attrName: string, newValue: string): void;
3419
+ "__#33509@#handleError"(attrName: string, newValue: string): void;
3414
3420
  init(): Promise<void>;
3415
- "__#32284@#observeMappings": {};
3421
+ "__#33508@#observeMappings": {};
3416
3422
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
3417
3423
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
3418
- "__#32283@#isInit": boolean;
3419
- "__#32282@#logger": Logger;
3420
- "__#32282@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
3424
+ "__#33507@#isInit": boolean;
3425
+ "__#33506@#logger": Logger;
3426
+ "__#33506@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
3421
3427
  get logger(): Logger;
3422
3428
  set logger(logger: Partial<Logger>);
3423
3429
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -3439,12 +3445,12 @@ declare const injectStyleMixin: <T extends CustomElementConstructor>(superclass:
3439
3445
  prepend?: boolean;
3440
3446
  }): CSSStyleSheetMock | CSSStyleSheet;
3441
3447
  nonce: string;
3442
- "__#32289@#setNonce"(): void;
3448
+ "__#33513@#setNonce"(): void;
3443
3449
  init(): Promise<void>;
3444
- "__#32284@#observeMappings": {};
3450
+ "__#33508@#observeMappings": {};
3445
3451
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
3446
3452
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
3447
- "__#32283@#isInit": boolean;
3453
+ "__#33507@#isInit": boolean;
3448
3454
  connectedCallback: (() => void) & (() => void) & (() => void);
3449
3455
  accessKey: string;
3450
3456
  readonly accessKeyLabel: string;
@@ -3770,8 +3776,8 @@ declare const injectStyleMixin: <T extends CustomElementConstructor>(superclass:
3770
3776
  tabIndex: number;
3771
3777
  blur(): void;
3772
3778
  focus(options?: FocusOptions): void;
3773
- "__#32282@#logger": Logger;
3774
- "__#32282@#wrapLogger"(logger: Partial<Logger>): Logger;
3779
+ "__#33506@#logger": Logger;
3780
+ "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
3775
3781
  get logger(): Logger;
3776
3782
  set logger(logger: Partial<Logger>);
3777
3783
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -3782,26 +3788,26 @@ type InjectedStyle = CSSStyleSheet | CSSStyleSheetMock;
3782
3788
  type ThemeOptions = 'light' | 'dark' | 'os';
3783
3789
  declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) => {
3784
3790
  new (...params: any[]): {
3785
- "__#32298@#globalStyle": InjectedStyle;
3786
- "__#32298@#customStyle": InjectedStyle;
3791
+ "__#33522@#globalStyle": InjectedStyle;
3792
+ "__#33522@#customStyle": InjectedStyle;
3787
3793
  readonly theme: ThemeOptions;
3788
3794
  readonly styleId: string;
3789
3795
  readonly themeOverride: Record<string, any>;
3790
- "__#32298@#getThemeOverrideString"(): string;
3791
- "__#32298@#_themeResource": Promise<void | Record<string, any>>;
3792
- "__#32298@#fetchTheme"(): Promise<Record<string, any>>;
3793
- readonly "__#32298@#themeResource": Promise<void | Record<string, any>>;
3794
- "__#32298@#loadGlobalStyle"(): Promise<void>;
3795
- "__#32298@#loadCustomStyle"(): Promise<void>;
3796
- "__#32298@#loadComponentsStyle"(): Promise<void>;
3797
- "__#32298@#getFontsConfig"(): Promise<Record<string, {
3796
+ "__#33522@#getThemeOverrideString"(): string;
3797
+ "__#33522@#_themeResource": Promise<void | Record<string, any>>;
3798
+ "__#33522@#fetchTheme"(): Promise<Record<string, any>>;
3799
+ readonly "__#33522@#themeResource": Promise<void | Record<string, any>>;
3800
+ "__#33522@#loadGlobalStyle"(): Promise<void>;
3801
+ "__#33522@#loadCustomStyle"(): Promise<void>;
3802
+ "__#33522@#loadComponentsStyle"(): Promise<void>;
3803
+ "__#33522@#getFontsConfig"(): Promise<Record<string, {
3798
3804
  url?: string;
3799
3805
  }>>;
3800
- "__#32298@#loadFonts"(): Promise<void>;
3801
- "__#32298@#applyTheme"(): Promise<void>;
3802
- "__#32298@#onThemeChange": () => void;
3803
- "__#32298@#loadTheme"(): void;
3804
- "__#32298@#toggleOsThemeChangeListener": (listen: boolean) => void;
3806
+ "__#33522@#loadFonts"(): Promise<void>;
3807
+ "__#33522@#applyTheme"(): Promise<void>;
3808
+ "__#33522@#onThemeChange": () => void;
3809
+ "__#33522@#loadTheme"(): void;
3810
+ "__#33522@#toggleOsThemeChangeListener": (listen: boolean) => void;
3805
3811
  init(): Promise<void>;
3806
3812
  injectStyle: ((cssString: string, { prepend }?: {
3807
3813
  prepend?: boolean;
@@ -3819,11 +3825,11 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
3819
3825
  readonly cssRules: CSSRuleList;
3820
3826
  } | CSSStyleSheet);
3821
3827
  nonce: string;
3822
- "__#32289@#setNonce": (() => void) & (() => void);
3823
- "__#32284@#observeMappings": {} & {} & {} & {} & {} & {} & {} & {} & {};
3828
+ "__#33513@#setNonce": (() => void) & (() => void);
3829
+ "__#33508@#observeMappings": {} & {} & {} & {} & {} & {} & {} & {} & {};
3824
3830
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
3825
3831
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
3826
- "__#32283@#isInit": boolean;
3832
+ "__#33507@#isInit": boolean;
3827
3833
  connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
3828
3834
  accessKey: string;
3829
3835
  readonly accessKeyLabel: string;
@@ -4149,25 +4155,25 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
4149
4155
  tabIndex: number;
4150
4156
  blur(): void;
4151
4157
  focus(options?: FocusOptions): void;
4152
- "__#32282@#logger": Logger;
4153
- "__#32282@#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);
4158
+ "__#33506@#logger": Logger;
4159
+ "__#33506@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
4154
4160
  get logger(): Logger;
4155
4161
  set logger(logger: Partial<Logger>);
4156
4162
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
4157
4163
  contentRootElement: HTMLElement;
4158
4164
  rootElement: HTMLElement;
4159
4165
  readonly config: Promise<Config>;
4160
- "__#32288@#configCacheClear": (() => void) & (() => void);
4161
- "__#32288@#_configResource": Promise<Config>;
4162
- "__#32288@#fetchConfig": (() => Promise<Config>) & (() => Promise<Config>);
4163
- "__#32287@#callbacks": Map<string, () => void> & Map<string, () => void>;
4166
+ "__#33512@#configCacheClear": (() => void) & (() => void);
4167
+ "__#33512@#_configResource": Promise<Config>;
4168
+ "__#33512@#fetchConfig": (() => Promise<Config>) & (() => Promise<Config>);
4169
+ "__#33511@#callbacks": Map<string, () => void> & Map<string, () => void>;
4164
4170
  onReset: ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void);
4165
4171
  reset: ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>);
4166
- "__#32285@#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);
4167
- "__#32286@#lastBaseUrl"?: string;
4168
- "__#32286@#workingBaseUrl"?: string;
4169
- "__#32286@#failedUrls": Set<string>;
4170
- "__#32286@#getResourceUrls": ((filename: string) => (URL & {
4172
+ "__#33509@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
4173
+ "__#33510@#lastBaseUrl"?: string;
4174
+ "__#33510@#workingBaseUrl"?: string;
4175
+ "__#33510@#failedUrls": Set<string>;
4176
+ "__#33510@#getResourceUrls": ((filename: string) => (URL & {
4171
4177
  baseUrl: string;
4172
4178
  }) | (URL & {
4173
4179
  baseUrl: string;
@@ -4180,7 +4186,7 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
4180
4186
  }) | (URL & {
4181
4187
  baseUrl: string;
4182
4188
  })[]);
4183
- "__#32286@#createResourceUrl": ((filename: string, baseUrl: string) => URL & {
4189
+ "__#33510@#createResourceUrl": ((filename: string, baseUrl: string) => URL & {
4184
4190
  baseUrl: string;
4185
4191
  }) & ((filename: string, baseUrl: string) => URL & {
4186
4192
  baseUrl: string;
@@ -4200,12 +4206,12 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
4200
4206
  readonly baseStaticUrl: string;
4201
4207
  readonly baseUrl: string;
4202
4208
  readonly projectId: string;
4203
- "__#32292@#getComponentsVersion"(): Promise<string>;
4204
- "__#32292@#getComponentsVersionSri"(): Promise<string>;
4205
- "__#32292@#descopeUi": Promise<any>;
4209
+ "__#33516@#getComponentsVersion"(): Promise<string>;
4210
+ "__#33516@#getComponentsVersionSri"(): Promise<string>;
4211
+ "__#33516@#descopeUi": Promise<any>;
4206
4212
  readonly descopeUi: Promise<any>;
4207
- "__#32292@#loadDescopeUiComponent"(componentName: string): Promise<any>;
4208
- "__#32292@#getDescopeUi"(): Promise<any>;
4213
+ "__#33516@#loadDescopeUiComponent"(componentName: string): Promise<any>;
4214
+ "__#33516@#getDescopeUi"(): Promise<any>;
4209
4215
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
4210
4216
  readonly baseCdnUrl: string;
4211
4217
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
@@ -4220,8 +4226,8 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
4220
4226
  new (...args: any): {
4221
4227
  actions: _reduxjs_toolkit.CaseReducerActions<CaseReducers, Name> & AsyncActions;
4222
4228
  subscribe: <SelectorR = State extends Draft<infer S> ? S : State>(cb: (state: SelectorR) => void, selector?: (state: State) => SelectorR) => Unsubscribe;
4223
- "__#32282@#logger": Logger;
4224
- "__#32282@#wrapLogger"(logger: Partial<Logger>): Logger;
4229
+ "__#33506@#logger": Logger;
4230
+ "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
4225
4231
  get logger(): Logger;
4226
4232
  set logger(logger: Partial<Logger>);
4227
4233
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -4565,8 +4571,8 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
4565
4571
  getFormFieldNames(rootEle: ElementOrEmpty): string[];
4566
4572
  disableFormField(rootEle: ElementOrEmpty, name: string): void;
4567
4573
  removeFormField(rootEle: ElementOrEmpty, name: string): void;
4568
- "__#32282@#logger": Logger;
4569
- "__#32282@#wrapLogger"(logger: Partial<Logger>): Logger;
4574
+ "__#33506@#logger": Logger;
4575
+ "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
4570
4576
  get logger(): Logger;
4571
4577
  set logger(logger: Partial<Logger>);
4572
4578
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -4912,12 +4918,12 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
4912
4918
  readonly cssRules: CSSRuleList;
4913
4919
  } | CSSStyleSheet;
4914
4920
  nonce: string;
4915
- "__#32289@#setNonce"(): void;
4921
+ "__#33513@#setNonce"(): void;
4916
4922
  init(): Promise<void>;
4917
- "__#32284@#observeMappings": {};
4923
+ "__#33508@#observeMappings": {};
4918
4924
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
4919
4925
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
4920
- "__#32283@#isInit": boolean;
4926
+ "__#33507@#isInit": boolean;
4921
4927
  connectedCallback: (() => void) & (() => void) & (() => void);
4922
4928
  accessKey: string;
4923
4929
  readonly accessKeyLabel: string;
@@ -5243,8 +5249,8 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
5243
5249
  tabIndex: number;
5244
5250
  blur(): void;
5245
5251
  focus(options?: FocusOptions): void;
5246
- "__#32282@#logger": Logger;
5247
- "__#32282@#wrapLogger"(logger: Partial<Logger>): Logger;
5252
+ "__#33506@#logger": Logger;
5253
+ "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
5248
5254
  get logger(): Logger;
5249
5255
  set logger(logger: Partial<Logger>);
5250
5256
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -5253,7 +5259,7 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
5253
5259
 
5254
5260
  declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclass: T) => {
5255
5261
  new (...params: any[]): {
5256
- "__#32283@#isInit": boolean;
5262
+ "__#33507@#isInit": boolean;
5257
5263
  connectedCallback(): void;
5258
5264
  init(): Promise<void>;
5259
5265
  accessKey: string;
@@ -5587,12 +5593,12 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
5587
5593
  declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T) => {
5588
5594
  new (...args: any): {
5589
5595
  readonly projectId: string;
5590
- "__#32285@#handleError"(attrName: string, newValue: string): void;
5596
+ "__#33509@#handleError"(attrName: string, newValue: string): void;
5591
5597
  init(): Promise<void>;
5592
- "__#32284@#observeMappings": {};
5598
+ "__#33508@#observeMappings": {};
5593
5599
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
5594
5600
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
5595
- "__#32283@#isInit": boolean;
5601
+ "__#33507@#isInit": boolean;
5596
5602
  connectedCallback: (() => void) & (() => void) & (() => void);
5597
5603
  accessKey: string;
5598
5604
  readonly accessKeyLabel: string;
@@ -5919,14 +5925,726 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
5919
5925
  tabIndex: number;
5920
5926
  blur(): void;
5921
5927
  focus(options?: FocusOptions): void;
5922
- "__#32282@#logger": Logger;
5923
- "__#32282@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
5928
+ "__#33506@#logger": Logger;
5929
+ "__#33506@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
5924
5930
  get logger(): Logger;
5925
5931
  set logger(logger: Partial<Logger>);
5926
5932
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
5927
5933
  };
5928
5934
  } & T;
5929
5935
 
5936
+ declare const widgetIdMixin: <T extends CustomElementConstructor>(superclass: T) => {
5937
+ new (...args: any): {
5938
+ readonly widgetId: string;
5939
+ "__#33509@#handleError"(attrName: string, newValue: string): void;
5940
+ init(): Promise<void>;
5941
+ "__#33508@#observeMappings": {};
5942
+ observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
5943
+ observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
5944
+ "__#33507@#isInit": boolean;
5945
+ connectedCallback: (() => void) & (() => void) & (() => void);
5946
+ accessKey: string;
5947
+ readonly accessKeyLabel: string;
5948
+ autocapitalize: string;
5949
+ dir: string;
5950
+ draggable: boolean;
5951
+ hidden: boolean;
5952
+ inert: boolean;
5953
+ innerText: string;
5954
+ lang: string;
5955
+ readonly offsetHeight: number;
5956
+ readonly offsetLeft: number;
5957
+ readonly offsetParent: Element;
5958
+ readonly offsetTop: number;
5959
+ readonly offsetWidth: number;
5960
+ outerText: string;
5961
+ popover: string;
5962
+ spellcheck: boolean;
5963
+ title: string;
5964
+ translate: boolean;
5965
+ attachInternals(): ElementInternals;
5966
+ click(): void;
5967
+ hidePopover(): void;
5968
+ showPopover(): void;
5969
+ togglePopover(force?: boolean): boolean;
5970
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
5971
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
5972
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
5973
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
5974
+ attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
5975
+ readonly attributes: NamedNodeMap;
5976
+ readonly classList: DOMTokenList;
5977
+ className: string;
5978
+ readonly clientHeight: number;
5979
+ readonly clientLeft: number;
5980
+ readonly clientTop: number;
5981
+ readonly clientWidth: number;
5982
+ id: string;
5983
+ readonly localName: string;
5984
+ readonly namespaceURI: string;
5985
+ onfullscreenchange: (this: Element, ev: Event) => any;
5986
+ onfullscreenerror: (this: Element, ev: Event) => any;
5987
+ outerHTML: string;
5988
+ readonly ownerDocument: Document;
5989
+ readonly part: DOMTokenList;
5990
+ readonly prefix: string;
5991
+ readonly scrollHeight: number;
5992
+ scrollLeft: number;
5993
+ scrollTop: number;
5994
+ readonly scrollWidth: number;
5995
+ readonly shadowRoot: ShadowRoot;
5996
+ slot: string;
5997
+ readonly tagName: string;
5998
+ attachShadow(init: ShadowRootInit): ShadowRoot;
5999
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
6000
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
6001
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
6002
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
6003
+ closest<E extends Element = Element>(selectors: string): E;
6004
+ computedStyleMap(): StylePropertyMapReadOnly;
6005
+ getAttribute(qualifiedName: string): string;
6006
+ getAttributeNS(namespace: string, localName: string): string;
6007
+ getAttributeNames(): string[];
6008
+ getAttributeNode(qualifiedName: string): Attr;
6009
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
6010
+ getBoundingClientRect(): DOMRect;
6011
+ getClientRects(): DOMRectList;
6012
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
6013
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
6014
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
6015
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
6016
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
6017
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
6018
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
6019
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
6020
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
6021
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
6022
+ hasAttribute(qualifiedName: string): boolean;
6023
+ hasAttributeNS(namespace: string, localName: string): boolean;
6024
+ hasAttributes(): boolean;
6025
+ hasPointerCapture(pointerId: number): boolean;
6026
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
6027
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
6028
+ insertAdjacentText(where: InsertPosition, data: string): void;
6029
+ matches(selectors: string): boolean;
6030
+ releasePointerCapture(pointerId: number): void;
6031
+ removeAttribute(qualifiedName: string): void;
6032
+ removeAttributeNS(namespace: string, localName: string): void;
6033
+ removeAttributeNode(attr: Attr): Attr;
6034
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
6035
+ requestPointerLock(): void;
6036
+ scroll(options?: ScrollToOptions): void;
6037
+ scroll(x: number, y: number): void;
6038
+ scrollBy(options?: ScrollToOptions): void;
6039
+ scrollBy(x: number, y: number): void;
6040
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
6041
+ scrollTo(options?: ScrollToOptions): void;
6042
+ scrollTo(x: number, y: number): void;
6043
+ setAttribute(qualifiedName: string, value: string): void;
6044
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
6045
+ setAttributeNode(attr: Attr): Attr;
6046
+ setAttributeNodeNS(attr: Attr): Attr;
6047
+ setPointerCapture(pointerId: number): void;
6048
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
6049
+ webkitMatchesSelector(selectors: string): boolean;
6050
+ readonly baseURI: string;
6051
+ readonly childNodes: NodeListOf<ChildNode>;
6052
+ readonly firstChild: ChildNode;
6053
+ readonly isConnected: boolean;
6054
+ readonly lastChild: ChildNode;
6055
+ readonly nextSibling: ChildNode;
6056
+ readonly nodeName: string;
6057
+ readonly nodeType: number;
6058
+ nodeValue: string;
6059
+ readonly parentElement: HTMLElement;
6060
+ readonly parentNode: ParentNode;
6061
+ readonly previousSibling: ChildNode;
6062
+ textContent: string;
6063
+ appendChild<T_1 extends Node>(node: T_1): T_1;
6064
+ cloneNode(deep?: boolean): Node;
6065
+ compareDocumentPosition(other: Node): number;
6066
+ contains(other: Node): boolean;
6067
+ getRootNode(options?: GetRootNodeOptions): Node;
6068
+ hasChildNodes(): boolean;
6069
+ insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
6070
+ isDefaultNamespace(namespace: string): boolean;
6071
+ isEqualNode(otherNode: Node): boolean;
6072
+ isSameNode(otherNode: Node): boolean;
6073
+ lookupNamespaceURI(prefix: string): string;
6074
+ lookupPrefix(namespace: string): string;
6075
+ normalize(): void;
6076
+ removeChild<T_3 extends Node>(child: T_3): T_3;
6077
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
6078
+ readonly ELEMENT_NODE: 1;
6079
+ readonly ATTRIBUTE_NODE: 2;
6080
+ readonly TEXT_NODE: 3;
6081
+ readonly CDATA_SECTION_NODE: 4;
6082
+ readonly ENTITY_REFERENCE_NODE: 5;
6083
+ readonly ENTITY_NODE: 6;
6084
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
6085
+ readonly COMMENT_NODE: 8;
6086
+ readonly DOCUMENT_NODE: 9;
6087
+ readonly DOCUMENT_TYPE_NODE: 10;
6088
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
6089
+ readonly NOTATION_NODE: 12;
6090
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
6091
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
6092
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
6093
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
6094
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
6095
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
6096
+ dispatchEvent(event: Event): boolean;
6097
+ ariaAtomic: string;
6098
+ ariaAutoComplete: string;
6099
+ ariaBusy: string;
6100
+ ariaChecked: string;
6101
+ ariaColCount: string;
6102
+ ariaColIndex: string;
6103
+ ariaColSpan: string;
6104
+ ariaCurrent: string;
6105
+ ariaDescription: string;
6106
+ ariaDisabled: string;
6107
+ ariaExpanded: string;
6108
+ ariaHasPopup: string;
6109
+ ariaHidden: string;
6110
+ ariaInvalid: string;
6111
+ ariaKeyShortcuts: string;
6112
+ ariaLabel: string;
6113
+ ariaLevel: string;
6114
+ ariaLive: string;
6115
+ ariaModal: string;
6116
+ ariaMultiLine: string;
6117
+ ariaMultiSelectable: string;
6118
+ ariaOrientation: string;
6119
+ ariaPlaceholder: string;
6120
+ ariaPosInSet: string;
6121
+ ariaPressed: string;
6122
+ ariaReadOnly: string;
6123
+ ariaRequired: string;
6124
+ ariaRoleDescription: string;
6125
+ ariaRowCount: string;
6126
+ ariaRowIndex: string;
6127
+ ariaRowSpan: string;
6128
+ ariaSelected: string;
6129
+ ariaSetSize: string;
6130
+ ariaSort: string;
6131
+ ariaValueMax: string;
6132
+ ariaValueMin: string;
6133
+ ariaValueNow: string;
6134
+ ariaValueText: string;
6135
+ role: string;
6136
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions): Animation;
6137
+ getAnimations(options?: GetAnimationsOptions): Animation[];
6138
+ after(...nodes: (string | Node)[]): void;
6139
+ before(...nodes: (string | Node)[]): void;
6140
+ remove(): void;
6141
+ replaceWith(...nodes: (string | Node)[]): void;
6142
+ innerHTML: string;
6143
+ readonly nextElementSibling: Element;
6144
+ readonly previousElementSibling: Element;
6145
+ readonly childElementCount: number;
6146
+ readonly children: HTMLCollection;
6147
+ readonly firstElementChild: Element;
6148
+ readonly lastElementChild: Element;
6149
+ append(...nodes: (string | Node)[]): void;
6150
+ prepend(...nodes: (string | Node)[]): void;
6151
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
6152
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
6153
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
6154
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
6155
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
6156
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
6157
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
6158
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
6159
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
6160
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
6161
+ replaceChildren(...nodes: (string | Node)[]): void;
6162
+ readonly assignedSlot: HTMLSlotElement;
6163
+ readonly attributeStyleMap: StylePropertyMap;
6164
+ readonly style: CSSStyleDeclaration;
6165
+ contentEditable: string;
6166
+ enterKeyHint: string;
6167
+ inputMode: string;
6168
+ readonly isContentEditable: boolean;
6169
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
6170
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6171
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6172
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6173
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6174
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6175
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
6176
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
6177
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
6178
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
6179
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
6180
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
6181
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
6182
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6183
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
6184
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6185
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
6186
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
6187
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
6188
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6189
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
6190
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
6191
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
6192
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
6193
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
6194
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
6195
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
6196
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
6197
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
6198
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
6199
+ onerror: OnErrorEventHandlerNonNull;
6200
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
6201
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
6202
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6203
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
6204
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
6205
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
6206
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
6207
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
6208
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
6209
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
6210
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
6211
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
6212
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6213
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6214
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6215
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6216
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6217
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6218
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6219
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6220
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
6221
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
6222
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
6223
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
6224
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6225
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6226
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6227
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6228
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6229
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6230
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6231
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6232
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
6233
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
6234
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
6235
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
6236
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
6237
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
6238
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
6239
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
6240
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
6241
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
6242
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
6243
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
6244
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
6245
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
6246
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
6247
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
6248
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
6249
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
6250
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6251
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6252
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6253
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6254
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6255
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6256
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6257
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6258
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
6259
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
6260
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
6261
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
6262
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
6263
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
6264
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
6265
+ autofocus: boolean;
6266
+ readonly dataset: DOMStringMap;
6267
+ nonce?: string;
6268
+ tabIndex: number;
6269
+ blur(): void;
6270
+ focus(options?: FocusOptions): void;
6271
+ "__#33506@#logger": Logger;
6272
+ "__#33506@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
6273
+ get logger(): Logger;
6274
+ set logger(logger: Partial<Logger>);
6275
+ onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
6276
+ };
6277
+ } & T;
6278
+
6279
+ declare const widgetConfigMixin: <T extends CustomElementConstructor>(superclass: T) => {
6280
+ new (...args: any): {
6281
+ init(): Promise<void>;
6282
+ getWidgetConfig(): Promise<WidgetConfig | undefined>;
6283
+ readonly widgetId: string;
6284
+ "__#33509@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
6285
+ "__#33508@#observeMappings": {} & {} & {};
6286
+ observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
6287
+ observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
6288
+ "__#33507@#isInit": boolean;
6289
+ connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
6290
+ accessKey: string;
6291
+ readonly accessKeyLabel: string;
6292
+ autocapitalize: string;
6293
+ dir: string;
6294
+ draggable: boolean;
6295
+ hidden: boolean;
6296
+ inert: boolean;
6297
+ innerText: string;
6298
+ lang: string;
6299
+ readonly offsetHeight: number;
6300
+ readonly offsetLeft: number;
6301
+ readonly offsetParent: Element;
6302
+ readonly offsetTop: number;
6303
+ readonly offsetWidth: number;
6304
+ outerText: string;
6305
+ popover: string;
6306
+ spellcheck: boolean;
6307
+ title: string;
6308
+ translate: boolean;
6309
+ attachInternals(): ElementInternals;
6310
+ click(): void;
6311
+ hidePopover(): void;
6312
+ showPopover(): void;
6313
+ togglePopover(force?: boolean): boolean;
6314
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
6315
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
6316
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
6317
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
6318
+ attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
6319
+ readonly attributes: NamedNodeMap;
6320
+ readonly classList: DOMTokenList;
6321
+ className: string;
6322
+ readonly clientHeight: number;
6323
+ readonly clientLeft: number;
6324
+ readonly clientTop: number;
6325
+ readonly clientWidth: number;
6326
+ id: string;
6327
+ readonly localName: string;
6328
+ readonly namespaceURI: string;
6329
+ onfullscreenchange: (this: Element, ev: Event) => any;
6330
+ onfullscreenerror: (this: Element, ev: Event) => any;
6331
+ outerHTML: string;
6332
+ readonly ownerDocument: Document;
6333
+ readonly part: DOMTokenList;
6334
+ readonly prefix: string;
6335
+ readonly scrollHeight: number;
6336
+ scrollLeft: number;
6337
+ scrollTop: number;
6338
+ readonly scrollWidth: number;
6339
+ readonly shadowRoot: ShadowRoot;
6340
+ slot: string;
6341
+ readonly tagName: string;
6342
+ attachShadow(init: ShadowRootInit): ShadowRoot;
6343
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
6344
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
6345
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
6346
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
6347
+ closest<E extends Element = Element>(selectors: string): E;
6348
+ computedStyleMap(): StylePropertyMapReadOnly;
6349
+ getAttribute(qualifiedName: string): string;
6350
+ getAttributeNS(namespace: string, localName: string): string;
6351
+ getAttributeNames(): string[];
6352
+ getAttributeNode(qualifiedName: string): Attr;
6353
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
6354
+ getBoundingClientRect(): DOMRect;
6355
+ getClientRects(): DOMRectList;
6356
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
6357
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
6358
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
6359
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
6360
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
6361
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
6362
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
6363
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
6364
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
6365
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
6366
+ hasAttribute(qualifiedName: string): boolean;
6367
+ hasAttributeNS(namespace: string, localName: string): boolean;
6368
+ hasAttributes(): boolean;
6369
+ hasPointerCapture(pointerId: number): boolean;
6370
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
6371
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
6372
+ insertAdjacentText(where: InsertPosition, data: string): void;
6373
+ matches(selectors: string): boolean;
6374
+ releasePointerCapture(pointerId: number): void;
6375
+ removeAttribute(qualifiedName: string): void;
6376
+ removeAttributeNS(namespace: string, localName: string): void;
6377
+ removeAttributeNode(attr: Attr): Attr;
6378
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
6379
+ requestPointerLock(): void;
6380
+ scroll(options?: ScrollToOptions): void;
6381
+ scroll(x: number, y: number): void;
6382
+ scrollBy(options?: ScrollToOptions): void;
6383
+ scrollBy(x: number, y: number): void;
6384
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
6385
+ scrollTo(options?: ScrollToOptions): void;
6386
+ scrollTo(x: number, y: number): void;
6387
+ setAttribute(qualifiedName: string, value: string): void;
6388
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
6389
+ setAttributeNode(attr: Attr): Attr;
6390
+ setAttributeNodeNS(attr: Attr): Attr;
6391
+ setPointerCapture(pointerId: number): void;
6392
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
6393
+ webkitMatchesSelector(selectors: string): boolean;
6394
+ readonly baseURI: string;
6395
+ readonly childNodes: NodeListOf<ChildNode>;
6396
+ readonly firstChild: ChildNode;
6397
+ readonly isConnected: boolean;
6398
+ readonly lastChild: ChildNode;
6399
+ readonly nextSibling: ChildNode;
6400
+ readonly nodeName: string;
6401
+ readonly nodeType: number;
6402
+ nodeValue: string;
6403
+ readonly parentElement: HTMLElement;
6404
+ readonly parentNode: ParentNode;
6405
+ readonly previousSibling: ChildNode;
6406
+ textContent: string;
6407
+ appendChild<T_1 extends Node>(node: T_1): T_1;
6408
+ cloneNode(deep?: boolean): Node;
6409
+ compareDocumentPosition(other: Node): number;
6410
+ contains(other: Node): boolean;
6411
+ getRootNode(options?: GetRootNodeOptions): Node;
6412
+ hasChildNodes(): boolean;
6413
+ insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
6414
+ isDefaultNamespace(namespace: string): boolean;
6415
+ isEqualNode(otherNode: Node): boolean;
6416
+ isSameNode(otherNode: Node): boolean;
6417
+ lookupNamespaceURI(prefix: string): string;
6418
+ lookupPrefix(namespace: string): string;
6419
+ normalize(): void;
6420
+ removeChild<T_3 extends Node>(child: T_3): T_3;
6421
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
6422
+ readonly ELEMENT_NODE: 1;
6423
+ readonly ATTRIBUTE_NODE: 2;
6424
+ readonly TEXT_NODE: 3;
6425
+ readonly CDATA_SECTION_NODE: 4;
6426
+ readonly ENTITY_REFERENCE_NODE: 5;
6427
+ readonly ENTITY_NODE: 6;
6428
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
6429
+ readonly COMMENT_NODE: 8;
6430
+ readonly DOCUMENT_NODE: 9;
6431
+ readonly DOCUMENT_TYPE_NODE: 10;
6432
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
6433
+ readonly NOTATION_NODE: 12;
6434
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
6435
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
6436
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
6437
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
6438
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
6439
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
6440
+ dispatchEvent(event: Event): boolean;
6441
+ ariaAtomic: string;
6442
+ ariaAutoComplete: string;
6443
+ ariaBusy: string;
6444
+ ariaChecked: string;
6445
+ ariaColCount: string;
6446
+ ariaColIndex: string;
6447
+ ariaColSpan: string;
6448
+ ariaCurrent: string;
6449
+ ariaDescription: string;
6450
+ ariaDisabled: string;
6451
+ ariaExpanded: string;
6452
+ ariaHasPopup: string;
6453
+ ariaHidden: string;
6454
+ ariaInvalid: string;
6455
+ ariaKeyShortcuts: string;
6456
+ ariaLabel: string;
6457
+ ariaLevel: string;
6458
+ ariaLive: string;
6459
+ ariaModal: string;
6460
+ ariaMultiLine: string;
6461
+ ariaMultiSelectable: string;
6462
+ ariaOrientation: string;
6463
+ ariaPlaceholder: string;
6464
+ ariaPosInSet: string;
6465
+ ariaPressed: string;
6466
+ ariaReadOnly: string;
6467
+ ariaRequired: string;
6468
+ ariaRoleDescription: string;
6469
+ ariaRowCount: string;
6470
+ ariaRowIndex: string;
6471
+ ariaRowSpan: string;
6472
+ ariaSelected: string;
6473
+ ariaSetSize: string;
6474
+ ariaSort: string;
6475
+ ariaValueMax: string;
6476
+ ariaValueMin: string;
6477
+ ariaValueNow: string;
6478
+ ariaValueText: string;
6479
+ role: string;
6480
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions): Animation;
6481
+ getAnimations(options?: GetAnimationsOptions): Animation[];
6482
+ after(...nodes: (string | Node)[]): void;
6483
+ before(...nodes: (string | Node)[]): void;
6484
+ remove(): void;
6485
+ replaceWith(...nodes: (string | Node)[]): void;
6486
+ innerHTML: string;
6487
+ readonly nextElementSibling: Element;
6488
+ readonly previousElementSibling: Element;
6489
+ readonly childElementCount: number;
6490
+ readonly children: HTMLCollection;
6491
+ readonly firstElementChild: Element;
6492
+ readonly lastElementChild: Element;
6493
+ append(...nodes: (string | Node)[]): void;
6494
+ prepend(...nodes: (string | Node)[]): void;
6495
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
6496
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
6497
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
6498
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
6499
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
6500
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
6501
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
6502
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
6503
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
6504
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
6505
+ replaceChildren(...nodes: (string | Node)[]): void;
6506
+ readonly assignedSlot: HTMLSlotElement;
6507
+ readonly attributeStyleMap: StylePropertyMap;
6508
+ readonly style: CSSStyleDeclaration;
6509
+ contentEditable: string;
6510
+ enterKeyHint: string;
6511
+ inputMode: string;
6512
+ readonly isContentEditable: boolean;
6513
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
6514
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6515
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6516
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6517
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
6518
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6519
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
6520
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
6521
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
6522
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
6523
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
6524
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
6525
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
6526
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6527
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
6528
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6529
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
6530
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
6531
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
6532
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6533
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
6534
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
6535
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
6536
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
6537
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
6538
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
6539
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
6540
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
6541
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
6542
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
6543
+ onerror: OnErrorEventHandlerNonNull;
6544
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
6545
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
6546
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6547
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
6548
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
6549
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
6550
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
6551
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
6552
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
6553
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
6554
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
6555
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
6556
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6557
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6558
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6559
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6560
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6561
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6562
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6563
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
6564
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
6565
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
6566
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
6567
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
6568
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6569
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6570
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6571
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6572
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6573
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6574
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6575
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
6576
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
6577
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
6578
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
6579
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
6580
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
6581
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
6582
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
6583
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
6584
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
6585
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
6586
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
6587
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
6588
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
6589
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
6590
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
6591
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
6592
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
6593
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
6594
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6595
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6596
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6597
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
6598
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6599
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6600
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6601
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
6602
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
6603
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
6604
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
6605
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
6606
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
6607
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
6608
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
6609
+ autofocus: boolean;
6610
+ readonly dataset: DOMStringMap;
6611
+ nonce?: string;
6612
+ tabIndex: number;
6613
+ blur(): void;
6614
+ focus(options?: FocusOptions): void;
6615
+ "__#33506@#logger": Logger;
6616
+ "__#33506@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
6617
+ get logger(): Logger;
6618
+ set logger(logger: Partial<Logger>);
6619
+ onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
6620
+ readonly config: Promise<Config>;
6621
+ "__#33512@#configCacheClear"(): void;
6622
+ "__#33512@#_configResource": Promise<Config>;
6623
+ "__#33512@#fetchConfig": () => Promise<Config>;
6624
+ "__#33511@#callbacks": Map<string, () => void>;
6625
+ onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
6626
+ reset(...sectionIds: string[]): Promise<void>;
6627
+ "__#33510@#lastBaseUrl"?: string;
6628
+ "__#33510@#workingBaseUrl"?: string;
6629
+ "__#33510@#failedUrls": Set<string>;
6630
+ "__#33510@#getResourceUrls"(filename: string): (URL & {
6631
+ baseUrl: string;
6632
+ }) | (URL & {
6633
+ baseUrl: string;
6634
+ })[];
6635
+ "__#33510@#createResourceUrl"(filename: string, baseUrl: string): URL & {
6636
+ baseUrl: string;
6637
+ };
6638
+ fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
6639
+ body: F extends "json" ? Record<string, any> : string;
6640
+ headers: Record<string, string>;
6641
+ }>;
6642
+ readonly baseStaticUrl: string;
6643
+ readonly baseUrl: string;
6644
+ readonly projectId: string;
6645
+ };
6646
+ } & T;
6647
+
5930
6648
  declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T) => {
5931
6649
  new (...params: any[]): {
5932
6650
  readonly baseUrl: string;
@@ -6598,8 +7316,8 @@ declare const injectNpmLibMixin: <T extends CustomElementConstructor>(superclass
6598
7316
  new (...params: any[]): {
6599
7317
  readonly baseCdnUrl: string;
6600
7318
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
6601
- "__#32282@#logger": Logger;
6602
- "__#32282@#wrapLogger"(logger: Partial<Logger>): Logger;
7319
+ "__#33506@#logger": Logger;
7320
+ "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
6603
7321
  get logger(): Logger;
6604
7322
  set logger(logger: Partial<Logger>);
6605
7323
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -6935,12 +7653,12 @@ declare const injectNpmLibMixin: <T extends CustomElementConstructor>(superclass
6935
7653
  declare const cspNonceMixin: <T extends CustomElementConstructor>(superclass: T) => {
6936
7654
  new (...params: any[]): {
6937
7655
  readonly nonce: string;
6938
- "__#32289@#setNonce"(): void;
7656
+ "__#33513@#setNonce"(): void;
6939
7657
  init(): Promise<void>;
6940
- "__#32284@#observeMappings": {};
7658
+ "__#33508@#observeMappings": {};
6941
7659
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
6942
7660
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
6943
- "__#32283@#isInit": boolean;
7661
+ "__#33507@#isInit": boolean;
6944
7662
  connectedCallback: (() => void) & (() => void) & (() => void);
6945
7663
  accessKey: string;
6946
7664
  readonly accessKeyLabel: string;
@@ -7266,8 +7984,8 @@ declare const cspNonceMixin: <T extends CustomElementConstructor>(superclass: T)
7266
7984
  tabIndex: number;
7267
7985
  blur(): void;
7268
7986
  focus(options?: FocusOptions): void;
7269
- "__#32282@#logger": Logger;
7270
- "__#32282@#wrapLogger"(logger: Partial<Logger>): Logger;
7987
+ "__#33506@#logger": Logger;
7988
+ "__#33506@#wrapLogger"(logger: Partial<Logger>): Logger;
7271
7989
  get logger(): Logger;
7272
7990
  set logger(logger: Partial<Logger>);
7273
7991
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -7281,4 +7999,4 @@ declare global {
7281
7999
  }
7282
8000
  }
7283
8001
 
7284
- 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, baseUrlMixin, configMixin, cookieConfigMixin, createStateManagementMixin, createValidateAttributesMixin, cspNonceMixin, debuggerMixin, descopeUiMixin, formMixin, getResourceUrl, initElementMixin, initLifecycleMixin, injectNpmLibMixin, injectStyleMixin, loggerMixin, modalMixin, notificationsMixin, observeAttributesMixin, projectIdMixin, staticResourcesMixin, themeMixin };
8002
+ export { type CheckValueFn, type ClientCondition, type ClientConditionResult, type ClientScript, type ComponentsConfig, type ComponentsDynamicAttrs, type Config, DEFAULT_STYLE_ID, type FlowConfig, type InjectedStyle, type LogLevel, type Logger, type ProjectConfiguration, type ThemeOptions, type WidgetConfig, baseUrlMixin, configMixin, cookieConfigMixin, createStateManagementMixin, createValidateAttributesMixin, cspNonceMixin, debuggerMixin, descopeUiMixin, formMixin, getResourceUrl, initElementMixin, initLifecycleMixin, injectNpmLibMixin, injectStyleMixin, loggerMixin, modalMixin, notificationsMixin, observeAttributesMixin, projectIdMixin, staticResourcesMixin, themeMixin, widgetConfigMixin, widgetIdMixin };