@toolbox-web/grid 1.27.1 → 1.27.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/all.js +1 -1
- package/all.js.map +1 -1
- package/index.js +1 -1
- package/lib/plugins/filtering/FilteringPlugin.d.ts +27 -1
- package/lib/plugins/filtering/index.d.ts +1 -1
- package/lib/plugins/filtering/index.js +1 -1
- package/lib/plugins/filtering/index.js.map +1 -1
- package/lib/plugins/filtering/types.d.ts +7 -0
- package/package.json +1 -1
- package/umd/grid.all.umd.js +1 -1
- package/umd/grid.all.umd.js.map +1 -1
- package/umd/plugins/filtering.umd.js +1 -1
- package/umd/plugins/filtering.umd.js.map +1 -1
|
@@ -846,3 +846,10 @@ export interface FilterChangeDetail {
|
|
|
846
846
|
*/
|
|
847
847
|
selected?: Record<string, unknown[]>;
|
|
848
848
|
}
|
|
849
|
+
/**
|
|
850
|
+
* Blank filter mode for a column.
|
|
851
|
+
* - `'all'` — no blank filter applied, all rows shown
|
|
852
|
+
* - `'blanksOnly'` — only blank/empty rows shown (`blank` operator)
|
|
853
|
+
* - `'nonBlanksOnly'` — only non-blank rows shown (`notBlank` operator)
|
|
854
|
+
*/
|
|
855
|
+
export type BlankMode = 'all' | 'blanksOnly' | 'nonBlanksOnly';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toolbox-web/grid",
|
|
3
|
-
"version": "1.27.
|
|
3
|
+
"version": "1.27.2",
|
|
4
4
|
"description": "Zero-dependency, framework-agnostic data grid web component with virtualization, sorting, filtering, editing, and 20+ plugins. Works in vanilla JS, React, Vue, Angular, and any framework.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|