@genesislcap/pbc-auth-ui 1.0.10 → 14.335.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/profiles/profiles.d.ts +266 -225
- package/dist/dts/profiles/profiles.d.ts.map +1 -1
- package/dist/dts/profiles/profiles.template.d.ts +1 -1
- package/dist/dts/profiles/profiles.template.d.ts.map +1 -1
- package/dist/dts/user-admin/users.d.ts +266 -228
- package/dist/dts/user-admin/users.d.ts.map +1 -1
- package/dist/dts/utils/formatting.d.ts.map +1 -1
- package/dist/esm/profiles/profiles.js +5 -4
- package/dist/esm/profiles/profiles.template.js +17 -17
- package/dist/esm/user-admin/users.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/kls_database.db +0 -0
- package/license.txt +46 -0
- package/package.json +13 -12
- package/src/index.federated.ts +1 -0
- package/src/index.ts +2 -0
- package/src/profiles/editProfileSchema.ts +40 -0
- package/src/profiles/profiles.template.ts +21 -0
- package/src/profiles/profiles.ts +94 -0
- package/src/types.ts +5 -0
- package/src/user-admin/users.template.ts +122 -0
- package/src/user-admin/users.ts +377 -0
- package/src/utils/formatting.ts +6 -0
- package/src/utils/index.ts +2 -0
- package/src/utils/logger.ts +6 -0
- package/tsconfig.json +63 -0
- package/index.html +0 -26
- package/sonar-project.properties +0 -5
|
@@ -1,25 +1,26 @@
|
|
|
1
|
-
import { EntityManagement } from
|
|
1
|
+
import { EntityManagement } from '@genesislcap/foundation-entity-management';
|
|
2
2
|
import { GenesisElement } from '@genesislcap/web-core';
|
|
3
3
|
declare const Profiles_base: (new (...args: any[]) => {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
#_container: import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
|
5
|
+
#_latestTokenCode: string;
|
|
6
|
+
#_hasFirstLoaded: boolean;
|
|
7
|
+
#_cleanupTimeout: NodeJS.Timeout;
|
|
8
|
+
#_shouldForceLifecycle: boolean;
|
|
9
9
|
cloneNode(deep?: boolean): Node;
|
|
10
10
|
deepClone(): Node;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
get shouldRunDisconnect(): boolean;
|
|
12
|
+
get shouldRunConnect(): boolean;
|
|
13
|
+
#_blockLifecycleDueToTokenChange(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
|
14
|
+
#_tryFindContainingLayout(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
|
15
15
|
connectedCallback(): void;
|
|
16
16
|
readonly $fastController: import("@microsoft/fast-element").Controller;
|
|
17
|
-
$emit(type: string, detail?: any, options?: Omit<CustomEventInit
|
|
17
|
+
$emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
|
|
18
18
|
disconnectedCallback(): void;
|
|
19
19
|
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
20
20
|
accessKey: string;
|
|
21
21
|
readonly accessKeyLabel: string;
|
|
22
22
|
autocapitalize: string;
|
|
23
|
+
autocorrect: boolean;
|
|
23
24
|
dir: string;
|
|
24
25
|
draggable: boolean;
|
|
25
26
|
hidden: boolean;
|
|
@@ -28,74 +29,90 @@ declare const Profiles_base: (new (...args: any[]) => {
|
|
|
28
29
|
lang: string;
|
|
29
30
|
readonly offsetHeight: number;
|
|
30
31
|
readonly offsetLeft: number;
|
|
31
|
-
readonly offsetParent: Element;
|
|
32
|
+
readonly offsetParent: Element | null;
|
|
32
33
|
readonly offsetTop: number;
|
|
33
34
|
readonly offsetWidth: number;
|
|
34
35
|
outerText: string;
|
|
36
|
+
popover: string | null;
|
|
35
37
|
spellcheck: boolean;
|
|
36
38
|
title: string;
|
|
37
39
|
translate: boolean;
|
|
40
|
+
writingSuggestions: string;
|
|
38
41
|
attachInternals(): ElementInternals;
|
|
39
42
|
click(): void;
|
|
43
|
+
hidePopover(): void;
|
|
44
|
+
showPopover(): void;
|
|
45
|
+
togglePopover(options?: boolean): boolean;
|
|
40
46
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
41
47
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
42
|
-
removeEventListener<
|
|
48
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
43
49
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
44
50
|
readonly attributes: NamedNodeMap;
|
|
45
|
-
|
|
51
|
+
get classList(): DOMTokenList;
|
|
52
|
+
set classList(value: string): any;
|
|
46
53
|
className: string;
|
|
47
54
|
readonly clientHeight: number;
|
|
48
55
|
readonly clientLeft: number;
|
|
49
56
|
readonly clientTop: number;
|
|
50
57
|
readonly clientWidth: number;
|
|
58
|
+
readonly currentCSSZoom: number;
|
|
51
59
|
id: string;
|
|
60
|
+
innerHTML: string;
|
|
52
61
|
readonly localName: string;
|
|
53
|
-
readonly namespaceURI: string;
|
|
62
|
+
readonly namespaceURI: string | null;
|
|
54
63
|
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
55
64
|
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
56
65
|
outerHTML: string;
|
|
57
66
|
readonly ownerDocument: Document;
|
|
58
|
-
|
|
59
|
-
|
|
67
|
+
get part(): DOMTokenList;
|
|
68
|
+
set part(value: string): any;
|
|
69
|
+
readonly prefix: string | null;
|
|
60
70
|
readonly scrollHeight: number;
|
|
61
71
|
scrollLeft: number;
|
|
62
72
|
scrollTop: number;
|
|
63
73
|
readonly scrollWidth: number;
|
|
64
|
-
readonly shadowRoot: ShadowRoot;
|
|
74
|
+
readonly shadowRoot: ShadowRoot | null;
|
|
65
75
|
slot: string;
|
|
66
76
|
readonly tagName: string;
|
|
67
77
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
68
|
-
|
|
69
|
-
closest<
|
|
78
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
79
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
|
|
80
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
|
|
81
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
|
|
70
82
|
closest<E extends Element = Element>(selectors: string): E;
|
|
71
|
-
|
|
72
|
-
|
|
83
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
84
|
+
getAttribute(qualifiedName: string): string | null;
|
|
85
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
73
86
|
getAttributeNames(): string[];
|
|
74
|
-
getAttributeNode(qualifiedName: string): Attr;
|
|
75
|
-
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
87
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
|
88
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
|
76
89
|
getBoundingClientRect(): DOMRect;
|
|
77
90
|
getClientRects(): DOMRectList;
|
|
78
91
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
79
|
-
getElementsByTagName<
|
|
80
|
-
getElementsByTagName<
|
|
92
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
93
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
94
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
95
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
81
96
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
82
97
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
83
98
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
84
|
-
getElementsByTagNameNS(
|
|
99
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
100
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
101
|
+
getHTML(options?: GetHTMLOptions): string;
|
|
85
102
|
hasAttribute(qualifiedName: string): boolean;
|
|
86
|
-
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
103
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
|
87
104
|
hasAttributes(): boolean;
|
|
88
105
|
hasPointerCapture(pointerId: number): boolean;
|
|
89
|
-
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
90
|
-
insertAdjacentHTML(position: InsertPosition,
|
|
106
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
107
|
+
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
91
108
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
92
109
|
matches(selectors: string): boolean;
|
|
93
110
|
releasePointerCapture(pointerId: number): void;
|
|
94
111
|
removeAttribute(qualifiedName: string): void;
|
|
95
|
-
removeAttributeNS(namespace: string, localName: string): void;
|
|
112
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
96
113
|
removeAttributeNode(attr: Attr): Attr;
|
|
97
114
|
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
98
|
-
requestPointerLock(): void
|
|
115
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
|
99
116
|
scroll(options?: ScrollToOptions): void;
|
|
100
117
|
scroll(x: number, y: number): void;
|
|
101
118
|
scrollBy(options?: ScrollToOptions): void;
|
|
@@ -104,220 +121,244 @@ declare const Profiles_base: (new (...args: any[]) => {
|
|
|
104
121
|
scrollTo(options?: ScrollToOptions): void;
|
|
105
122
|
scrollTo(x: number, y: number): void;
|
|
106
123
|
setAttribute(qualifiedName: string, value: string): void;
|
|
107
|
-
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
|
108
|
-
setAttributeNode(attr: Attr): Attr;
|
|
109
|
-
setAttributeNodeNS(attr: Attr): Attr;
|
|
124
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
125
|
+
setAttributeNode(attr: Attr): Attr | null;
|
|
126
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
127
|
+
setHTMLUnsafe(html: string): void;
|
|
110
128
|
setPointerCapture(pointerId: number): void;
|
|
111
129
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
112
130
|
webkitMatchesSelector(selectors: string): boolean;
|
|
131
|
+
textContent: string;
|
|
113
132
|
readonly baseURI: string;
|
|
114
133
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
115
|
-
readonly firstChild: ChildNode;
|
|
134
|
+
readonly firstChild: ChildNode | null;
|
|
116
135
|
readonly isConnected: boolean;
|
|
117
|
-
readonly lastChild: ChildNode;
|
|
118
|
-
readonly nextSibling: ChildNode;
|
|
136
|
+
readonly lastChild: ChildNode | null;
|
|
137
|
+
readonly nextSibling: ChildNode | null;
|
|
119
138
|
readonly nodeName: string;
|
|
120
139
|
readonly nodeType: number;
|
|
121
|
-
nodeValue: string;
|
|
122
|
-
readonly parentElement: HTMLElement;
|
|
123
|
-
readonly parentNode: ParentNode;
|
|
124
|
-
readonly previousSibling: ChildNode;
|
|
125
|
-
textContent: string;
|
|
140
|
+
nodeValue: string | null;
|
|
141
|
+
readonly parentElement: HTMLElement | null;
|
|
142
|
+
readonly parentNode: ParentNode | null;
|
|
143
|
+
readonly previousSibling: ChildNode | null;
|
|
126
144
|
appendChild<T_1 extends Node>(node: T_1): T_1;
|
|
127
145
|
compareDocumentPosition(other: Node): number;
|
|
128
|
-
contains(other: Node): boolean;
|
|
146
|
+
contains(other: Node | null): boolean;
|
|
129
147
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
130
148
|
hasChildNodes(): boolean;
|
|
131
|
-
insertBefore<
|
|
132
|
-
isDefaultNamespace(namespace: string): boolean;
|
|
133
|
-
isEqualNode(otherNode: Node): boolean;
|
|
134
|
-
isSameNode(otherNode: Node): boolean;
|
|
135
|
-
lookupNamespaceURI(prefix: string): string;
|
|
136
|
-
lookupPrefix(namespace: string): string;
|
|
149
|
+
insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
|
|
150
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
|
151
|
+
isEqualNode(otherNode: Node | null): boolean;
|
|
152
|
+
isSameNode(otherNode: Node | null): boolean;
|
|
153
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
|
154
|
+
lookupPrefix(namespace: string | null): string | null;
|
|
137
155
|
normalize(): void;
|
|
138
|
-
removeChild<
|
|
139
|
-
replaceChild<
|
|
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
|
|
153
|
-
readonly
|
|
154
|
-
readonly
|
|
155
|
-
readonly
|
|
156
|
-
readonly
|
|
157
|
-
readonly
|
|
156
|
+
removeChild<T_1 extends Node>(child: T_1): T_1;
|
|
157
|
+
replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
|
|
158
|
+
readonly ELEMENT_NODE: 1;
|
|
159
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
160
|
+
readonly TEXT_NODE: 3;
|
|
161
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
162
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
163
|
+
readonly ENTITY_NODE: 6;
|
|
164
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
165
|
+
readonly COMMENT_NODE: 8;
|
|
166
|
+
readonly DOCUMENT_NODE: 9;
|
|
167
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
168
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
169
|
+
readonly NOTATION_NODE: 12;
|
|
170
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
171
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
172
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
173
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
174
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
175
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
158
176
|
dispatchEvent(event: Event): boolean;
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
177
|
+
ariaActiveDescendantElement: Element | null;
|
|
178
|
+
ariaAtomic: string | null;
|
|
179
|
+
ariaAutoComplete: string | null;
|
|
180
|
+
ariaBrailleLabel: string | null;
|
|
181
|
+
ariaBrailleRoleDescription: string | null;
|
|
182
|
+
ariaBusy: string | null;
|
|
183
|
+
ariaChecked: string | null;
|
|
184
|
+
ariaColCount: string | null;
|
|
185
|
+
ariaColIndex: string | null;
|
|
186
|
+
ariaColIndexText: string | null;
|
|
187
|
+
ariaColSpan: string | null;
|
|
188
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
189
|
+
ariaCurrent: string | null;
|
|
190
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
191
|
+
ariaDescription: string | null;
|
|
192
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
193
|
+
ariaDisabled: string | null;
|
|
194
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
195
|
+
ariaExpanded: string | null;
|
|
196
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
197
|
+
ariaHasPopup: string | null;
|
|
198
|
+
ariaHidden: string | null;
|
|
199
|
+
ariaInvalid: string | null;
|
|
200
|
+
ariaKeyShortcuts: string | null;
|
|
201
|
+
ariaLabel: string | null;
|
|
202
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
203
|
+
ariaLevel: string | null;
|
|
204
|
+
ariaLive: string | null;
|
|
205
|
+
ariaModal: string | null;
|
|
206
|
+
ariaMultiLine: string | null;
|
|
207
|
+
ariaMultiSelectable: string | null;
|
|
208
|
+
ariaOrientation: string | null;
|
|
209
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
210
|
+
ariaPlaceholder: string | null;
|
|
211
|
+
ariaPosInSet: string | null;
|
|
212
|
+
ariaPressed: string | null;
|
|
213
|
+
ariaReadOnly: string | null;
|
|
214
|
+
ariaRelevant: string | null;
|
|
215
|
+
ariaRequired: string | null;
|
|
216
|
+
ariaRoleDescription: string | null;
|
|
217
|
+
ariaRowCount: string | null;
|
|
218
|
+
ariaRowIndex: string | null;
|
|
219
|
+
ariaRowIndexText: string | null;
|
|
220
|
+
ariaRowSpan: string | null;
|
|
221
|
+
ariaSelected: string | null;
|
|
222
|
+
ariaSetSize: string | null;
|
|
223
|
+
ariaSort: string | null;
|
|
224
|
+
ariaValueMax: string | null;
|
|
225
|
+
ariaValueMin: string | null;
|
|
226
|
+
ariaValueNow: string | null;
|
|
227
|
+
ariaValueText: string | null;
|
|
228
|
+
role: string | null;
|
|
229
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
200
230
|
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
201
|
-
after(...nodes: (
|
|
202
|
-
before(...nodes: (
|
|
231
|
+
after(...nodes: (Node | string)[]): void;
|
|
232
|
+
before(...nodes: (Node | string)[]): void;
|
|
203
233
|
remove(): void;
|
|
204
|
-
replaceWith(...nodes: (
|
|
205
|
-
|
|
206
|
-
readonly
|
|
207
|
-
readonly previousElementSibling: Element;
|
|
234
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
235
|
+
readonly nextElementSibling: Element | null;
|
|
236
|
+
readonly previousElementSibling: Element | null;
|
|
208
237
|
readonly childElementCount: number;
|
|
209
238
|
readonly children: HTMLCollection;
|
|
210
|
-
readonly firstElementChild: Element;
|
|
211
|
-
readonly lastElementChild: Element;
|
|
212
|
-
append(...nodes: (
|
|
213
|
-
prepend(...nodes: (
|
|
214
|
-
querySelector<
|
|
215
|
-
querySelector<
|
|
216
|
-
querySelector<
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
querySelectorAll<
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
readonly
|
|
239
|
+
readonly firstElementChild: Element | null;
|
|
240
|
+
readonly lastElementChild: Element | null;
|
|
241
|
+
append(...nodes: (Node | string)[]): void;
|
|
242
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
243
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
244
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
245
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
246
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
247
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
248
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
249
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
250
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
251
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
252
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
253
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
254
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
255
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
256
|
+
get style(): CSSStyleDeclaration;
|
|
257
|
+
set style(cssText: string): any;
|
|
226
258
|
contentEditable: string;
|
|
227
259
|
enterKeyHint: string;
|
|
228
260
|
inputMode: string;
|
|
229
261
|
readonly isContentEditable: boolean;
|
|
230
|
-
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
231
|
-
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
232
|
-
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
233
|
-
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
234
|
-
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
235
|
-
onauxclick: (this: GlobalEventHandlers, ev:
|
|
236
|
-
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
262
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
263
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
264
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
265
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
266
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
267
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
268
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
269
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
270
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
271
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
272
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
273
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
274
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
275
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
276
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
277
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
278
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
279
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
280
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
281
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
282
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
283
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
284
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
285
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
286
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
287
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
288
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
289
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
290
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
291
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
292
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
293
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
294
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
295
|
+
onerror: OnErrorEventHandler;
|
|
296
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
297
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
298
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
299
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
300
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
301
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
302
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
303
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
304
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
305
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
306
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
307
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
308
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
309
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
310
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
311
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
312
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
313
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
314
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
315
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
316
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
317
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
318
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
319
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
320
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
321
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
322
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
323
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
324
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
325
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
326
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
327
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
328
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
329
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
330
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
331
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
332
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
333
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
334
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
335
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
336
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
337
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
338
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
339
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
340
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
341
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
342
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
343
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
344
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
345
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
346
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
347
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
348
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
349
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
350
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
351
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
352
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
353
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
354
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
355
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
356
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
357
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
358
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
359
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
360
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
361
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
321
362
|
autofocus: boolean;
|
|
322
363
|
readonly dataset: DOMStringMap;
|
|
323
364
|
nonce?: string;
|
|
@@ -329,7 +370,7 @@ declare const Profiles_base: (new (...args: any[]) => {
|
|
|
329
370
|
new (): HTMLElement;
|
|
330
371
|
prototype: HTMLElement;
|
|
331
372
|
}>(BaseType: TBase): new () => InstanceType<TBase> & GenesisElement;
|
|
332
|
-
define<TType extends Function>(type: TType, nameOrDef?: string | import("@microsoft/fast-element").PartialFASTElementDefinition): TType;
|
|
373
|
+
define<TType extends Function>(type: TType, nameOrDef?: string | import("@microsoft/fast-element").PartialFASTElementDefinition | undefined): TType;
|
|
333
374
|
};
|
|
334
375
|
/**
|
|
335
376
|
* Main class which defined the profile management functionality
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"profiles.d.ts","sourceRoot":"","sources":["../../../src/profiles/profiles.ts"],"names":[],"mappings":"AACA,OAAO,
|
|
1
|
+
{"version":3,"file":"profiles.d.ts","sourceRoot":"","sources":["../../../src/profiles/profiles.ts"],"names":[],"mappings":"AACA,OAAO,EAAc,gBAAgB,EAAE,MAAM,2CAA2C,CAAC;AAEzF,OAAO,EAAiB,cAAc,EAAc,MAAM,uBAAuB,CAAC;;;;;;;kBA2FkI,CAAC;;;;;;;;8BAAknD,CAAC,cAAc,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAAw9B,CAAC;4IAAqK,CAAC;wFAAwI,CAAC;+IAA+L,CAAC;2FAAwI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAA4mC,CAAC;;;;;;;;;;;;;;;;;;;;;;;mBAA8hE,CAAC;;;;;;;;;;;;;6BAA4xB,CAAC;8BAAuE,CAAC;kBAA4D,CAAC;;oBAA8F,CAAC;;sBAAkG,CAAC;oBAAkE,CAAC;;;;;;;;gDAAme,CAAC;;;;;;;;;;;;;;;;;;uBAA8yB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAAiiH,CAAC;yBAA8E,CAAC;UAAoD,GAAG;WAAgD,GAAG;;gBAA6E,GAAG;;;;;;;WAA4V,GAAG;YAAiD,GAAG;;;;;;;;;;;oBAAupC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAiiO,CAAC;cAA6F,CAAC;eAA8F,CAAC;gBAA+F,CAAC;;;;;;;;;;;;;;SAAulC,CAAC;;;iBAA+E,CAAC;;;;;;;;AAxF7ytB;;;;;;;;;;;;;;;;;;GAkBG;AACH,qBAIa,QAAS,SAAQ,aAA8B;IAC1D;;;;;;;;OAQG;IACG,OAAO,CAAC,IAAI,CAAO;IAEhB,OAAO,CAAC,OAAO,CAAU;IAElC,cAAc,EAAE,gBAAgB,CAAC;IAErB,WAAW,EAAE,MAAM,CAAC;IAEpB,WAAW,EAAE,MAAM,CAAC;IAEpB,WAAW,EAAE,MAAM,CAAC;;IAgBnB,eAAe,CAAC,OAAO,KAAA;;;;;IAsB9B,aAAa;CAMpB"}
|