@genesislcap/grid-pro 15.21.1 → 15.22.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/.cursor/rules/ag-embedded-components.mdc +83 -0
- package/dist/custom-elements.json +794 -0
- package/dist/dts/column-filters/enum-column.filter.d.ts +204 -0
- package/dist/dts/column-filters/enum-column.filter.d.ts.map +1 -0
- package/dist/dts/column-filters/enum-column.floating-filter.d.ts +23 -0
- package/dist/dts/column-filters/enum-column.floating-filter.d.ts.map +1 -0
- package/dist/dts/column-filters/index.d.ts +3 -0
- package/dist/dts/column-filters/index.d.ts.map +1 -0
- package/dist/dts/datasource/filter.utils.d.ts.map +1 -1
- package/dist/dts/grid-pro-beta.d.ts +16 -21
- package/dist/dts/grid-pro-beta.d.ts.map +1 -1
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/esm/column-filters/enum-column.filter.js +525 -0
- package/dist/esm/column-filters/enum-column.floating-filter.js +109 -0
- package/dist/esm/column-filters/index.js +2 -0
- package/dist/esm/datasource/filter.utils.js +29 -6
- package/dist/esm/grid-pro-beta.js +68 -29
- package/dist/esm/index.js +1 -0
- package/dist/grid-pro.api.json +1577 -105
- package/dist/grid-pro.d.ts +253 -21
- package/package.json +13 -13
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
import type { IDoesFilterPassParams, IFilterComp, IFilterParams } from 'ag-grid-community';
|
|
2
|
+
/**
|
|
3
|
+
* The available Grid Pro column filter component names.
|
|
4
|
+
* @remarks Register-able via the grid `components` map; `enumFilter` is usable as a
|
|
5
|
+
* `ColDef.filter` value and `enumFloatingFilter` as a `ColDef.floatingFilterComponent`.
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export declare enum GridProFilterTypes {
|
|
9
|
+
enumFilter = "enumColumnFilter",
|
|
10
|
+
enumFloatingFilter = "enumColumnFloatingFilter"
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Parameters handed to an {@link EnumColumnFilterValuesGetter}.
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export interface EnumColumnFilterValuesGetterParams {
|
|
17
|
+
colDef: IFilterParams['colDef'];
|
|
18
|
+
api: IFilterParams['api'];
|
|
19
|
+
/**
|
|
20
|
+
* Resolves the values via callback instead of a return value — the contract of AG Grid's
|
|
21
|
+
* `SetFilterValuesFunc`, so an `agSetColumnFilter` values function keeps working when the
|
|
22
|
+
* column is downgraded to this filter.
|
|
23
|
+
*/
|
|
24
|
+
success: (values: string[]) => void;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Resolves the selectable values at runtime, e.g. from a request-reply resource: return them
|
|
28
|
+
* (directly or as a promise), or call `params.success` with them, AG set-filter style.
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export type EnumColumnFilterValuesGetter = (params: EnumColumnFilterValuesGetterParams) => string[] | Promise<string[]> | void;
|
|
32
|
+
/**
|
|
33
|
+
* Parameters passed to {@link EnumColumnFilterParams.valueFormatter} — the subset of AG's
|
|
34
|
+
* `ValueFormatterParams` that is available in every context the formatter runs in (the filter
|
|
35
|
+
* list, the floating filter summary, and the header tooltip). Row-specific fields (`node`,
|
|
36
|
+
* `data`) are never provided, since these labels are not tied to a row.
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export interface EnumColumnFilterValueFormatterParams {
|
|
40
|
+
value: string;
|
|
41
|
+
api?: IFilterParams['api'];
|
|
42
|
+
colDef?: IFilterParams['colDef'];
|
|
43
|
+
column?: IFilterParams['column'];
|
|
44
|
+
context?: unknown;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Parameters used to configure {@link EnumColumnFilter}.
|
|
48
|
+
* @remarks Provided via `ColDef.filterParams`. The option list is defined by the enum — the
|
|
49
|
+
* field metadata's `enumOptions`, a plain array, or a getter — never derived from row data;
|
|
50
|
+
* omitting `values` logs a warning and offers only the `(Blanks)` entry.
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
export interface EnumColumnFilterParams {
|
|
54
|
+
/**
|
|
55
|
+
* The selectable values — typically the `enumOptions` from the field metadata — or a function
|
|
56
|
+
* resolving them at runtime (see {@link EnumColumnFilterValuesGetter}).
|
|
57
|
+
*/
|
|
58
|
+
values?: string[] | EnumColumnFilterValuesGetter;
|
|
59
|
+
/**
|
|
60
|
+
* Formats a raw value into the label shown in the list, the floating filter, and the filter
|
|
61
|
+
* summary. Receives `value` plus `api`/`colDef`/`column`/`context`, so an `agSetColumnFilter`
|
|
62
|
+
* formatter that reads those keeps working when the column is downgraded — but never `node` or
|
|
63
|
+
* `data`, since these labels are not row-bound. Defaults to capital case (`PENDING_APPROVAL`
|
|
64
|
+
* becomes `Pending Approval`).
|
|
65
|
+
*/
|
|
66
|
+
valueFormatter?: (params: EnumColumnFilterValueFormatterParams) => string;
|
|
67
|
+
/**
|
|
68
|
+
* Whether to show the `(Blanks)` entry, which matches rows with a `null`/empty cell value.
|
|
69
|
+
* Shown by default, so a nullable enum column's blank rows are always filterable; set `false`
|
|
70
|
+
* to hide it (e.g. on a field that can never be blank).
|
|
71
|
+
*/
|
|
72
|
+
blanks?: boolean;
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* The filter model produced by {@link EnumColumnFilter}.
|
|
76
|
+
* @remarks Shape-compatible with AG Grid's `agSetColumnFilter` model — including `null` standing
|
|
77
|
+
* for blanks — so persisted filter models and the datasource `CRITERIA_MATCH` translation treat
|
|
78
|
+
* both filters identically.
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export interface EnumColumnFilterModel {
|
|
82
|
+
filterType: 'set';
|
|
83
|
+
values: (string | null)[];
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Builds the value-to-label formatter for an enum filter, honouring `valueFormatter` from the
|
|
87
|
+
* filter params and labelling `null` (blanks) consistently.
|
|
88
|
+
* @remarks Shared by {@link EnumColumnFilter} and the floating filter so both render the same
|
|
89
|
+
* labels from `ColDef.filterParams` alone.
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export declare function createEnumValueLabelFormatter(params: (Pick<EnumColumnFilterParams, 'valueFormatter'> & Partial<Pick<EnumColumnFilterValueFormatterParams, 'api' | 'colDef' | 'column' | 'context'>>) | undefined): (value: string | null) => string;
|
|
93
|
+
/**
|
|
94
|
+
* Renders an enum filter model as a short summary, e.g. `(2) Active, Pending`.
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export declare function formatEnumFilterModelAsString(model: EnumColumnFilterModel | null, formatLabel: (value: string | null) => string): string;
|
|
98
|
+
/**
|
|
99
|
+
* An Excel AutoFilter-inspired set filter for enum columns, built on AG Grid Community only.
|
|
100
|
+
* @remarks
|
|
101
|
+
* Renders a searchable checkbox list of the column's enum options (from `filterParams.values`,
|
|
102
|
+
* fed by the resource field metadata or a values getter — the option list is defined by the enum,
|
|
103
|
+
* never scanned from row data) with a tri-state "(Select All)" toggle scoped to the search
|
|
104
|
+
* results, a `(Blanks)` entry shown by default, human-readable labels, and arrow-key navigation —
|
|
105
|
+
* applying on every change. Emits the same `{ filterType: 'set', values }` model as the
|
|
106
|
+
* enterprise `agSetColumnFilter`, so it is a drop-in replacement for filter-model persistence and
|
|
107
|
+
* the Genesis server-side criteria building — without requiring the enterprise `SetFilterModule`.
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
export declare class EnumColumnFilter implements IFilterComp {
|
|
111
|
+
protected params: IFilterParams & EnumColumnFilterParams;
|
|
112
|
+
private eGui;
|
|
113
|
+
/** The GUI's shadow root — hosts the content and the shared FAST stylesheet. */
|
|
114
|
+
private eRoot;
|
|
115
|
+
private eSearch;
|
|
116
|
+
private eSelectAll;
|
|
117
|
+
private eList;
|
|
118
|
+
/** Rendered value checkboxes keyed by value; `null` keys the blanks entry. */
|
|
119
|
+
private itemInputs;
|
|
120
|
+
/** All selectable values, in the order the metadata/getter provided them. */
|
|
121
|
+
private allValues;
|
|
122
|
+
/** Whether the `(Blanks)` entry is offered — on unless `filterParams.blanks` is `false`. */
|
|
123
|
+
private includeBlanks;
|
|
124
|
+
/** Guards async values resolution against out-of-date responses and use after destroy. */
|
|
125
|
+
private valuesRequestId;
|
|
126
|
+
private loading;
|
|
127
|
+
/** Whether this instance installed the header tooltip getter (so destroy removes only its own). */
|
|
128
|
+
private ownsHeaderTooltip;
|
|
129
|
+
private formatLabel;
|
|
130
|
+
/**
|
|
131
|
+
* `null` while inactive (everything passes); otherwise the selected values, with `null`
|
|
132
|
+
* standing for blanks. May contain values absent from `allValues` (e.g. a restored model
|
|
133
|
+
* referencing rows not loaded yet) — those are preserved and rendered as extra list entries
|
|
134
|
+
* so restoring a persisted model never silently narrows it, while still letting the user
|
|
135
|
+
* deselect them.
|
|
136
|
+
*/
|
|
137
|
+
private model;
|
|
138
|
+
private searchTerm;
|
|
139
|
+
init(params: IFilterParams & EnumColumnFilterParams): void;
|
|
140
|
+
getGui(): HTMLElement;
|
|
141
|
+
isFilterActive(): boolean;
|
|
142
|
+
doesFilterPass(params: IDoesFilterPassParams): boolean;
|
|
143
|
+
getModel(): EnumColumnFilterModel | null;
|
|
144
|
+
setModel(model: EnumColumnFilterModel | null): void;
|
|
145
|
+
getModelAsString(model: EnumColumnFilterModel | null): string;
|
|
146
|
+
/** Clears the filter back to inactive and notifies the grid; used by the floating filter. */
|
|
147
|
+
clear(): void;
|
|
148
|
+
/**
|
|
149
|
+
* Surfaces the active selection in the column's header tooltip (alongside AG's native header
|
|
150
|
+
* filter icon), so the filter state is inspectable from the header without the layout-changing
|
|
151
|
+
* floating filter row. Installed as a `headerTooltipValueGetter`, which AG evaluates lazily on
|
|
152
|
+
* hover — no header refresh needed when the model changes. While inactive it returns
|
|
153
|
+
* `undefined`, which falls back to the consumer's own `headerTooltip`; when active, that
|
|
154
|
+
* tooltip is kept as the prefix. A consumer-provided getter is left untouched.
|
|
155
|
+
*/
|
|
156
|
+
private installHeaderTooltip;
|
|
157
|
+
afterGuiAttached(params?: {
|
|
158
|
+
suppressFocus?: boolean;
|
|
159
|
+
}): void;
|
|
160
|
+
refresh(params: IFilterParams & EnumColumnFilterParams): boolean;
|
|
161
|
+
destroy(): void;
|
|
162
|
+
/** Resolves the option list (values array or getter) and re-renders. */
|
|
163
|
+
private resolveState;
|
|
164
|
+
private loadAsyncValues;
|
|
165
|
+
/** The raw field read covers params without `getValue` (e.g. stripped-down test params). */
|
|
166
|
+
private getCellValue;
|
|
167
|
+
/** Model values that are not in the option list, e.g. from a restored persisted model. */
|
|
168
|
+
private extraModelValues;
|
|
169
|
+
/**
|
|
170
|
+
* All offered entry keys: the option list, then any off-list model values (rendered so they can
|
|
171
|
+
* be deselected rather than being stuck in the model forever), then `null` (blanks) last like
|
|
172
|
+
* Excel. The blanks entry is also offered whenever the model references it, so a restored
|
|
173
|
+
* blanks selection stays visible and removable even before blank rows are detected.
|
|
174
|
+
*/
|
|
175
|
+
private allKeys;
|
|
176
|
+
private isSelected;
|
|
177
|
+
private visibleKeys;
|
|
178
|
+
/**
|
|
179
|
+
* Applies a new selection. Collapses back to the inactive (`null`) model when every offered
|
|
180
|
+
* entry is selected, so a fully re-selected filter reports inactive exactly like the
|
|
181
|
+
* enterprise set filter. Selected values beyond the offered keys don't restrict anything an
|
|
182
|
+
* inactive filter would pass, so a superset selection collapses too.
|
|
183
|
+
*/
|
|
184
|
+
private updateSelection;
|
|
185
|
+
private currentSelection;
|
|
186
|
+
private toggleValue;
|
|
187
|
+
/** Select-all acts on the searched subset only, mirroring Excel's AutoFilter. */
|
|
188
|
+
private toggleAllVisible;
|
|
189
|
+
private createGui;
|
|
190
|
+
private createItem;
|
|
191
|
+
/** Rebuilds the value list; used when the values or the search term change. */
|
|
192
|
+
private renderList;
|
|
193
|
+
/** Refreshes checkbox states in place, preserving DOM (and keyboard focus) on toggles. */
|
|
194
|
+
private syncCheckedStates;
|
|
195
|
+
private focusables;
|
|
196
|
+
/**
|
|
197
|
+
* Arrow keys walk search box, "(Select All)" and the visible entries; Enter toggles the
|
|
198
|
+
* focused entry (Space is the checkbox's native toggle). Tab wraps within the popup: AG's own
|
|
199
|
+
* popup focus trap collects focusable elements with `querySelectorAll`, which does not pierce
|
|
200
|
+
* the shadow root, so the trap must live here.
|
|
201
|
+
*/
|
|
202
|
+
private handleKeyDown;
|
|
203
|
+
}
|
|
204
|
+
//# sourceMappingURL=enum-column.filter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enum-column.filter.d.ts","sourceRoot":"","sources":["../../../src/column-filters/enum-column.filter.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { IFloatingFilterComp, IFloatingFilterParams } from 'ag-grid-community';
|
|
2
|
+
import { type EnumColumnFilterModel } from './enum-column.filter';
|
|
3
|
+
/**
|
|
4
|
+
* Floating filter companion for {@link EnumColumnFilter}: shows the current selection as a
|
|
5
|
+
* compact summary (e.g. `(2) Active, Pending`), opens the parent filter on click, and offers a
|
|
6
|
+
* one-click clear. Set via `ColDef.floatingFilterComponent` (see
|
|
7
|
+
* {@link GridProFilterTypes.enumFloatingFilter}); shown when the column enables `floatingFilter`.
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export declare class EnumColumnFloatingFilter implements IFloatingFilterComp {
|
|
11
|
+
private params;
|
|
12
|
+
private eGui;
|
|
13
|
+
/** The GUI's shadow root — hosts the content and the shared FAST stylesheet. */
|
|
14
|
+
private eRoot;
|
|
15
|
+
private eSummary;
|
|
16
|
+
private eClear;
|
|
17
|
+
private formatLabel;
|
|
18
|
+
init(params: IFloatingFilterParams): void;
|
|
19
|
+
getGui(): HTMLElement;
|
|
20
|
+
onParentModelChanged(model: EnumColumnFilterModel | null): void;
|
|
21
|
+
destroy(): void;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=enum-column.floating-filter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enum-column.floating-filter.d.ts","sourceRoot":"","sources":["../../../src/column-filters/enum-column.floating-filter.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AACpF,OAAO,EAGL,KAAK,qBAAqB,EAG3B,MAAM,sBAAsB,CAAC;AAiD9B;;;;;;GAMG;AACH,qBAAa,wBAAyB,YAAW,mBAAmB;IAClE,OAAO,CAAC,MAAM,CAAwB;IACtC,OAAO,CAAC,IAAI,CAAc;IAC1B,gFAAgF;IAChF,OAAO,CAAC,KAAK,CAAa;IAC1B,OAAO,CAAC,QAAQ,CAAc;IAC9B,OAAO,CAAC,MAAM,CAAoB;IAClC,OAAO,CAAC,WAAW,CAAmC;IAE/C,IAAI,CAAC,MAAM,EAAE,qBAAqB,GAAG,IAAI;IA2CzC,MAAM,IAAI,WAAW;IAIrB,oBAAoB,CAAC,KAAK,EAAE,qBAAqB,GAAG,IAAI,GAAG,IAAI;IAU/D,OAAO,IAAI,IAAI;CAGvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/column-filters/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,+BAA+B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"filter.utils.d.ts","sourceRoot":"","sources":["../../../src/datasource/filter.utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAqBpE;;;;;GAKG;AACH,wBAAgB,2BAA2B,CAAC,WAAW,EAAE,GAAG,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAyB9F;AAED;;;;;;GAMG;AACH,wBAAgB,0BAA0B,CACxC,WAAW,EAAE,GAAG,EAChB,SAAS,EAAE,MAAM,EACjB,OAAO,CAAC,EAAE,cAAc,GACvB,MAAM,GAAG,IAAI,
|
|
1
|
+
{"version":3,"file":"filter.utils.d.ts","sourceRoot":"","sources":["../../../src/datasource/filter.utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAqBpE;;;;;GAKG;AACH,wBAAgB,2BAA2B,CAAC,WAAW,EAAE,GAAG,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAyB9F;AAED;;;;;;GAMG;AACH,wBAAgB,0BAA0B,CACxC,WAAW,EAAE,GAAG,EAChB,SAAS,EAAE,MAAM,EACjB,OAAO,CAAC,EAAE,cAAc,GACvB,MAAM,GAAG,IAAI,CAiEf;AAED;;;;;GAKG;AACH,wBAAgB,6BAA6B,CAAC,WAAW,EAAE,GAAG,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAiChG;AAED;;;;;GAKG;AACH,wBAAgB,2BAA2B,CAAC,WAAW,EAAE,GAAG,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAmC9F;AA6DD;;;;;;;GAOG;AACH,wBAAgB,4BAA4B,CAAC,WAAW,EAAE,GAAG,EAAE,OAAO,CAAC,EAAE,cAAc,EAAE,GAAG,MAAM,CAqBjG"}
|
|
@@ -118,21 +118,7 @@ declare const GridProBeta_base: (new (...args: any[]) => {
|
|
|
118
118
|
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
119
119
|
removeAttributeNode(attr: Attr): Attr;
|
|
120
120
|
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
121
|
-
requestPointerLock(options
|
|
122
|
-
/**
|
|
123
|
-
* Enables or disables the grid status bar.
|
|
124
|
-
* @remarks
|
|
125
|
-
* Default is false.
|
|
126
|
-
* When disabled, no status bar will be displayed regardless of statusBarConfig.
|
|
127
|
-
* This requires AG Grid Enterprise module to be available for the status bar to be displayed when enabled.
|
|
128
|
-
*/
|
|
129
|
-
? /**
|
|
130
|
-
* Enables or disables the grid status bar.
|
|
131
|
-
* @remarks
|
|
132
|
-
* Default is false.
|
|
133
|
-
* When disabled, no status bar will be displayed regardless of statusBarConfig.
|
|
134
|
-
* This requires AG Grid Enterprise module to be available for the status bar to be displayed when enabled.
|
|
135
|
-
*/: PointerLockOptions): Promise<void>;
|
|
121
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
|
136
122
|
scroll(options?: ScrollToOptions): void;
|
|
137
123
|
scroll(x: number, y: number): void;
|
|
138
124
|
scrollBy(options?: ScrollToOptions): void;
|
|
@@ -367,12 +353,7 @@ declare const GridProBeta_base: (new (...args: any[]) => {
|
|
|
367
353
|
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
368
354
|
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
369
355
|
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
370
|
-
ontouchstart
|
|
371
|
-
/**
|
|
372
|
-
* Handles schema updates from datasource
|
|
373
|
-
* @internal
|
|
374
|
-
*/
|
|
375
|
-
?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
356
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
376
357
|
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
377
358
|
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
378
359
|
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
@@ -591,6 +572,20 @@ export declare class GridProBeta extends GridProBeta_base {
|
|
|
591
572
|
* @internal
|
|
592
573
|
*/
|
|
593
574
|
private processSchemaUpdate;
|
|
575
|
+
/**
|
|
576
|
+
* Downgrades enterprise filters in metadata-generated colDefs when their modules are not
|
|
577
|
+
* registered — from v35 AG Grid throws on unregistered filters instead of falling back.
|
|
578
|
+
* Enum columns (recognised by their metadata-sourced set-filter values) keep those values by
|
|
579
|
+
* falling back to the community `EnumColumnFilter` instead of a plain text filter.
|
|
580
|
+
*
|
|
581
|
+
* The enum floating filter is only wired as the column's component, not enabled: AG's floating
|
|
582
|
+
* filter is a full-width header row, so enabling it for one column changes the layout of every
|
|
583
|
+
* column. Active-filter state is surfaced instead by AG's native header filter icon plus the
|
|
584
|
+
* header tooltip the enum filter maintains; consumers wanting the floating row opt in with
|
|
585
|
+
* `floatingFilter: true`.
|
|
586
|
+
* @internal
|
|
587
|
+
*/
|
|
588
|
+
private applyCommunityFilterFallbacks;
|
|
594
589
|
/**
|
|
595
590
|
* Handles data clearing from datasource
|
|
596
591
|
* @internal
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grid-pro-beta.d.ts","sourceRoot":"","sources":["../../src/grid-pro-beta.ts"],"names":[],"mappings":"AAOA,OAAO,EAAyB,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAC9E,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,KAAK,EACV,MAAM,EACN,WAAW,EAGX,OAAO,EACP,WAAW,EACX,UAAU,EAEX,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"grid-pro-beta.d.ts","sourceRoot":"","sources":["../../src/grid-pro-beta.ts"],"names":[],"mappings":"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"}
|
package/dist/dts/index.d.ts
CHANGED
package/dist/dts/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wBAAwB,CAAC;AACvC,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AACxC,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wBAAwB,CAAC;AACvC,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AACxC,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC"}
|