@genesislcap/foundation-auth 14.225.3 → 14.225.4-alpha-9342136.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.
- package/dist/dts/machine/guards.d.ts.map +1 -1
- package/dist/dts/main/main.d.ts +45 -29
- package/dist/dts/main/main.d.ts.map +1 -1
- package/dist/dts/mapper/map.d.ts.map +1 -1
- package/dist/dts/routes/base.d.ts +51 -35
- package/dist/dts/routes/base.d.ts.map +1 -1
- package/dist/esm/credential/credentialManager.js +2 -2
- package/dist/esm/credential/credentialManager.test.js +7 -7
- package/dist/esm/machine/machine.js +1 -1
- package/dist/esm/services/idp.js +1 -1
- package/dist/esm/store/authFormEntry.js +1 -1
- package/dist/foundation-auth.api.json +243 -99
- package/dist/foundation-auth.d.ts +45 -29
- package/docs/api/foundation-auth.createmessagemapper.md +7 -1
- package/docs/api/foundation-auth.fromdtoack.md +12 -1
- package/docs/api/foundation-auth.fromdtonack.md +12 -1
- package/docs/api/foundation-auth.fromdtostringarray.md +12 -1
- package/docs/api/foundation-auth.fromidpdto.md +12 -1
- package/docs/api/foundation-auth.hasdtoerrorwarningcode.md +12 -1
- package/docs/api/foundation-auth.is200nack.md +12 -1
- package/docs/api/foundation-auth.ismappingerror.md +12 -1
- package/docs/api/foundation-auth.md +8 -8
- package/package.json +20 -20
- /package/docs/{api-report.md → api-report.md.api.md} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"guards.d.ts","sourceRoot":"","sources":["../../../src/machine/guards.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AAGtD;;;;;GAKG;AACH,eAAO,MAAM,SAAS,
|
|
1
|
+
{"version":3,"file":"guards.d.ts","sourceRoot":"","sources":["../../../src/machine/guards.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AAGtD;;;;;GAKG;AACH,eAAO,MAAM,SAAS,yBACb,WAAW,GAAG,gBAAgB,OAAO,CAAC,sCAIpC,CAAC"}
|
package/dist/dts/main/main.d.ts
CHANGED
|
@@ -26,11 +26,15 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
|
|
|
26
26
|
readonly offsetTop: number;
|
|
27
27
|
readonly offsetWidth: number;
|
|
28
28
|
outerText: string;
|
|
29
|
+
popover: string;
|
|
29
30
|
spellcheck: boolean;
|
|
30
31
|
title: string;
|
|
31
32
|
translate: boolean;
|
|
32
33
|
attachInternals(): ElementInternals;
|
|
33
34
|
click(): void;
|
|
35
|
+
hidePopover(): void;
|
|
36
|
+
showPopover(): void;
|
|
37
|
+
togglePopover(force?: boolean): boolean;
|
|
34
38
|
addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
35
39
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
36
40
|
removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -59,9 +63,12 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
|
|
|
59
63
|
slot: string;
|
|
60
64
|
readonly tagName: string;
|
|
61
65
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
66
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
62
67
|
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
|
63
68
|
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
|
69
|
+
closest<K_5 extends keyof MathMLElementTagNameMap>(selector: K_5): MathMLElementTagNameMap[K_5];
|
|
64
70
|
closest<E extends Element = Element>(selectors: string): E;
|
|
71
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
65
72
|
getAttribute(qualifiedName: string): string;
|
|
66
73
|
getAttributeNS(namespace: string, localName: string): string;
|
|
67
74
|
getAttributeNames(): string[];
|
|
@@ -70,11 +77,14 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
|
|
|
70
77
|
getBoundingClientRect(): DOMRect;
|
|
71
78
|
getClientRects(): DOMRectList;
|
|
72
79
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
73
|
-
getElementsByTagName<
|
|
74
|
-
getElementsByTagName<
|
|
80
|
+
getElementsByTagName<K_6 extends keyof HTMLElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<HTMLElementTagNameMap[K_6]>;
|
|
81
|
+
getElementsByTagName<K_7 extends keyof SVGElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<SVGElementTagNameMap[K_7]>;
|
|
82
|
+
getElementsByTagName<K_8 extends keyof MathMLElementTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<MathMLElementTagNameMap[K_8]>;
|
|
83
|
+
getElementsByTagName<K_9 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_9): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_9]>;
|
|
75
84
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
76
85
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
77
86
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
87
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
78
88
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
79
89
|
hasAttribute(qualifiedName: string): boolean;
|
|
80
90
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -132,24 +142,24 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
|
|
|
132
142
|
normalize(): void;
|
|
133
143
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
134
144
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
135
|
-
readonly
|
|
136
|
-
readonly
|
|
137
|
-
readonly
|
|
138
|
-
readonly
|
|
139
|
-
readonly
|
|
140
|
-
readonly
|
|
141
|
-
readonly
|
|
142
|
-
readonly
|
|
143
|
-
readonly
|
|
144
|
-
readonly
|
|
145
|
-
readonly
|
|
146
|
-
readonly
|
|
147
|
-
readonly
|
|
148
|
-
readonly
|
|
149
|
-
readonly
|
|
150
|
-
readonly
|
|
151
|
-
readonly
|
|
152
|
-
readonly
|
|
145
|
+
readonly ELEMENT_NODE: 1;
|
|
146
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
147
|
+
readonly TEXT_NODE: 3;
|
|
148
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
149
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
150
|
+
readonly ENTITY_NODE: 6;
|
|
151
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
152
|
+
readonly COMMENT_NODE: 8;
|
|
153
|
+
readonly DOCUMENT_NODE: 9;
|
|
154
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
155
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
156
|
+
readonly NOTATION_NODE: 12;
|
|
157
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
158
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
159
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
160
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
161
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
162
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
153
163
|
dispatchEvent(event: Event): boolean;
|
|
154
164
|
ariaAtomic: string;
|
|
155
165
|
ariaAutoComplete: string;
|
|
@@ -157,9 +167,9 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
|
|
|
157
167
|
ariaChecked: string;
|
|
158
168
|
ariaColCount: string;
|
|
159
169
|
ariaColIndex: string;
|
|
160
|
-
ariaColIndexText: string;
|
|
161
170
|
ariaColSpan: string;
|
|
162
171
|
ariaCurrent: string;
|
|
172
|
+
ariaDescription: string;
|
|
163
173
|
ariaDisabled: string;
|
|
164
174
|
ariaExpanded: string;
|
|
165
175
|
ariaHasPopup: string;
|
|
@@ -181,7 +191,6 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
|
|
|
181
191
|
ariaRoleDescription: string;
|
|
182
192
|
ariaRowCount: string;
|
|
183
193
|
ariaRowIndex: string;
|
|
184
|
-
ariaRowIndexText: string;
|
|
185
194
|
ariaRowSpan: string;
|
|
186
195
|
ariaSelected: string;
|
|
187
196
|
ariaSetSize: string;
|
|
@@ -206,17 +215,19 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
|
|
|
206
215
|
readonly lastElementChild: Element;
|
|
207
216
|
append(...nodes: (string | Node)[]): void;
|
|
208
217
|
prepend(...nodes: (string | Node)[]): void;
|
|
209
|
-
querySelector<
|
|
210
|
-
querySelector<
|
|
218
|
+
querySelector<K_10 extends keyof HTMLElementTagNameMap>(selectors: K_10): HTMLElementTagNameMap[K_10];
|
|
219
|
+
querySelector<K_11 extends keyof SVGElementTagNameMap>(selectors: K_11): SVGElementTagNameMap[K_11];
|
|
220
|
+
querySelector<K_12 extends keyof MathMLElementTagNameMap>(selectors: K_12): MathMLElementTagNameMap[K_12];
|
|
221
|
+
querySelector<K_13 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_13): HTMLElementDeprecatedTagNameMap[K_13];
|
|
211
222
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
212
|
-
querySelectorAll<
|
|
213
|
-
querySelectorAll<
|
|
223
|
+
querySelectorAll<K_14 extends keyof HTMLElementTagNameMap>(selectors: K_14): NodeListOf<HTMLElementTagNameMap[K_14]>;
|
|
224
|
+
querySelectorAll<K_15 extends keyof SVGElementTagNameMap>(selectors: K_15): NodeListOf<SVGElementTagNameMap[K_15]>;
|
|
225
|
+
querySelectorAll<K_16 extends keyof MathMLElementTagNameMap>(selectors: K_16): NodeListOf<MathMLElementTagNameMap[K_16]>;
|
|
226
|
+
querySelectorAll<K_17 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_17): NodeListOf<HTMLElementDeprecatedTagNameMap[K_17]>;
|
|
214
227
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
215
228
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
216
229
|
readonly assignedSlot: HTMLSlotElement;
|
|
217
|
-
|
|
218
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
219
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
230
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
220
231
|
readonly style: CSSStyleDeclaration;
|
|
221
232
|
contentEditable: string;
|
|
222
233
|
enterKeyHint: string;
|
|
@@ -229,6 +240,7 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
|
|
|
229
240
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
230
241
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
231
242
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
243
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
232
244
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
233
245
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
234
246
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -237,7 +249,9 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
|
|
|
237
249
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
238
250
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
239
251
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
252
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
240
253
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
254
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
241
255
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
242
256
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
243
257
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -270,6 +284,7 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
|
|
|
270
284
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
271
285
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
272
286
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
287
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
273
288
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
274
289
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
275
290
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -286,6 +301,7 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
|
|
|
286
301
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
287
302
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
288
303
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
304
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
289
305
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
290
306
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
291
307
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"AACA,OAAO,EACL,eAAe,EAKhB,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAAE,SAAS,EAAwB,MAAM,4BAA4B,CAAC;AAG7E,OAAO,+BAA+B,CAAC;AACvC,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,qBAAqB,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAI1E;;GAEG;AACH,KAAK,QAAQ,GAAG,YAAY,GAAG,IAAI,CAAC,qBAAqB,EAAE,oBAAoB,CAAC,GAAG,EAAE,CAAC;;;;;;;;;;;;mCAgGpF;;OAEG
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"AACA,OAAO,EACL,eAAe,EAKhB,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAAE,SAAS,EAAwB,MAAM,4BAA4B,CAAC;AAG7E,OAAO,+BAA+B,CAAC;AACvC,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,qBAAqB,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAI1E;;GAEG;AACH,KAAK,QAAQ,GAAG,YAAY,GAAG,IAAI,CAAC,qBAAqB,EAAE,oBAAoB,CAAC,GAAG,EAAE,CAAC;;;;;;;;;;;;mCAgGpF;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAhGL;;;;;;;;;;;;;;;GAeG;AACH,qBAAa,cAAe,SAAQ,mBAAmC;IACrE;;OAEG;IACQ,KAAK,EAAE,SAAS,CAAC;IAE5B;;;OAGG;IACuB,MAAM,EAAE,gBAAgB,CAAC;IAEnD;;OAEG;IACQ,SAAS,EAAE,SAAS,CAAC;IAEhC;;OAEG;IACH,SAAS,CAAC,cAAc,EAAE,eAAe,CAAC;IAE1C;;OAEG;IACH,iBAAiB;IAQjB;;OAEG;IACH,oBAAoB;IAOpB;;OAEG;IACH,SAAS,CAAC,sBAAsB;IAIhC;;OAEG;IACH,SAAS,CAAC,WAAW;IAWrB;;OAEG;IACH,SAAS,CAAC,cAAc;IAIxB;;OAEG;IACH,SAAS,CAAC,iBAAiB;IAI3B;;OAEG;IACH,SAAS,CAAC,oBAAoB;IAI9B;;OAEG;IACH,SAAS,CAAC,UAAU;IAKpB;;OAEG;IACH,SAAS,CAAC,eAAe;IAIzB;;OAEG;IACH,IAAI,OAAO,YAKV;IAED;;OAEG;IACH,IACI,UAAU,WAEb;IAED;;OAEG;IACH,eAAe,IAAI,IAAI;CAMxB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,qBAKa,QAAS,SAAQ,cAAc;IAC1C;;OAEG;IACS,SAAS,EAAE,OAAO,CAAS;IAEvC;;OAEG;IACG,iBAAiB;IAKvB;;OAEG;cACa,WAAW;IAM3B;;;;OAIG;IACH,IAAI,OAAO,YAEV;CACF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"map.d.ts","sourceRoot":"","sources":["../../../src/mapper/map.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AAEjC;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC;AAE3E;;GAEG;AACH,MAAM,WAAW,aAAa,CAC5B,OAAO,SAAS,mBAAmB,EACnC,CAAC,SAAS,MAAM,OAAO,GAAG,MAAM,OAAO,CACvC,SAAQ,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,CAAC;IAC7E;;;;;;OAMG;IACH,GAAG,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;CACvC;AAED;;GAEG;AACH,qBAAa,oBAAoB,CAC/B,OAAO,SAAS,mBAAmB,EACnC,CAAC,SAAS,MAAM,OAAO,GAAG,MAAM,OAAO,CACvC,YAAW,aAAa,CAAC,OAAO,EAAE,CAAC,CAAC;IAExB,OAAO,CAAC,GAAG,CAA4B;IAEnD,sCAAsC;IACtC,GAAG,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG,IAAI;IAIrC;;;;;OAKG;IACH,GAAG,CAAC,GAAG,EAAE,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,GAAG,SAAS;IAInC;;;;;;OAMG;IACH,GAAG,CAAC,GAAG,EAAE,CAAC,GAAG,OAAO;IAIpB;;;;;;OAMG;IACH,MAAM,CAAC,GAAG,EAAE,CAAC,GAAG,OAAO;IAQvB;;;OAGG;IACH,KAAK;IAIL;;;;;OAKG;IACH,IAAI,IAAI,IAAI,MAAM,CAEjB;CACF;AAED;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"map.d.ts","sourceRoot":"","sources":["../../../src/mapper/map.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AAEjC;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC;AAE3E;;GAEG;AACH,MAAM,WAAW,aAAa,CAC5B,OAAO,SAAS,mBAAmB,EACnC,CAAC,SAAS,MAAM,OAAO,GAAG,MAAM,OAAO,CACvC,SAAQ,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,CAAC;IAC7E;;;;;;OAMG;IACH,GAAG,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;CACvC;AAED;;GAEG;AACH,qBAAa,oBAAoB,CAC/B,OAAO,SAAS,mBAAmB,EACnC,CAAC,SAAS,MAAM,OAAO,GAAG,MAAM,OAAO,CACvC,YAAW,aAAa,CAAC,OAAO,EAAE,CAAC,CAAC;IAExB,OAAO,CAAC,GAAG,CAA4B;IAEnD,sCAAsC;IACtC,GAAG,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG,IAAI;IAIrC;;;;;OAKG;IACH,GAAG,CAAC,GAAG,EAAE,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,GAAG,SAAS;IAInC;;;;;;OAMG;IACH,GAAG,CAAC,GAAG,EAAE,CAAC,GAAG,OAAO;IAIpB;;;;;;OAMG;IACH,MAAM,CAAC,GAAG,EAAE,CAAC,GAAG,OAAO;IAQvB;;;OAGG;IACH,KAAK;IAIL;;;;;OAKG;IACH,IAAI,IAAI,IAAI,MAAM,CAEjB;CACF;AAED;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB,sFAG3B,cAAc,OAAO,EAAE,CAAC,CAA2C,CAAC"}
|
|
@@ -12,11 +12,11 @@ type EventMap = AuthEventMap & AuthFormEntryEventMap & {};
|
|
|
12
12
|
/**
|
|
13
13
|
* @internal
|
|
14
14
|
*/
|
|
15
|
-
export declare const inputEmit: <K extends import("@genesislcap/foundation-events").KeysMatching<EventMap, string>>(type: K, options?: import("@genesislcap/foundation-events").EmitOptions) => Binding
|
|
15
|
+
export declare const inputEmit: <K extends import("@genesislcap/foundation-events").KeysMatching<EventMap, string>>(type: K, options?: import("@genesislcap/foundation-events").EmitOptions) => Binding;
|
|
16
16
|
/**
|
|
17
17
|
* @internal
|
|
18
18
|
*/
|
|
19
|
-
export declare const selectEmit: <K extends import("@genesislcap/foundation-events").KeysMatching<EventMap, string>>(type: K, options?: import("@genesislcap/foundation-events").EmitOptions) => Binding
|
|
19
|
+
export declare const selectEmit: <K extends import("@genesislcap/foundation-events").KeysMatching<EventMap, string>>(type: K, options?: import("@genesislcap/foundation-events").EmitOptions) => Binding;
|
|
20
20
|
/**
|
|
21
21
|
* @internal
|
|
22
22
|
*/
|
|
@@ -40,11 +40,15 @@ declare const ConfigHostElement_base: abstract new (...args: any[]) => {
|
|
|
40
40
|
readonly offsetTop: number;
|
|
41
41
|
readonly offsetWidth: number;
|
|
42
42
|
outerText: string;
|
|
43
|
+
popover: string;
|
|
43
44
|
spellcheck: boolean;
|
|
44
45
|
title: string;
|
|
45
46
|
translate: boolean;
|
|
46
47
|
attachInternals(): ElementInternals;
|
|
47
48
|
click(): void;
|
|
49
|
+
hidePopover(): void;
|
|
50
|
+
showPopover(): void;
|
|
51
|
+
togglePopover(force?: boolean): boolean;
|
|
48
52
|
addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
49
53
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
50
54
|
removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -66,6 +70,9 @@ declare const ConfigHostElement_base: abstract new (...args: any[]) => {
|
|
|
66
70
|
readonly part: DOMTokenList;
|
|
67
71
|
readonly prefix: string;
|
|
68
72
|
readonly scrollHeight: number;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
69
76
|
scrollLeft: number;
|
|
70
77
|
scrollTop: number;
|
|
71
78
|
readonly scrollWidth: number;
|
|
@@ -73,9 +80,12 @@ declare const ConfigHostElement_base: abstract new (...args: any[]) => {
|
|
|
73
80
|
slot: string;
|
|
74
81
|
readonly tagName: string;
|
|
75
82
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
83
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
76
84
|
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
|
77
85
|
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
|
86
|
+
closest<K_5 extends keyof MathMLElementTagNameMap>(selector: K_5): MathMLElementTagNameMap[K_5];
|
|
78
87
|
closest<E extends Element = Element>(selectors: string): E;
|
|
88
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
79
89
|
getAttribute(qualifiedName: string): string;
|
|
80
90
|
getAttributeNS(namespace: string, localName: string): string;
|
|
81
91
|
getAttributeNames(): string[];
|
|
@@ -84,11 +94,14 @@ declare const ConfigHostElement_base: abstract new (...args: any[]) => {
|
|
|
84
94
|
getBoundingClientRect(): DOMRect;
|
|
85
95
|
getClientRects(): DOMRectList;
|
|
86
96
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
87
|
-
getElementsByTagName<
|
|
88
|
-
getElementsByTagName<
|
|
97
|
+
getElementsByTagName<K_6 extends keyof HTMLElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<HTMLElementTagNameMap[K_6]>;
|
|
98
|
+
getElementsByTagName<K_7 extends keyof SVGElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<SVGElementTagNameMap[K_7]>;
|
|
99
|
+
getElementsByTagName<K_8 extends keyof MathMLElementTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<MathMLElementTagNameMap[K_8]>;
|
|
100
|
+
getElementsByTagName<K_9 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_9): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_9]>;
|
|
89
101
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
90
102
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
91
103
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
104
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
92
105
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
93
106
|
hasAttribute(qualifiedName: string): boolean;
|
|
94
107
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -146,24 +159,24 @@ declare const ConfigHostElement_base: abstract new (...args: any[]) => {
|
|
|
146
159
|
normalize(): void;
|
|
147
160
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
148
161
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
149
|
-
readonly
|
|
150
|
-
readonly
|
|
151
|
-
readonly
|
|
152
|
-
readonly
|
|
153
|
-
readonly
|
|
154
|
-
readonly
|
|
155
|
-
readonly
|
|
156
|
-
readonly
|
|
157
|
-
readonly
|
|
158
|
-
readonly
|
|
159
|
-
readonly
|
|
160
|
-
readonly
|
|
161
|
-
readonly
|
|
162
|
-
readonly
|
|
163
|
-
readonly
|
|
164
|
-
readonly
|
|
165
|
-
readonly
|
|
166
|
-
readonly
|
|
162
|
+
readonly ELEMENT_NODE: 1;
|
|
163
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
164
|
+
readonly TEXT_NODE: 3;
|
|
165
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
166
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
167
|
+
readonly ENTITY_NODE: 6;
|
|
168
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
169
|
+
readonly COMMENT_NODE: 8;
|
|
170
|
+
readonly DOCUMENT_NODE: 9;
|
|
171
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
172
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
173
|
+
readonly NOTATION_NODE: 12;
|
|
174
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
175
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
176
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
177
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
178
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
179
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
167
180
|
dispatchEvent(event: Event): boolean;
|
|
168
181
|
ariaAtomic: string;
|
|
169
182
|
ariaAutoComplete: string;
|
|
@@ -171,9 +184,9 @@ declare const ConfigHostElement_base: abstract new (...args: any[]) => {
|
|
|
171
184
|
ariaChecked: string;
|
|
172
185
|
ariaColCount: string;
|
|
173
186
|
ariaColIndex: string;
|
|
174
|
-
ariaColIndexText: string;
|
|
175
187
|
ariaColSpan: string;
|
|
176
188
|
ariaCurrent: string;
|
|
189
|
+
ariaDescription: string;
|
|
177
190
|
ariaDisabled: string;
|
|
178
191
|
ariaExpanded: string;
|
|
179
192
|
ariaHasPopup: string;
|
|
@@ -195,14 +208,10 @@ declare const ConfigHostElement_base: abstract new (...args: any[]) => {
|
|
|
195
208
|
ariaRoleDescription: string;
|
|
196
209
|
ariaRowCount: string;
|
|
197
210
|
ariaRowIndex: string;
|
|
198
|
-
ariaRowIndexText: string;
|
|
199
211
|
ariaRowSpan: string;
|
|
200
212
|
ariaSelected: string;
|
|
201
213
|
ariaSetSize: string;
|
|
202
|
-
ariaSort: string;
|
|
203
|
-
* i18next instance for managing internationalization.
|
|
204
|
-
* @internal
|
|
205
|
-
*/
|
|
214
|
+
ariaSort: string;
|
|
206
215
|
ariaValueMax: string;
|
|
207
216
|
ariaValueMin: string;
|
|
208
217
|
ariaValueNow: string;
|
|
@@ -223,17 +232,19 @@ declare const ConfigHostElement_base: abstract new (...args: any[]) => {
|
|
|
223
232
|
readonly lastElementChild: Element;
|
|
224
233
|
append(...nodes: (string | Node)[]): void;
|
|
225
234
|
prepend(...nodes: (string | Node)[]): void;
|
|
226
|
-
querySelector<
|
|
227
|
-
querySelector<
|
|
235
|
+
querySelector<K_10 extends keyof HTMLElementTagNameMap>(selectors: K_10): HTMLElementTagNameMap[K_10];
|
|
236
|
+
querySelector<K_11 extends keyof SVGElementTagNameMap>(selectors: K_11): SVGElementTagNameMap[K_11];
|
|
237
|
+
querySelector<K_12 extends keyof MathMLElementTagNameMap>(selectors: K_12): MathMLElementTagNameMap[K_12];
|
|
238
|
+
querySelector<K_13 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_13): HTMLElementDeprecatedTagNameMap[K_13];
|
|
228
239
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
229
|
-
querySelectorAll<
|
|
230
|
-
querySelectorAll<
|
|
240
|
+
querySelectorAll<K_14 extends keyof HTMLElementTagNameMap>(selectors: K_14): NodeListOf<HTMLElementTagNameMap[K_14]>;
|
|
241
|
+
querySelectorAll<K_15 extends keyof SVGElementTagNameMap>(selectors: K_15): NodeListOf<SVGElementTagNameMap[K_15]>;
|
|
242
|
+
querySelectorAll<K_16 extends keyof MathMLElementTagNameMap>(selectors: K_16): NodeListOf<MathMLElementTagNameMap[K_16]>;
|
|
243
|
+
querySelectorAll<K_17 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_17): NodeListOf<HTMLElementDeprecatedTagNameMap[K_17]>;
|
|
231
244
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
232
245
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
233
246
|
readonly assignedSlot: HTMLSlotElement;
|
|
234
|
-
|
|
235
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
236
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
247
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
237
248
|
readonly style: CSSStyleDeclaration;
|
|
238
249
|
contentEditable: string;
|
|
239
250
|
enterKeyHint: string;
|
|
@@ -246,6 +257,7 @@ declare const ConfigHostElement_base: abstract new (...args: any[]) => {
|
|
|
246
257
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
247
258
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
248
259
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
260
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
249
261
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
250
262
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
251
263
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -254,7 +266,9 @@ declare const ConfigHostElement_base: abstract new (...args: any[]) => {
|
|
|
254
266
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
255
267
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
256
268
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
269
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
257
270
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
271
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
258
272
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
259
273
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
260
274
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -287,6 +301,7 @@ declare const ConfigHostElement_base: abstract new (...args: any[]) => {
|
|
|
287
301
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
288
302
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
289
303
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
304
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
290
305
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
291
306
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
292
307
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -303,6 +318,7 @@ declare const ConfigHostElement_base: abstract new (...args: any[]) => {
|
|
|
303
318
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
304
319
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
305
320
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
321
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
306
322
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
307
323
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
308
324
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../src/routes/base.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,OAAO,EAAE,IAAI,EAAE,MAAM,8BAA8B,CAAC;AAGpD,OAAO,EAEL,OAAO,EAQR,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAGvD,OAAO,EAAE,UAAU,EAAqB,MAAM,kBAAkB,CAAC;AACjE,OAAO,EAAE,YAAY,EAAE,qBAAqB,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAE1E,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAExC;;GAEG;AACH,KAAK,QAAQ,GAAG,YAAY,GAAG,qBAAqB,GAAG,EAAE,CAAC;AAE1D;;GAEG;AACH,eAAO,MAAM,SAAS,
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../src/routes/base.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,OAAO,EAAE,IAAI,EAAE,MAAM,8BAA8B,CAAC;AAGpD,OAAO,EAEL,OAAO,EAQR,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAGvD,OAAO,EAAE,UAAU,EAAqB,MAAM,kBAAkB,CAAC;AACjE,OAAO,EAAE,YAAY,EAAE,qBAAqB,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAE1E,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAExC;;GAEG;AACH,KAAK,QAAQ,GAAG,YAAY,GAAG,qBAAqB,GAAG,EAAE,CAAC;AAE1D;;GAEG;AACH,eAAO,MAAM,SAAS,yKAAiC,CAAC;AAExD;;GAEG;AACH,eAAO,MAAM,UAAU,yKAAkC,CAAC;AAE1D;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG;IACvB,MAAM,EAAE,UAAU,CAAC;CACpB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAuHF;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAvHH;;;;;GAKG;AACH,qBAAa,iBAAkB,SAAQ,sBAAoC,YAAW,UAAU;IACnF,SAAS,EAAE,SAAS,CAAC;IACpB,MAAM,EAAE,UAAU,CAAC;IAC/B;;;OAGG;IACM,OAAO,EAAG,OAAO,CAAC;IAE3B,iBAAiB;CAalB;AAED;;GAEG;AACH,qBAAa,SAAU,SAAQ,iBAAiB;IACxC,IAAI,EAAE,IAAI,CAAC;IACN,KAAK,EAAE,SAAS,CAAC;IACf,OAAO,EAAE,WAAW,CAAC;IAElC,MAAM,aAAsC;IAE5C,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM;CAGtC;AAED;;GAEG;AACH,eAAO,MAAM,iBAAiB,mFAsB7B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa,mFAiBzB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,UAAU,mFAkBtB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa,gCAAiC,MAAM,2DAahE,CAAC;AAOF;;GAEG;AACH,eAAO,MAAM,cAAc,8BAA+B,KAAK,GAAG,cAAc,2DAgB/E,CAAC;AAgHF;;GAEG;AACH,eAAO,MAAM,UAAU,kCAAmC,OAAO,SAAS,MAAM,2DAU/E,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,YAAY,gCAChB,MAAM,eACD,MAAM,aACR,OAAO,2DAWlB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,oBAAoB,mFAShC,CAAC"}
|
|
@@ -176,8 +176,8 @@ let DefaultCredentialManager = class DefaultCredentialManager {
|
|
|
176
176
|
return navigator.credentials.store(credentials);
|
|
177
177
|
});
|
|
178
178
|
}
|
|
179
|
-
getCredentialsFromContainer(
|
|
180
|
-
return __awaiter(this,
|
|
179
|
+
getCredentialsFromContainer() {
|
|
180
|
+
return __awaiter(this, arguments, void 0, function* (options = defaultCredentialRequestOptions) {
|
|
181
181
|
if (!supportsCredentialsContainer()) {
|
|
182
182
|
return;
|
|
183
183
|
}
|
|
@@ -144,13 +144,13 @@ TestElement = __decorate([
|
|
|
144
144
|
})
|
|
145
145
|
], TestElement);
|
|
146
146
|
const Suite = createComponentSuite('CredentialManager', 'credential-manager-test-element');
|
|
147
|
-
Suite('Can be created in the DOM', (
|
|
147
|
+
Suite('Can be created in the DOM', (_a) => __awaiter(void 0, [_a], void 0, function* ({ element }) {
|
|
148
148
|
assert.ok(element);
|
|
149
149
|
}));
|
|
150
|
-
Suite('Element has credentialManager injected', (
|
|
150
|
+
Suite('Element has credentialManager injected', (_b) => __awaiter(void 0, [_b], void 0, function* ({ element }) {
|
|
151
151
|
assert.ok(element.credentialManager);
|
|
152
152
|
}));
|
|
153
|
-
Suite('validateUserCredentialData should provide expected results for PasswordCredentials', (
|
|
153
|
+
Suite('validateUserCredentialData should provide expected results for PasswordCredentials', (_c) => __awaiter(void 0, [_c], void 0, function* ({ element, runCases }) {
|
|
154
154
|
runCases(element.credentialManager.validateUserCredentialData, [
|
|
155
155
|
[[validCredential, true], true],
|
|
156
156
|
[[validCredentialWithCompId, true], true],
|
|
@@ -165,7 +165,7 @@ Suite('validateUserCredentialData should provide expected results for PasswordCr
|
|
|
165
165
|
[[malformedCredential9, true], false],
|
|
166
166
|
]);
|
|
167
167
|
}));
|
|
168
|
-
Suite('validateUserCredentialData should provide expected results for cookies', (
|
|
168
|
+
Suite('validateUserCredentialData should provide expected results for cookies', (_d) => __awaiter(void 0, [_d], void 0, function* ({ element, runCases }) {
|
|
169
169
|
runCases(element.credentialManager.validateUserCredentialData, [
|
|
170
170
|
[[validCookie], true],
|
|
171
171
|
[[validCookieWithCompId], true],
|
|
@@ -184,7 +184,7 @@ Suite('validateUserCredentialData should provide expected results for cookies',
|
|
|
184
184
|
[[malformedCookie11], false],
|
|
185
185
|
]);
|
|
186
186
|
}));
|
|
187
|
-
Suite('normaliseLegacyCredentialData should provide expected base case results', (
|
|
187
|
+
Suite('normaliseLegacyCredentialData should provide expected base case results', (_e) => __awaiter(void 0, [_e], void 0, function* ({ element, runCases }) {
|
|
188
188
|
const cm = element.credentialManager;
|
|
189
189
|
runCases(cm.normaliseLegacyCredentialData.bind(cm), [
|
|
190
190
|
[
|
|
@@ -237,7 +237,7 @@ Suite('normaliseLegacyCredentialData should provide expected base case results',
|
|
|
237
237
|
],
|
|
238
238
|
]);
|
|
239
239
|
}));
|
|
240
|
-
Suite('normaliseLegacyCredentialData should provide expected legacy cookie migration results', (
|
|
240
|
+
Suite('normaliseLegacyCredentialData should provide expected legacy cookie migration results', (_f) => __awaiter(void 0, [_f], void 0, function* ({ element, runCases }) {
|
|
241
241
|
const cm = element.credentialManager;
|
|
242
242
|
runCases(cm.normaliseLegacyCredentialData.bind(cm), [
|
|
243
243
|
[
|
|
@@ -341,7 +341,7 @@ Suite('normaliseLegacyCredentialData should provide expected legacy cookie migra
|
|
|
341
341
|
],
|
|
342
342
|
]);
|
|
343
343
|
}));
|
|
344
|
-
Suite('normaliseLegacyCredentialData should provide expected legacy cookie migration results', (
|
|
344
|
+
Suite('normaliseLegacyCredentialData should provide expected legacy cookie migration results', (_g) => __awaiter(void 0, [_g], void 0, function* ({ element, runCases }) {
|
|
345
345
|
const cm = element.credentialManager;
|
|
346
346
|
runCases(cm.normaliseLegacyCredentialData.bind(cm), [
|
|
347
347
|
[
|
|
@@ -480,7 +480,7 @@ let DefaultAuthMachine = class DefaultAuthMachine extends AbstractMachine {
|
|
|
480
480
|
},
|
|
481
481
|
}, {
|
|
482
482
|
actors: {
|
|
483
|
-
mapper: fromPromise((
|
|
483
|
+
mapper: fromPromise((_a) => __awaiter(this, [_a], void 0, function* ({ input }) { return input.mapper(input.dto); })),
|
|
484
484
|
},
|
|
485
485
|
actions: {
|
|
486
486
|
setParams: assign(({ event }) => {
|
package/dist/esm/services/idp.js
CHANGED
|
@@ -15,7 +15,7 @@ export class DefaultIDPService {
|
|
|
15
15
|
*/
|
|
16
16
|
this.loginUrlReplacePattern = /{\s*(\w+?)\s*}/g;
|
|
17
17
|
/** {@inheritDoc IDPService.getList} */
|
|
18
|
-
this.getList = (
|
|
18
|
+
this.getList = (...args_1) => __awaiter(this, [...args_1], void 0, function* (url = SSO_LIST_URL) {
|
|
19
19
|
return new Promise((resolve, reject) => {
|
|
20
20
|
const fetcher = this.fetchMachine.getFromContainer();
|
|
21
21
|
fetcher.provide({
|