@genesislcap/foundation-entity-management 15.6.2 → 15.7.0-ts7.1
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/entities/entities.d.ts +2 -368
- package/dist/dts/entities/entities.d.ts.map +1 -1
- package/dist/dts/entities/entities.template.d.ts.map +1 -1
- package/dist/dts/entities/smartFormModal.d.ts.map +1 -1
- package/dist/dts/list/list.d.ts +2 -368
- package/dist/dts/list/list.d.ts.map +1 -1
- package/dist/dts/list/list.template.d.ts.map +1 -1
- package/dist/dts/main/main.d.ts.map +1 -1
- package/dist/dts/routes/config.d.ts.map +1 -1
- package/dist/dts/utils/formatting.d.ts.map +1 -1
- package/dist/dts/utils/renderer.d.ts.map +1 -1
- package/dist/dts/utils/search-bar-utils.d.ts.map +1 -1
- package/dist/esm/entities/entities.js +13 -14
- package/dist/esm/entities/entities.template.js +2 -1
- package/dist/esm/list/list.template.js +12 -18
- package/dist/esm/utils/search-bar-utils.js +9 -12
- package/dist/foundation-entity-management.d.ts +8 -742
- package/package.json +23 -23
|
@@ -112,379 +112,13 @@ export declare const getActionNotificationTitleAndBody: (type: ModalFormType | C
|
|
|
112
112
|
* ```
|
|
113
113
|
*/
|
|
114
114
|
export type DatasourceConfiguration = Omit<DatasourceOptions, 'resourceName'>;
|
|
115
|
-
declare const EntityManagement_base: (new (
|
|
116
|
-
#_container: import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
|
117
|
-
#_latestTokenCode: string;
|
|
118
|
-
#_hasFirstLoaded: boolean;
|
|
119
|
-
#_cleanupTimeout: NodeJS.Timeout;
|
|
120
|
-
#_shouldForceLifecycle: boolean;
|
|
121
|
-
#_blockedDisconnectSurvivedGracePeriod: boolean;
|
|
122
|
-
cloneNode(deep?: boolean): Node;
|
|
123
|
-
deepClone(): Node;
|
|
124
|
-
get shouldRunDisconnect(): boolean;
|
|
125
|
-
get shouldRunConnect(): boolean;
|
|
126
|
-
#_blockLifecycleDueToTokenChange(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
|
127
|
-
#_tryFindContainingLayout(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
|
128
|
-
connectedCallback(): void;
|
|
129
|
-
readonly $fastController: import("@microsoft/fast-element").Controller;
|
|
130
|
-
$emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
|
|
131
|
-
disconnectedCallback(): void;
|
|
132
|
-
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
133
|
-
accessKey: string;
|
|
134
|
-
readonly accessKeyLabel: string;
|
|
135
|
-
autocapitalize: string;
|
|
136
|
-
autocorrect: boolean;
|
|
137
|
-
dir: string;
|
|
138
|
-
draggable: boolean;
|
|
139
|
-
hidden: boolean;
|
|
140
|
-
inert: boolean;
|
|
141
|
-
innerText: string;
|
|
142
|
-
lang: string;
|
|
143
|
-
readonly offsetHeight: number;
|
|
144
|
-
readonly offsetLeft: number;
|
|
145
|
-
readonly offsetParent: Element | null;
|
|
146
|
-
readonly offsetTop: number;
|
|
147
|
-
readonly offsetWidth: number;
|
|
148
|
-
outerText: string;
|
|
149
|
-
popover: string | null;
|
|
150
|
-
spellcheck: boolean;
|
|
151
|
-
title: string;
|
|
152
|
-
translate: boolean;
|
|
153
|
-
writingSuggestions: string;
|
|
154
|
-
attachInternals(): ElementInternals;
|
|
155
|
-
click(): void;
|
|
156
|
-
hidePopover(): void;
|
|
157
|
-
showPopover(): void;
|
|
158
|
-
togglePopover(options?: boolean): boolean;
|
|
159
|
-
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
160
|
-
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
161
|
-
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
162
|
-
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
163
|
-
readonly attributes: NamedNodeMap;
|
|
164
|
-
get classList(): DOMTokenList;
|
|
165
|
-
set classList(value: string): any;
|
|
166
|
-
className: string;
|
|
167
|
-
readonly clientHeight: number;
|
|
168
|
-
readonly clientLeft: number;
|
|
169
|
-
readonly clientTop: number;
|
|
170
|
-
readonly clientWidth: number;
|
|
171
|
-
readonly currentCSSZoom: number;
|
|
172
|
-
id: string;
|
|
173
|
-
innerHTML: string;
|
|
174
|
-
readonly localName: string;
|
|
175
|
-
readonly namespaceURI: string | null;
|
|
176
|
-
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
177
|
-
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
178
|
-
outerHTML: string;
|
|
179
|
-
readonly ownerDocument: Document;
|
|
180
|
-
get part(): DOMTokenList;
|
|
181
|
-
set part(value: string): any;
|
|
182
|
-
readonly prefix: string | null;
|
|
183
|
-
readonly scrollHeight: number;
|
|
184
|
-
scrollLeft: number;
|
|
185
|
-
scrollTop: number;
|
|
186
|
-
readonly scrollWidth: number;
|
|
187
|
-
readonly shadowRoot: ShadowRoot | null;
|
|
188
|
-
slot: string;
|
|
189
|
-
readonly tagName: string;
|
|
190
|
-
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
191
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
192
|
-
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
|
|
193
|
-
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
|
|
194
|
-
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
|
|
195
|
-
closest<E extends Element = Element>(selectors: string): E;
|
|
196
|
-
computedStyleMap(): StylePropertyMapReadOnly;
|
|
197
|
-
getAttribute(qualifiedName: string): string | null;
|
|
198
|
-
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
199
|
-
getAttributeNames(): string[];
|
|
200
|
-
getAttributeNode(qualifiedName: string): Attr | null;
|
|
201
|
-
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
|
202
|
-
getBoundingClientRect(): DOMRect;
|
|
203
|
-
getClientRects(): DOMRectList;
|
|
204
|
-
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
205
|
-
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
206
|
-
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
207
|
-
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
208
|
-
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
209
|
-
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
210
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
211
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
212
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
213
|
-
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
214
|
-
getHTML(options?: GetHTMLOptions): string;
|
|
215
|
-
hasAttribute(qualifiedName: string): boolean;
|
|
216
|
-
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
|
217
|
-
hasAttributes(): boolean;
|
|
218
|
-
hasPointerCapture(pointerId: number): boolean;
|
|
219
|
-
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
220
|
-
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
221
|
-
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
222
|
-
matches(selectors: string): boolean;
|
|
223
|
-
releasePointerCapture(pointerId: number): void;
|
|
224
|
-
removeAttribute(qualifiedName: string): void;
|
|
225
|
-
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
226
|
-
removeAttributeNode(attr: Attr): Attr;
|
|
227
|
-
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
228
|
-
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
|
229
|
-
scroll(options?: ScrollToOptions): void;
|
|
230
|
-
scroll(x: number, y: number): void;
|
|
231
|
-
scrollBy(options?: ScrollToOptions): void;
|
|
232
|
-
scrollBy(x: number, y: number): void;
|
|
233
|
-
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
234
|
-
scrollTo(options?: ScrollToOptions): void;
|
|
235
|
-
scrollTo(x: number, y: number): void;
|
|
236
|
-
setAttribute(qualifiedName: string, value: string): void;
|
|
237
|
-
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
238
|
-
setAttributeNode(attr: Attr): Attr | null;
|
|
239
|
-
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
240
|
-
setHTMLUnsafe(html: string): void;
|
|
241
|
-
setPointerCapture(pointerId: number): void;
|
|
242
|
-
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
243
|
-
webkitMatchesSelector(selectors: string): boolean;
|
|
244
|
-
textContent: string;
|
|
245
|
-
readonly baseURI: string;
|
|
246
|
-
readonly childNodes: NodeListOf<ChildNode>;
|
|
247
|
-
readonly firstChild: ChildNode | null;
|
|
248
|
-
readonly isConnected: boolean;
|
|
249
|
-
readonly lastChild: ChildNode | null;
|
|
250
|
-
readonly nextSibling: ChildNode | null;
|
|
251
|
-
readonly nodeName: string;
|
|
252
|
-
readonly nodeType: number;
|
|
253
|
-
nodeValue: string | null;
|
|
254
|
-
readonly parentElement: HTMLElement | null;
|
|
255
|
-
readonly parentNode: ParentNode | null;
|
|
256
|
-
readonly previousSibling: ChildNode | null;
|
|
257
|
-
appendChild<T_1 extends Node>(node: T_1): T_1;
|
|
258
|
-
compareDocumentPosition(other: Node): number;
|
|
259
|
-
contains(other: Node | null): boolean;
|
|
260
|
-
getRootNode(options?: GetRootNodeOptions): Node;
|
|
261
|
-
hasChildNodes(): boolean;
|
|
262
|
-
insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
|
|
263
|
-
isDefaultNamespace(namespace: string | null): boolean;
|
|
264
|
-
isEqualNode(otherNode: Node | null): boolean;
|
|
265
|
-
isSameNode(otherNode: Node | null): boolean;
|
|
266
|
-
lookupNamespaceURI(prefix: string | null): string | null;
|
|
267
|
-
lookupPrefix(namespace: string | null): string | null;
|
|
268
|
-
normalize(): void;
|
|
269
|
-
removeChild<T_1 extends Node>(child: T_1): T_1;
|
|
270
|
-
replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
|
|
271
|
-
readonly ELEMENT_NODE: 1;
|
|
272
|
-
readonly ATTRIBUTE_NODE: 2;
|
|
273
|
-
readonly TEXT_NODE: 3;
|
|
274
|
-
readonly CDATA_SECTION_NODE: 4;
|
|
275
|
-
readonly ENTITY_REFERENCE_NODE: 5;
|
|
276
|
-
readonly ENTITY_NODE: 6;
|
|
277
|
-
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
278
|
-
readonly COMMENT_NODE: 8;
|
|
279
|
-
readonly DOCUMENT_NODE: 9;
|
|
280
|
-
readonly DOCUMENT_TYPE_NODE: 10;
|
|
281
|
-
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
282
|
-
readonly NOTATION_NODE: 12;
|
|
283
|
-
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
284
|
-
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
285
|
-
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
286
|
-
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
287
|
-
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
288
|
-
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
289
|
-
dispatchEvent(event: Event): boolean;
|
|
290
|
-
ariaActiveDescendantElement: Element | null;
|
|
291
|
-
ariaAtomic: string | null;
|
|
292
|
-
ariaAutoComplete: string | null;
|
|
293
|
-
ariaBrailleLabel: string | null;
|
|
294
|
-
ariaBrailleRoleDescription: string | null;
|
|
295
|
-
ariaBusy: string | null;
|
|
296
|
-
ariaChecked: string | null;
|
|
297
|
-
ariaColCount: string | null;
|
|
298
|
-
ariaColIndex: string | null;
|
|
299
|
-
ariaColIndexText: string | null;
|
|
300
|
-
ariaColSpan: string | null;
|
|
301
|
-
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
302
|
-
ariaCurrent: string | null;
|
|
303
|
-
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
304
|
-
ariaDescription: string | null;
|
|
305
|
-
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
306
|
-
ariaDisabled: string | null;
|
|
307
|
-
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
308
|
-
ariaExpanded: string | null;
|
|
309
|
-
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
310
|
-
ariaHasPopup: string | null;
|
|
311
|
-
ariaHidden: string | null;
|
|
312
|
-
ariaInvalid: string | null;
|
|
313
|
-
ariaKeyShortcuts: string | null;
|
|
314
|
-
ariaLabel: string | null;
|
|
315
|
-
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
316
|
-
ariaLevel: string | null;
|
|
317
|
-
ariaLive: string | null;
|
|
318
|
-
ariaModal: string | null;
|
|
319
|
-
ariaMultiLine: string | null;
|
|
320
|
-
ariaMultiSelectable: string | null;
|
|
321
|
-
ariaOrientation: string | null;
|
|
322
|
-
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
323
|
-
ariaPlaceholder: string | null;
|
|
324
|
-
ariaPosInSet: string | null;
|
|
325
|
-
ariaPressed: string | null;
|
|
326
|
-
ariaReadOnly: string | null;
|
|
327
|
-
ariaRelevant: string | null;
|
|
328
|
-
ariaRequired: string | null;
|
|
329
|
-
ariaRoleDescription: string | null;
|
|
330
|
-
ariaRowCount: string | null;
|
|
331
|
-
ariaRowIndex: string | null;
|
|
332
|
-
ariaRowIndexText: string | null;
|
|
333
|
-
ariaRowSpan: string | null;
|
|
334
|
-
ariaSelected: string | null;
|
|
335
|
-
ariaSetSize: string | null;
|
|
336
|
-
ariaSort: string | null;
|
|
337
|
-
ariaValueMax: string | null;
|
|
338
|
-
ariaValueMin: string | null;
|
|
339
|
-
ariaValueNow: string | null;
|
|
340
|
-
ariaValueText: string | null;
|
|
341
|
-
role: string | null;
|
|
342
|
-
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
343
|
-
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
344
|
-
after(...nodes: (Node | string)[]): void;
|
|
345
|
-
before(...nodes: (Node | string)[]): void;
|
|
346
|
-
remove(): void;
|
|
347
|
-
replaceWith(...nodes: (Node | string)[]): void;
|
|
348
|
-
readonly nextElementSibling: Element | null;
|
|
349
|
-
readonly previousElementSibling: Element | null;
|
|
350
|
-
readonly childElementCount: number;
|
|
351
|
-
readonly children: HTMLCollection;
|
|
352
|
-
readonly firstElementChild: Element | null;
|
|
353
|
-
readonly lastElementChild: Element | null;
|
|
354
|
-
append(...nodes: (Node | string)[]): void;
|
|
355
|
-
prepend(...nodes: (Node | string)[]): void;
|
|
356
|
-
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
357
|
-
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
358
|
-
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
359
|
-
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
360
|
-
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
361
|
-
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
362
|
-
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
363
|
-
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
364
|
-
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
365
|
-
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
366
|
-
replaceChildren(...nodes: (Node | string)[]): void;
|
|
367
|
-
readonly assignedSlot: HTMLSlotElement | null;
|
|
368
|
-
readonly attributeStyleMap: StylePropertyMap;
|
|
369
|
-
get style(): CSSStyleDeclaration;
|
|
370
|
-
set style(cssText: string): any;
|
|
371
|
-
contentEditable: string;
|
|
372
|
-
enterKeyHint: string;
|
|
373
|
-
inputMode: string;
|
|
374
|
-
readonly isContentEditable: boolean;
|
|
375
|
-
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
376
|
-
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
377
|
-
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
378
|
-
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
379
|
-
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
380
|
-
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
381
|
-
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
382
|
-
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
383
|
-
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
384
|
-
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
385
|
-
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
386
|
-
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
387
|
-
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
388
|
-
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
389
|
-
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
390
|
-
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
391
|
-
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
392
|
-
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
393
|
-
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
394
|
-
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
395
|
-
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
396
|
-
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
397
|
-
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
398
|
-
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
399
|
-
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
400
|
-
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
401
|
-
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
402
|
-
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
403
|
-
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
404
|
-
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
405
|
-
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
406
|
-
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
407
|
-
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
408
|
-
onerror: OnErrorEventHandler;
|
|
409
|
-
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
410
|
-
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
411
|
-
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
412
|
-
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
413
|
-
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
414
|
-
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
415
|
-
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
416
|
-
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
417
|
-
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
418
|
-
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
419
|
-
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
420
|
-
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
421
|
-
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
422
|
-
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
423
|
-
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
424
|
-
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
425
|
-
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
426
|
-
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
427
|
-
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
428
|
-
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
429
|
-
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
430
|
-
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
431
|
-
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
432
|
-
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
433
|
-
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
434
|
-
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
435
|
-
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
436
|
-
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
437
|
-
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
438
|
-
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
439
|
-
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
440
|
-
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
441
|
-
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
442
|
-
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
443
|
-
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
444
|
-
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
445
|
-
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
446
|
-
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
447
|
-
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
448
|
-
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
449
|
-
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
450
|
-
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
451
|
-
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
452
|
-
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
453
|
-
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
454
|
-
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
455
|
-
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
456
|
-
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
457
|
-
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
458
|
-
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
459
|
-
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
460
|
-
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
461
|
-
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
462
|
-
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
463
|
-
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
464
|
-
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
465
|
-
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
466
|
-
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
467
|
-
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
468
|
-
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
469
|
-
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
470
|
-
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
471
|
-
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
472
|
-
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
473
|
-
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
474
|
-
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
475
|
-
autofocus: boolean;
|
|
476
|
-
readonly dataset: DOMStringMap;
|
|
477
|
-
nonce?: string;
|
|
478
|
-
tabIndex: number;
|
|
479
|
-
blur(): void;
|
|
480
|
-
focus(options?: FocusOptions): void;
|
|
481
|
-
}) & (new () => HTMLElement & GenesisElement) & {
|
|
115
|
+
declare const EntityManagement_base: (new () => HTMLElement & GenesisElement) & {
|
|
482
116
|
from<TBase extends {
|
|
483
117
|
new (): HTMLElement;
|
|
484
118
|
prototype: HTMLElement;
|
|
485
119
|
}>(BaseType: TBase): new () => InstanceType<TBase> & GenesisElement;
|
|
486
120
|
define<TType extends Function>(type: TType, nameOrDef?: string | import("@microsoft/fast-element").PartialFASTElementDefinition | undefined): TType;
|
|
487
|
-
}
|
|
121
|
+
} & import("@microsoft/fast-element").Constructable<import("@genesislcap/foundation-utils").LifecycleElement>;
|
|
488
122
|
/**
|
|
489
123
|
* Main class which defines the entity management functionality
|
|
490
124
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AACpE,OAAO,EACL,OAAO,EACP,iBAAiB,EAGjB,YAAY,EAEb,MAAM,+BAA+B,CAAC;AACvC,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAa,MAAM,+BAA+B,CAAC;AACzE,OAAO,EAGL,KAAK,qBAAqB,EAC3B,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAEL,eAAe,EAEf,KAAK,EACL,cAAc,EACf,MAAM,4BAA4B,CAAC;AAMpC,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAChG,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAIL,cAAc,EAGf,MAAM,uBAAuB,CAAC;AAC/B,OAAO,KAAK,EAAoB,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AAEjF,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAC/B,OAAO,EACL,gBAAgB,EAChB,UAAU,EACV,gBAAgB,EAChB,YAAY,EACZ,iBAAiB,EACjB,UAAU,EACV,aAAa,EACd,MAAM,UAAU,CAAC;AAMlB;;;;;GAKG;AACH,eAAO,MAAM,iCAAiC,
|
|
1
|
+
{"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entities.template.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.template.ts"],"names":[],"mappings":"AAMA,OAAO,EAAiB,gBAAgB,EAAc,MAAM,UAAU,CAAC;AACvE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AA4EnD;;GAEG;AACH,eAAO,MAAM,mBAAmB,
|
|
1
|
+
{"version":3,"file":"entities.template.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.template.ts"],"names":[],"mappings":"AAMA,OAAO,EAAiB,gBAAgB,EAAc,MAAM,UAAU,CAAC;AACvE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AA4EnD;;GAEG;AACH,eAAO,MAAM,mBAAmB,WACtB,MAAM,YACJ,gBAAgB,0EAmD3B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,sBAAsB,WAAY,MAAM,0EAiBpD,CAAC;AAEF,eAAO,MAAM,YAAY,WAAY,MAAM,0EAU1C,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,cAAc,WAAY,MAAM,0EAuB5C,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,oBAAoB,WAAY,MAAM,0EA4BlD,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,WAAY,MAAM,0EAmHjD,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,QAAQ,uEAEpB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"smartFormModal.d.ts","sourceRoot":"","sources":["../../../src/entities/smartFormModal.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAE9D,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAI9C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgGG;AACH,qBAmDa,cAAe,SAAQ,gBAAgB;IAClD,gBAAgB;IAChB,WAAW,UAAS;IACpB,gBAAgB;IAChB,aAAa,EAAE,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAY;IACtD,gBAAgB;IAChB,gBAAgB,EAAE,gBAAgB,CAAwB;IAE1D;;;;;;;;;;;;OAYG;IAC2B,KAAK,EAAE,MAAM,CAAC;IAC5C,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM;
|
|
1
|
+
{"version":3,"file":"smartFormModal.d.ts","sourceRoot":"","sources":["../../../src/entities/smartFormModal.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAE9D,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAI9C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgGG;AACH,qBAmDa,cAAe,SAAQ,gBAAgB;IAClD,gBAAgB;IAChB,WAAW,UAAS;IACpB,gBAAgB;IAChB,aAAa,EAAE,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAY;IACtD,gBAAgB;IAChB,gBAAgB,EAAE,gBAAgB,CAAwB;IAE1D;;;;;;;;;;;;OAYG;IAC2B,KAAK,EAAE,MAAM,CAAC;IAC5C,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,QAEnC;IAED;;;;;;;;;;;;OAYG;IACkC,WAAW,EAAE,MAAM,CAAC;IAEzD;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACS,YAAY,EAAE,QAAQ,CAAC;IACnC,mBAAmB,CAAC,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,QAE9C;IAED;;;;;;;;;;;;OAYG;IACkC,WAAW,EAAE,MAAM,CAAC;IACzD,kBAAkB,CAAC,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,QAEzC;CACF"}
|