Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Production Build
BUILD_GRID_VERSION=35.0.0-beta.20260206.1039
BUILD_GRID_VERSION=35.0.0-beta.20260206.1454
BUILD_CHARTS_VERSION=13.0.0-beta.20260206
ENV=local
NX_BATCH_MODE=true
Expand Down
2 changes: 1 addition & 1 deletion community-modules/locale/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ag-grid-community/locale",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"description": "Localisation Module for AG Grid, providing translations in 31 languages.",
"main": "./dist/package/main.cjs.js",
"types": "./dist/types/src/main.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion community-modules/styles/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ag-grid-community/styles",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"description": "AG Grid Styles and Themes",
"main": "_index.scss",
"files": [
Expand Down
12 changes: 6 additions & 6 deletions documentation/ag-grid-docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ag-grid-docs",
"description": "Documentation for AG Grid",
"type": "module",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"repository": {
"type": "git",
"url": "https://github.com/ag-grid/ag-grid.git"
Expand Down Expand Up @@ -59,11 +59,11 @@
"ag-charts-types": "13.0.0-beta.20260206",
"ag-charts-react": "13.0.0-beta.20260206",
"ag-charts-vue3": "13.0.0-beta.20260206",
"ag-grid-angular": "35.0.0-beta.20260206.1039",
"ag-grid-community": "35.0.0-beta.20260206.1039",
"ag-grid-enterprise": "35.0.0-beta.20260206.1039",
"ag-grid-react": "35.0.0-beta.20260206.1039",
"ag-grid-vue3": "35.0.0-beta.20260206.1039",
"ag-grid-angular": "35.0.0-beta.20260206.1454",
"ag-grid-community": "35.0.0-beta.20260206.1454",
"ag-grid-enterprise": "35.0.0-beta.20260206.1454",
"ag-grid-react": "35.0.0-beta.20260206.1454",
"ag-grid-vue3": "35.0.0-beta.20260206.1454",
"algoliasearch": "^4.18.0",
"astro": "5.16.6",
"cheerio": "^1.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -778,24 +778,9 @@
"meta": {
"displayName": "Scrolling"
},
"ensureIndexVisible": {
"more": {
"name": "firstDataRendered event",
"url": "./grid-events/#reference-miscellaneous-firstDataRendered"
}
},
"ensureNodeVisible": {
"more": {
"name": "firstDataRendered event",
"url": "./grid-events/#reference-miscellaneous-firstDataRendered"
}
},
"ensureColumnVisible": {
"more": {
"name": "firstDataRendered event",
"url": "./grid-events/#reference-miscellaneous-firstDataRendered"
}
},
"ensureIndexVisible": {},
"ensureNodeVisible": {},
"ensureColumnVisible": {},
"getHorizontalPixelRange": {},
"getVerticalPixelRange": {}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ BigInt Filters are configured through the `filterParams` attribute of the column

The BigInt Filter accepts decimal integer syntax only:

- `500` and `500n` are both accepted and parse to `500n`.
- Hex, binary, decimals and scientific notation are rejected.
- Invalid input is handled via standard validation and does not crash the grid.
- `500` and `500n` are both accepted and parse to `500n`.
- Hex, binary, decimals and scientific notation are rejected.
- Invalid input is handled via standard validation and does not crash the grid.

## BigInt Filter Model

Expand All @@ -52,24 +52,24 @@ The Filter Model describes the current state of the applied BigInt Filter:

The BigInt Filter presents the same list of [Filter Options](./filter-conditions/#filter-options) as the Number Filter:

| Option Name | Option Key | Included by Default |
| ------------------------ | --------------------- | ------------------- |
| Equals | `equals` | Yes |
| Does not equal | `notEqual` | Yes |
| Greater than | `greaterThan` | Yes |
| Greater than or equal to | `greaterThanOrEqual` | Yes |
| Less than | `lessThan` | Yes |
| Less than or equal to | `lessThanOrEqual` | Yes |
| Between | `inRange` | Yes |
| Blank | `blank` | Yes |
| Not blank | `notBlank` | Yes |
| Choose one | `empty` | No |
| Option Name | Option Key | Included by Default |
| ------------------------ | -------------------- | ------------------- |
| Equals | `equals` | Yes |
| Does not equal | `notEqual` | Yes |
| Greater than | `greaterThan` | Yes |
| Greater than or equal to | `greaterThanOrEqual` | Yes |
| Less than | `lessThan` | Yes |
| Less than or equal to | `lessThanOrEqual` | Yes |
| Between | `inRange` | Yes |
| Blank | `blank` | Yes |
| Not blank | `notBlank` | Yes |
| Choose one | `empty` | No |

The default option for the BigInt Filter is `equals`.

## Applying the BigInt Filter

Applying the BigInt Filter is described in more detail in the following sections:

* [Apply, Clear, Reset and Cancel Buttons](./filter-applying/#apply-clear-reset-and-cancel-buttons)
* [Applying the UI Model](./filter-applying/#applying-the-ui-model)
- [Apply, Clear, Reset and Cancel Buttons](./filter-applying/#apply-clear-reset-and-cancel-buttons)
- [Applying the UI Model](./filter-applying/#applying-the-ui-model)
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ const columnDefs: ColDef[] = [
### Available Built-in Date Filter Options

| Option Name | Option Key | Time Range Start >= | Time Range End < |
|--------------------|----------------|----------------------------------------|:------------------------------|
| ------------------ | -------------- | -------------------------------------- | :---------------------------- |
| Today | `today` | `Start Of Today` | `Start Of Tomorrow` |
| Yesterday | `yesterday` | `Start Of Yesterday` | `Start Of Today` |
| Tomorrow | `tomorrow` | `Start Of Tomorrow` | `Start Of Day After Tomorrow` |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ description: "See what's new in AG Grid, view a full list of changes and migrate
migrationVersion: "35.1.0"
---

Filtering Named Date Ranges, Formula Editor, BigInt Support, React Context, Theme Builder - Import Theme
Filtering Named Date Ranges, Formula Editor, BigInt Support, Excel Export Security, Theme Builder - Import Theme

## What's New

AG Grid {% migrationVersion() %} adds important new features - [Filtering Named Date Ranges](./filter-date/#built-in-named--relative-date-ranges), [Formula Editor](./formula-editor-component/), [BigInt Support](./cell-data-types/#bigint), [React Context](./installation/#registering-modules), [Theme Builder - Import Theme](./theming-theme-builder/#importing-themes).
AG Grid {% migrationVersion() %} adds important new features - [Filtering Named Date Ranges](./filter-date/#built-in-named--relative-date-ranges), [Formula Editor](./formula-editor-component/), [BigInt Support](./cell-data-types/#bigint), [Excel Export Security](./excel-export-data-protection/), [Theme Builder - Import Theme](./theming-theme-builder/#importing-themes).
These improvements involve no breaking changes as listed below.

<!--
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
"version": "35.1.0",
"date": "11th February 2026",
"landingPageHighlight": "Filtering Named Date Ranges, Formula Editor, BigInt Support, React Context, Theme Builder - Import Theme",
"landingPageHighlight": "Filtering Named Date Ranges, Formula Editor, BigInt Support, Excel Export Security, Theme Builder - Import Theme",
"highlights": [
{
"text": "Filtering Named Date Ranges",
Expand All @@ -17,8 +17,8 @@
"path": "./cell-data-types/#bigint"
},
{
"text": "React Context",
"path": "./installation/#registering-modules"
"text": "Excel Export Security",
"path": "./excel-export-data-protection/"
},
{
"text": "Theme Builder - Import Theme",
Expand Down
2 changes: 1 addition & 1 deletion documentation/update-algolia-indices/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "update-algolia-indices",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"description": "Update algolia indices",
"main": "src/index.ts",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ag-grid",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"license": "MIT",
"scripts": {
"compressVideo": "tsx external/ag-website-shared/scripts/compress-video",
Expand Down
6 changes: 3 additions & 3 deletions packages/ag-grid-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ag-grid-angular",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"description": "AG Grid Angular Component",
"scripts": {
"clean": "rimraf dist",
Expand All @@ -15,7 +15,7 @@
"module": "./dist/ag-grid-angular/fesm2022/ag-grid-angular.mjs",
"typings": "./dist/ag-grid-angular/index.d.ts",
"dependencies": {
"ag-grid-community": "35.0.0-beta.20260206.1039",
"ag-grid-community": "35.0.0-beta.20260206.1454",
"@angular/animations": "^18.0.7",
"@angular/common": "^18.0.7",
"@angular/compiler": "^18.0.7",
Expand All @@ -27,7 +27,7 @@
"zone.js": "~0.15.1"
},
"devDependencies": {
"ag-grid-community": "35.0.0-beta.20260206.1039",
"ag-grid-community": "35.0.0-beta.20260206.1454",
"@angular-devkit/build-angular": "^18.0.7",
"@angular/cli": "^18.0.7",
"@angular/forms": "^18.0.7",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "ag-grid-angular",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"description": "AG Grid Angular Component",
"license": "MIT",
"peerDependencies": {
"@angular/common": ">= 18.0.0",
"@angular/core": ">= 18.0.0"
},
"dependencies": {
"ag-grid-community": "35.0.0-beta.20260206.1039",
"ag-grid-community": "35.0.0-beta.20260206.1454",
"tslib": "^2.3.0"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ag-grid-community/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ag-grid-community",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"description": "Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue",
"main": "./dist/package/main.cjs.js",
"types": "./dist/types/src/main.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/ag-grid-community/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// DO NOT UPDATE MANUALLY: Generated from script during build time
export const VERSION = '35.0.0-beta.20260206.1039';
export const VERSION = '35.0.0-beta.20260206.1454';
4 changes: 2 additions & 2 deletions packages/ag-grid-enterprise/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ag-grid-enterprise",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"description": "Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue",
"main": "./dist/package/main.cjs.js",
"types": "./dist/types/src/main.d.ts",
Expand Down Expand Up @@ -113,7 +113,7 @@
],
"homepage": "https://www.ag-grid.com/",
"dependencies": {
"ag-grid-community": "35.0.0-beta.20260206.1039"
"ag-grid-community": "35.0.0-beta.20260206.1454"
},
"optionalDependencies": {
"ag-charts-community": "13.0.0-beta.20260206",
Expand Down
2 changes: 1 addition & 1 deletion packages/ag-grid-enterprise/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// DO NOT UPDATE MANUALLY: Generated from script during build time
export const VERSION = '35.0.0-beta.20260206.1039';
export const VERSION = '35.0.0-beta.20260206.1454';
6 changes: 3 additions & 3 deletions packages/ag-grid-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ag-grid-react",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"description": "AG Grid React Component",
"main": "./dist/package/index.cjs.js",
"types": "./dist/types/src/index.d.ts",
Expand Down Expand Up @@ -31,7 +31,7 @@
"devDependencies": {
"@babel/runtime": "^7.27.1",
"prop-types": "^15.6.2",
"ag-grid-community": "35.0.0-beta.20260206.1039",
"ag-grid-community": "35.0.0-beta.20260206.1454",
"@babel/plugin-proposal-throw-expressions": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@types/react": "~18.3.26",
Expand All @@ -44,7 +44,7 @@
},
"dependencies": {
"prop-types": "^15.8.1",
"ag-grid-community": "35.0.0-beta.20260206.1039"
"ag-grid-community": "35.0.0-beta.20260206.1454"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/ag-grid-vue3/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ag-grid-vue3",
"description": "AG Grid Vue 3 Component",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"author": "Sean Landsman <sean@thelandsmans.com>",
"license": "MIT",
"files": [
Expand Down Expand Up @@ -44,7 +44,7 @@
"build-only:watch": "vite build --watch"
},
"dependencies": {
"ag-grid-community": "35.0.0-beta.20260206.1039"
"ag-grid-community": "35.0.0-beta.20260206.1454"
},
"devDependencies": {
"vue": "^3.5.0",
Expand Down
2 changes: 1 addition & 1 deletion plugins/ag-grid-generate-code-reference-files/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ag-grid-generate-code-reference-files",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"private": true,
"dependencies": {
"ag-shared": "0.0.1",
Expand Down
4 changes: 2 additions & 2 deletions plugins/ag-grid-generate-example-files/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "ag-grid-generate-example-files",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"private": true,
"dependencies": {
"ag-shared": "0.0.1",
"ag-grid-community": "35.0.0-beta.20260206.1039",
"ag-grid-community": "35.0.0-beta.20260206.1454",
"glob": "8.0.3",
"typescript": "~5.4.5",
"cheerio": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion plugins/ag-grid-task-autogen/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ag-grid-task-autogen",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"private": true,
"dependencies": {
"@nx/devkit": "20.3.1",
Expand Down
8 changes: 4 additions & 4 deletions testing/accessibility/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ag-grid-accessibility",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"scripts": {
"download-examples": "curl --retry 5 -retry-all-errors https://grid-staging.ag-grid.com/debug/all-examples.json > ./all-examples.json",
"download-examples-local": "curl https://localhost:4610/debug/all-examples.json > ./all-examples.json",
Expand All @@ -18,9 +18,9 @@
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/router": "^19.0.0",
"ag-grid-angular": "35.0.0-beta.20260206.1039",
"ag-grid-community": "35.0.0-beta.20260206.1039",
"ag-grid-enterprise": "35.0.0-beta.20260206.1039",
"ag-grid-angular": "35.0.0-beta.20260206.1454",
"ag-grid-community": "35.0.0-beta.20260206.1454",
"ag-grid-enterprise": "35.0.0-beta.20260206.1454",
"ag-charts-community": "13.0.0-beta.20260206",
"ag-charts-enterprise": "13.0.0-beta.20260206",
"rxjs": "~7.8.0",
Expand Down
8 changes: 4 additions & 4 deletions testing/behavioural/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "ag-behavioural-testing",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"private": true,
"description": "Behavioural unit testing for ag-Grid",
"dependencies": {
"tslib": "^2.8.1"
},
"type": "module",
"devDependencies": {
"ag-grid-community": "35.0.0-beta.20260206.1039",
"ag-grid-enterprise": "35.0.0-beta.20260206.1039",
"ag-grid-react": "35.0.0-beta.20260206.1039",
"ag-grid-community": "35.0.0-beta.20260206.1454",
"ag-grid-enterprise": "35.0.0-beta.20260206.1454",
"ag-grid-react": "35.0.0-beta.20260206.1454",
"@vitejs/plugin-react": "^4.5.1",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
Expand Down
2 changes: 1 addition & 1 deletion testing/behavioural/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// DO NOT UPDATE MANUALLY: Generated from script during build time
export const VERSION = '35.0.0-beta.20260206.1039';
export const VERSION = '35.0.0-beta.20260206.1454';
2 changes: 1 addition & 1 deletion testing/csp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ag-grid-csp",
"version": "35.0.0-beta.20260206.1039",
"version": "35.0.0-beta.20260206.1454",
"description": "CSP testing for AG Grid",
"main": "index.js",
"scripts": {},
Expand Down
Loading
Loading