@genesislcap/grid-pro 15.25.1 → 15.26.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.
Files changed (41) hide show
  1. package/dist/custom-elements.json +2209 -829
  2. package/dist/dts/column-selection/column-picker-ag-drag.d.ts +18 -0
  3. package/dist/dts/column-selection/column-picker-ag-drag.d.ts.map +1 -0
  4. package/dist/dts/column-selection/column-picker.utils.d.ts +50 -0
  5. package/dist/dts/column-selection/column-picker.utils.d.ts.map +1 -0
  6. package/dist/dts/column-selection/column-selection.d.ts +549 -0
  7. package/dist/dts/column-selection/column-selection.d.ts.map +1 -0
  8. package/dist/dts/column-selection/column-selection.styles.d.ts +11 -0
  9. package/dist/dts/column-selection/column-selection.styles.d.ts.map +1 -0
  10. package/dist/dts/column-selection/column-selection.template.d.ts +13 -0
  11. package/dist/dts/column-selection/column-selection.template.d.ts.map +1 -0
  12. package/dist/dts/column-selection/grid-pro-column-drag-bridge.d.ts +46 -0
  13. package/dist/dts/column-selection/grid-pro-column-drag-bridge.d.ts.map +1 -0
  14. package/dist/dts/column-selection/index.d.ts +8 -0
  15. package/dist/dts/column-selection/index.d.ts.map +1 -0
  16. package/dist/dts/column-selection/resolve-columns-picker-api.d.ts +23 -0
  17. package/dist/dts/column-selection/resolve-columns-picker-api.d.ts.map +1 -0
  18. package/dist/dts/grid-pro-beta.d.ts +12 -0
  19. package/dist/dts/grid-pro-beta.d.ts.map +1 -1
  20. package/dist/dts/grid-pro.styles.d.ts.map +1 -1
  21. package/dist/dts/grid-pro.template.d.ts.map +1 -1
  22. package/dist/dts/index.d.ts +1 -0
  23. package/dist/dts/index.d.ts.map +1 -1
  24. package/dist/dts/react.d.ts +19 -9
  25. package/dist/esm/column-selection/column-picker-ag-drag.js +52 -0
  26. package/dist/esm/column-selection/column-picker.utils.js +118 -0
  27. package/dist/esm/column-selection/column-selection.js +620 -0
  28. package/dist/esm/column-selection/column-selection.styles.js +236 -0
  29. package/dist/esm/column-selection/column-selection.template.js +96 -0
  30. package/dist/esm/column-selection/grid-pro-column-drag-bridge.js +62 -0
  31. package/dist/esm/column-selection/index.js +7 -0
  32. package/dist/esm/column-selection/resolve-columns-picker-api.js +42 -0
  33. package/dist/esm/grid-pro-beta.js +33 -2
  34. package/dist/esm/grid-pro.styles.js +2 -0
  35. package/dist/esm/grid-pro.template.js +8 -1
  36. package/dist/esm/index.js +1 -0
  37. package/dist/grid-pro.api.json +6820 -4409
  38. package/dist/grid-pro.d.ts +781 -46
  39. package/dist/react.cjs +13 -6
  40. package/dist/react.mjs +11 -5
  41. package/package.json +13 -13
