@genesislcap/grid-pro 14.405.0 → 14.406.0-workspaces.2
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/custom-elements.json +1844 -1027
- package/dist/dts/grid-components.d.ts +9 -0
- package/dist/dts/grid-components.d.ts.map +1 -1
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/multicolumn-dropdown/index.d.ts +4 -0
- package/dist/dts/multicolumn-dropdown/index.d.ts.map +1 -0
- package/dist/dts/multicolumn-dropdown/multicolumn-dropdown.d.ts +487 -0
- package/dist/dts/multicolumn-dropdown/multicolumn-dropdown.d.ts.map +1 -0
- package/dist/dts/multicolumn-dropdown/multicolumn-dropdown.styles.d.ts +12 -0
- package/dist/dts/multicolumn-dropdown/multicolumn-dropdown.styles.d.ts.map +1 -0
- package/dist/dts/multicolumn-dropdown/multicolumn-dropdown.template.d.ts +14 -0
- package/dist/dts/multicolumn-dropdown/multicolumn-dropdown.template.d.ts.map +1 -0
- package/dist/esm/grid-components.js +2 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/multicolumn-dropdown/index.js +3 -0
- package/dist/esm/multicolumn-dropdown/multicolumn-dropdown.js +380 -0
- package/dist/esm/multicolumn-dropdown/multicolumn-dropdown.styles.js +148 -0
- package/dist/esm/multicolumn-dropdown/multicolumn-dropdown.template.js +75 -0
- package/dist/grid-pro.api.json +1597 -115
- package/dist/grid-pro.d.ts +523 -0
- package/docs/api/grid-pro.display_none_class.md +13 -0
- package/docs/api/grid-pro.dropdownwidthvar.md +13 -0
- package/docs/api/grid-pro.foundationgridcomponents.md +9 -0
- package/docs/api/grid-pro.foundationmulticolumndropdown.md +66 -0
- package/docs/api/grid-pro.getmulticolumndropdowntemplate.md +56 -0
- package/docs/api/grid-pro.md +99 -0
- package/docs/api/grid-pro.multicolumndropdown.basecriteria.md +13 -0
- package/docs/api/grid-pro.multicolumndropdown.changehandler.md +50 -0
- package/docs/api/grid-pro.multicolumndropdown.columndefinitions.md +13 -0
- package/docs/api/grid-pro.multicolumndropdown.columndefinitionschanged.md +15 -0
- package/docs/api/grid-pro.multicolumndropdown.connect.md +15 -0
- package/docs/api/grid-pro.multicolumndropdown.connectedcallback.md +15 -0
- package/docs/api/grid-pro.multicolumndropdown.defaultslottednodes.md +11 -0
- package/docs/api/grid-pro.multicolumndropdown.disabled.md +13 -0
- package/docs/api/grid-pro.multicolumndropdown.disconnectedcallback.md +15 -0
- package/docs/api/grid-pro.multicolumndropdown.displayvalue.md +13 -0
- package/docs/api/grid-pro.multicolumndropdown.dropdownplacement.md +13 -0
- package/docs/api/grid-pro.multicolumndropdown.dropdownwidth.md +13 -0
- package/docs/api/grid-pro.multicolumndropdown.dropdownwidthchanged.md +15 -0
- package/docs/api/grid-pro.multicolumndropdown.filtersearch.md +13 -0
- package/docs/api/grid-pro.multicolumndropdown.filtersearchchanged.md +15 -0
- package/docs/api/grid-pro.multicolumndropdown.grid.md +11 -0
- package/docs/api/grid-pro.multicolumndropdown.hassearchkey.md +11 -0
- package/docs/api/grid-pro.multicolumndropdown.hasslottedcontent.md +11 -0
- package/docs/api/grid-pro.multicolumndropdown.labelkey.md +13 -0
- package/docs/api/grid-pro.multicolumndropdown.md +580 -0
- package/docs/api/grid-pro.multicolumndropdown.open.md +13 -0
- package/docs/api/grid-pro.multicolumndropdown.openchanged.md +15 -0
- package/docs/api/grid-pro.multicolumndropdown.optionselement.md +11 -0
- package/docs/api/grid-pro.multicolumndropdown.request.md +13 -0
- package/docs/api/grid-pro.multicolumndropdown.requestchanged.md +15 -0
- package/docs/api/grid-pro.multicolumndropdown.requestsupportsadvancedsearch.md +18 -0
- package/docs/api/grid-pro.multicolumndropdown.resourcename.md +13 -0
- package/docs/api/grid-pro.multicolumndropdown.searchkey.md +13 -0
- package/docs/api/grid-pro.multicolumndropdown.selectedrow.md +13 -0
- package/docs/api/grid-pro.multicolumndropdown.toggle.md +15 -0
- package/docs/api/grid-pro.multicolumndropdown.value.md +13 -0
- package/docs/api/grid-pro.multicolumndropdown.valuekey.md +13 -0
- package/docs/api/grid-pro.multicolumndropdownstyles.md +13 -0
- package/docs/api/grid-pro.multicolumndropdowntemplate.md +13 -0
- package/docs/api/grid-pro.optionsclass.md +13 -0
- package/docs/api/grid-pro.wasclickoutsideelement.md +66 -0
- package/docs/api-report.md.api.md +95 -0
- package/package.json +14 -13
package/dist/grid-pro.d.ts
CHANGED
|
@@ -820,6 +820,12 @@ export declare const defaultGridProConfig: {
|
|
|
820
820
|
shadowOptions: any;
|
|
821
821
|
};
|
|
822
822
|
|
|
823
|
+
/** Class name used to hide elements with display:none */
|
|
824
|
+
export declare const DISPLAY_NONE_CLASS = "dnone";
|
|
825
|
+
|
|
826
|
+
/** The CSS variable to use for specifying the dropdown's width */
|
|
827
|
+
export declare const dropdownWidthVar = "--dropdown-width";
|
|
828
|
+
|
|
823
829
|
/**
|
|
824
830
|
* The AG Editable Renderer element.
|
|
825
831
|
* @public
|
|
@@ -1105,6 +1111,15 @@ export declare const foundationGridComponents: {
|
|
|
1105
1111
|
styles: ElementStyles;
|
|
1106
1112
|
template: ViewTemplate<StringEditor, any>;
|
|
1107
1113
|
}, StringEditor>;
|
|
1114
|
+
foundationMulticolumnDropdown: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
1115
|
+
baseName: string;
|
|
1116
|
+
template: ViewTemplate<MulticolumnDropdown, any>;
|
|
1117
|
+
styles: ElementStyles;
|
|
1118
|
+
}>) => FoundationElementRegistry< {
|
|
1119
|
+
baseName: string;
|
|
1120
|
+
template: ViewTemplate<MulticolumnDropdown, any>;
|
|
1121
|
+
styles: ElementStyles;
|
|
1122
|
+
}, MulticolumnDropdown>;
|
|
1108
1123
|
foundationStatusPillRenderer: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
1109
1124
|
baseName: string;
|
|
1110
1125
|
template: ViewTemplate<any, any>;
|
|
@@ -1184,6 +1199,23 @@ export declare const foundationGridProShadowOptions: ShadowRootInit;
|
|
|
1184
1199
|
*/
|
|
1185
1200
|
export declare const foundationGridProStyles: ElementStyles;
|
|
1186
1201
|
|
|
1202
|
+
/**
|
|
1203
|
+
* A function that returns a Multicolumn Dropdown registration for configuring the component with a DesignSystem.
|
|
1204
|
+
*
|
|
1205
|
+
* @public
|
|
1206
|
+
* @remarks
|
|
1207
|
+
* HTML Element: \<foundation-multicolumn-dropdown\>
|
|
1208
|
+
*/
|
|
1209
|
+
export declare const foundationMulticolumnDropdown: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
1210
|
+
baseName: string;
|
|
1211
|
+
template: ViewTemplate<MulticolumnDropdown, any>;
|
|
1212
|
+
styles: ElementStyles;
|
|
1213
|
+
}>) => FoundationElementRegistry< {
|
|
1214
|
+
baseName: string;
|
|
1215
|
+
template: ViewTemplate<MulticolumnDropdown, any>;
|
|
1216
|
+
styles: ElementStyles;
|
|
1217
|
+
}, typeof MulticolumnDropdown>;
|
|
1218
|
+
|
|
1187
1219
|
/**
|
|
1188
1220
|
*
|
|
1189
1221
|
* @public
|
|
@@ -1886,6 +1918,14 @@ export declare function getErrorHandlerDialogTemplate(prefix: string, gridErrorI
|
|
|
1886
1918
|
*/
|
|
1887
1919
|
export declare const getGridProTemplate: (prefix?: string) => ViewTemplate<GridPro, any>;
|
|
1888
1920
|
|
|
1921
|
+
/**
|
|
1922
|
+
* Get a Design System prefixed Multicolumn Dropdown template.
|
|
1923
|
+
* @param designSystem - The design system prefix to use. Defaults to 'foundation'.
|
|
1924
|
+
* @returns A Multicolumn Dropdown component template prefixed with the correct design system.
|
|
1925
|
+
* @public
|
|
1926
|
+
*/
|
|
1927
|
+
export declare const getMulticolumnDropdownTemplate: (designSystem?: string) => ViewTemplate<MulticolumnDropdown, any>;
|
|
1928
|
+
|
|
1889
1929
|
/**
|
|
1890
1930
|
* Get a Design System prefixed Select template.
|
|
1891
1931
|
* @param designSystem - The design system prefix to use. Defaults to 'foundation'.
|
|
@@ -5519,6 +5559,480 @@ export declare type MoreRowsDetail = {
|
|
|
5519
5559
|
sourceRef: string;
|
|
5520
5560
|
};
|
|
5521
5561
|
|
|
5562
|
+
/**
|
|
5563
|
+
* @beta
|
|
5564
|
+
* A dropdown component that displays its options in a multi-column AG Grid.
|
|
5565
|
+
* Search triggers a reqrep and displays the results in the grid dropdown.
|
|
5566
|
+
*
|
|
5567
|
+
* @public
|
|
5568
|
+
* @tagname %%prefix%%-multicolumn-dropdown
|
|
5569
|
+
*/
|
|
5570
|
+
export declare class MulticolumnDropdown extends MulticolumnDropdown_base {
|
|
5571
|
+
optionsElement: HTMLElement;
|
|
5572
|
+
private lastRequest;
|
|
5573
|
+
private connectOverride;
|
|
5574
|
+
private _connectDI;
|
|
5575
|
+
/** The connect service - uses DI by default, but can be manually set for dynamic element creation */
|
|
5576
|
+
get connect(): Connect;
|
|
5577
|
+
set connect(value: Connect);
|
|
5578
|
+
/** Whether to disable control of the component */
|
|
5579
|
+
disabled: boolean;
|
|
5580
|
+
/** The name of the reqrep to get the options from */
|
|
5581
|
+
resourceName: string;
|
|
5582
|
+
/** The key(s) to search by. Use comma-separated values for multiple keys (e.g. search-key="NAME,ID"). */
|
|
5583
|
+
searchKey?: string | string[];
|
|
5584
|
+
/**
|
|
5585
|
+
* Tells whether a given request supports lookup by Groovy Expressions.
|
|
5586
|
+
*
|
|
5587
|
+
* @remarks Only set this to TRUE for GPAL ReqReps when you want to search on multiple fields.
|
|
5588
|
+
* Custom ReqReps don't support groovy expressions for criteria match.
|
|
5589
|
+
*/
|
|
5590
|
+
requestSupportsAdvancedSearch: boolean;
|
|
5591
|
+
/** The key used as the value sent to the server */
|
|
5592
|
+
valueKey: string;
|
|
5593
|
+
/** The key used as the label displayed in the UI */
|
|
5594
|
+
labelKey: string;
|
|
5595
|
+
/**
|
|
5596
|
+
* Position of the dropdown panel relative to the control.
|
|
5597
|
+
* - `'bottom-right'` – default; opens below and aligns to the right edge of the control
|
|
5598
|
+
* - `'bottom-left'` – opens below and extends to the left
|
|
5599
|
+
* - `'top-right'` – opens above and aligns to the right edge of the control
|
|
5600
|
+
* - `'top-left'` – opens above and extends to the left
|
|
5601
|
+
*/
|
|
5602
|
+
dropdownPlacement: 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
5603
|
+
/** Optionally specifies the width of the dropdown */
|
|
5604
|
+
dropdownWidth: number;
|
|
5605
|
+
/** A request object to pass in the reqrep */
|
|
5606
|
+
request: object;
|
|
5607
|
+
/** An array of AG Grid column definitions to use in the grid to display the data */
|
|
5608
|
+
columnDefinitions: ColDef[];
|
|
5609
|
+
/**
|
|
5610
|
+
* Base criteria that is always applied to requests combined with search criteria via AND.
|
|
5611
|
+
* Use this to pre-filter results.
|
|
5612
|
+
*/
|
|
5613
|
+
baseCriteria?: string;
|
|
5614
|
+
defaultSlottedNodes: Node[];
|
|
5615
|
+
grid: GridPro;
|
|
5616
|
+
private _value;
|
|
5617
|
+
get value(): string;
|
|
5618
|
+
set value(value: string);
|
|
5619
|
+
/** The criteria to search by */
|
|
5620
|
+
filterSearch: string;
|
|
5621
|
+
/** Whether the dropdown is open or not */
|
|
5622
|
+
open: boolean;
|
|
5623
|
+
/** Data for the selected row */
|
|
5624
|
+
selectedRow: object;
|
|
5625
|
+
/** Value to display in the form field */
|
|
5626
|
+
get displayValue(): any;
|
|
5627
|
+
get hasSearchKey(): boolean;
|
|
5628
|
+
get hasSlottedContent(): boolean;
|
|
5629
|
+
connectedCallback(): void;
|
|
5630
|
+
/**
|
|
5631
|
+
* Sets row data on the grid in a version-safe way.
|
|
5632
|
+
* AG Grid v32+ removed `setRowData` in favour of `updateGridOptions`.
|
|
5633
|
+
*/
|
|
5634
|
+
private setGridRowData;
|
|
5635
|
+
/**
|
|
5636
|
+
* Sets column defs on the grid in a version-safe way.
|
|
5637
|
+
* AG Grid v32+ removed `setColumnDefs` in favour of `updateGridOptions`.
|
|
5638
|
+
*/
|
|
5639
|
+
private setGridColumnDefs;
|
|
5640
|
+
/**
|
|
5641
|
+
* Emits 'change' and 'input' events so that the `sync` directive and forms work correctly.
|
|
5642
|
+
*/
|
|
5643
|
+
private emitValue;
|
|
5644
|
+
toggle(): void;
|
|
5645
|
+
private getAndSetRows;
|
|
5646
|
+
private getAndSetRowsDebounce;
|
|
5647
|
+
filterSearchChanged(): void;
|
|
5648
|
+
requestChanged(): void;
|
|
5649
|
+
columnDefinitionsChanged(): void;
|
|
5650
|
+
private handleClickOutside;
|
|
5651
|
+
openChanged(): void;
|
|
5652
|
+
dropdownWidthChanged(): void;
|
|
5653
|
+
disconnectedCallback(): void;
|
|
5654
|
+
changeHandler(event: Event): void;
|
|
5655
|
+
}
|
|
5656
|
+
|
|
5657
|
+
declare const MulticolumnDropdown_base: (new (...args: any[]) => {
|
|
5658
|
+
#_container: FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
|
|
5659
|
+
#_latestTokenCode: string;
|
|
5660
|
+
#_hasFirstLoaded: boolean;
|
|
5661
|
+
#_cleanupTimeout: NodeJS.Timeout;
|
|
5662
|
+
#_shouldForceLifecycle: boolean;
|
|
5663
|
+
cloneNode(deep?: boolean): Node;
|
|
5664
|
+
deepClone(): Node;
|
|
5665
|
+
get shouldRunDisconnect(): boolean;
|
|
5666
|
+
get shouldRunConnect(): boolean;
|
|
5667
|
+
#_blockLifecycleDueToTokenChange(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
|
5668
|
+
#_tryFindContainingLayout(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
|
|
5669
|
+
connectedCallback(): void;
|
|
5670
|
+
readonly $fastController: Controller;
|
|
5671
|
+
$emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
|
|
5672
|
+
disconnectedCallback(): void;
|
|
5673
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
5674
|
+
accessKey: string;
|
|
5675
|
+
readonly accessKeyLabel: string;
|
|
5676
|
+
autocapitalize: string;
|
|
5677
|
+
autocorrect: boolean;
|
|
5678
|
+
dir: string;
|
|
5679
|
+
draggable: boolean;
|
|
5680
|
+
hidden: boolean;
|
|
5681
|
+
inert: boolean;
|
|
5682
|
+
innerText: string;
|
|
5683
|
+
lang: string;
|
|
5684
|
+
readonly offsetHeight: number;
|
|
5685
|
+
readonly offsetLeft: number;
|
|
5686
|
+
readonly offsetParent: Element | null;
|
|
5687
|
+
readonly offsetTop: number;
|
|
5688
|
+
readonly offsetWidth: number;
|
|
5689
|
+
outerText: string;
|
|
5690
|
+
popover: string | null;
|
|
5691
|
+
spellcheck: boolean;
|
|
5692
|
+
title: string;
|
|
5693
|
+
translate: boolean;
|
|
5694
|
+
writingSuggestions: string;
|
|
5695
|
+
attachInternals(): ElementInternals;
|
|
5696
|
+
click(): void;
|
|
5697
|
+
hidePopover(): void;
|
|
5698
|
+
showPopover(): void;
|
|
5699
|
+
togglePopover(options?: boolean): boolean;
|
|
5700
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
5701
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
5702
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
5703
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
5704
|
+
readonly attributes: NamedNodeMap;
|
|
5705
|
+
get classList(): DOMTokenList;
|
|
5706
|
+
set classList(value: string): any;
|
|
5707
|
+
className: string;
|
|
5708
|
+
readonly clientHeight: number;
|
|
5709
|
+
readonly clientLeft: number;
|
|
5710
|
+
readonly clientTop: number;
|
|
5711
|
+
readonly clientWidth: number;
|
|
5712
|
+
readonly currentCSSZoom: number;
|
|
5713
|
+
id: string;
|
|
5714
|
+
innerHTML: string;
|
|
5715
|
+
readonly localName: string;
|
|
5716
|
+
readonly namespaceURI: string | null;
|
|
5717
|
+
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
5718
|
+
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
5719
|
+
outerHTML: string;
|
|
5720
|
+
readonly ownerDocument: Document;
|
|
5721
|
+
get part(): DOMTokenList;
|
|
5722
|
+
set part(value: string): any;
|
|
5723
|
+
readonly prefix: string | null;
|
|
5724
|
+
readonly scrollHeight: number;
|
|
5725
|
+
scrollLeft: number;
|
|
5726
|
+
scrollTop: number;
|
|
5727
|
+
readonly scrollWidth: number;
|
|
5728
|
+
readonly shadowRoot: ShadowRoot | null;
|
|
5729
|
+
slot: string;
|
|
5730
|
+
readonly tagName: string;
|
|
5731
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
5732
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
5733
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
|
|
5734
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
|
|
5735
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
|
|
5736
|
+
closest<E extends Element = Element>(selectors: string): E;
|
|
5737
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
5738
|
+
getAttribute(qualifiedName: string): string | null;
|
|
5739
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
5740
|
+
getAttributeNames(): string[];
|
|
5741
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
|
5742
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
|
5743
|
+
getBoundingClientRect(): DOMRect;
|
|
5744
|
+
getClientRects(): DOMRectList;
|
|
5745
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
5746
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
5747
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
5748
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
5749
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
5750
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
5751
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
5752
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
5753
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
5754
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
5755
|
+
getHTML(options?: GetHTMLOptions): string;
|
|
5756
|
+
hasAttribute(qualifiedName: string): boolean;
|
|
5757
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
|
5758
|
+
hasAttributes(): boolean;
|
|
5759
|
+
hasPointerCapture(pointerId: number): boolean;
|
|
5760
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
5761
|
+
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
5762
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
5763
|
+
matches(selectors: string): boolean;
|
|
5764
|
+
releasePointerCapture(pointerId: number): void;
|
|
5765
|
+
removeAttribute(qualifiedName: string): void;
|
|
5766
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
5767
|
+
removeAttributeNode(attr: Attr): Attr;
|
|
5768
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
5769
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
|
5770
|
+
scroll(options?: ScrollToOptions): void;
|
|
5771
|
+
scroll(x: number, y: number): void;
|
|
5772
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
5773
|
+
scrollBy(x: number, y: number): void;
|
|
5774
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
5775
|
+
scrollTo(options?: ScrollToOptions): void;
|
|
5776
|
+
scrollTo(x: number, y: number): void;
|
|
5777
|
+
setAttribute(qualifiedName: string, value: string): void;
|
|
5778
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
5779
|
+
setAttributeNode(attr: Attr): Attr | null;
|
|
5780
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
5781
|
+
setHTMLUnsafe(html: string): void;
|
|
5782
|
+
setPointerCapture(pointerId: number): void;
|
|
5783
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
5784
|
+
webkitMatchesSelector(selectors: string): boolean;
|
|
5785
|
+
textContent: string;
|
|
5786
|
+
readonly baseURI: string;
|
|
5787
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
5788
|
+
readonly firstChild: ChildNode | null;
|
|
5789
|
+
readonly isConnected: boolean;
|
|
5790
|
+
readonly lastChild: ChildNode | null;
|
|
5791
|
+
readonly nextSibling: ChildNode | null;
|
|
5792
|
+
readonly nodeName: string;
|
|
5793
|
+
readonly nodeType: number;
|
|
5794
|
+
nodeValue: string | null;
|
|
5795
|
+
readonly parentElement: HTMLElement | null;
|
|
5796
|
+
readonly parentNode: ParentNode | null;
|
|
5797
|
+
readonly previousSibling: ChildNode | null;
|
|
5798
|
+
appendChild<T_1 extends Node>(node: T_1): T_1;
|
|
5799
|
+
compareDocumentPosition(other: Node): number;
|
|
5800
|
+
contains(other: Node | null): boolean;
|
|
5801
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
5802
|
+
hasChildNodes(): boolean;
|
|
5803
|
+
insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
|
|
5804
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
|
5805
|
+
isEqualNode(otherNode: Node | null): boolean;
|
|
5806
|
+
isSameNode(otherNode: Node | null): boolean;
|
|
5807
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
|
5808
|
+
lookupPrefix(namespace: string | null): string | null;
|
|
5809
|
+
normalize(): void;
|
|
5810
|
+
removeChild<T_1 extends Node>(child: T_1): T_1;
|
|
5811
|
+
replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
|
|
5812
|
+
readonly ELEMENT_NODE: 1;
|
|
5813
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
5814
|
+
readonly TEXT_NODE: 3;
|
|
5815
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
5816
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
5817
|
+
readonly ENTITY_NODE: 6;
|
|
5818
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
5819
|
+
readonly COMMENT_NODE: 8;
|
|
5820
|
+
readonly DOCUMENT_NODE: 9;
|
|
5821
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
5822
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
5823
|
+
readonly NOTATION_NODE: 12;
|
|
5824
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
5825
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
5826
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
5827
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
5828
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
5829
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
5830
|
+
dispatchEvent(event: Event): boolean;
|
|
5831
|
+
ariaActiveDescendantElement: Element | null;
|
|
5832
|
+
ariaAtomic: string | null;
|
|
5833
|
+
ariaAutoComplete: string | null;
|
|
5834
|
+
ariaBrailleLabel: string | null;
|
|
5835
|
+
ariaBrailleRoleDescription: string | null;
|
|
5836
|
+
ariaBusy: string | null;
|
|
5837
|
+
ariaChecked: string | null;
|
|
5838
|
+
ariaColCount: string | null;
|
|
5839
|
+
ariaColIndex: string | null;
|
|
5840
|
+
ariaColIndexText: string | null;
|
|
5841
|
+
ariaColSpan: string | null;
|
|
5842
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
5843
|
+
ariaCurrent: string | null;
|
|
5844
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
5845
|
+
ariaDescription: string | null;
|
|
5846
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
5847
|
+
ariaDisabled: string | null;
|
|
5848
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
5849
|
+
ariaExpanded: string | null;
|
|
5850
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
5851
|
+
ariaHasPopup: string | null;
|
|
5852
|
+
ariaHidden: string | null;
|
|
5853
|
+
ariaInvalid: string | null;
|
|
5854
|
+
ariaKeyShortcuts: string | null;
|
|
5855
|
+
ariaLabel: string | null;
|
|
5856
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
5857
|
+
ariaLevel: string | null;
|
|
5858
|
+
ariaLive: string | null;
|
|
5859
|
+
ariaModal: string | null;
|
|
5860
|
+
ariaMultiLine: string | null;
|
|
5861
|
+
ariaMultiSelectable: string | null;
|
|
5862
|
+
ariaOrientation: string | null;
|
|
5863
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
5864
|
+
ariaPlaceholder: string | null;
|
|
5865
|
+
ariaPosInSet: string | null;
|
|
5866
|
+
ariaPressed: string | null;
|
|
5867
|
+
ariaReadOnly: string | null;
|
|
5868
|
+
ariaRelevant: string | null;
|
|
5869
|
+
ariaRequired: string | null;
|
|
5870
|
+
ariaRoleDescription: string | null;
|
|
5871
|
+
ariaRowCount: string | null;
|
|
5872
|
+
ariaRowIndex: string | null;
|
|
5873
|
+
ariaRowIndexText: string | null;
|
|
5874
|
+
ariaRowSpan: string | null;
|
|
5875
|
+
ariaSelected: string | null;
|
|
5876
|
+
ariaSetSize: string | null;
|
|
5877
|
+
ariaSort: string | null;
|
|
5878
|
+
ariaValueMax: string | null;
|
|
5879
|
+
ariaValueMin: string | null;
|
|
5880
|
+
ariaValueNow: string | null;
|
|
5881
|
+
ariaValueText: string | null;
|
|
5882
|
+
role: string | null;
|
|
5883
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
5884
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
5885
|
+
after(...nodes: (Node | string)[]): void;
|
|
5886
|
+
before(...nodes: (Node | string)[]): void;
|
|
5887
|
+
remove(): void;
|
|
5888
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
5889
|
+
readonly nextElementSibling: Element | null;
|
|
5890
|
+
readonly previousElementSibling: Element | null;
|
|
5891
|
+
readonly childElementCount: number;
|
|
5892
|
+
readonly children: HTMLCollection;
|
|
5893
|
+
readonly firstElementChild: Element | null;
|
|
5894
|
+
readonly lastElementChild: Element | null;
|
|
5895
|
+
append(...nodes: (Node | string)[]): void;
|
|
5896
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
5897
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
5898
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
5899
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
5900
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
5901
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
5902
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
5903
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
5904
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
5905
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
5906
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
5907
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
5908
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
5909
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
5910
|
+
get style(): CSSStyleDeclaration;
|
|
5911
|
+
set style(cssText: string): any;
|
|
5912
|
+
contentEditable: string;
|
|
5913
|
+
enterKeyHint: string;
|
|
5914
|
+
inputMode: string;
|
|
5915
|
+
readonly isContentEditable: boolean;
|
|
5916
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
5917
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
5918
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
5919
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
5920
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
5921
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
5922
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
5923
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5924
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
5925
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
5926
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5927
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5928
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5929
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5930
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
5931
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5932
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5933
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
5934
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5935
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
5936
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5937
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
5938
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
5939
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
5940
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
5941
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
5942
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
5943
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
5944
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
5945
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
5946
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5947
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5948
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5949
|
+
onerror: OnErrorEventHandler;
|
|
5950
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
5951
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
5952
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
5953
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5954
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5955
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
5956
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
5957
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
5958
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5959
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5960
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5961
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5962
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
5963
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
5964
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
5965
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
5966
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
5967
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
5968
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
5969
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
5970
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
5971
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5972
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5973
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5974
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
5975
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
5976
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
5977
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
5978
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
5979
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
5980
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
5981
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5982
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
5983
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
5984
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5985
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5986
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
5987
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5988
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5989
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
5990
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5991
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5992
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5993
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5994
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5995
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5996
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5997
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
5998
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5999
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
6000
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
6001
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
6002
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
6003
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
6004
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
6005
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
6006
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
6007
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
6008
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
6009
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
6010
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
6011
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
6012
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
6013
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
6014
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
6015
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
6016
|
+
autofocus: boolean;
|
|
6017
|
+
readonly dataset: DOMStringMap;
|
|
6018
|
+
nonce?: string;
|
|
6019
|
+
tabIndex: number;
|
|
6020
|
+
blur(): void;
|
|
6021
|
+
focus(options?: FocusOptions): void;
|
|
6022
|
+
}) & typeof FoundationElement;
|
|
6023
|
+
|
|
6024
|
+
/**
|
|
6025
|
+
* Multicolumn Dropdown styles.
|
|
6026
|
+
* @public
|
|
6027
|
+
*/
|
|
6028
|
+
export declare const multicolumnDropdownStyles: ElementStyles;
|
|
6029
|
+
|
|
6030
|
+
/**
|
|
6031
|
+
* The default Multicolumn Dropdown template using the 'foundation' design system prefix.
|
|
6032
|
+
* @public
|
|
6033
|
+
*/
|
|
6034
|
+
export declare const multicolumnDropdownTemplate: ViewTemplate<MulticolumnDropdown, any>;
|
|
6035
|
+
|
|
5522
6036
|
/**
|
|
5523
6037
|
* The AG Multiselect Editor element.
|
|
5524
6038
|
* @public
|
|
@@ -5601,6 +6115,9 @@ export declare enum OperationType {
|
|
|
5601
6115
|
Remove = "remove"
|
|
5602
6116
|
}
|
|
5603
6117
|
|
|
6118
|
+
/** The CSS class to use for the options element's class in the dropdown */
|
|
6119
|
+
export declare const optionsClass = "options";
|
|
6120
|
+
|
|
5604
6121
|
/**
|
|
5605
6122
|
* Pagination Status Bar Component for AG Grid
|
|
5606
6123
|
* Displays pagination controls and information about current page and total rows
|
|
@@ -5980,4 +6497,10 @@ declare type UntypeNonFunctions<T> = {
|
|
|
5980
6497
|
[K in keyof T]: T[K] extends (...args: any[]) => any ? T[K] : never;
|
|
5981
6498
|
};
|
|
5982
6499
|
|
|
6500
|
+
/**
|
|
6501
|
+
* Checks if the given mouse event occurred outside the target element.
|
|
6502
|
+
* @public
|
|
6503
|
+
*/
|
|
6504
|
+
export declare const wasClickOutsideElement: (event: MouseEvent, target: EventTarget) => boolean;
|
|
6505
|
+
|
|
5983
6506
|
export { }
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/grid-pro](./grid-pro.md) > [DISPLAY\_NONE\_CLASS](./grid-pro.display_none_class.md)
|
|
4
|
+
|
|
5
|
+
## DISPLAY\_NONE\_CLASS variable
|
|
6
|
+
|
|
7
|
+
Class name used to hide elements with display:none
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
DISPLAY_NONE_CLASS = "dnone"
|
|
13
|
+
```
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/grid-pro](./grid-pro.md) > [dropdownWidthVar](./grid-pro.dropdownwidthvar.md)
|
|
4
|
+
|
|
5
|
+
## dropdownWidthVar variable
|
|
6
|
+
|
|
7
|
+
The CSS variable to use for specifying the dropdown's width
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
dropdownWidthVar = "--dropdown-width"
|
|
13
|
+
```
|
|
@@ -127,6 +127,15 @@ foundationGridComponents: {
|
|
|
127
127
|
styles: import("@microsoft/fast-element").ElementStyles;
|
|
128
128
|
template: import("@microsoft/fast-element").ViewTemplate<import("./cell-editors").StringEditor, any>;
|
|
129
129
|
}, typeof import("./cell-editors").StringEditor>;
|
|
130
|
+
foundationMulticolumnDropdown: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
131
|
+
baseName: string;
|
|
132
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("./multicolumn-dropdown").MulticolumnDropdown, any>;
|
|
133
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
134
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
135
|
+
baseName: string;
|
|
136
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("./multicolumn-dropdown").MulticolumnDropdown, any>;
|
|
137
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
138
|
+
}, typeof import("./multicolumn-dropdown").MulticolumnDropdown>;
|
|
130
139
|
foundationStatusPillRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
131
140
|
baseName: string;
|
|
132
141
|
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/grid-pro](./grid-pro.md) > [foundationMulticolumnDropdown](./grid-pro.foundationmulticolumndropdown.md)
|
|
4
|
+
|
|
5
|
+
## foundationMulticolumnDropdown() function
|
|
6
|
+
|
|
7
|
+
A function that returns a Multicolumn Dropdown registration for configuring the component with a DesignSystem.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
foundationMulticolumnDropdown: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
13
|
+
baseName: string;
|
|
14
|
+
template: import("@microsoft/fast-element").ViewTemplate<MulticolumnDropdown, any>;
|
|
15
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
16
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
17
|
+
baseName: string;
|
|
18
|
+
template: import("@microsoft/fast-element").ViewTemplate<MulticolumnDropdown, any>;
|
|
19
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
20
|
+
}, typeof MulticolumnDropdown>
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Parameters
|
|
24
|
+
|
|
25
|
+
<table><thead><tr><th>
|
|
26
|
+
|
|
27
|
+
Parameter
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
</th><th>
|
|
31
|
+
|
|
32
|
+
Type
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
</th><th>
|
|
36
|
+
|
|
37
|
+
Description
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
</th></tr></thead>
|
|
41
|
+
<tbody><tr><td>
|
|
42
|
+
|
|
43
|
+
overrideDefinition
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
</td><td>
|
|
47
|
+
|
|
48
|
+
import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{ baseName: string; template: import("@microsoft/fast-element").ViewTemplate<[MulticolumnDropdown](./grid-pro.multicolumndropdown.md)<!-- -->, any>; styles: import("@microsoft/fast-element").ElementStyles; }>
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
</td><td>
|
|
52
|
+
|
|
53
|
+
_(Optional)_
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
</td></tr>
|
|
57
|
+
</tbody></table>
|
|
58
|
+
|
|
59
|
+
**Returns:**
|
|
60
|
+
|
|
61
|
+
import("@microsoft/fast-foundation").FoundationElementRegistry<{ baseName: string; template: import("@microsoft/fast-element").ViewTemplate<[MulticolumnDropdown](./grid-pro.multicolumndropdown.md)<!-- -->, any>; styles: import("@microsoft/fast-element").ElementStyles; }, typeof [MulticolumnDropdown](./grid-pro.multicolumndropdown.md)<!-- -->>
|
|
62
|
+
|
|
63
|
+
## Remarks
|
|
64
|
+
|
|
65
|
+
HTML Element: <<!-- -->foundation-multicolumn-dropdown<!-- -->>
|
|
66
|
+
|