@genesislcap/foundation-entity-management 14.226.0 → 14.226.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 +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,5 +1,3 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
|
|
3
1
|
import { Auth } from '@genesislcap/foundation-comms';
|
|
4
2
|
import { AvailableOption } from '@genesislcap/foundation-ui';
|
|
5
3
|
import { ColDef } from '@ag-grid-community/core';
|
|
@@ -572,20 +570,15 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
572
570
|
readonly offsetParent: Element;
|
|
573
571
|
readonly offsetTop: number;
|
|
574
572
|
readonly offsetWidth: number;
|
|
575
|
-
/**
|
|
576
|
-
* Title of the grid
|
|
577
|
-
* @public
|
|
578
|
-
*/
|
|
579
573
|
outerText: string;
|
|
580
|
-
|
|
581
|
-
|
|
574
|
+
spellcheck: boolean; /**
|
|
575
|
+
* Name of the event handler on the Genesis server which handles creating an entity
|
|
576
|
+
* @public
|
|
577
|
+
*/
|
|
582
578
|
title: string;
|
|
583
579
|
translate: boolean;
|
|
584
580
|
attachInternals(): ElementInternals;
|
|
585
581
|
click(): void;
|
|
586
|
-
hidePopover(): void;
|
|
587
|
-
showPopover(): void;
|
|
588
|
-
togglePopover(force?: boolean): boolean;
|
|
589
582
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
590
583
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
591
584
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -606,24 +599,20 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
606
599
|
readonly ownerDocument: Document;
|
|
607
600
|
readonly part: DOMTokenList;
|
|
608
601
|
readonly prefix: string;
|
|
609
|
-
readonly scrollHeight: number;
|
|
610
|
-
* If set to 'server' it will enable Server-Side Row Model and use `grid-pro-server-side-datasource` for the grid of the `entity-list` sub-component.
|
|
611
|
-
* By default `grid-pro-client-side-datasource` will be used.
|
|
612
|
-
* @public
|
|
613
|
-
*/
|
|
602
|
+
readonly scrollHeight: number;
|
|
614
603
|
scrollLeft: number;
|
|
615
604
|
scrollTop: number;
|
|
616
605
|
readonly scrollWidth: number;
|
|
617
|
-
readonly shadowRoot: ShadowRoot;
|
|
606
|
+
readonly shadowRoot: ShadowRoot; /**
|
|
607
|
+
* If true, will enable row flashing for all rows for `add` transactions
|
|
608
|
+
* @public
|
|
609
|
+
*/
|
|
618
610
|
slot: string;
|
|
619
611
|
readonly tagName: string;
|
|
620
612
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
621
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
622
613
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
623
614
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
624
|
-
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
625
615
|
closest<E extends Element = Element>(selectors: string): E;
|
|
626
|
-
computedStyleMap(): StylePropertyMapReadOnly;
|
|
627
616
|
getAttribute(qualifiedName: string): string;
|
|
628
617
|
getAttributeNS(namespace: string, localName: string): string;
|
|
629
618
|
getAttributeNames(): string[];
|
|
@@ -632,14 +621,11 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
632
621
|
getBoundingClientRect(): DOMRect;
|
|
633
622
|
getClientRects(): DOMRectList;
|
|
634
623
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
635
|
-
getElementsByTagName<
|
|
636
|
-
getElementsByTagName<
|
|
637
|
-
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
638
|
-
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
624
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
625
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
|
639
626
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
640
627
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
641
628
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
642
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
643
629
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
644
630
|
hasAttribute(qualifiedName: string): boolean;
|
|
645
631
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -667,10 +653,7 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
667
653
|
setAttributeNode(attr: Attr): Attr;
|
|
668
654
|
setAttributeNodeNS(attr: Attr): Attr;
|
|
669
655
|
setPointerCapture(pointerId: number): void;
|
|
670
|
-
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
671
|
-
* Hides edit button
|
|
672
|
-
* @public
|
|
673
|
-
*/
|
|
656
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
674
657
|
webkitMatchesSelector(selectors: string): boolean;
|
|
675
658
|
readonly baseURI: string;
|
|
676
659
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
@@ -681,22 +664,18 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
681
664
|
readonly nodeName: string;
|
|
682
665
|
readonly nodeType: number;
|
|
683
666
|
nodeValue: string;
|
|
684
|
-
readonly parentElement: HTMLElement;
|
|
685
|
-
* The case type to use for the header names. If not set, the default CONSTANT_CASE will be used.
|
|
686
|
-
* @remarks Can be one of the following: camelCase, capitalCase, dotCase, headerCase, noCase, paramCase, pascalCase, pathCase, sentenceCase, snakeCase.
|
|
687
|
-
* @public
|
|
688
|
-
*/
|
|
667
|
+
readonly parentElement: HTMLElement;
|
|
689
668
|
readonly parentNode: ParentNode;
|
|
690
669
|
readonly previousSibling: ChildNode;
|
|
691
670
|
textContent: string;
|
|
692
671
|
appendChild<T_1 extends Node>(node: T_1): T_1;
|
|
672
|
+
/**
|
|
673
|
+
* @internal
|
|
674
|
+
*/
|
|
693
675
|
compareDocumentPosition(other: Node): number;
|
|
694
676
|
contains(other: Node): boolean;
|
|
695
677
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
696
|
-
hasChildNodes(): boolean;
|
|
697
|
-
* Allows configuration of the search bar component, if not provided it would build configuration based on columns in the grid
|
|
698
|
-
* * @public
|
|
699
|
-
*/
|
|
678
|
+
hasChildNodes(): boolean;
|
|
700
679
|
insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
|
|
701
680
|
isDefaultNamespace(namespace: string): boolean;
|
|
702
681
|
isEqualNode(otherNode: Node): boolean;
|
|
@@ -706,50 +685,43 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
706
685
|
normalize(): void;
|
|
707
686
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
708
687
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
709
|
-
readonly
|
|
710
|
-
readonly
|
|
711
|
-
readonly
|
|
712
|
-
|
|
688
|
+
readonly ATTRIBUTE_NODE: number;
|
|
689
|
+
readonly CDATA_SECTION_NODE: number;
|
|
690
|
+
readonly COMMENT_NODE: number;
|
|
691
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
692
|
+
readonly DOCUMENT_NODE: number;
|
|
693
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
694
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
695
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
696
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
697
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
698
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
699
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
700
|
+
readonly ELEMENT_NODE: number;
|
|
701
|
+
readonly ENTITY_NODE: number;
|
|
702
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
703
|
+
readonly NOTATION_NODE: number;
|
|
704
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
705
|
+
readonly TEXT_NODE: number;
|
|
706
|
+
dispatchEvent(event: Event): boolean; /**
|
|
707
|
+
* Determines where the buttons will appear
|
|
713
708
|
* @public
|
|
714
709
|
*/
|
|
715
|
-
readonly CDATA_SECTION_NODE: 4;
|
|
716
|
-
readonly ENTITY_REFERENCE_NODE: 5;
|
|
717
|
-
readonly ENTITY_NODE: 6;
|
|
718
|
-
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
719
|
-
readonly COMMENT_NODE: 8;
|
|
720
|
-
readonly DOCUMENT_NODE: 9;
|
|
721
|
-
readonly DOCUMENT_TYPE_NODE: 10;
|
|
722
|
-
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
723
|
-
readonly NOTATION_NODE: 12;
|
|
724
|
-
readonly DOCUMENT_POSITION_DISCONNECTED: 1; /**
|
|
725
|
-
* The helper function to determine the title of the modal form or button based on the action or type
|
|
726
|
-
* @param actionOrType - The crud action or modal form type
|
|
727
|
-
* @internal
|
|
728
|
-
*/
|
|
729
|
-
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
730
|
-
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
731
|
-
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
732
|
-
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
733
|
-
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
734
|
-
dispatchEvent(event: Event): boolean;
|
|
735
710
|
ariaAtomic: string;
|
|
736
711
|
ariaAutoComplete: string;
|
|
737
712
|
ariaBusy: string;
|
|
738
713
|
ariaChecked: string;
|
|
739
714
|
ariaColCount: string;
|
|
740
715
|
ariaColIndex: string;
|
|
716
|
+
ariaColIndexText: string;
|
|
741
717
|
ariaColSpan: string;
|
|
742
718
|
ariaCurrent: string;
|
|
743
|
-
ariaDescription: string;
|
|
744
719
|
ariaDisabled: string;
|
|
745
720
|
ariaExpanded: string;
|
|
746
721
|
ariaHasPopup: string;
|
|
747
722
|
ariaHidden: string;
|
|
748
723
|
ariaInvalid: string;
|
|
749
|
-
ariaKeyShortcuts: string;
|
|
750
|
-
* Determines whether the button edit should be hidden in the column
|
|
751
|
-
* @internal
|
|
752
|
-
*/
|
|
724
|
+
ariaKeyShortcuts: string;
|
|
753
725
|
ariaLabel: string;
|
|
754
726
|
ariaLevel: string;
|
|
755
727
|
ariaLive: string;
|
|
@@ -765,6 +737,7 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
765
737
|
ariaRoleDescription: string;
|
|
766
738
|
ariaRowCount: string;
|
|
767
739
|
ariaRowIndex: string;
|
|
740
|
+
ariaRowIndexText: string;
|
|
768
741
|
ariaRowSpan: string;
|
|
769
742
|
ariaSelected: string;
|
|
770
743
|
ariaSetSize: string;
|
|
@@ -789,19 +762,17 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
789
762
|
readonly lastElementChild: Element;
|
|
790
763
|
append(...nodes: (string | Node)[]): void;
|
|
791
764
|
prepend(...nodes: (string | Node)[]): void;
|
|
792
|
-
querySelector<
|
|
793
|
-
querySelector<
|
|
794
|
-
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
795
|
-
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
765
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
|
766
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
|
796
767
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
797
|
-
querySelectorAll<
|
|
798
|
-
querySelectorAll<
|
|
799
|
-
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
800
|
-
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
768
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
|
769
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
|
801
770
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
802
771
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
803
772
|
readonly assignedSlot: HTMLSlotElement;
|
|
804
|
-
|
|
773
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
774
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
775
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
805
776
|
readonly style: CSSStyleDeclaration;
|
|
806
777
|
contentEditable: string;
|
|
807
778
|
enterKeyHint: string;
|
|
@@ -814,7 +785,6 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
814
785
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
815
786
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
816
787
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
817
|
-
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
818
788
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
819
789
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
820
790
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -823,9 +793,7 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
823
793
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
824
794
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
825
795
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
826
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
827
796
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
828
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
829
797
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
830
798
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
831
799
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -858,13 +826,16 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
858
826
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
859
827
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
860
828
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
861
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
862
829
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
863
830
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
864
831
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
865
832
|
onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
866
833
|
onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
867
|
-
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
834
|
+
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any; /**
|
|
835
|
+
* Show the entity create form
|
|
836
|
+
* Sets the initial value on the form to be defaultEntityValues if present.
|
|
837
|
+
* @internal
|
|
838
|
+
*/
|
|
868
839
|
onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
869
840
|
onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
870
841
|
onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
@@ -875,7 +846,6 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
875
846
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
876
847
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
877
848
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
878
|
-
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
879
849
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
880
850
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
881
851
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1284,15 +1254,11 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1284
1254
|
readonly offsetTop: number;
|
|
1285
1255
|
readonly offsetWidth: number;
|
|
1286
1256
|
outerText: string;
|
|
1287
|
-
popover: string;
|
|
1288
1257
|
spellcheck: boolean;
|
|
1289
1258
|
title: string;
|
|
1290
1259
|
translate: boolean;
|
|
1291
1260
|
attachInternals(): ElementInternals;
|
|
1292
1261
|
click(): void;
|
|
1293
|
-
hidePopover(): void;
|
|
1294
|
-
showPopover(): void;
|
|
1295
|
-
togglePopover(force?: boolean): boolean;
|
|
1296
1262
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1297
1263
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1298
1264
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -1314,6 +1280,9 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1314
1280
|
readonly part: DOMTokenList;
|
|
1315
1281
|
readonly prefix: string;
|
|
1316
1282
|
readonly scrollHeight: number;
|
|
1283
|
+
/**
|
|
1284
|
+
* Column definition, default to the UsersColumnConfig
|
|
1285
|
+
*/
|
|
1317
1286
|
scrollLeft: number;
|
|
1318
1287
|
scrollTop: number;
|
|
1319
1288
|
readonly scrollWidth: number;
|
|
@@ -1321,12 +1290,9 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1321
1290
|
slot: string;
|
|
1322
1291
|
readonly tagName: string;
|
|
1323
1292
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
1324
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
1325
1293
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
1326
1294
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
1327
|
-
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
1328
1295
|
closest<E extends Element = Element>(selectors: string): E;
|
|
1329
|
-
computedStyleMap(): StylePropertyMapReadOnly;
|
|
1330
1296
|
getAttribute(qualifiedName: string): string;
|
|
1331
1297
|
getAttributeNS(namespace: string, localName: string): string;
|
|
1332
1298
|
getAttributeNames(): string[];
|
|
@@ -1335,14 +1301,11 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1335
1301
|
getBoundingClientRect(): DOMRect;
|
|
1336
1302
|
getClientRects(): DOMRectList;
|
|
1337
1303
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
1338
|
-
getElementsByTagName<
|
|
1339
|
-
getElementsByTagName<
|
|
1340
|
-
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
1341
|
-
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
1304
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
1305
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
|
1342
1306
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
1343
1307
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
1344
1308
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
1345
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
1346
1309
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
1347
1310
|
hasAttribute(qualifiedName: string): boolean;
|
|
1348
1311
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -1399,24 +1362,24 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1399
1362
|
normalize(): void;
|
|
1400
1363
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
1401
1364
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
1402
|
-
readonly
|
|
1403
|
-
readonly
|
|
1404
|
-
readonly
|
|
1405
|
-
readonly
|
|
1406
|
-
readonly
|
|
1407
|
-
readonly
|
|
1408
|
-
readonly
|
|
1409
|
-
readonly
|
|
1410
|
-
readonly
|
|
1411
|
-
readonly
|
|
1412
|
-
readonly
|
|
1413
|
-
readonly
|
|
1414
|
-
readonly
|
|
1415
|
-
readonly
|
|
1416
|
-
readonly
|
|
1417
|
-
readonly
|
|
1418
|
-
readonly
|
|
1419
|
-
readonly
|
|
1365
|
+
readonly ATTRIBUTE_NODE: number;
|
|
1366
|
+
readonly CDATA_SECTION_NODE: number;
|
|
1367
|
+
readonly COMMENT_NODE: number;
|
|
1368
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
1369
|
+
readonly DOCUMENT_NODE: number;
|
|
1370
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
1371
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
1372
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
1373
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
1374
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
1375
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
1376
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
1377
|
+
readonly ELEMENT_NODE: number;
|
|
1378
|
+
readonly ENTITY_NODE: number;
|
|
1379
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
1380
|
+
readonly NOTATION_NODE: number;
|
|
1381
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
1382
|
+
readonly TEXT_NODE: number;
|
|
1420
1383
|
dispatchEvent(event: Event): boolean;
|
|
1421
1384
|
ariaAtomic: string;
|
|
1422
1385
|
ariaAutoComplete: string;
|
|
@@ -1424,9 +1387,9 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1424
1387
|
ariaChecked: string;
|
|
1425
1388
|
ariaColCount: string;
|
|
1426
1389
|
ariaColIndex: string;
|
|
1390
|
+
ariaColIndexText: string;
|
|
1427
1391
|
ariaColSpan: string;
|
|
1428
1392
|
ariaCurrent: string;
|
|
1429
|
-
ariaDescription: string;
|
|
1430
1393
|
ariaDisabled: string;
|
|
1431
1394
|
ariaExpanded: string;
|
|
1432
1395
|
ariaHasPopup: string;
|
|
@@ -1448,6 +1411,7 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1448
1411
|
ariaRoleDescription: string;
|
|
1449
1412
|
ariaRowCount: string;
|
|
1450
1413
|
ariaRowIndex: string;
|
|
1414
|
+
ariaRowIndexText: string;
|
|
1451
1415
|
ariaRowSpan: string;
|
|
1452
1416
|
ariaSelected: string;
|
|
1453
1417
|
ariaSetSize: string;
|
|
@@ -1472,19 +1436,17 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1472
1436
|
readonly lastElementChild: Element;
|
|
1473
1437
|
append(...nodes: (string | Node)[]): void;
|
|
1474
1438
|
prepend(...nodes: (string | Node)[]): void;
|
|
1475
|
-
querySelector<
|
|
1476
|
-
querySelector<
|
|
1477
|
-
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
1478
|
-
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
1439
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
|
1440
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
|
1479
1441
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
1480
|
-
querySelectorAll<
|
|
1481
|
-
querySelectorAll<
|
|
1482
|
-
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
1483
|
-
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
1442
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
|
1443
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
|
1484
1444
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
1485
1445
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
1486
1446
|
readonly assignedSlot: HTMLSlotElement;
|
|
1487
|
-
|
|
1447
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1448
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1449
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1488
1450
|
readonly style: CSSStyleDeclaration;
|
|
1489
1451
|
contentEditable: string;
|
|
1490
1452
|
enterKeyHint: string;
|
|
@@ -1497,7 +1459,6 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1497
1459
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
1498
1460
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1499
1461
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
1500
|
-
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1501
1462
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
1502
1463
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1503
1464
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1506,9 +1467,7 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1506
1467
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1507
1468
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1508
1469
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1509
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1510
1470
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1511
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1512
1471
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1513
1472
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
1514
1473
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -1541,7 +1500,6 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1541
1500
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1542
1501
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1543
1502
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1544
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1545
1503
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1546
1504
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1547
1505
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1558,7 +1516,6 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1558
1516
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1559
1517
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
1560
1518
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1561
|
-
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1562
1519
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
1563
1520
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1564
1521
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
package/dist/tsdoc-metadata.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[Home](./index.md) > [@genesislcap/foundation-entity-management](./foundation-entity-management.md) > [buttonCellRenderer](./foundation-entity-management.buttoncellrenderer.md)
|
|
4
4
|
|
|
5
|
-
## buttonCellRenderer
|
|
5
|
+
## buttonCellRenderer variable
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
**Signature:**
|
|
@@ -10,16 +10,3 @@
|
|
|
10
10
|
```typescript
|
|
11
11
|
buttonCellRenderer: (title: any, clickHandler: any, contentTemplate: any) => ColDef
|
|
12
12
|
```
|
|
13
|
-
|
|
14
|
-
## Parameters
|
|
15
|
-
|
|
16
|
-
| Parameter | Type | Description |
|
|
17
|
-
| --- | --- | --- |
|
|
18
|
-
| title | any | |
|
|
19
|
-
| clickHandler | any | |
|
|
20
|
-
| contentTemplate | any | |
|
|
21
|
-
|
|
22
|
-
**Returns:**
|
|
23
|
-
|
|
24
|
-
ColDef
|
|
25
|
-
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[Home](./index.md) > [@genesislcap/foundation-entity-management](./foundation-entity-management.md) > [getErrorFormat](./foundation-entity-management.geterrorformat.md)
|
|
4
4
|
|
|
5
|
-
## getErrorFormat
|
|
5
|
+
## getErrorFormat variable
|
|
6
6
|
|
|
7
7
|
Format the error as a string with a different format depending on whether `err` has a `FIELD` property or not
|
|
8
8
|
|
|
@@ -11,14 +11,3 @@ Format the error as a string with a different format depending on whether `err`
|
|
|
11
11
|
```typescript
|
|
12
12
|
getErrorFormat: (err: any) => string
|
|
13
13
|
```
|
|
14
|
-
|
|
15
|
-
## Parameters
|
|
16
|
-
|
|
17
|
-
| Parameter | Type | Description |
|
|
18
|
-
| --- | --- | --- |
|
|
19
|
-
| err | any | |
|
|
20
|
-
|
|
21
|
-
**Returns:**
|
|
22
|
-
|
|
23
|
-
string
|
|
24
|
-
|
|
@@ -13,17 +13,12 @@
|
|
|
13
13
|
| [Profiles](./foundation-entity-management.profiles.md) | Main class which defined the profile management functionality |
|
|
14
14
|
| [Users](./foundation-entity-management.users.md) | Main class which defines the user management functionality |
|
|
15
15
|
|
|
16
|
-
## Functions
|
|
17
|
-
|
|
18
|
-
| Function | Description |
|
|
19
|
-
| --- | --- |
|
|
20
|
-
| [buttonCellRenderer(title, clickHandler, contentTemplate)](./foundation-entity-management.buttoncellrenderer.md) | |
|
|
21
|
-
| [getErrorFormat(err)](./foundation-entity-management.geterrorformat.md) | Format the error as a string with a different format depending on whether <code>err</code> has a <code>FIELD</code> property or not |
|
|
22
|
-
|
|
23
16
|
## Variables
|
|
24
17
|
|
|
25
18
|
| Variable | Description |
|
|
26
19
|
| --- | --- |
|
|
20
|
+
| [buttonCellRenderer](./foundation-entity-management.buttoncellrenderer.md) | |
|
|
21
|
+
| [getErrorFormat](./foundation-entity-management.geterrorformat.md) | Format the error as a string with a different format depending on whether <code>err</code> has a <code>FIELD</code> property or not |
|
|
27
22
|
| [logger](./foundation-entity-management.logger.md) | |
|
|
28
23
|
| [UsersColumnConfig](./foundation-entity-management.userscolumnconfig.md) | Defines the default columns which are present on the user management component |
|
|
29
24
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-entity-management",
|
|
3
3
|
"description": "Genesis Foundation Entity Management",
|
|
4
|
-
"version": "14.226.
|
|
4
|
+
"version": "14.226.1",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -52,35 +52,35 @@
|
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@genesislcap/foundation-testing": "14.226.
|
|
56
|
-
"@genesislcap/genx": "14.226.
|
|
57
|
-
"@genesislcap/rollup-builder": "14.226.
|
|
58
|
-
"@genesislcap/ts-builder": "14.226.
|
|
59
|
-
"@genesislcap/uvu-playwright-builder": "14.226.
|
|
60
|
-
"@genesislcap/vite-builder": "14.226.
|
|
61
|
-
"@genesislcap/webpack-builder": "14.226.
|
|
55
|
+
"@genesislcap/foundation-testing": "14.226.1",
|
|
56
|
+
"@genesislcap/genx": "14.226.1",
|
|
57
|
+
"@genesislcap/rollup-builder": "14.226.1",
|
|
58
|
+
"@genesislcap/ts-builder": "14.226.1",
|
|
59
|
+
"@genesislcap/uvu-playwright-builder": "14.226.1",
|
|
60
|
+
"@genesislcap/vite-builder": "14.226.1",
|
|
61
|
+
"@genesislcap/webpack-builder": "14.226.1",
|
|
62
62
|
"rimraf": "^5.0.0"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@ag-grid-community/core": "29.2.0",
|
|
66
|
-
"@genesislcap/foundation-comms": "14.226.
|
|
67
|
-
"@genesislcap/foundation-errors": "14.226.
|
|
68
|
-
"@genesislcap/foundation-events": "14.226.
|
|
69
|
-
"@genesislcap/foundation-forms": "14.226.
|
|
70
|
-
"@genesislcap/foundation-logger": "14.226.
|
|
71
|
-
"@genesislcap/foundation-login": "14.226.
|
|
72
|
-
"@genesislcap/foundation-notifications": "14.226.
|
|
73
|
-
"@genesislcap/foundation-ui": "14.226.
|
|
74
|
-
"@genesislcap/foundation-utils": "14.226.
|
|
75
|
-
"@genesislcap/foundation-zero": "14.226.
|
|
76
|
-
"@genesislcap/foundation-zero-grid-pro": "14.226.
|
|
77
|
-
"@genesislcap/grid-pro": "14.226.
|
|
66
|
+
"@genesislcap/foundation-comms": "14.226.1",
|
|
67
|
+
"@genesislcap/foundation-errors": "14.226.1",
|
|
68
|
+
"@genesislcap/foundation-events": "14.226.1",
|
|
69
|
+
"@genesislcap/foundation-forms": "14.226.1",
|
|
70
|
+
"@genesislcap/foundation-logger": "14.226.1",
|
|
71
|
+
"@genesislcap/foundation-login": "14.226.1",
|
|
72
|
+
"@genesislcap/foundation-notifications": "14.226.1",
|
|
73
|
+
"@genesislcap/foundation-ui": "14.226.1",
|
|
74
|
+
"@genesislcap/foundation-utils": "14.226.1",
|
|
75
|
+
"@genesislcap/foundation-zero": "14.226.1",
|
|
76
|
+
"@genesislcap/foundation-zero-grid-pro": "14.226.1",
|
|
77
|
+
"@genesislcap/grid-pro": "14.226.1",
|
|
78
78
|
"@microsoft/fast-components": "2.30.6",
|
|
79
79
|
"@microsoft/fast-element": "1.14.0",
|
|
80
80
|
"@microsoft/fast-foundation": "2.49.6",
|
|
81
81
|
"@microsoft/fast-router": "0.4.8",
|
|
82
82
|
"change-case": "^4.1.2",
|
|
83
|
-
"tslib": "2.
|
|
83
|
+
"tslib": "^2.3.1"
|
|
84
84
|
},
|
|
85
85
|
"repository": {
|
|
86
86
|
"type": "git",
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
"access": "public"
|
|
92
92
|
},
|
|
93
93
|
"customElements": "dist/custom-elements.json",
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "e691c1741d135edca5271f338f62df8154efb99c"
|
|
95
95
|
}
|