@genesislcap/foundation-entity-management 14.237.2-alpha-78ebbc0.0 → 14.238.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/entities/entities.d.ts +51 -80
- package/dist/dts/entities/entities.d.ts.map +1 -1
- package/dist/dts/list/list.d.ts +29 -46
- package/dist/dts/list/list.d.ts.map +1 -1
- package/dist/dts/users/users.d.ts +32 -46
- package/dist/dts/users/users.d.ts.map +1 -1
- package/dist/dts/utils/search-bar-utils.d.ts +2 -2
- package/dist/dts/utils/search-bar-utils.d.ts.map +1 -1
- package/dist/esm/entities/entities.js +2 -2
- package/dist/esm/list/list.js +1 -1
- package/dist/esm/users/users.js +1 -1
- package/dist/foundation-entity-management.api.json +21 -85
- package/dist/foundation-entity-management.d.ts +84 -127
- package/dist/tsdoc-metadata.json +1 -1
- package/docs/api/foundation-entity-management.buttoncellrenderer.md +1 -14
- package/docs/api/foundation-entity-management.geterrorformat.md +1 -12
- package/docs/api/foundation-entity-management.md +2 -7
- package/docs/{api-report.md.api.md → api-report.md} +0 -2
- package/package.json +22 -22
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
import type { ColDef, ColGroupDef, GridOptions } from '@ag-grid-community/core';
|
|
3
2
|
import { DatasourceType, GridProRendererTypes } from '@genesislcap/foundation-zero-grid-pro';
|
|
4
3
|
import { FASTElement } from '@microsoft/fast-element';
|
|
@@ -56,15 +55,11 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
56
55
|
readonly offsetTop: number;
|
|
57
56
|
readonly offsetWidth: number;
|
|
58
57
|
outerText: string;
|
|
59
|
-
popover: string;
|
|
60
58
|
spellcheck: boolean;
|
|
61
59
|
title: string;
|
|
62
60
|
translate: boolean;
|
|
63
61
|
attachInternals(): ElementInternals;
|
|
64
62
|
click(): void;
|
|
65
|
-
hidePopover(): void;
|
|
66
|
-
showPopover(): void;
|
|
67
|
-
togglePopover(force?: boolean): boolean;
|
|
68
63
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
69
64
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
70
65
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -86,6 +81,9 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
86
81
|
readonly part: DOMTokenList;
|
|
87
82
|
readonly prefix: string;
|
|
88
83
|
readonly scrollHeight: number;
|
|
84
|
+
/**
|
|
85
|
+
* Column definition, default to the UsersColumnConfig
|
|
86
|
+
*/
|
|
89
87
|
scrollLeft: number;
|
|
90
88
|
scrollTop: number;
|
|
91
89
|
readonly scrollWidth: number;
|
|
@@ -93,12 +91,9 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
93
91
|
slot: string;
|
|
94
92
|
readonly tagName: string;
|
|
95
93
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
96
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
97
94
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
98
95
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
99
|
-
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
100
96
|
closest<E extends Element = Element>(selectors: string): E;
|
|
101
|
-
computedStyleMap(): StylePropertyMapReadOnly;
|
|
102
97
|
getAttribute(qualifiedName: string): string;
|
|
103
98
|
getAttributeNS(namespace: string, localName: string): string;
|
|
104
99
|
getAttributeNames(): string[];
|
|
@@ -107,14 +102,11 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
107
102
|
getBoundingClientRect(): DOMRect;
|
|
108
103
|
getClientRects(): DOMRectList;
|
|
109
104
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
110
|
-
getElementsByTagName<
|
|
111
|
-
getElementsByTagName<
|
|
112
|
-
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
113
|
-
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
105
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
106
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
|
114
107
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
115
108
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
116
109
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
117
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
118
110
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
119
111
|
hasAttribute(qualifiedName: string): boolean;
|
|
120
112
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -171,24 +163,24 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
171
163
|
normalize(): void;
|
|
172
164
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
173
165
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
174
|
-
readonly
|
|
175
|
-
readonly
|
|
176
|
-
readonly
|
|
177
|
-
readonly
|
|
178
|
-
readonly
|
|
179
|
-
readonly
|
|
180
|
-
readonly
|
|
181
|
-
readonly
|
|
182
|
-
readonly
|
|
183
|
-
readonly
|
|
184
|
-
readonly
|
|
185
|
-
readonly
|
|
186
|
-
readonly
|
|
187
|
-
readonly
|
|
188
|
-
readonly
|
|
189
|
-
readonly
|
|
190
|
-
readonly
|
|
191
|
-
readonly
|
|
166
|
+
readonly ATTRIBUTE_NODE: number;
|
|
167
|
+
readonly CDATA_SECTION_NODE: number;
|
|
168
|
+
readonly COMMENT_NODE: number;
|
|
169
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
170
|
+
readonly DOCUMENT_NODE: number;
|
|
171
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
172
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
173
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
174
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
175
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
176
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
177
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
178
|
+
readonly ELEMENT_NODE: number;
|
|
179
|
+
readonly ENTITY_NODE: number;
|
|
180
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
181
|
+
readonly NOTATION_NODE: number;
|
|
182
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
183
|
+
readonly TEXT_NODE: number;
|
|
192
184
|
dispatchEvent(event: Event): boolean;
|
|
193
185
|
ariaAtomic: string;
|
|
194
186
|
ariaAutoComplete: string;
|
|
@@ -196,9 +188,9 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
196
188
|
ariaChecked: string;
|
|
197
189
|
ariaColCount: string;
|
|
198
190
|
ariaColIndex: string;
|
|
191
|
+
ariaColIndexText: string;
|
|
199
192
|
ariaColSpan: string;
|
|
200
193
|
ariaCurrent: string;
|
|
201
|
-
ariaDescription: string;
|
|
202
194
|
ariaDisabled: string;
|
|
203
195
|
ariaExpanded: string;
|
|
204
196
|
ariaHasPopup: string;
|
|
@@ -220,6 +212,7 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
220
212
|
ariaRoleDescription: string;
|
|
221
213
|
ariaRowCount: string;
|
|
222
214
|
ariaRowIndex: string;
|
|
215
|
+
ariaRowIndexText: string;
|
|
223
216
|
ariaRowSpan: string;
|
|
224
217
|
ariaSelected: string;
|
|
225
218
|
ariaSetSize: string;
|
|
@@ -244,19 +237,17 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
244
237
|
readonly lastElementChild: Element;
|
|
245
238
|
append(...nodes: (string | Node)[]): void;
|
|
246
239
|
prepend(...nodes: (string | Node)[]): void;
|
|
247
|
-
querySelector<
|
|
248
|
-
querySelector<
|
|
249
|
-
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
250
|
-
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
240
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
|
241
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
|
251
242
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
252
|
-
querySelectorAll<
|
|
253
|
-
querySelectorAll<
|
|
254
|
-
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
255
|
-
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
243
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
|
244
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
|
256
245
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
257
246
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
258
247
|
readonly assignedSlot: HTMLSlotElement;
|
|
259
|
-
|
|
248
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
249
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
250
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
260
251
|
readonly style: CSSStyleDeclaration;
|
|
261
252
|
contentEditable: string;
|
|
262
253
|
enterKeyHint: string;
|
|
@@ -269,7 +260,6 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
269
260
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
270
261
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
271
262
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
272
|
-
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
273
263
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
274
264
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
275
265
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -278,9 +268,7 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
278
268
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
279
269
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
280
270
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
281
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
282
271
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
283
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
284
272
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
285
273
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
286
274
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -313,7 +301,6 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
313
301
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
314
302
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
315
303
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
316
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
317
304
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
318
305
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
319
306
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -330,7 +317,6 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
330
317
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
331
318
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
332
319
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
333
|
-
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
334
320
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
335
321
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
336
322
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"users.d.ts","sourceRoot":"","sources":["../../../src/users/users.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"users.d.ts","sourceRoot":"","sources":["../../../src/users/users.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAIhF,OAAO,EAAE,cAAc,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAC7F,OAAO,EAAiC,WAAW,EAAc,MAAM,yBAAyB,CAAC;AACjG,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAQ3C;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;IAoC7B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAsKA;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAtKL;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,qBASa,KAAM,SAAQ,UAA2B;IACpD;;;;;;;;OAQG;IACM,OAAO,CAAC,OAAO,CAAU;IAElC;;;;;;;;OAQG;IACG,OAAO,CAAC,IAAI,CAAO;IAEzB;;;;;;;OAOG;IACS,gBAAgB,EAAE,uBAAuB,CAAmC;IAExF;;;OAGG;IAC0C,MAAM,EAAE,MAAM,CAAU;IAErE;;;OAGG;IACG,YAAY,SAAe;IAEjC;;;;;;;;;OASG;IAC8C,qBAAqB,EAAE,MAAM,CAClD;IAE5B;;;OAGG;IACwD,eAAe,EAAE,OAAO,CAAS;IAE5F;;;;OAIG;IACqC,cAAc,EAAE,cAAc,CAAY;IAElF,IAAI,sBAAsB,IAAI,OAAO,CAEpC;IAED;;;OAGG;IACS,WAAW,EAAE,WAAW,CAAC;IAErC;;;;;OAKG;IACI,YAAY;;;;;;;;;IAYnB;;;;;OAKG;IACI,YAAY;;;;;IAYnB;;OAEG;IACS,OAAO,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,GAAG,WAAW,CAAC,GAAG,CAAC,CAAC,EAAE,CAAqB;IAEhE,sBAAsB,EAAE,eAAe,EAAE,CAAM;IAC/C,sBAAsB,EAAE,eAAe,EAAE,CAAM;IAE/C,aAAa,EAAE,OAAO,CAAC;IACnC,OAAO,CAAC,aAAa,CAAS;IAE9B;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;;OAGG;IACG,QAAQ,EAAE,MAAM,CAAqB;IAE3C;;;OAGG;IACG,cAAc,EAAE,MAAM,CAAU;IAEtC;;;OAGG;IACG,WAAW,EAAE,MAAM,CAAkB;IAE3C;;;OAGG;IACG,yBAAyB,EAAE,MAAM,CAAuB;IAE9D;;OAEG;;IAaG,iBAAiB;IAgBjB,oBAAoB,IAAI,OAAO,CAAC,IAAI,CAAC;IASlC,SAAS,IAAI,IAAI;IAe1B;;;OAGG;IACH,sBAAsB,CAAC,MAAM,KAAA;;;;;;;;IAW7B;;;;;;;;OAQG;IACG,YAAY,CAAC,MAAM,KAAA;IAoCzB;;OAEG;IACG,YAAY,CAAC,IAAI,KAAA;;;;;;;;;;;;;;;CAwBxB"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ColDef } from '@ag-grid-community/core';
|
|
2
2
|
import { Metadata } from '@genesislcap/foundation-comms';
|
|
3
3
|
import { AvailableOption } from '@genesislcap/foundation-ui';
|
|
4
|
-
export declare const getSearchBarColumnsConfig: (columns: ColDef[], meta: Metadata, changeCase: (input: string) => string) => AvailableOption[];
|
|
5
|
-
export declare const getSearchBarMetaConfig: (meta: Metadata, changeCase: (input: string) => string) => AvailableOption[];
|
|
4
|
+
export declare const getSearchBarColumnsConfig: (columns: ColDef[], meta: Metadata, changeCase: (input: string) => string) => AvailableOption<string>[];
|
|
5
|
+
export declare const getSearchBarMetaConfig: (meta: Metadata, changeCase: (input: string) => string) => AvailableOption<string>[];
|
|
6
6
|
//# sourceMappingURL=search-bar-utils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-bar-utils.d.ts","sourceRoot":"","sources":["../../../src/utils/search-bar-utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAgC,MAAM,+BAA+B,CAAC;AACvF,OAAO,EAAE,eAAe,EAAwC,MAAM,4BAA4B,CAAC;AAEnG,eAAO,MAAM,yBAAyB,YAC3B,MAAM,EAAE,QACX,QAAQ,sBACM,MAAM,KAAK,MAAM,
|
|
1
|
+
{"version":3,"file":"search-bar-utils.d.ts","sourceRoot":"","sources":["../../../src/utils/search-bar-utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAgC,MAAM,+BAA+B,CAAC;AACvF,OAAO,EAAE,eAAe,EAAwC,MAAM,4BAA4B,CAAC;AAEnG,eAAO,MAAM,yBAAyB,YAC3B,MAAM,EAAE,QACX,QAAQ,sBACM,MAAM,KAAK,MAAM,8BAgBpC,CAAC;AAEJ,eAAO,MAAM,sBAAsB,SAAU,QAAQ,sBAAsB,MAAM,KAAK,MAAM,8BAczF,CAAC"}
|
|
@@ -366,8 +366,8 @@ let EntityManagement = class EntityManagement extends LifecycleMixin(FASTElement
|
|
|
366
366
|
* @param e - CustomEvent where `e.detail` is the entity to edit.
|
|
367
367
|
* @internal
|
|
368
368
|
*/
|
|
369
|
-
editEntity(
|
|
370
|
-
return __awaiter(this,
|
|
369
|
+
editEntity({ detail }) {
|
|
370
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
371
371
|
this.modalFormType = ModalFormType.Update;
|
|
372
372
|
this.formUiSchema = this.updateFormUiSchema;
|
|
373
373
|
this.formResourceName = this.updateEvent;
|
package/dist/esm/list/list.js
CHANGED
|
@@ -76,8 +76,8 @@ let List = class List extends LifecycleMixin(FASTElement) {
|
|
|
76
76
|
});
|
|
77
77
|
}
|
|
78
78
|
onCellEditingStopped(event) {
|
|
79
|
+
var _a, _b;
|
|
79
80
|
return __awaiter(this, void 0, void 0, function* () {
|
|
80
|
-
var _a, _b;
|
|
81
81
|
const jsonSchemaResponse = yield this.connect.getJSONSchema(this.updateEvent);
|
|
82
82
|
const jsonSchema = (_b = (_a = jsonSchemaResponse === null || jsonSchemaResponse === void 0 ? void 0 : jsonSchemaResponse.INBOUND) === null || _a === void 0 ? void 0 : _a.properties) === null || _b === void 0 ? void 0 : _b.DETAILS;
|
|
83
83
|
const editedField = event.column.getColDef().field;
|
package/dist/esm/users/users.js
CHANGED
|
@@ -276,8 +276,8 @@ let Users = class Users extends LifecycleMixin(FASTElement) {
|
|
|
276
276
|
* @internal
|
|
277
277
|
*/
|
|
278
278
|
readUserData(user) {
|
|
279
|
+
var _a;
|
|
279
280
|
return __awaiter(this, void 0, void 0, function* () {
|
|
280
|
-
var _a;
|
|
281
281
|
const userProfiles = yield this.connect.request('PROFILE_USER', {
|
|
282
282
|
REQUEST: {
|
|
283
283
|
USER_NAME: user.USER_NAME,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"metadata": {
|
|
3
3
|
"toolPackage": "@microsoft/api-extractor",
|
|
4
|
-
"toolVersion": "7.
|
|
4
|
+
"toolVersion": "7.34.9",
|
|
5
5
|
"schemaVersion": 1011,
|
|
6
6
|
"oldestForwardsCompatibleVersion": 1001,
|
|
7
7
|
"tsdocConfig": {
|
|
@@ -179,37 +179,17 @@
|
|
|
179
179
|
"preserveMemberOrder": false,
|
|
180
180
|
"members": [
|
|
181
181
|
{
|
|
182
|
-
"kind": "
|
|
183
|
-
"canonicalReference": "@genesislcap/foundation-entity-management!buttonCellRenderer:
|
|
182
|
+
"kind": "Variable",
|
|
183
|
+
"canonicalReference": "@genesislcap/foundation-entity-management!buttonCellRenderer:var",
|
|
184
184
|
"docComment": "/**\n * @public\n */\n",
|
|
185
185
|
"excerptTokens": [
|
|
186
186
|
{
|
|
187
187
|
"kind": "Content",
|
|
188
|
-
"text": "buttonCellRenderer:
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
"kind": "Content",
|
|
192
|
-
"text": "any"
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
"kind": "Content",
|
|
196
|
-
"text": ", clickHandler: "
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
"kind": "Content",
|
|
200
|
-
"text": "any"
|
|
201
|
-
},
|
|
202
|
-
{
|
|
203
|
-
"kind": "Content",
|
|
204
|
-
"text": ", contentTemplate: "
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
"kind": "Content",
|
|
208
|
-
"text": "any"
|
|
188
|
+
"text": "buttonCellRenderer: "
|
|
209
189
|
},
|
|
210
190
|
{
|
|
211
191
|
"kind": "Content",
|
|
212
|
-
"text": ") => "
|
|
192
|
+
"text": "(title: any, clickHandler: any, contentTemplate: any) => "
|
|
213
193
|
},
|
|
214
194
|
{
|
|
215
195
|
"kind": "Reference",
|
|
@@ -218,39 +198,13 @@
|
|
|
218
198
|
}
|
|
219
199
|
],
|
|
220
200
|
"fileUrlPath": "src/utils/renderer.ts",
|
|
221
|
-
"
|
|
222
|
-
"startIndex": 7,
|
|
223
|
-
"endIndex": 8
|
|
224
|
-
},
|
|
201
|
+
"isReadonly": true,
|
|
225
202
|
"releaseTag": "Public",
|
|
226
|
-
"
|
|
227
|
-
"
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
"startIndex": 1,
|
|
232
|
-
"endIndex": 2
|
|
233
|
-
},
|
|
234
|
-
"isOptional": false
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
"parameterName": "clickHandler",
|
|
238
|
-
"parameterTypeTokenRange": {
|
|
239
|
-
"startIndex": 3,
|
|
240
|
-
"endIndex": 4
|
|
241
|
-
},
|
|
242
|
-
"isOptional": false
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
"parameterName": "contentTemplate",
|
|
246
|
-
"parameterTypeTokenRange": {
|
|
247
|
-
"startIndex": 5,
|
|
248
|
-
"endIndex": 6
|
|
249
|
-
},
|
|
250
|
-
"isOptional": false
|
|
251
|
-
}
|
|
252
|
-
],
|
|
253
|
-
"name": "buttonCellRenderer"
|
|
203
|
+
"name": "buttonCellRenderer",
|
|
204
|
+
"variableTypeTokenRange": {
|
|
205
|
+
"startIndex": 1,
|
|
206
|
+
"endIndex": 3
|
|
207
|
+
}
|
|
254
208
|
},
|
|
255
209
|
{
|
|
256
210
|
"kind": "TypeAlias",
|
|
@@ -1313,45 +1267,27 @@
|
|
|
1313
1267
|
"implementsTokenRanges": []
|
|
1314
1268
|
},
|
|
1315
1269
|
{
|
|
1316
|
-
"kind": "
|
|
1317
|
-
"canonicalReference": "@genesislcap/foundation-entity-management!getErrorFormat:
|
|
1270
|
+
"kind": "Variable",
|
|
1271
|
+
"canonicalReference": "@genesislcap/foundation-entity-management!getErrorFormat:var",
|
|
1318
1272
|
"docComment": "/**\n * Format the error as a string with a different format depending on whether `err` has a `FIELD` property or not\n *\n * @public\n */\n",
|
|
1319
1273
|
"excerptTokens": [
|
|
1320
1274
|
{
|
|
1321
1275
|
"kind": "Content",
|
|
1322
|
-
"text": "getErrorFormat:
|
|
1276
|
+
"text": "getErrorFormat: "
|
|
1323
1277
|
},
|
|
1324
1278
|
{
|
|
1325
1279
|
"kind": "Content",
|
|
1326
|
-
"text": "any"
|
|
1327
|
-
},
|
|
1328
|
-
{
|
|
1329
|
-
"kind": "Content",
|
|
1330
|
-
"text": ") => "
|
|
1331
|
-
},
|
|
1332
|
-
{
|
|
1333
|
-
"kind": "Content",
|
|
1334
|
-
"text": "string"
|
|
1280
|
+
"text": "(err: any) => string"
|
|
1335
1281
|
}
|
|
1336
1282
|
],
|
|
1337
1283
|
"fileUrlPath": "src/utils/formatting.ts",
|
|
1338
|
-
"
|
|
1339
|
-
"startIndex": 3,
|
|
1340
|
-
"endIndex": 4
|
|
1341
|
-
},
|
|
1284
|
+
"isReadonly": true,
|
|
1342
1285
|
"releaseTag": "Public",
|
|
1343
|
-
"
|
|
1344
|
-
"
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
"startIndex": 1,
|
|
1349
|
-
"endIndex": 2
|
|
1350
|
-
},
|
|
1351
|
-
"isOptional": false
|
|
1352
|
-
}
|
|
1353
|
-
],
|
|
1354
|
-
"name": "getErrorFormat"
|
|
1286
|
+
"name": "getErrorFormat",
|
|
1287
|
+
"variableTypeTokenRange": {
|
|
1288
|
+
"startIndex": 1,
|
|
1289
|
+
"endIndex": 2
|
|
1290
|
+
}
|
|
1355
1291
|
},
|
|
1356
1292
|
{
|
|
1357
1293
|
"kind": "Variable",
|