@@ -0,0 +1,18 @@
1
+ import { type GridApi, type GridDragSource } from 'ag-grid-community';
2
+ import type { GridProColumnDragBridge } from './grid-pro-column-drag-bridge';
3
+ /**
4
+ * Active AG drag registration for a picker handle.
5
+ * @public
6
+ */
7
+ export type ColumnPickerAgDragBinding = {
8
+ source: GridDragSource;
9
+ remove: () => void;
10
+ };
11
+ /**
12
+ * Registers an AG Grid `ToolPanel` drag source on a picker row handle so drops on
13
+ * the grid header use AG column-move (visibility + exact index).
14
+ *
15
+ * @public
16
+ */
17
+ export declare function bindAgColumnPickerDrag(bridge: GridProColumnDragBridge, api: GridApi, handle: HTMLElement, colId: string, dragItemName: string): ColumnPickerAgDragBinding | null;
18
+ //# sourceMappingURL=column-picker-ag-drag.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"column-picker-ag-drag.d.ts","sourceRoot":"","sources":["../../../src/column-selection/column-picker-ag-drag.ts"],"names":[],"mappings":"AAAA,OAAO,EAA+B,KAAK,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnG,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,+BAA+B,CAAC;AAE7E;;;GAGG;AACH,MAAM,MAAM,yBAAyB,GAAG;IACtC,MAAM,EAAE,cAAc,CAAC;IACvB,MAAM,EAAE,MAAM,IAAI,CAAC;CACpB,CAAC;AAEF;;;;;GAKG;AACH,wBAAgB,sBAAsB,CACpC,MAAM,EAAE,uBAAuB,EAC/B,GAAG,EAAE,OAAO,EACZ,MAAM,EAAE,WAAW,EACnB,KAAK,EAAE,MAAM,EACb,YAAY,EAAE,MAAM,GACnB,yBAAyB,GAAG,IAAI,CA4ClC"}
@@ -0,0 +1,50 @@
1
+ import type { Column } from 'ag-grid-community';
2
+ /**
3
+ * Row model for the column selection picker list.
4
+ * @public
5
+ */
6
+ export interface ColumnPickerItem {
7
+ colId: string;
8
+ headerName: string;
9
+ visible: boolean;
10
+ lockVisible: boolean;
11
+ }
12
+ /**
13
+ * Column list ordering for the column selection picker.
14
+ * @public
15
+ */
16
+ export type ColumnPickerSort = 'selected-first' | 'ag-grid';
17
+ /** @public */
18
+ export declare const COLUMN_PICKER_SORT_DEFAULT: ColumnPickerSort;
19
+ /** @public */
20
+ export declare function resolveColumnPickerSort(sort?: ColumnPickerSort | null): ColumnPickerSort;
21
+ /** @public */
22
+ export declare function toPickerItem(col: Column): ColumnPickerItem | null;
23
+ /** @public */
24
+ export declare function getPickerItems(columns: Column[]): ColumnPickerItem[];
25
+ /**
26
+ * Column order for the picker list.
27
+ *
28
+ * - `selected-first` (default): displayed columns first, then non-displayed.
29
+ * - `ag-grid`: column-state order (visible/hidden interleaved).
30
+ * @public
31
+ */
32
+ export declare function orderColumnsForPicker(displayed: Column[], all: Column[], sort?: ColumnPickerSort, columnState?: ReadonlyArray<{
33
+ colId?: string | null;
34
+ }>): Column[];
35
+ /**
36
+ * Splits / filters picker items for the template sections.
37
+ * @public
38
+ */
39
+ export declare function partitionPickerItems(items: ColumnPickerItem[], search: string, sort?: ColumnPickerSort): {
40
+ selected: ColumnPickerItem[];
41
+ unselected: ColumnPickerItem[];
42
+ };
43
+ /** @public */
44
+ export declare function reorderVisibleIds(allVisibleIds: string[], shownIds: string[], fromId: string, toId: string): string[] | null;
45
+ /** @public */
46
+ export declare function applyVisibleOrder<T extends {
47
+ colId?: string;
48
+ hide?: boolean | null;
49
+ }>(columnState: T[], visibleOrder: string[]): T[];
50
+ //# sourceMappingURL=column-picker.utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"column-picker.utils.d.ts","sourceRoot":"","sources":["../../../src/column-selection/column-picker.utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAEhD;;;GAGG;AACH,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,OAAO,CAAC;IACjB,WAAW,EAAE,OAAO,CAAC;CACtB;AAED;;;GAGG;AACH,MAAM,MAAM,gBAAgB,GAAG,gBAAgB,GAAG,SAAS,CAAC;AAE5D,cAAc;AACd,eAAO,MAAM,0BAA0B,EAAE,gBAAmC,CAAC;AAE7E,cAAc;AACd,wBAAgB,uBAAuB,CAAC,IAAI,CAAC,EAAE,gBAAgB,GAAG,IAAI,GAAG,gBAAgB,CAExF;AAED,cAAc;AACd,wBAAgB,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,gBAAgB,GAAG,IAAI,CAkBjE;AAED,cAAc;AACd,wBAAgB,cAAc,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,gBAAgB,EAAE,CAEpE;AAED;;;;;;GAMG;AACH,wBAAgB,qBAAqB,CACnC,SAAS,EAAE,MAAM,EAAE,EACnB,GAAG,EAAE,MAAM,EAAE,EACb,IAAI,GAAE,gBAA6C,EACnD,WAAW,CAAC,EAAE,aAAa,CAAC;IAAE,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;CAAE,CAAC,GACrD,MAAM,EAAE,CA8BV;AAED;;;GAGG;AACH,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,gBAAgB,EAAE,EACzB,MAAM,EAAE,MAAM,EACd,IAAI,GAAE,gBAA6C,GAClD;IAAE,QAAQ,EAAE,gBAAgB,EAAE,CAAC;IAAC,UAAU,EAAE,gBAAgB,EAAE,CAAA;CAAE,CAiBlE;AAED,cAAc;AACd,wBAAgB,iBAAiB,CAC/B,aAAa,EAAE,MAAM,EAAE,EACvB,QAAQ,EAAE,MAAM,EAAE,EAClB,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,MAAM,GACX,MAAM,EAAE,GAAG,IAAI,CAoBjB;AAED,cAAc;AACd,wBAAgB,iBAAiB,CAAC,CAAC,SAAS;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,OAAO,GAAG,IAAI,CAAA;CAAE,EACnF,WAAW,EAAE,CAAC,EAAE,EAChB,YAAY,EAAE,MAAM,EAAE,GACrB,CAAC,EAAE,CAaL"}
@@ -0,0 +1,549 @@
1
+ import { FoundationElement } from '@microsoft/fast-foundation';
2
+ import type { GridApi } from 'ag-grid-community';
3
+ import { type ColumnPickerItem, type ColumnPickerSort } from './column-picker.utils';
4
+ import { type ColumnSelectionHost } from './resolve-columns-picker-api';
5
+ declare const ColumnSelection_base: (new (...args: any[]) => {
6
+ #_container: import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
7
+ #_latestTokenCode: string;
8
+ #_hasFirstLoaded: boolean;
9
+ #_cleanupTimeout: NodeJS.Timeout;
10
+ #_shouldForceLifecycle: boolean;
11
+ #_blockedDisconnectSurvivedGracePeriod: boolean;
12
+ cloneNode(deep?: boolean): Node;
13
+ deepClone(): Node;
14
+ get shouldRunDisconnect(): boolean;
15
+ get shouldRunConnect(): boolean;
16
+ #_blockLifecycleDueToTokenChange(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
17
+ #_tryFindContainingLayout(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
18
+ connectedCallback(): void;
19
+ readonly $fastController: import("@microsoft/fast-element").Controller;
20
+ $emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
21
+ disconnectedCallback(): void;
22
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
23
+ accessKey: string;
24
+ readonly accessKeyLabel: string;
25
+ autocapitalize: string;
26
+ autocorrect: boolean;
27
+ dir: string;
28
+ draggable: boolean;
29
+ hidden: boolean;
30
+ inert: boolean;
31
+ innerText: string;
32
+ lang: string;
33
+ readonly offsetHeight: number;
34
+ readonly offsetLeft: number;
35
+ readonly offsetParent: Element | null;
36
+ readonly offsetTop: number;
37
+ readonly offsetWidth: number;
38
+ outerText: string;
39
+ popover: string | null;
40
+ spellcheck: boolean;
41
+ title: string;
42
+ translate: boolean;
43
+ writingSuggestions: string;
44
+ attachInternals(): ElementInternals;
45
+ click(): void;
46
+ hidePopover(): void;
47
+ showPopover(): void;
48
+ togglePopover(options?: boolean): boolean;
49
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
50
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
51
+ removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
52
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
53
+ readonly attributes: NamedNodeMap;
54
+ get classList(): DOMTokenList;
55
+ set classList(value: string): any;
56
+ className: string;
57
+ readonly clientHeight: number;
58
+ readonly clientLeft: number;
59
+ readonly clientTop: number;
60
+ readonly clientWidth: number;
61
+ readonly currentCSSZoom: number;
62
+ id: string;
63
+ innerHTML: string;
64
+ readonly localName: string;
65
+ readonly namespaceURI: string | null;
66
+ onfullscreenchange: (this: Element, ev: Event) => any;
67
+ onfullscreenerror: (this: Element, ev: Event) => any;
68
+ outerHTML: string;
69
+ readonly ownerDocument: Document;
70
+ get part(): DOMTokenList;
71
+ set part(value: string): any;
72
+ readonly prefix: string | null;
73
+ readonly scrollHeight: number;
74
+ scrollLeft: number;
75
+ scrollTop: number;
76
+ readonly scrollWidth: number;
77
+ readonly shadowRoot: ShadowRoot | null;
78
+ slot: string;
79
+ readonly tagName: string;
80
+ attachShadow(init: ShadowRootInit): ShadowRoot;
81
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
82
+ closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
83
+ closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
84
+ closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
85
+ closest<E extends Element = Element>(selectors: string): E;
86
+ computedStyleMap(): StylePropertyMapReadOnly;
87
+ getAttribute(qualifiedName: string): string | null;
88
+ getAttributeNS(namespace: string | null, localName: string): string | null;
89
+ getAttributeNames(): string[];
90
+ getAttributeNode(qualifiedName: string): Attr | null;
91
+ getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
92
+ getBoundingClientRect(): DOMRect;
93
+ getClientRects(): DOMRectList;
94
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
95
+ getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
96
+ getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
97
+ getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
98
+ getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
99
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
100
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
101
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
102
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
103
+ getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
104
+ getHTML(options?: GetHTMLOptions): string;
105
+ hasAttribute(qualifiedName: string): boolean;
106
+ hasAttributeNS(namespace: string | null, localName: string): boolean;
107
+ hasAttributes(): boolean;
108
+ hasPointerCapture(pointerId: number): boolean;
109
+ insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
110
+ insertAdjacentHTML(position: InsertPosition, string: string): void;
111
+ insertAdjacentText(where: InsertPosition, data: string): void;
112
+ matches(selectors: string): boolean;
113
+ releasePointerCapture(pointerId: number): void;
114
+ removeAttribute(qualifiedName: string): void;
115
+ removeAttributeNS(namespace: string | null, localName: string): void;
116
+ removeAttributeNode(attr: Attr): Attr;
117
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
118
+ requestPointerLock(options?: PointerLockOptions): Promise<void>;
119
+ scroll(options?: ScrollToOptions): void;
120
+ scroll(x: number, y: number): void;
121
+ scrollBy(options?: ScrollToOptions): void;
122
+ scrollBy(x: number, y: number): void;
123
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
124
+ scrollTo(options?: ScrollToOptions): void;
125
+ scrollTo(x: number, y: number): void;
126
+ setAttribute(qualifiedName: string, value: string): void;
127
+ setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
128
+ setAttributeNode(attr: Attr): Attr | null;
129
+ setAttributeNodeNS(attr: Attr): Attr | null;
130
+ setHTMLUnsafe(html: string): void;
131
+ setPointerCapture(pointerId: number): void;
132
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
133
+ webkitMatchesSelector(selectors: string): boolean;
134
+ textContent: string;
135
+ readonly baseURI: string;
136
+ readonly childNodes: NodeListOf<ChildNode>;
137
+ readonly firstChild: ChildNode | null;
138
+ readonly isConnected: boolean;
139
+ readonly lastChild: ChildNode | null;
140
+ readonly nextSibling: ChildNode | null;
141
+ readonly nodeName: string;
142
+ readonly nodeType: number;
143
+ nodeValue: string | null;
144
+ readonly parentElement: HTMLElement | null;
145
+ readonly parentNode: ParentNode | null;
146
+ readonly previousSibling: ChildNode | null;
147
+ appendChild<T_1 extends Node>(node: T_1): T_1;
148
+ compareDocumentPosition(other: Node): number;
149
+ contains(other: Node | null): boolean;
150
+ getRootNode(options?: GetRootNodeOptions): Node;
151
+ hasChildNodes(): boolean;
152
+ insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
153
+ isDefaultNamespace(namespace: string | null): boolean;
154
+ isEqualNode(otherNode: Node | null): boolean;
155
+ isSameNode(otherNode: Node | null): boolean;
156
+ lookupNamespaceURI(prefix: string | null): string | null;
157
+ lookupPrefix(namespace: string | null): string | null;
158
+ normalize(): void;
159
+ removeChild<T_1 extends Node>(child: T_1): T_1;
160
+ replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
161
+ readonly ELEMENT_NODE: 1;
162
+ readonly ATTRIBUTE_NODE: 2;
163
+ readonly TEXT_NODE: 3;
164
+ readonly CDATA_SECTION_NODE: 4;
165
+ readonly ENTITY_REFERENCE_NODE: 5;
166
+ readonly ENTITY_NODE: 6;
167
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
168
+ readonly COMMENT_NODE: 8;
169
+ readonly DOCUMENT_NODE: 9;
170
+ readonly DOCUMENT_TYPE_NODE: 10;
171
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
172
+ readonly NOTATION_NODE: 12;
173
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
174
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
175
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
176
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
177
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
178
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
179
+ dispatchEvent(event: Event): boolean;
180
+ ariaActiveDescendantElement: Element | null;
181
+ ariaAtomic: string | null;
182
+ ariaAutoComplete: string | null;
183
+ ariaBrailleLabel: string | null;
184
+ ariaBrailleRoleDescription: string | null;
185
+ ariaBusy: string | null;
186
+ ariaChecked: string | null;
187
+ ariaColCount: string | null;
188
+ ariaColIndex: string | null;
189
+ ariaColIndexText: string | null;
190
+ ariaColSpan: string | null;
191
+ ariaControlsElements: ReadonlyArray<Element> | null;
192
+ ariaCurrent: string | null;
193
+ ariaDescribedByElements: ReadonlyArray<Element> | null;
194
+ ariaDescription: string | null;
195
+ ariaDetailsElements: ReadonlyArray<Element> | null;
196
+ ariaDisabled: string | null;
197
+ ariaErrorMessageElements: ReadonlyArray<Element> | null;
198
+ ariaExpanded: string | null;
199
+ ariaFlowToElements: ReadonlyArray<Element> | null;
200
+ ariaHasPopup: string | null;
201
+ ariaHidden: string | null;
202
+ ariaInvalid: string | null;
203
+ ariaKeyShortcuts: string | null;
204
+ ariaLabel: string | null;
205
+ ariaLabelledByElements: ReadonlyArray<Element> | null;
206
+ ariaLevel: string | null;
207
+ ariaLive: string | null;
208
+ ariaModal: string | null;
209
+ ariaMultiLine: string | null;
210
+ ariaMultiSelectable: string | null;
211
+ ariaOrientation: string | null;
212
+ ariaOwnsElements: ReadonlyArray<Element> | null;
213
+ ariaPlaceholder: string | null;
214
+ ariaPosInSet: string | null;
215
+ ariaPressed: string | null;
216
+ ariaReadOnly: string | null;
217
+ ariaRelevant: string | null;
218
+ ariaRequired: string | null;
219
+ ariaRoleDescription: string | null;
220
+ ariaRowCount: string | null;
221
+ ariaRowIndex: string | null;
222
+ ariaRowIndexText: string | null;
223
+ ariaRowSpan: string | null;
224
+ ariaSelected: string | null;
225
+ ariaSetSize: string | null;
226
+ ariaSort: string | null;
227
+ ariaValueMax: string | null;
228
+ ariaValueMin: string | null;
229
+ ariaValueNow: string | null;
230
+ ariaValueText: string | null;
231
+ role: string | null;
232
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
233
+ getAnimations(options?: GetAnimationsOptions): Animation[];
234
+ after(...nodes: (Node | string)[]): void;
235
+ before(...nodes: (Node | string)[]): void;
236
+ remove(): void;
237
+ replaceWith(...nodes: (Node | string)[]): void;
238
+ readonly nextElementSibling: Element | null;
239
+ readonly previousElementSibling: Element | null;
240
+ readonly childElementCount: number;
241
+ readonly children: HTMLCollection;
242
+ readonly firstElementChild: Element | null;
243
+ readonly lastElementChild: Element | null;
244
+ append(...nodes: (Node | string)[]): void;
245
+ prepend(...nodes: (Node | string)[]): void;
246
+ querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
247
+ querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
248
+ querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
249
+ querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
250
+ querySelector<E extends Element = Element>(selectors: string): E | null;
251
+ querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
252
+ querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
253
+ querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
254
+ querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
255
+ querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
256
+ replaceChildren(...nodes: (Node | string)[]): void;
257
+ readonly assignedSlot: HTMLSlotElement | null;
258
+ readonly attributeStyleMap: StylePropertyMap;
259
+ get style(): CSSStyleDeclaration;
260
+ set style(cssText: string): any;
261
+ contentEditable: string;
262
+ enterKeyHint: string;
263
+ inputMode: string;
264
+ readonly isContentEditable: boolean;
265
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
266
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
267
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
268
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
269
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
270
+ onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
271
+ onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
272
+ onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
273
+ onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
274
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
275
+ oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
276
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
277
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
278
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
279
+ onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
280
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
281
+ oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
282
+ oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
283
+ oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
284
+ oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
285
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
286
+ oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
287
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
288
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
289
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
290
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
291
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
292
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
293
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
294
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
295
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
296
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
297
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
298
+ onerror: OnErrorEventHandler;
299
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
300
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
301
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
302
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
303
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
304
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
305
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
306
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
307
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
308
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
309
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
310
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
311
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
312
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
313
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
314
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
315
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
316
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
317
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
318
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
319
+ onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
320
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
321
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
322
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
323
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
324
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
325
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
326
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
327
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
328
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
329
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
330
+ onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
331
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
332
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
333
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
334
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
335
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
336
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
337
+ onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
338
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
339
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
340
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
341
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
342
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
343
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
344
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
345
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
346
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
347
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
348
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
349
+ ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
350
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
351
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
352
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
353
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
354
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
355
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
356
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
357
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
358
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
359
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
360
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
361
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
362
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
363
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
364
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
365
+ autofocus: boolean;
366
+ readonly dataset: DOMStringMap;
367
+ nonce?: string;
368
+ tabIndex: number;
369
+ blur(): void;
370
+ focus(options?: FocusOptions): void;
371
+ }) & typeof FoundationElement;
372
+ /**
373
+ * Button + popover column picker for Grid Pro (Community).
374
+ *
375
+ * @public
376
+ * @remarks
377
+ * HTML Element: \<%%prefix%%-column-selection\>
378
+ *
379
+ * Provide either `:gridApi` (AG v36) or `:gridHost` (Grid Pro element with `gridApi` / `columnApi`).
380
+ *
381
+ * The panel uses the Popover API (`popover="manual"`) so it paints in the top layer and is not
382
+ * clipped by layout ancestors with `overflow: hidden`. Placement is pure CSS (anchor positioning
383
+ * via `showPopover({ source })` + `position-area`).
384
+ *
385
+ * Layout: select-all + search → column list. Ordering via `sort`
386
+ * (`selected-first` default, or `ag-grid`). Checkboxes toggle visibility via
387
+ * `api.setColumnsVisible`; drag handles on hidden rows use AG native DnD onto the grid
388
+ * (`allowDragFromColumnsToolPanel`); visible rows reorder inside the picker via HTML5 drag.
389
+ *
390
+ * @tagname %%prefix%%-column-selection
391
+ */
392
+ export declare class ColumnSelection extends ColumnSelection_base {
393
+ /** Button label. */
394
+ label: string;
395
+ /**
396
+ * Column list ordering.
397
+ * - `selected-first` (default): visible first (grid display order), then hidden A–Z.
398
+ * - `ag-grid`: `api.getColumnState()` order (visible/hidden interleaved).
399
+ */
400
+ sort: ColumnPickerSort;
401
+ /** Whether the popover is open. */
402
+ open: boolean;
403
+ /** Optional explicit AG grid API (v36). */
404
+ gridApi: GridApi | null;
405
+ /** Grid Pro host element; column API is bridged when needed. */
406
+ gridHost: ColumnSelectionHost | null;
407
+ /** @internal */
408
+ root: HTMLElement;
409
+ /** @internal */
410
+ buttonEl: HTMLElement;
411
+ /** @internal */
412
+ panelEl: HTMLElement;
413
+ search: string;
414
+ selectedItems: ColumnPickerItem[];
415
+ unselectedItems: ColumnPickerItem[];
416
+ /** Master checkbox checked when every toggleable column is visible. */
417
+ selectAllChecked: boolean;
418
+ /** Master checkbox mixed when some (but not all) toggleable columns are visible. */
419
+ selectAllIndeterminate: boolean;
420
+ /** Resolved sort; kept in sync with `@attr sort`. */
421
+ private resolvedSort;
422
+ /** Source colId while a visible-row drag is in progress. */
423
+ private dragColId;
424
+ /** Row currently showing drag-over highlight (avoid observable updates mid-drag). */
425
+ private dragOverElement;
426
+ /** Cancels row drag listeners when the selected list re-renders. */
427
+ private dragBindingAbort;
428
+ /** AG ToolPanel drag sources registered on hidden-row handles (grid drop). */
429
+ private agDragBindings;
430
+ /** Shared DnD bridge from Grid Pro. */
431
+ private columnDragBridge;
432
+ /** Retries `bindRowDrag` until the DnD bridge is populated. */
433
+ private dragBridgeRetryId;
434
+ /** Optimistic visibility while the grid applies setColumnsVisible. */
435
+ private pendingVisibility;
436
+ /** Stable listener refs so close/disconnect can remove the same functions. */
437
+ private readonly boundRefresh;
438
+ private get pickerApi();
439
+ private set pickerApi(value);
440
+ /** Query root for picker DOM (shadow panel). */
441
+ private get pickerRoot();
442
+ /** Drag reorder / grid drop disabled while search filter is active. */
443
+ get canDrag(): boolean;
444
+ /** Handle is draggable onto the grid (hidden columns, or all when using ag-grid sort). */
445
+ canDragToGrid(item: ColumnPickerItem): boolean;
446
+ /** Columns in the current (search-filtered) picker lists that can be toggled. */
447
+ private get toggleableItems();
448
+ openChanged(oldValue?: boolean): void;
449
+ sortChanged(): void;
450
+ gridApiChanged(): void;
451
+ gridHostChanged(): void;
452
+ panelElChanged(): void;
453
+ /**
454
+ * Subscribe to grid column events and rebuild picker lists.
455
+ * Called automatically when the popover opens; exposed for tests/hosts that need an early bind.
456
+ * @internal
457
+ */
458
+ connectPicker(): void;
459
+ /**
460
+ * Opens or closes the popover.
461
+ * @public
462
+ */
463
+ toggle(): void;
464
+ /**
465
+ * Closes the popover.
466
+ * @public
467
+ */
468
+ close(): void;
469
+ /**
470
+ * Rebuilds picker lists from current grid column state.
471
+ */
472
+ refresh(): void;
473
+ disconnectedCallback(): void;
474
+ private readonly handleClickOutside;
475
+ private showPanel;
476
+ private hidePanel;
477
+ private subscribePicker;
478
+ private resubscribePicker;
479
+ private unsubscribePicker;
480
+ private syncSelectAllState;
481
+ private applyPendingVisibility;
482
+ private resolveDragBridge;
483
+ /**
484
+ * Visible rows: HTML5 reorder inside the picker.
485
+ * Hidden rows (or all rows when `sort=ag-grid`): AG ToolPanel drag onto the grid header.
486
+ */
487
+ private bindRowDrag;
488
+ private scheduleDragBridgeRetry;
489
+ /**
490
+ * @internal
491
+ */
492
+ onSearchInput(value: string): void;
493
+ /**
494
+ * @internal
495
+ */
496
+ onSelectAllClick(event: MouseEvent): void;
497
+ /**
498
+ * @internal
499
+ */
500
+ onCheckboxClick(item: ColumnPickerItem, event: MouseEvent): void;
501
+ /**
502
+ * @internal
503
+ */
504
+ onVisibilityChange(item: ColumnPickerItem, visible: boolean): void;
505
+ /**
506
+ * @internal
507
+ */
508
+ onDragStart(event: DragEvent, colId: string, row?: HTMLElement): void;
509
+ /**
510
+ * @internal
511
+ */
512
+ onDragEnd(): void;
513
+ /**
514
+ * @internal
515
+ */
516
+ onDragOver(event: DragEvent, row: HTMLElement): void;
517
+ /**
518
+ * @internal
519
+ */
520
+ onDragLeave(event: DragEvent, row: HTMLElement): void;
521
+ /**
522
+ * @internal
523
+ */
524
+ onDrop(event: DragEvent, colId: string): void;
525
+ private clearDragOverHighlight;
526
+ /**
527
+ * Applies a new visible-column order via `applyColumnState({ applyOrder: true })`.
528
+ * Hidden columns keep their relative positions; only the visible slice is permuted.
529
+ */
530
+ private reorderSelected;
531
+ }
532
+ /**
533
+ * Foundation Column Selection registration.
534
+ *
535
+ * @public
536
+ * @remarks
537
+ * HTML Element: \<foundation-column-selection\>
538
+ */
539
+ export declare const foundationColumnSelection: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
540
+ baseName: string;
541
+ template: import("@microsoft/fast-element").ViewTemplate<ColumnSelection, any>;
542
+ styles: import("@microsoft/fast-element").ElementStyles;
543
+ }>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
544
+ baseName: string;
545
+ template: import("@microsoft/fast-element").ViewTemplate<ColumnSelection, any>;
546
+ styles: import("@microsoft/fast-element").ElementStyles;
547
+ }, typeof ColumnSelection>;
548
+ export {};
549
+ //# sourceMappingURL=column-selection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"column-selection.d.ts","sourceRoot":"","sources":["../../../src/column-selection/column-selection.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Styles for {@link ColumnSelection}.
3
+ * @public
4
+ */
5
+ export declare const columnSelectionStyles: import("@microsoft/fast-element").ElementStyles;
6
+ /**
7
+ * Host layout when the Grid Pro column-selection toolbar is shown.
8
+ * @public
9
+ */
10
+ export declare const gridProColumnSelectionHostStyles: import("@microsoft/fast-element").ElementStyles;
11
+ //# sourceMappingURL=column-selection.styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"column-selection.styles.d.ts","sourceRoot":"","sources":["../../../src/column-selection/column-selection.styles.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,eAAO,MAAM,qBAAqB,iDAyMjC,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gCAAgC,iDAwB5C,CAAC"}
@@ -0,0 +1,13 @@
1
+ import type { ColumnSelection } from './column-selection';
2
+ /**
3
+ * Column Selection button + popover with embedded picker UI.
4
+ * @param prefix - Design-system prefix for button/icon/checkbox/text-field.
5
+ * @public
6
+ */
7
+ export declare const getColumnSelectionTemplate: (prefix?: string) => import("@microsoft/fast-element").ViewTemplate<ColumnSelection, any>;
8
+ /**
9
+ * Default column selection template (`foundation-*` components).
10
+ * @public
11
+ */
12
+ export declare const columnSelectionTemplate: import("@microsoft/fast-element").ViewTemplate<ColumnSelection, any>;
13
+ //# sourceMappingURL=column-selection.template.d.ts.map