@descope/sdk-mixins 0.21.0 → 0.22.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 (37) hide show
  1. package/dist/cjs/index.js +2 -0
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/mixins/flowInputMixin/flowInputMixin.js +58 -0
  4. package/dist/cjs/mixins/flowInputMixin/flowInputMixin.js.map +1 -0
  5. package/dist/esm/index.js +1 -0
  6. package/dist/esm/index.js.map +1 -1
  7. package/dist/esm/mixins/flowInputMixin/flowInputMixin.js +56 -0
  8. package/dist/esm/mixins/flowInputMixin/flowInputMixin.js.map +1 -0
  9. package/dist/index.d.ts +675 -215
  10. package/dist/types/index.d.ts +1 -0
  11. package/dist/types/mixins/configMixin/configMixin.d.ts +14 -14
  12. package/dist/types/mixins/createStateManagementMixin.d.ts +2 -2
  13. package/dist/types/mixins/createValidateAttributesMixin/createValidateAttributesMixin.d.ts +5 -5
  14. package/dist/types/mixins/cspNonceMixin.d.ts +5 -5
  15. package/dist/types/mixins/debuggerMixin/debugger-wc.d.ts +5 -5
  16. package/dist/types/mixins/debuggerMixin/debuggerMixin.d.ts +8 -8
  17. package/dist/types/mixins/descopeUiMixin/descopeUiMixin.d.ts +19 -19
  18. package/dist/types/mixins/fetchWidgetPagesMixin/createFetchWidgetPagesMixin.d.ts +15 -15
  19. package/dist/types/mixins/flowInputMixin/flowInputMixin.d.ts +460 -0
  20. package/dist/types/mixins/flowInputMixin/index.d.ts +1 -0
  21. package/dist/types/mixins/formMixin.d.ts +2 -2
  22. package/dist/types/mixins/initElementMixin.d.ts +5 -5
  23. package/dist/types/mixins/initLifecycleMixin.d.ts +1 -1
  24. package/dist/types/mixins/injectNpmLibMixin/injectNpmLibMixin.d.ts +2 -2
  25. package/dist/types/mixins/injectStyleMixin.d.ts +5 -5
  26. package/dist/types/mixins/loggerMixin/loggerMixin.d.ts +2 -2
  27. package/dist/types/mixins/modalMixin/modalMixin.d.ts +23 -23
  28. package/dist/types/mixins/notificationsMixin/notificationsMixin.d.ts +23 -23
  29. package/dist/types/mixins/observeAttributesMixin/observeAttributesMixin.d.ts +4 -4
  30. package/dist/types/mixins/projectIdMixin.d.ts +5 -5
  31. package/dist/types/mixins/resetMixin.d.ts +6 -6
  32. package/dist/types/mixins/staticResourcesMixin/staticResourcesMixin.d.ts +10 -10
  33. package/dist/types/mixins/tenantIdMixin.d.ts +5 -5
  34. package/dist/types/mixins/themeMixin/themeMixin.d.ts +40 -40
  35. package/dist/types/mixins/widgetConfigMixin/widgetConfigMixin.d.ts +14 -14
  36. package/dist/types/mixins/widgetIdMixin.d.ts +5 -5
  37. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -14,8 +14,8 @@ declare const logLevels: readonly ["error", "warn", "info", "debug"];
14
14
  type LogLevel = (typeof logLevels)[number];
15
15
  declare const loggerMixin: <T extends CustomElementConstructor>(superclass: T) => {
16
16
  new (...params: any[]): {
17
- "__#36547@#logger": Logger;
18
- "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
17
+ "__#39126@#logger": Logger;
18
+ "__#39126@#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;
@@ -427,10 +427,10 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
427
427
  new (...params: any[]): {
428
428
  init(): Promise<void>;
429
429
  readonly config: Promise<Config>;
430
- "__#36553@#configCacheClear"(): void;
431
- "__#36553@#_configResource": Promise<Config>;
432
- "__#36553@#fetchConfig": () => Promise<Config>;
433
- "__#36548@#isInit": boolean;
430
+ "__#39132@#configCacheClear"(): void;
431
+ "__#39132@#_configResource": Promise<Config>;
432
+ "__#39132@#fetchConfig": () => Promise<Config>;
433
+ "__#39127@#isInit": boolean;
434
434
  connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
435
435
  accessKey: string;
436
436
  readonly accessKeyLabel: string;
@@ -757,27 +757,27 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
757
757
  tabIndex: number;
758
758
  blur(): void;
759
759
  focus(options?: FocusOptions): void;
760
- "__#36552@#callbacks": Map<string, () => void>;
760
+ "__#39131@#callbacks": Map<string, () => void>;
761
761
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
762
762
  reset(...sectionIds: string[]): Promise<void>;
763
- "__#36550@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
764
- "__#36549@#observeMappings": {} & {};
763
+ "__#39129@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
764
+ "__#39128@#observeMappings": {} & {};
765
765
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
766
766
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
767
- "__#36547@#logger": Logger;
768
- "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
767
+ "__#39126@#logger": Logger;
768
+ "__#39126@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
769
769
  get logger(): Logger;
770
770
  set logger(logger: Partial<Logger>);
771
771
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
772
- "__#36551@#lastBaseUrl"?: string;
773
- "__#36551@#workingBaseUrl"?: string;
774
- "__#36551@#failedUrls": Set<string>;
775
- "__#36551@#getResourceUrls"(filename: string): (URL & {
772
+ "__#39130@#lastBaseUrl"?: string;
773
+ "__#39130@#workingBaseUrl"?: string;
774
+ "__#39130@#failedUrls": Set<string>;
775
+ "__#39130@#getResourceUrls"(filename: string): (URL & {
776
776
  baseUrl: string;
777
777
  }) | (URL & {
778
778
  baseUrl: string;
779
779
  })[];
780
- "__#36551@#createResourceUrl"(filename: string, baseUrl: string): URL & {
780
+ "__#39130@#createResourceUrl"(filename: string, baseUrl: string): URL & {
781
781
  baseUrl: string;
782
782
  };
783
783
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -793,12 +793,12 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
793
793
  declare const createValidateAttributesMixin: {
794
794
  (mappings: Record<string, CheckValueFn | string>): <T extends CustomElementConstructor>(superclass: T) => {
795
795
  new (...args: any): {
796
- "__#36550@#handleError"(attrName: string, newValue: string | null): void;
796
+ "__#39129@#handleError"(attrName: string, newValue: string | null): void;
797
797
  init(): Promise<void>;
798
- "__#36549@#observeMappings": {};
798
+ "__#39128@#observeMappings": {};
799
799
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
800
800
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
801
- "__#36548@#isInit": boolean;
801
+ "__#39127@#isInit": boolean;
802
802
  connectedCallback: (() => void) & (() => void) & (() => void);
803
803
  accessKey: string;
804
804
  readonly accessKeyLabel: string;
@@ -1125,8 +1125,8 @@ declare const createValidateAttributesMixin: {
1125
1125
  tabIndex: number;
1126
1126
  blur(): void;
1127
1127
  focus(options?: FocusOptions): void;
1128
- "__#36547@#logger": Logger;
1129
- "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1128
+ "__#39126@#logger": Logger;
1129
+ "__#39126@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1130
1130
  get logger(): Logger;
1131
1131
  set logger(logger: Partial<Logger>);
1132
1132
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -1143,19 +1143,19 @@ type DebuggerMessage = {
1143
1143
 
1144
1144
  declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T) => {
1145
1145
  new (...params: any[]): {
1146
- "__#36556@#debuggerEle": (HTMLElement & {
1146
+ "__#39135@#debuggerEle": (HTMLElement & {
1147
1147
  updateData: (data: DebuggerMessage | DebuggerMessage[]) => void;
1148
1148
  }) | null;
1149
- "__#36556@#disableDebugger"(): void;
1150
- "__#36556@#enableDebugger"(): Promise<void>;
1149
+ "__#39135@#disableDebugger"(): void;
1150
+ "__#39135@#enableDebugger"(): Promise<void>;
1151
1151
  attributeChangedCallback: (attrName: string, oldValue: string | null, newValue: string | null) => void;
1152
1152
  readonly debug: boolean;
1153
- "__#36556@#handleDebugMode"(): void;
1153
+ "__#39135@#handleDebugMode"(): void;
1154
1154
  onLogEvent(logLevel: LogLevel, args: any[]): void;
1155
1155
  init(): Promise<void>;
1156
- "__#36556@#updateDebuggerMessages"(title: string, description: string): void;
1157
- "__#36547@#logger": Logger;
1158
- "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
1156
+ "__#39135@#updateDebuggerMessages"(title: string, description: string): void;
1157
+ "__#39126@#logger": Logger;
1158
+ "__#39126@#wrapLogger"(logger: Partial<Logger>): Logger;
1159
1159
  get logger(): Logger;
1160
1160
  set logger(logger: Partial<Logger>);
1161
1161
  accessKey: string;
@@ -1483,7 +1483,7 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
1483
1483
  tabIndex: number;
1484
1484
  blur(): void;
1485
1485
  focus(options?: FocusOptions): void;
1486
- "__#36548@#isInit": boolean;
1486
+ "__#39127@#isInit": boolean;
1487
1487
  };
1488
1488
  } & T;
1489
1489
 
@@ -1495,17 +1495,17 @@ type ScriptData = {
1495
1495
 
1496
1496
  declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T) => {
1497
1497
  new (...params: any[]): {
1498
- "__#36557@#getComponentsVersion"(): Promise<string>;
1499
- "__#36557@#getComponentsVersionSri"(): Promise<string>;
1500
- "__#36557@#descopeUi": Promise<any>;
1498
+ "__#39136@#getComponentsVersion"(): Promise<string>;
1499
+ "__#39136@#getComponentsVersionSri"(): Promise<string>;
1500
+ "__#39136@#descopeUi": Promise<any>;
1501
1501
  readonly descopeUi: Promise<any>;
1502
- "__#36557@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1503
- "__#36557@#getDescopeUi"(): Promise<any>;
1502
+ "__#39136@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1503
+ "__#39136@#getDescopeUi"(): Promise<any>;
1504
1504
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
1505
1505
  readonly baseCdnUrl: string;
1506
1506
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
1507
- "__#36547@#logger": Logger;
1508
- "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1507
+ "__#39126@#logger": Logger;
1508
+ "__#39126@#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);
1509
1509
  get logger(): Logger;
1510
1510
  set logger(logger: Partial<Logger>);
1511
1511
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -1837,26 +1837,26 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
1837
1837
  focus(options?: FocusOptions): void;
1838
1838
  init(): Promise<void>;
1839
1839
  readonly config: Promise<Config>;
1840
- "__#36553@#configCacheClear"(): void;
1841
- "__#36553@#_configResource": Promise<Config>;
1842
- "__#36553@#fetchConfig": () => Promise<Config>;
1843
- "__#36548@#isInit": boolean;
1844
- "__#36552@#callbacks": Map<string, () => void>;
1840
+ "__#39132@#configCacheClear"(): void;
1841
+ "__#39132@#_configResource": Promise<Config>;
1842
+ "__#39132@#fetchConfig": () => Promise<Config>;
1843
+ "__#39127@#isInit": boolean;
1844
+ "__#39131@#callbacks": Map<string, () => void>;
1845
1845
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
1846
1846
  reset(...sectionIds: string[]): Promise<void>;
1847
- "__#36550@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
1848
- "__#36549@#observeMappings": {} & {};
1847
+ "__#39129@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
1848
+ "__#39128@#observeMappings": {} & {};
1849
1849
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
1850
1850
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
1851
- "__#36551@#lastBaseUrl"?: string;
1852
- "__#36551@#workingBaseUrl"?: string;
1853
- "__#36551@#failedUrls": Set<string>;
1854
- "__#36551@#getResourceUrls"(filename: string): (URL & {
1851
+ "__#39130@#lastBaseUrl"?: string;
1852
+ "__#39130@#workingBaseUrl"?: string;
1853
+ "__#39130@#failedUrls": Set<string>;
1854
+ "__#39130@#getResourceUrls"(filename: string): (URL & {
1855
1855
  baseUrl: string;
1856
1856
  }) | (URL & {
1857
1857
  baseUrl: string;
1858
1858
  })[];
1859
- "__#36551@#createResourceUrl"(filename: string, baseUrl: string): URL & {
1859
+ "__#39130@#createResourceUrl"(filename: string, baseUrl: string): URL & {
1860
1860
  baseUrl: string;
1861
1861
  };
1862
1862
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -1871,7 +1871,7 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
1871
1871
 
1872
1872
  declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) => {
1873
1873
  new (...params: any[]): {
1874
- "__#36561@#ModalDriverWrapper": {
1874
+ "__#39140@#ModalDriverWrapper": {
1875
1875
  new (refOrRefFn: Element | (() => HTMLElement), config: {
1876
1876
  logger: {
1877
1877
  error(...data: any[]): void;
@@ -1881,7 +1881,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1881
1881
  };
1882
1882
  }): {
1883
1883
  setContent(template: HTMLTemplateElement): void;
1884
- "__#36560@#private": any;
1884
+ "__#39139@#private": any;
1885
1885
  beforeOpen: () => void | Promise<void>;
1886
1886
  afterClose: () => void;
1887
1887
  nodeName: string;
@@ -1889,7 +1889,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1889
1889
  open(): Promise<void>;
1890
1890
  reset(): void;
1891
1891
  remove(): void;
1892
- "__#36558@#private": any;
1892
+ "__#39137@#private": any;
1893
1893
  logger: {
1894
1894
  error(...data: any[]): void;
1895
1895
  warn(...data: any[]): void;
@@ -1903,17 +1903,17 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
1903
1903
  };
1904
1904
  createModal(config?: Record<string, string>): ModalDriver;
1905
1905
  init(): Promise<void>;
1906
- "__#36557@#getComponentsVersion"(): Promise<string>;
1907
- "__#36557@#getComponentsVersionSri"(): Promise<string>;
1908
- "__#36557@#descopeUi": Promise<any>;
1906
+ "__#39136@#getComponentsVersion"(): Promise<string>;
1907
+ "__#39136@#getComponentsVersionSri"(): Promise<string>;
1908
+ "__#39136@#descopeUi": Promise<any>;
1909
1909
  readonly descopeUi: Promise<any>;
1910
- "__#36557@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1911
- "__#36557@#getDescopeUi"(): Promise<any>;
1910
+ "__#39136@#loadDescopeUiComponent"(componentName: string): Promise<any>;
1911
+ "__#39136@#getDescopeUi"(): Promise<any>;
1912
1912
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
1913
1913
  readonly baseCdnUrl: string;
1914
1914
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
1915
- "__#36547@#logger": Logger;
1916
- "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
1915
+ "__#39126@#logger": Logger;
1916
+ "__#39126@#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);
1917
1917
  get logger(): Logger;
1918
1918
  set logger(logger: Partial<Logger>);
1919
1919
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -2244,26 +2244,26 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
2244
2244
  blur(): void;
2245
2245
  focus(options?: FocusOptions): void;
2246
2246
  readonly config: Promise<Config>;
2247
- "__#36553@#configCacheClear"(): void;
2248
- "__#36553@#_configResource": Promise<Config>;
2249
- "__#36553@#fetchConfig": () => Promise<Config>;
2250
- "__#36548@#isInit": boolean;
2251
- "__#36552@#callbacks": Map<string, () => void>;
2247
+ "__#39132@#configCacheClear"(): void;
2248
+ "__#39132@#_configResource": Promise<Config>;
2249
+ "__#39132@#fetchConfig": () => Promise<Config>;
2250
+ "__#39127@#isInit": boolean;
2251
+ "__#39131@#callbacks": Map<string, () => void>;
2252
2252
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
2253
2253
  reset(...sectionIds: string[]): Promise<void>;
2254
- "__#36550@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2255
- "__#36549@#observeMappings": {} & {} & {};
2254
+ "__#39129@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2255
+ "__#39128@#observeMappings": {} & {} & {};
2256
2256
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
2257
2257
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
2258
- "__#36551@#lastBaseUrl"?: string;
2259
- "__#36551@#workingBaseUrl"?: string;
2260
- "__#36551@#failedUrls": Set<string>;
2261
- "__#36551@#getResourceUrls"(filename: string): (URL & {
2258
+ "__#39130@#lastBaseUrl"?: string;
2259
+ "__#39130@#workingBaseUrl"?: string;
2260
+ "__#39130@#failedUrls": Set<string>;
2261
+ "__#39130@#getResourceUrls"(filename: string): (URL & {
2262
2262
  baseUrl: string;
2263
2263
  }) | (URL & {
2264
2264
  baseUrl: string;
2265
2265
  })[];
2266
- "__#36551@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2266
+ "__#39130@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2267
2267
  baseUrl: string;
2268
2268
  };
2269
2269
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -2283,13 +2283,13 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
2283
2283
  replaceSync(cssString: string): void;
2284
2284
  readonly cssRules: CSSRuleList;
2285
2285
  } | CSSStyleSheet;
2286
- "__#36554@#setNonce"(): void;
2286
+ "__#39133@#setNonce"(): void;
2287
2287
  };
2288
2288
  } & T;
2289
2289
 
2290
2290
  declare const notificationsMixin: <T extends CustomElementConstructor>(superclass: T) => {
2291
2291
  new (...params: any[]): {
2292
- "__#36562@#NotificationDriverWrapper": {
2292
+ "__#39141@#NotificationDriverWrapper": {
2293
2293
  new (refOrRefFn: Element | (() => HTMLElement), config: {
2294
2294
  logger: {
2295
2295
  error(...data: any[]): void;
@@ -2303,7 +2303,7 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2303
2303
  close(): void;
2304
2304
  show(): void;
2305
2305
  remove(): void;
2306
- "__#36558@#private": any;
2306
+ "__#39137@#private": any;
2307
2307
  logger: {
2308
2308
  error(...data: any[]): void;
2309
2309
  warn(...data: any[]): void;
@@ -2330,7 +2330,7 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2330
2330
  close(): void;
2331
2331
  show(): void;
2332
2332
  remove(): void;
2333
- "__#36558@#private": any;
2333
+ "__#39137@#private": any;
2334
2334
  logger: {
2335
2335
  error(...data: any[]): void;
2336
2336
  warn(...data: any[]): void;
@@ -2342,17 +2342,17 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2342
2342
  readonly isExists: boolean;
2343
2343
  };
2344
2344
  init(): Promise<void>;
2345
- "__#36557@#getComponentsVersion"(): Promise<string>;
2346
- "__#36557@#getComponentsVersionSri"(): Promise<string>;
2347
- "__#36557@#descopeUi": Promise<any>;
2345
+ "__#39136@#getComponentsVersion"(): Promise<string>;
2346
+ "__#39136@#getComponentsVersionSri"(): Promise<string>;
2347
+ "__#39136@#descopeUi": Promise<any>;
2348
2348
  readonly descopeUi: Promise<any>;
2349
- "__#36557@#loadDescopeUiComponent"(componentName: string): Promise<any>;
2350
- "__#36557@#getDescopeUi"(): Promise<any>;
2349
+ "__#39136@#loadDescopeUiComponent"(componentName: string): Promise<any>;
2350
+ "__#39136@#getDescopeUi"(): Promise<any>;
2351
2351
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
2352
2352
  readonly baseCdnUrl: string;
2353
2353
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
2354
- "__#36547@#logger": Logger;
2355
- "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
2354
+ "__#39126@#logger": Logger;
2355
+ "__#39126@#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);
2356
2356
  get logger(): Logger;
2357
2357
  set logger(logger: Partial<Logger>);
2358
2358
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -2683,26 +2683,26 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2683
2683
  blur(): void;
2684
2684
  focus(options?: FocusOptions): void;
2685
2685
  readonly config: Promise<Config>;
2686
- "__#36553@#configCacheClear"(): void;
2687
- "__#36553@#_configResource": Promise<Config>;
2688
- "__#36553@#fetchConfig": () => Promise<Config>;
2689
- "__#36548@#isInit": boolean;
2690
- "__#36552@#callbacks": Map<string, () => void>;
2686
+ "__#39132@#configCacheClear"(): void;
2687
+ "__#39132@#_configResource": Promise<Config>;
2688
+ "__#39132@#fetchConfig": () => Promise<Config>;
2689
+ "__#39127@#isInit": boolean;
2690
+ "__#39131@#callbacks": Map<string, () => void>;
2691
2691
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
2692
2692
  reset(...sectionIds: string[]): Promise<void>;
2693
- "__#36550@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2694
- "__#36549@#observeMappings": {} & {} & {};
2693
+ "__#39129@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
2694
+ "__#39128@#observeMappings": {} & {} & {};
2695
2695
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
2696
2696
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
2697
- "__#36551@#lastBaseUrl"?: string;
2698
- "__#36551@#workingBaseUrl"?: string;
2699
- "__#36551@#failedUrls": Set<string>;
2700
- "__#36551@#getResourceUrls"(filename: string): (URL & {
2697
+ "__#39130@#lastBaseUrl"?: string;
2698
+ "__#39130@#workingBaseUrl"?: string;
2699
+ "__#39130@#failedUrls": Set<string>;
2700
+ "__#39130@#getResourceUrls"(filename: string): (URL & {
2701
2701
  baseUrl: string;
2702
2702
  }) | (URL & {
2703
2703
  baseUrl: string;
2704
2704
  })[];
2705
- "__#36551@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2705
+ "__#39130@#createResourceUrl"(filename: string, baseUrl: string): URL & {
2706
2706
  baseUrl: string;
2707
2707
  };
2708
2708
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -2722,18 +2722,18 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
2722
2722
  replaceSync(cssString: string): void;
2723
2723
  readonly cssRules: CSSRuleList;
2724
2724
  } | CSSStyleSheet;
2725
- "__#36554@#setNonce"(): void;
2725
+ "__#39133@#setNonce"(): void;
2726
2726
  };
2727
2727
  } & T;
2728
2728
 
2729
2729
  type OnAttrChange = (attrName: string, value: string | null) => void;
2730
2730
  declare const observeAttributesMixin: <T extends CustomElementConstructor>(superclass: T) => {
2731
2731
  new (...params: any[]): {
2732
- "__#36549@#observeMappings": {};
2732
+ "__#39128@#observeMappings": {};
2733
2733
  init(): Promise<void>;
2734
2734
  observeAttribute(attrName: string, onAttrChange: OnAttrChange): () => any;
2735
2735
  observeAttributes(attrs: string[], cb: OnAttrChange): () => void;
2736
- "__#36548@#isInit": boolean;
2736
+ "__#39127@#isInit": boolean;
2737
2737
  connectedCallback: (() => void) & (() => void);
2738
2738
  accessKey: string;
2739
2739
  readonly accessKeyLabel: string;
@@ -3060,8 +3060,8 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
3060
3060
  tabIndex: number;
3061
3061
  blur(): void;
3062
3062
  focus(options?: FocusOptions): void;
3063
- "__#36547@#logger": Logger;
3064
- "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
3063
+ "__#39126@#logger": Logger;
3064
+ "__#39126@#wrapLogger"(logger: Partial<Logger>): Logger;
3065
3065
  get logger(): Logger;
3066
3066
  set logger(logger: Partial<Logger>);
3067
3067
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -3080,11 +3080,11 @@ declare function getResourceUrl({ projectId, filename, assetsFolder, baseUrl, }:
3080
3080
  }): CustomUrl;
3081
3081
  declare const staticResourcesMixin: <T extends CustomElementConstructor>(superclass: T) => {
3082
3082
  new (...params: any[]): {
3083
- "__#36551@#lastBaseUrl"?: string;
3084
- "__#36551@#workingBaseUrl"?: string;
3085
- "__#36551@#failedUrls": Set<string>;
3086
- "__#36551@#getResourceUrls"(filename: string): CustomUrl[] | CustomUrl;
3087
- "__#36551@#createResourceUrl"(filename: string, baseUrl: string): CustomUrl;
3083
+ "__#39130@#lastBaseUrl"?: string;
3084
+ "__#39130@#workingBaseUrl"?: string;
3085
+ "__#39130@#failedUrls": Set<string>;
3086
+ "__#39130@#getResourceUrls"(filename: string): CustomUrl[] | CustomUrl;
3087
+ "__#39130@#createResourceUrl"(filename: string, baseUrl: string): CustomUrl;
3088
3088
  fetchStaticResource<F extends Format>(filename: string, format: F): Promise<{
3089
3089
  body: F extends 'json' ? Record<string, any> : string;
3090
3090
  headers: Record<string, string>;
@@ -3418,14 +3418,14 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
3418
3418
  blur(): void;
3419
3419
  focus(options?: FocusOptions): void;
3420
3420
  readonly projectId: string;
3421
- "__#36550@#handleError"(attrName: string, newValue: string): void;
3421
+ "__#39129@#handleError"(attrName: string, newValue: string): void;
3422
3422
  init(): Promise<void>;
3423
- "__#36549@#observeMappings": {};
3423
+ "__#39128@#observeMappings": {};
3424
3424
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
3425
3425
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
3426
- "__#36548@#isInit": boolean;
3427
- "__#36547@#logger": Logger;
3428
- "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
3426
+ "__#39127@#isInit": boolean;
3427
+ "__#39126@#logger": Logger;
3428
+ "__#39126@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
3429
3429
  get logger(): Logger;
3430
3430
  set logger(logger: Partial<Logger>);
3431
3431
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -3447,12 +3447,12 @@ declare const injectStyleMixin: <T extends CustomElementConstructor>(superclass:
3447
3447
  prepend?: boolean;
3448
3448
  }): CSSStyleSheetMock | CSSStyleSheet;
3449
3449
  nonce: string;
3450
- "__#36554@#setNonce"(): void;
3450
+ "__#39133@#setNonce"(): void;
3451
3451
  init(): Promise<void>;
3452
- "__#36549@#observeMappings": {};
3452
+ "__#39128@#observeMappings": {};
3453
3453
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
3454
3454
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
3455
- "__#36548@#isInit": boolean;
3455
+ "__#39127@#isInit": boolean;
3456
3456
  connectedCallback: (() => void) & (() => void) & (() => void);
3457
3457
  accessKey: string;
3458
3458
  readonly accessKeyLabel: string;
@@ -3778,8 +3778,8 @@ declare const injectStyleMixin: <T extends CustomElementConstructor>(superclass:
3778
3778
  tabIndex: number;
3779
3779
  blur(): void;
3780
3780
  focus(options?: FocusOptions): void;
3781
- "__#36547@#logger": Logger;
3782
- "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
3781
+ "__#39126@#logger": Logger;
3782
+ "__#39126@#wrapLogger"(logger: Partial<Logger>): Logger;
3783
3783
  get logger(): Logger;
3784
3784
  set logger(logger: Partial<Logger>);
3785
3785
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -3790,31 +3790,31 @@ type InjectedStyle = CSSStyleSheet | CSSStyleSheetMock;
3790
3790
  type ThemeOptions = 'light' | 'dark' | 'os';
3791
3791
  declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) => {
3792
3792
  new (...params: any[]): {
3793
- "__#36563@#globalStyle": InjectedStyle;
3794
- "__#36563@#tenantStyle": InjectedStyle;
3795
- "__#36563@#customStyle": InjectedStyle;
3793
+ "__#39142@#globalStyle": InjectedStyle;
3794
+ "__#39142@#tenantStyle": InjectedStyle;
3795
+ "__#39142@#customStyle": InjectedStyle;
3796
3796
  readonly theme: ThemeOptions;
3797
3797
  readonly styleId: string;
3798
3798
  readonly themeOverride: Record<string, any>;
3799
- "__#36563@#getThemeOverrideString"(): string;
3800
- "__#36563@#_themeResource": Promise<void | Record<string, any>>;
3801
- "__#36563@#_tenantThemeResource": Promise<Record<string, any> | undefined>;
3802
- "__#36563@#fetchTheme"(): Promise<Record<string, any>>;
3803
- readonly "__#36563@#themeResource": Promise<void | Record<string, any>>;
3804
- "__#36563@#loadGlobalStyle"(): Promise<void>;
3805
- "__#36563@#fetchTenantTheme"(): Promise<Record<string, any>>;
3806
- readonly "__#36563@#tenantThemeResource": Promise<Record<string, any>>;
3807
- "__#36563@#loadTenantStyle"(): Promise<void>;
3808
- "__#36563@#loadCustomStyle"(): Promise<void>;
3809
- "__#36563@#loadComponentsStyle"(): Promise<void>;
3810
- "__#36563@#getFontsConfig"(): Promise<Record<string, {
3799
+ "__#39142@#getThemeOverrideString"(): string;
3800
+ "__#39142@#_themeResource": Promise<void | Record<string, any>>;
3801
+ "__#39142@#_tenantThemeResource": Promise<Record<string, any> | undefined>;
3802
+ "__#39142@#fetchTheme"(): Promise<Record<string, any>>;
3803
+ readonly "__#39142@#themeResource": Promise<void | Record<string, any>>;
3804
+ "__#39142@#loadGlobalStyle"(): Promise<void>;
3805
+ "__#39142@#fetchTenantTheme"(): Promise<Record<string, any>>;
3806
+ readonly "__#39142@#tenantThemeResource": Promise<Record<string, any>>;
3807
+ "__#39142@#loadTenantStyle"(): Promise<void>;
3808
+ "__#39142@#loadCustomStyle"(): Promise<void>;
3809
+ "__#39142@#loadComponentsStyle"(): Promise<void>;
3810
+ "__#39142@#getFontsConfig"(): Promise<Record<string, {
3811
3811
  url?: string;
3812
3812
  }>>;
3813
- "__#36563@#loadFonts"(): Promise<void>;
3814
- "__#36563@#applyTheme"(): Promise<void>;
3815
- "__#36563@#onThemeChange": () => void;
3816
- "__#36563@#loadTheme"(): void;
3817
- "__#36563@#toggleOsThemeChangeListener": (listen: boolean) => void;
3813
+ "__#39142@#loadFonts"(): Promise<void>;
3814
+ "__#39142@#applyTheme"(): Promise<void>;
3815
+ "__#39142@#onThemeChange": () => void;
3816
+ "__#39142@#loadTheme"(): void;
3817
+ "__#39142@#toggleOsThemeChangeListener": (listen: boolean) => void;
3818
3818
  init(): Promise<void>;
3819
3819
  injectStyle: ((cssString: string, { prepend }?: {
3820
3820
  prepend?: boolean;
@@ -3832,11 +3832,11 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
3832
3832
  readonly cssRules: CSSRuleList;
3833
3833
  } | CSSStyleSheet);
3834
3834
  nonce: string;
3835
- "__#36554@#setNonce": (() => void) & (() => void);
3836
- "__#36549@#observeMappings": {} & {} & {} & {} & {} & {} & {} & {} & {} & {};
3835
+ "__#39133@#setNonce": (() => void) & (() => void);
3836
+ "__#39128@#observeMappings": {} & {} & {} & {} & {} & {} & {} & {} & {} & {};
3837
3837
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
3838
3838
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
3839
- "__#36548@#isInit": boolean;
3839
+ "__#39127@#isInit": boolean;
3840
3840
  connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
3841
3841
  accessKey: string;
3842
3842
  readonly accessKeyLabel: string;
@@ -4162,25 +4162,25 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
4162
4162
  tabIndex: number;
4163
4163
  blur(): void;
4164
4164
  focus(options?: FocusOptions): void;
4165
- "__#36547@#logger": Logger;
4166
- "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
4165
+ "__#39126@#logger": Logger;
4166
+ "__#39126@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
4167
4167
  get logger(): Logger;
4168
4168
  set logger(logger: Partial<Logger>);
4169
4169
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
4170
4170
  contentRootElement: HTMLElement;
4171
4171
  rootElement: HTMLElement;
4172
4172
  readonly config: Promise<Config>;
4173
- "__#36553@#configCacheClear": (() => void) & (() => void);
4174
- "__#36553@#_configResource": Promise<Config>;
4175
- "__#36553@#fetchConfig": (() => Promise<Config>) & (() => Promise<Config>);
4176
- "__#36552@#callbacks": Map<string, () => void> & Map<string, () => void>;
4173
+ "__#39132@#configCacheClear": (() => void) & (() => void);
4174
+ "__#39132@#_configResource": Promise<Config>;
4175
+ "__#39132@#fetchConfig": (() => Promise<Config>) & (() => Promise<Config>);
4176
+ "__#39131@#callbacks": Map<string, () => void> & Map<string, () => void>;
4177
4177
  onReset: ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void);
4178
4178
  reset: ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>);
4179
- "__#36550@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
4180
- "__#36551@#lastBaseUrl"?: string;
4181
- "__#36551@#workingBaseUrl"?: string;
4182
- "__#36551@#failedUrls": Set<string>;
4183
- "__#36551@#getResourceUrls": ((filename: string) => (URL & {
4179
+ "__#39129@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
4180
+ "__#39130@#lastBaseUrl"?: string;
4181
+ "__#39130@#workingBaseUrl"?: string;
4182
+ "__#39130@#failedUrls": Set<string>;
4183
+ "__#39130@#getResourceUrls": ((filename: string) => (URL & {
4184
4184
  baseUrl: string;
4185
4185
  }) | (URL & {
4186
4186
  baseUrl: string;
@@ -4193,7 +4193,7 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
4193
4193
  }) | (URL & {
4194
4194
  baseUrl: string;
4195
4195
  })[]);
4196
- "__#36551@#createResourceUrl": ((filename: string, baseUrl: string) => URL & {
4196
+ "__#39130@#createResourceUrl": ((filename: string, baseUrl: string) => URL & {
4197
4197
  baseUrl: string;
4198
4198
  }) & ((filename: string, baseUrl: string) => URL & {
4199
4199
  baseUrl: string;
@@ -4213,12 +4213,12 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
4213
4213
  readonly baseStaticUrl: string;
4214
4214
  readonly baseUrl: string;
4215
4215
  readonly projectId: string;
4216
- "__#36557@#getComponentsVersion"(): Promise<string>;
4217
- "__#36557@#getComponentsVersionSri"(): Promise<string>;
4218
- "__#36557@#descopeUi": Promise<any>;
4216
+ "__#39136@#getComponentsVersion"(): Promise<string>;
4217
+ "__#39136@#getComponentsVersionSri"(): Promise<string>;
4218
+ "__#39136@#descopeUi": Promise<any>;
4219
4219
  readonly descopeUi: Promise<any>;
4220
- "__#36557@#loadDescopeUiComponent"(componentName: string): Promise<any>;
4221
- "__#36557@#getDescopeUi"(): Promise<any>;
4220
+ "__#39136@#loadDescopeUiComponent"(componentName: string): Promise<any>;
4221
+ "__#39136@#getDescopeUi"(): Promise<any>;
4222
4222
  loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
4223
4223
  readonly baseCdnUrl: string;
4224
4224
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
@@ -4234,8 +4234,8 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
4234
4234
  new (...args: any): {
4235
4235
  actions: _reduxjs_toolkit.CaseReducerActions<CaseReducers, Name> & AsyncActions;
4236
4236
  subscribe: <SelectorR = State extends Draft<infer S> ? S : State>(cb: (state: SelectorR) => void, selector?: (state: State) => SelectorR) => Unsubscribe;
4237
- "__#36547@#logger": Logger;
4238
- "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
4237
+ "__#39126@#logger": Logger;
4238
+ "__#39126@#wrapLogger"(logger: Partial<Logger>): Logger;
4239
4239
  get logger(): Logger;
4240
4240
  set logger(logger: Partial<Logger>);
4241
4241
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -4579,8 +4579,8 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
4579
4579
  getFormFieldNames(rootEle: ElementOrEmpty): string[];
4580
4580
  disableFormField(rootEle: ElementOrEmpty, name: string): void;
4581
4581
  removeFormField(rootEle: ElementOrEmpty, name: string): void;
4582
- "__#36547@#logger": Logger;
4583
- "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
4582
+ "__#39126@#logger": Logger;
4583
+ "__#39126@#wrapLogger"(logger: Partial<Logger>): Logger;
4584
4584
  get logger(): Logger;
4585
4585
  set logger(logger: Partial<Logger>);
4586
4586
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -4926,12 +4926,12 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
4926
4926
  readonly cssRules: CSSRuleList;
4927
4927
  } | CSSStyleSheet;
4928
4928
  nonce: string;
4929
- "__#36554@#setNonce"(): void;
4929
+ "__#39133@#setNonce"(): void;
4930
4930
  init(): Promise<void>;
4931
- "__#36549@#observeMappings": {};
4931
+ "__#39128@#observeMappings": {};
4932
4932
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
4933
4933
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
4934
- "__#36548@#isInit": boolean;
4934
+ "__#39127@#isInit": boolean;
4935
4935
  connectedCallback: (() => void) & (() => void) & (() => void);
4936
4936
  accessKey: string;
4937
4937
  readonly accessKeyLabel: string;
@@ -5257,8 +5257,8 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
5257
5257
  tabIndex: number;
5258
5258
  blur(): void;
5259
5259
  focus(options?: FocusOptions): void;
5260
- "__#36547@#logger": Logger;
5261
- "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
5260
+ "__#39126@#logger": Logger;
5261
+ "__#39126@#wrapLogger"(logger: Partial<Logger>): Logger;
5262
5262
  get logger(): Logger;
5263
5263
  set logger(logger: Partial<Logger>);
5264
5264
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -5267,7 +5267,7 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
5267
5267
 
5268
5268
  declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclass: T) => {
5269
5269
  new (...params: any[]): {
5270
- "__#36548@#isInit": boolean;
5270
+ "__#39127@#isInit": boolean;
5271
5271
  connectedCallback(): void;
5272
5272
  init(): Promise<void>;
5273
5273
  accessKey: string;
@@ -5601,12 +5601,12 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
5601
5601
  declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T) => {
5602
5602
  new (...args: any): {
5603
5603
  readonly projectId: string;
5604
- "__#36550@#handleError"(attrName: string, newValue: string): void;
5604
+ "__#39129@#handleError"(attrName: string, newValue: string): void;
5605
5605
  init(): Promise<void>;
5606
- "__#36549@#observeMappings": {};
5606
+ "__#39128@#observeMappings": {};
5607
5607
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
5608
5608
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
5609
- "__#36548@#isInit": boolean;
5609
+ "__#39127@#isInit": boolean;
5610
5610
  connectedCallback: (() => void) & (() => void) & (() => void);
5611
5611
  accessKey: string;
5612
5612
  readonly accessKeyLabel: string;
@@ -5933,8 +5933,8 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
5933
5933
  tabIndex: number;
5934
5934
  blur(): void;
5935
5935
  focus(options?: FocusOptions): void;
5936
- "__#36547@#logger": Logger;
5937
- "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
5936
+ "__#39126@#logger": Logger;
5937
+ "__#39126@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
5938
5938
  get logger(): Logger;
5939
5939
  set logger(logger: Partial<Logger>);
5940
5940
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -5944,12 +5944,12 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
5944
5944
  declare const tenantIdMixin: <T extends CustomElementConstructor>(superclass: T) => {
5945
5945
  new (...args: any): {
5946
5946
  readonly tenantId: string;
5947
- "__#36550@#handleError"(attrName: string, newValue: string): void;
5947
+ "__#39129@#handleError"(attrName: string, newValue: string): void;
5948
5948
  init(): Promise<void>;
5949
- "__#36549@#observeMappings": {};
5949
+ "__#39128@#observeMappings": {};
5950
5950
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
5951
5951
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
5952
- "__#36548@#isInit": boolean;
5952
+ "__#39127@#isInit": boolean;
5953
5953
  connectedCallback: (() => void) & (() => void) & (() => void);
5954
5954
  accessKey: string;
5955
5955
  readonly accessKeyLabel: string;
@@ -6276,8 +6276,8 @@ declare const tenantIdMixin: <T extends CustomElementConstructor>(superclass: T)
6276
6276
  tabIndex: number;
6277
6277
  blur(): void;
6278
6278
  focus(options?: FocusOptions): void;
6279
- "__#36547@#logger": Logger;
6280
- "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
6279
+ "__#39126@#logger": Logger;
6280
+ "__#39126@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
6281
6281
  get logger(): Logger;
6282
6282
  set logger(logger: Partial<Logger>);
6283
6283
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -6287,12 +6287,12 @@ declare const tenantIdMixin: <T extends CustomElementConstructor>(superclass: T)
6287
6287
  declare const widgetIdMixin: <T extends CustomElementConstructor>(superclass: T) => {
6288
6288
  new (...args: any): {
6289
6289
  readonly widgetId: string;
6290
- "__#36550@#handleError"(attrName: string, newValue: string): void;
6290
+ "__#39129@#handleError"(attrName: string, newValue: string): void;
6291
6291
  init(): Promise<void>;
6292
- "__#36549@#observeMappings": {};
6292
+ "__#39128@#observeMappings": {};
6293
6293
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
6294
6294
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
6295
- "__#36548@#isInit": boolean;
6295
+ "__#39127@#isInit": boolean;
6296
6296
  connectedCallback: (() => void) & (() => void) & (() => void);
6297
6297
  accessKey: string;
6298
6298
  readonly accessKeyLabel: string;
@@ -6619,8 +6619,8 @@ declare const widgetIdMixin: <T extends CustomElementConstructor>(superclass: T)
6619
6619
  tabIndex: number;
6620
6620
  blur(): void;
6621
6621
  focus(options?: FocusOptions): void;
6622
- "__#36547@#logger": Logger;
6623
- "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
6622
+ "__#39126@#logger": Logger;
6623
+ "__#39126@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
6624
6624
  get logger(): Logger;
6625
6625
  set logger(logger: Partial<Logger>);
6626
6626
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
@@ -6632,11 +6632,11 @@ declare const widgetConfigMixin: <T extends CustomElementConstructor>(superclass
6632
6632
  init(): Promise<void>;
6633
6633
  getWidgetConfig(): Promise<WidgetConfig | undefined>;
6634
6634
  readonly widgetId: string;
6635
- "__#36550@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
6636
- "__#36549@#observeMappings": {} & {} & {};
6635
+ "__#39129@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
6636
+ "__#39128@#observeMappings": {} & {} & {};
6637
6637
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
6638
6638
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
6639
- "__#36548@#isInit": boolean;
6639
+ "__#39127@#isInit": boolean;
6640
6640
  connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
6641
6641
  accessKey: string;
6642
6642
  readonly accessKeyLabel: string;
@@ -6963,27 +6963,27 @@ declare const widgetConfigMixin: <T extends CustomElementConstructor>(superclass
6963
6963
  tabIndex: number;
6964
6964
  blur(): void;
6965
6965
  focus(options?: FocusOptions): void;
6966
- "__#36547@#logger": Logger;
6967
- "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
6966
+ "__#39126@#logger": Logger;
6967
+ "__#39126@#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);
6968
6968
  get logger(): Logger;
6969
6969
  set logger(logger: Partial<Logger>);
6970
6970
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
6971
6971
  readonly config: Promise<Config>;
6972
- "__#36553@#configCacheClear"(): void;
6973
- "__#36553@#_configResource": Promise<Config>;
6974
- "__#36553@#fetchConfig": () => Promise<Config>;
6975
- "__#36552@#callbacks": Map<string, () => void>;
6972
+ "__#39132@#configCacheClear"(): void;
6973
+ "__#39132@#_configResource": Promise<Config>;
6974
+ "__#39132@#fetchConfig": () => Promise<Config>;
6975
+ "__#39131@#callbacks": Map<string, () => void>;
6976
6976
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
6977
6977
  reset(...sectionIds: string[]): Promise<void>;
6978
- "__#36551@#lastBaseUrl"?: string;
6979
- "__#36551@#workingBaseUrl"?: string;
6980
- "__#36551@#failedUrls": Set<string>;
6981
- "__#36551@#getResourceUrls"(filename: string): (URL & {
6978
+ "__#39130@#lastBaseUrl"?: string;
6979
+ "__#39130@#workingBaseUrl"?: string;
6980
+ "__#39130@#failedUrls": Set<string>;
6981
+ "__#39130@#getResourceUrls"(filename: string): (URL & {
6982
6982
  baseUrl: string;
6983
6983
  }) | (URL & {
6984
6984
  baseUrl: string;
6985
6985
  })[];
6986
- "__#36551@#createResourceUrl"(filename: string, baseUrl: string): URL & {
6986
+ "__#39130@#createResourceUrl"(filename: string, baseUrl: string): URL & {
6987
6987
  baseUrl: string;
6988
6988
  };
6989
6989
  fetchStaticResource<F extends "text" | "json">(filename: string, format: F): Promise<{
@@ -7356,7 +7356,7 @@ declare const createFetchWidgetPagesMixin: (widgetPagesBaseDir: string) => <T ex
7356
7356
  new (...params: any[]): {
7357
7357
  init(): Promise<void>;
7358
7358
  fetchWidgetPage(filename: string): Promise<string>;
7359
- "__#36564@#tryFetchLocalized"(filename: string): Promise<string | undefined>;
7359
+ "__#39143@#tryFetchLocalized"(filename: string): Promise<string | undefined>;
7360
7360
  readonly locale: string;
7361
7361
  readonly localeCandidates: string[];
7362
7362
  firstAvailableLocale(availableLocales: string[]): string;
@@ -7688,27 +7688,27 @@ declare const createFetchWidgetPagesMixin: (widgetPagesBaseDir: string) => <T ex
7688
7688
  focus(options?: FocusOptions): void;
7689
7689
  getWidgetConfig(): Promise<WidgetConfig>;
7690
7690
  readonly widgetId: string;
7691
- "__#36550@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
7692
- "__#36549@#observeMappings": {} & {} & {} & {} & {};
7691
+ "__#39129@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
7692
+ "__#39128@#observeMappings": {} & {} & {} & {} & {};
7693
7693
  observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
7694
7694
  observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
7695
- "__#36548@#isInit": boolean;
7696
- "__#36547@#logger": Logger;
7697
- "__#36547@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
7695
+ "__#39127@#isInit": boolean;
7696
+ "__#39126@#logger": Logger;
7697
+ "__#39126@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
7698
7698
  get logger(): Logger;
7699
7699
  set logger(logger: Partial<Logger>);
7700
7700
  onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
7701
7701
  readonly config: Promise<Config>;
7702
- "__#36553@#configCacheClear"(): void;
7703
- "__#36553@#_configResource": Promise<Config>;
7704
- "__#36553@#fetchConfig": () => Promise<Config>;
7705
- "__#36552@#callbacks": Map<string, () => void>;
7702
+ "__#39132@#configCacheClear"(): void;
7703
+ "__#39132@#_configResource": Promise<Config>;
7704
+ "__#39132@#fetchConfig": () => Promise<Config>;
7705
+ "__#39131@#callbacks": Map<string, () => void>;
7706
7706
  onReset(sectionId: string, callback: () => void | Promise<void>): () => void;
7707
7707
  reset(...sectionIds: string[]): Promise<void>;
7708
- "__#36551@#lastBaseUrl"?: string;
7709
- "__#36551@#workingBaseUrl"?: string;
7710
- "__#36551@#failedUrls": Set<string>;
7711
- "__#36551@#getResourceUrls": ((filename: string) => (URL & {
7708
+ "__#39130@#lastBaseUrl"?: string;
7709
+ "__#39130@#workingBaseUrl"?: string;
7710
+ "__#39130@#failedUrls": Set<string>;
7711
+ "__#39130@#getResourceUrls": ((filename: string) => (URL & {
7712
7712
  baseUrl: string;
7713
7713
  }) | (URL & {
7714
7714
  baseUrl: string;
@@ -7717,7 +7717,7 @@ declare const createFetchWidgetPagesMixin: (widgetPagesBaseDir: string) => <T ex
7717
7717
  }) | (URL & {
7718
7718
  baseUrl: string;
7719
7719
  })[]);
7720
- "__#36551@#createResourceUrl": ((filename: string, baseUrl: string) => URL & {
7720
+ "__#39130@#createResourceUrl": ((filename: string, baseUrl: string) => URL & {
7721
7721
  baseUrl: string;
7722
7722
  }) & ((filename: string, baseUrl: string) => URL & {
7723
7723
  baseUrl: string;
@@ -8406,8 +8406,8 @@ declare const injectNpmLibMixin: <T extends CustomElementConstructor>(superclass
8406
8406
  new (...params: any[]): {
8407
8407
  readonly baseCdnUrl: string;
8408
8408
  injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
8409
- "__#36547@#logger": Logger;
8410
- "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
8409
+ "__#39126@#logger": Logger;
8410
+ "__#39126@#wrapLogger"(logger: Partial<Logger>): Logger;
8411
8411
  get logger(): Logger;
8412
8412
  set logger(logger: Partial<Logger>);
8413
8413
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
@@ -8743,12 +8743,12 @@ declare const injectNpmLibMixin: <T extends CustomElementConstructor>(superclass
8743
8743
  declare const cspNonceMixin: <T extends CustomElementConstructor>(superclass: T) => {
8744
8744
  new (...params: any[]): {
8745
8745
  readonly nonce: string;
8746
- "__#36554@#setNonce"(): void;
8746
+ "__#39133@#setNonce"(): void;
8747
8747
  init(): Promise<void>;
8748
- "__#36549@#observeMappings": {};
8748
+ "__#39128@#observeMappings": {};
8749
8749
  observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
8750
8750
  observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
8751
- "__#36548@#isInit": boolean;
8751
+ "__#39127@#isInit": boolean;
8752
8752
  connectedCallback: (() => void) & (() => void) & (() => void);
8753
8753
  accessKey: string;
8754
8754
  readonly accessKeyLabel: string;
@@ -9074,14 +9074,474 @@ declare const cspNonceMixin: <T extends CustomElementConstructor>(superclass: T)
9074
9074
  tabIndex: number;
9075
9075
  blur(): void;
9076
9076
  focus(options?: FocusOptions): void;
9077
- "__#36547@#logger": Logger;
9078
- "__#36547@#wrapLogger"(logger: Partial<Logger>): Logger;
9077
+ "__#39126@#logger": Logger;
9078
+ "__#39126@#wrapLogger"(logger: Partial<Logger>): Logger;
9079
9079
  get logger(): Logger;
9080
9080
  set logger(logger: Partial<Logger>);
9081
9081
  onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
9082
9082
  };
9083
9083
  } & T;
9084
9084
 
9085
+ type FlowInputConfig = {
9086
+ flowId: string;
9087
+ client?: Record<string, any>;
9088
+ form?: Record<string, any>;
9089
+ tenant?: string;
9090
+ outboundAppId?: string;
9091
+ };
9092
+ /**
9093
+ * Exposes a widget's caller-supplied flow inputs (`client.*` / `form.*`) and
9094
+ * builds the internal `<descope-wc>` flow template with the widget's shared
9095
+ * config, forwarding those inputs into the flow-start call - the same way they
9096
+ * flow for a directly-embedded `<Descope>` flow.
9097
+ *
9098
+ * `createFlowTemplate` (the method) wraps the `createFlowTemplate` helper so
9099
+ * every flow a widget runs gets the shared config + inputs from one place,
9100
+ * instead of each call site rebuilding the config. Composes `themeMixin` for
9101
+ * the resolved `theme` / `styleId`; the rest are plain attribute reads.
9102
+ */
9103
+ declare const flowInputMixin: <T extends CustomElementConstructor>(superclass: T) => {
9104
+ new (...params: any[]): {
9105
+ readonly clientInput: Record<string, any>;
9106
+ readonly formInput: string;
9107
+ "__#39144@#resolveForm"(form?: Record<string, any>): Record<string, any> | string | undefined;
9108
+ createFlowTemplate({ flowId, client, form, ...overrides }: FlowInputConfig): HTMLTemplateElement;
9109
+ "__#39142@#globalStyle": InjectedStyle;
9110
+ "__#39142@#tenantStyle": InjectedStyle;
9111
+ "__#39142@#customStyle": InjectedStyle;
9112
+ readonly theme: ThemeOptions;
9113
+ readonly styleId: string;
9114
+ readonly themeOverride: Record<string, any>;
9115
+ "__#39142@#getThemeOverrideString"(): string;
9116
+ "__#39142@#_themeResource": Promise<void | Record<string, any>>;
9117
+ "__#39142@#_tenantThemeResource": Promise<Record<string, any>>;
9118
+ "__#39142@#fetchTheme"(): Promise<Record<string, any>>;
9119
+ readonly "__#39142@#themeResource": Promise<void | Record<string, any>>;
9120
+ "__#39142@#loadGlobalStyle"(): Promise<void>;
9121
+ "__#39142@#fetchTenantTheme"(): Promise<Record<string, any>>;
9122
+ readonly "__#39142@#tenantThemeResource": Promise<Record<string, any>>;
9123
+ "__#39142@#loadTenantStyle"(): Promise<void>;
9124
+ "__#39142@#loadCustomStyle"(): Promise<void>;
9125
+ "__#39142@#loadComponentsStyle"(): Promise<void>;
9126
+ "__#39142@#getFontsConfig"(): Promise<Record<string, {
9127
+ url?: string;
9128
+ }>>;
9129
+ "__#39142@#loadFonts"(): Promise<void>;
9130
+ "__#39142@#applyTheme"(): Promise<void>;
9131
+ "__#39142@#onThemeChange": () => void;
9132
+ "__#39142@#loadTheme"(): void;
9133
+ "__#39142@#toggleOsThemeChangeListener": (listen: boolean) => void;
9134
+ init(): Promise<void>;
9135
+ injectStyle: ((cssString: string, { prepend }?: {
9136
+ prepend?: boolean;
9137
+ }) => {
9138
+ styleEle: HTMLStyleElement;
9139
+ ref: HTMLElement | ShadowRoot;
9140
+ replaceSync(cssString: string): void;
9141
+ readonly cssRules: CSSRuleList;
9142
+ } | CSSStyleSheet) & ((cssString: string, { prepend }?: {
9143
+ prepend?: boolean;
9144
+ }) => {
9145
+ styleEle: HTMLStyleElement;
9146
+ ref: HTMLElement | ShadowRoot;
9147
+ replaceSync(cssString: string): void;
9148
+ readonly cssRules: CSSRuleList;
9149
+ } | CSSStyleSheet);
9150
+ nonce: string;
9151
+ "__#39133@#setNonce": (() => void) & (() => void);
9152
+ "__#39128@#observeMappings": {} & {} & {} & {} & {} & {} & {} & {} & {} & {};
9153
+ observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
9154
+ observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
9155
+ "__#39127@#isInit": boolean;
9156
+ connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
9157
+ accessKey: string;
9158
+ readonly accessKeyLabel: string;
9159
+ autocapitalize: string;
9160
+ dir: string;
9161
+ draggable: boolean;
9162
+ hidden: boolean;
9163
+ inert: boolean;
9164
+ innerText: string;
9165
+ lang: string;
9166
+ readonly offsetHeight: number;
9167
+ readonly offsetLeft: number;
9168
+ readonly offsetParent: Element;
9169
+ readonly offsetTop: number;
9170
+ readonly offsetWidth: number;
9171
+ outerText: string;
9172
+ popover: string;
9173
+ spellcheck: boolean;
9174
+ title: string;
9175
+ translate: boolean;
9176
+ attachInternals(): ElementInternals;
9177
+ click(): void;
9178
+ hidePopover(): void;
9179
+ showPopover(): void;
9180
+ togglePopover(force?: boolean): boolean;
9181
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
9182
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
9183
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
9184
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
9185
+ attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
9186
+ readonly attributes: NamedNodeMap;
9187
+ readonly classList: DOMTokenList;
9188
+ className: string;
9189
+ readonly clientHeight: number;
9190
+ readonly clientLeft: number;
9191
+ readonly clientTop: number;
9192
+ readonly clientWidth: number;
9193
+ id: string;
9194
+ readonly localName: string;
9195
+ readonly namespaceURI: string;
9196
+ onfullscreenchange: (this: Element, ev: Event) => any;
9197
+ onfullscreenerror: (this: Element, ev: Event) => any;
9198
+ outerHTML: string;
9199
+ readonly ownerDocument: Document;
9200
+ readonly part: DOMTokenList;
9201
+ readonly prefix: string;
9202
+ readonly scrollHeight: number;
9203
+ scrollLeft: number;
9204
+ scrollTop: number;
9205
+ readonly scrollWidth: number;
9206
+ readonly shadowRoot: ShadowRoot;
9207
+ slot: string;
9208
+ readonly tagName: string;
9209
+ attachShadow(init: ShadowRootInit): ShadowRoot;
9210
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
9211
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
9212
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
9213
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
9214
+ closest<E extends Element = Element>(selectors: string): E;
9215
+ computedStyleMap(): StylePropertyMapReadOnly;
9216
+ getAttribute(qualifiedName: string): string;
9217
+ getAttributeNS(namespace: string, localName: string): string;
9218
+ getAttributeNames(): string[];
9219
+ getAttributeNode(qualifiedName: string): Attr;
9220
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
9221
+ getBoundingClientRect(): DOMRect;
9222
+ getClientRects(): DOMRectList;
9223
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
9224
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
9225
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
9226
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
9227
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
9228
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
9229
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
9230
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
9231
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
9232
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
9233
+ hasAttribute(qualifiedName: string): boolean;
9234
+ hasAttributeNS(namespace: string, localName: string): boolean;
9235
+ hasAttributes(): boolean;
9236
+ hasPointerCapture(pointerId: number): boolean;
9237
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
9238
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
9239
+ insertAdjacentText(where: InsertPosition, data: string): void;
9240
+ matches(selectors: string): boolean;
9241
+ releasePointerCapture(pointerId: number): void;
9242
+ removeAttribute(qualifiedName: string): void;
9243
+ removeAttributeNS(namespace: string, localName: string): void;
9244
+ removeAttributeNode(attr: Attr): Attr;
9245
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
9246
+ requestPointerLock(): void;
9247
+ scroll(options?: ScrollToOptions): void;
9248
+ scroll(x: number, y: number): void;
9249
+ scrollBy(options?: ScrollToOptions): void;
9250
+ scrollBy(x: number, y: number): void;
9251
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
9252
+ scrollTo(options?: ScrollToOptions): void;
9253
+ scrollTo(x: number, y: number): void;
9254
+ setAttribute(qualifiedName: string, value: string): void;
9255
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
9256
+ setAttributeNode(attr: Attr): Attr;
9257
+ setAttributeNodeNS(attr: Attr): Attr;
9258
+ setPointerCapture(pointerId: number): void;
9259
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
9260
+ webkitMatchesSelector(selectors: string): boolean;
9261
+ readonly baseURI: string;
9262
+ readonly childNodes: NodeListOf<ChildNode>;
9263
+ readonly firstChild: ChildNode;
9264
+ readonly isConnected: boolean;
9265
+ readonly lastChild: ChildNode;
9266
+ readonly nextSibling: ChildNode;
9267
+ readonly nodeName: string;
9268
+ readonly nodeType: number;
9269
+ nodeValue: string;
9270
+ readonly parentElement: HTMLElement;
9271
+ readonly parentNode: ParentNode;
9272
+ readonly previousSibling: ChildNode;
9273
+ textContent: string;
9274
+ appendChild<T_1 extends Node>(node: T_1): T_1;
9275
+ cloneNode(deep?: boolean): Node;
9276
+ compareDocumentPosition(other: Node): number;
9277
+ contains(other: Node): boolean;
9278
+ getRootNode(options?: GetRootNodeOptions): Node;
9279
+ hasChildNodes(): boolean;
9280
+ insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
9281
+ isDefaultNamespace(namespace: string): boolean;
9282
+ isEqualNode(otherNode: Node): boolean;
9283
+ isSameNode(otherNode: Node): boolean;
9284
+ lookupNamespaceURI(prefix: string): string;
9285
+ lookupPrefix(namespace: string): string;
9286
+ normalize(): void;
9287
+ removeChild<T_3 extends Node>(child: T_3): T_3;
9288
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
9289
+ readonly ELEMENT_NODE: 1;
9290
+ readonly ATTRIBUTE_NODE: 2;
9291
+ readonly TEXT_NODE: 3;
9292
+ readonly CDATA_SECTION_NODE: 4;
9293
+ readonly ENTITY_REFERENCE_NODE: 5;
9294
+ readonly ENTITY_NODE: 6;
9295
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
9296
+ readonly COMMENT_NODE: 8;
9297
+ readonly DOCUMENT_NODE: 9;
9298
+ readonly DOCUMENT_TYPE_NODE: 10;
9299
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
9300
+ readonly NOTATION_NODE: 12;
9301
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
9302
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
9303
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
9304
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
9305
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
9306
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
9307
+ dispatchEvent(event: Event): boolean;
9308
+ ariaAtomic: string;
9309
+ ariaAutoComplete: string;
9310
+ ariaBusy: string;
9311
+ ariaChecked: string;
9312
+ ariaColCount: string;
9313
+ ariaColIndex: string;
9314
+ ariaColSpan: string;
9315
+ ariaCurrent: string;
9316
+ ariaDescription: string;
9317
+ ariaDisabled: string;
9318
+ ariaExpanded: string;
9319
+ ariaHasPopup: string;
9320
+ ariaHidden: string;
9321
+ ariaInvalid: string;
9322
+ ariaKeyShortcuts: string;
9323
+ ariaLabel: string;
9324
+ ariaLevel: string;
9325
+ ariaLive: string;
9326
+ ariaModal: string;
9327
+ ariaMultiLine: string;
9328
+ ariaMultiSelectable: string;
9329
+ ariaOrientation: string;
9330
+ ariaPlaceholder: string;
9331
+ ariaPosInSet: string;
9332
+ ariaPressed: string;
9333
+ ariaReadOnly: string;
9334
+ ariaRequired: string;
9335
+ ariaRoleDescription: string;
9336
+ ariaRowCount: string;
9337
+ ariaRowIndex: string;
9338
+ ariaRowSpan: string;
9339
+ ariaSelected: string;
9340
+ ariaSetSize: string;
9341
+ ariaSort: string;
9342
+ ariaValueMax: string;
9343
+ ariaValueMin: string;
9344
+ ariaValueNow: string;
9345
+ ariaValueText: string;
9346
+ role: string;
9347
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions): Animation;
9348
+ getAnimations(options?: GetAnimationsOptions): Animation[];
9349
+ after(...nodes: (string | Node)[]): void;
9350
+ before(...nodes: (string | Node)[]): void;
9351
+ remove(): void;
9352
+ replaceWith(...nodes: (string | Node)[]): void;
9353
+ innerHTML: string;
9354
+ readonly nextElementSibling: Element;
9355
+ readonly previousElementSibling: Element;
9356
+ readonly childElementCount: number;
9357
+ readonly children: HTMLCollection;
9358
+ readonly firstElementChild: Element;
9359
+ readonly lastElementChild: Element;
9360
+ append(...nodes: (string | Node)[]): void;
9361
+ prepend(...nodes: (string | Node)[]): void;
9362
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
9363
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
9364
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
9365
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
9366
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
9367
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
9368
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
9369
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
9370
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
9371
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
9372
+ replaceChildren(...nodes: (string | Node)[]): void;
9373
+ readonly assignedSlot: HTMLSlotElement;
9374
+ readonly attributeStyleMap: StylePropertyMap;
9375
+ readonly style: CSSStyleDeclaration;
9376
+ contentEditable: string;
9377
+ enterKeyHint: string;
9378
+ inputMode: string;
9379
+ readonly isContentEditable: boolean;
9380
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
9381
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
9382
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
9383
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
9384
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
9385
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
9386
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
9387
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
9388
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
9389
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
9390
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
9391
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
9392
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
9393
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
9394
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
9395
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
9396
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
9397
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
9398
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
9399
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
9400
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
9401
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
9402
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
9403
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
9404
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
9405
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
9406
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
9407
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
9408
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
9409
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
9410
+ onerror: OnErrorEventHandlerNonNull;
9411
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
9412
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
9413
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
9414
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
9415
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
9416
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
9417
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
9418
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
9419
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
9420
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
9421
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
9422
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
9423
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
9424
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
9425
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
9426
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
9427
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
9428
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
9429
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
9430
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
9431
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
9432
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
9433
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
9434
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
9435
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
9436
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
9437
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
9438
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
9439
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
9440
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
9441
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
9442
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
9443
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
9444
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
9445
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
9446
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
9447
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
9448
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
9449
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
9450
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
9451
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
9452
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
9453
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
9454
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
9455
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
9456
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
9457
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
9458
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
9459
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
9460
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
9461
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
9462
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
9463
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
9464
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
9465
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
9466
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
9467
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
9468
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
9469
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
9470
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
9471
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
9472
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
9473
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
9474
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
9475
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
9476
+ autofocus: boolean;
9477
+ readonly dataset: DOMStringMap;
9478
+ tabIndex: number;
9479
+ blur(): void;
9480
+ focus(options?: FocusOptions): void;
9481
+ "__#39126@#logger": Logger;
9482
+ "__#39126@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
9483
+ get logger(): Logger;
9484
+ set logger(logger: Partial<Logger>);
9485
+ onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
9486
+ contentRootElement: HTMLElement;
9487
+ rootElement: HTMLElement;
9488
+ readonly config: Promise<Config>;
9489
+ "__#39132@#configCacheClear": (() => void) & (() => void);
9490
+ "__#39132@#_configResource": Promise<Config>;
9491
+ "__#39132@#fetchConfig": (() => Promise<Config>) & (() => Promise<Config>);
9492
+ "__#39131@#callbacks": Map<string, () => void> & Map<string, () => void>;
9493
+ onReset: ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void);
9494
+ reset: ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>);
9495
+ "__#39129@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
9496
+ "__#39130@#lastBaseUrl"?: string;
9497
+ "__#39130@#workingBaseUrl"?: string;
9498
+ "__#39130@#failedUrls": Set<string>;
9499
+ "__#39130@#getResourceUrls": ((filename: string) => (URL & {
9500
+ baseUrl: string;
9501
+ }) | (URL & {
9502
+ baseUrl: string;
9503
+ })[]) & ((filename: string) => (URL & {
9504
+ baseUrl: string;
9505
+ }) | (URL & {
9506
+ baseUrl: string;
9507
+ })[]) & ((filename: string) => (URL & {
9508
+ baseUrl: string;
9509
+ }) | (URL & {
9510
+ baseUrl: string;
9511
+ })[]);
9512
+ "__#39130@#createResourceUrl": ((filename: string, baseUrl: string) => URL & {
9513
+ baseUrl: string;
9514
+ }) & ((filename: string, baseUrl: string) => URL & {
9515
+ baseUrl: string;
9516
+ }) & ((filename: string, baseUrl: string) => URL & {
9517
+ baseUrl: string;
9518
+ });
9519
+ fetchStaticResource: (<F extends "text" | "json">(filename: string, format: F) => Promise<{
9520
+ body: F extends "json" ? Record<string, any> : string;
9521
+ headers: Record<string, string>;
9522
+ }>) & (<F_1 extends "text" | "json">(filename: string, format: F_1) => Promise<{
9523
+ body: F_1 extends "json" ? Record<string, any> : string;
9524
+ headers: Record<string, string>;
9525
+ }>) & (<F_2 extends "text" | "json">(filename: string, format: F_2) => Promise<{
9526
+ body: F_2 extends "json" ? Record<string, any> : string;
9527
+ headers: Record<string, string>;
9528
+ }>);
9529
+ readonly baseStaticUrl: string;
9530
+ readonly baseUrl: string;
9531
+ readonly projectId: string;
9532
+ "__#39136@#getComponentsVersion"(): Promise<string>;
9533
+ "__#39136@#getComponentsVersionSri"(): Promise<string>;
9534
+ "__#39136@#descopeUi": Promise<any>;
9535
+ readonly descopeUi: Promise<any>;
9536
+ "__#39136@#loadDescopeUiComponent"(componentName: string): Promise<any>;
9537
+ "__#39136@#getDescopeUi"(): Promise<any>;
9538
+ loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
9539
+ readonly baseCdnUrl: string;
9540
+ injectNpmLib(libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string): Promise<ScriptData>;
9541
+ readonly tenantId: string;
9542
+ };
9543
+ } & T;
9544
+
9085
9545
  declare global {
9086
9546
  interface HTMLElement {
9087
9547
  attributeChangedCallback(attrName: string, oldValue: string | null, newValue: string | null): void;
@@ -9089,4 +9549,4 @@ declare global {
9089
9549
  }
9090
9550
  }
9091
9551
 
9092
- export { type CheckValueFn, type ClientCondition, type ClientConditionResult, type ClientScript, type ComponentsConfig, type ComponentsDynamicAttrs, type Config, DEFAULT_STYLE_ID, type FlowConfig, type InjectedStyle, type LogLevel, type Logger, type ProjectConfiguration, type ThemeOptions, type WidgetConfig, baseUrlMixin, configMixin, cookieConfigMixin, createFetchWidgetPagesMixin, createStateManagementMixin, createValidateAttributesMixin, cspNonceMixin, debuggerMixin, descopeUiMixin, formMixin, getResourceUrl, initElementMixin, initLifecycleMixin, injectNpmLibMixin, injectStyleMixin, localeMixin, loggerMixin, modalMixin, notificationsMixin, observeAttributesMixin, projectIdMixin, staticResourcesMixin, tenantIdMixin, themeMixin, widgetConfigMixin, widgetIdMixin };
9552
+ export { type CheckValueFn, type ClientCondition, type ClientConditionResult, type ClientScript, type ComponentsConfig, type ComponentsDynamicAttrs, type Config, DEFAULT_STYLE_ID, type FlowConfig, type InjectedStyle, type LogLevel, type Logger, type ProjectConfiguration, type ThemeOptions, type WidgetConfig, baseUrlMixin, configMixin, cookieConfigMixin, createFetchWidgetPagesMixin, createStateManagementMixin, createValidateAttributesMixin, cspNonceMixin, debuggerMixin, descopeUiMixin, flowInputMixin, formMixin, getResourceUrl, initElementMixin, initLifecycleMixin, injectNpmLibMixin, injectStyleMixin, localeMixin, loggerMixin, modalMixin, notificationsMixin, observeAttributesMixin, projectIdMixin, staticResourcesMixin, tenantIdMixin, themeMixin, widgetConfigMixin, widgetIdMixin };