ag-grid-community 35.2.0 → 35.3.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.
- package/README.md +36 -36
- package/dist/ag-grid-community.js +14153 -1434
- package/dist/ag-grid-community.min.js +882 -258
- package/dist/ag-grid-community.min.noStyle.js +51 -43
- package/dist/ag-grid-community.noStyle.js +2037 -1420
- package/dist/package/main.cjs.js +2034 -1402
- package/dist/package/main.cjs.min.js +49 -41
- package/dist/package/main.esm.min.mjs +46 -38
- package/dist/package/main.esm.mjs +2034 -1402
- package/dist/package/package.json +5 -8
- package/dist/package.json +5 -8
- package/dist/types/package.json +5 -8
- package/dist/types/src/agStack/interfaces/iIcon.d.ts +1 -1
- package/dist/types/src/agStack/popup/popupPositionUtils.d.ts +71 -0
- package/dist/types/src/agStack/rendering/agPositionableFeature.d.ts +1 -1
- package/dist/types/src/agStack/theming/inject.d.ts +3 -2
- package/dist/types/src/agStack/theming/shared/shared-css.d.ts +1 -0
- package/dist/types/src/agStack/utils/array.d.ts +9 -0
- package/dist/types/src/agStack/utils/dom.d.ts +1 -1
- package/dist/types/src/agStack/utils/fuzzyMatch.d.ts +2 -1
- package/dist/types/src/agStack/utils/value.d.ts +6 -1
- package/dist/types/src/agStack/widgets/agInputTextArea.d.ts +1 -0
- package/dist/types/src/api/gridApi.d.ts +60 -1
- package/dist/types/src/clientSideRowModel/clientSideRowModel.d.ts +1 -0
- package/dist/types/src/clientSideRowModel/deltaSort.d.ts +2 -0
- package/dist/types/src/clientSideRowModel/filterStage.d.ts +2 -9
- package/dist/types/src/clientSideRowModel/sortStage.d.ts +1 -1
- package/dist/types/src/columns/columnDefFactory.d.ts +1 -0
- package/dist/types/src/columns/columnModel.d.ts +6 -1
- package/dist/types/src/context/context.d.ts +17 -4
- package/dist/types/src/edit/cellEditors/largeTextCellEditor.d.ts +4 -0
- package/dist/types/src/edit/editService.d.ts +1 -1
- package/dist/types/src/edit/strategy/fullRowEditStrategy.d.ts +1 -1
- package/dist/types/src/edit/strategy/singleCellEditStrategy.d.ts +1 -1
- package/dist/types/src/entities/agColumn.d.ts +3 -5
- package/dist/types/src/entities/colDef.d.ts +20 -8
- package/dist/types/src/entities/gridOptions.d.ts +70 -5
- package/dist/types/src/entities/rowNode.d.ts +17 -2
- package/dist/types/src/filter/filterManager.d.ts +1 -5
- package/dist/types/src/filter/filterValueService.d.ts +1 -2
- package/dist/types/src/filter/provided/date/dateFilterHandler.d.ts +1 -0
- package/dist/types/src/gridBodyComp/rowContainer/rowContainerEventsFeature.d.ts +2 -0
- package/dist/types/src/gridComp/gridComp.d.ts +1 -0
- package/dist/types/src/gridComp/gridCtrl.d.ts +1 -0
- package/dist/types/src/gridOptionsDefault.d.ts +3 -0
- package/dist/types/src/gridOptionsInitial.d.ts +1 -1
- package/dist/types/src/gridOptionsService.d.ts +1 -0
- package/dist/types/src/gridOptionsUtils.d.ts +8 -2
- package/dist/types/src/headerRendering/row/headerRowCtrl.d.ts +1 -1
- package/dist/types/src/interfaces/exportParams.d.ts +12 -0
- package/dist/types/src/interfaces/formulas.d.ts +15 -0
- package/dist/types/src/interfaces/iCallbackParams.d.ts +3 -0
- package/dist/types/src/interfaces/iCellRangeFeature.d.ts +1 -1
- package/dist/types/src/interfaces/iExcelCreator.d.ts +40 -1
- package/dist/types/src/interfaces/iFilter.d.ts +1 -1
- package/dist/types/src/interfaces/iFocusableContainer.d.ts +1 -1
- package/dist/types/src/interfaces/iFrameworkOverrides.d.ts +2 -0
- package/dist/types/src/interfaces/iModule.d.ts +4 -4
- package/dist/types/src/interfaces/iRowGroupPanelBuilder.d.ts +11 -0
- package/dist/types/src/interfaces/iRowNode.d.ts +20 -6
- package/dist/types/src/interfaces/iRowNodeStage.d.ts +6 -3
- package/dist/types/src/interfaces/iServerSideDatasource.d.ts +10 -0
- package/dist/types/src/interfaces/iServerSideRowModel.d.ts +6 -0
- package/dist/types/src/interfaces/iToolbar.d.ts +178 -0
- package/dist/types/src/interfaces/menuItem.d.ts +1 -1
- package/dist/types/src/interfaces/notes.d.ts +147 -0
- package/dist/types/src/main-internal.d.ts +15 -8
- package/dist/types/src/main.d.ts +6 -3
- package/dist/types/src/navigation/cellNavigationService.d.ts +0 -3
- package/dist/types/src/pagination/{pageSizeSelector/pageSizeSelectorComp.d.ts → pageSizeSelectorComp.d.ts} +3 -4
- package/dist/types/src/pagination/pageSummaryComp.d.ts +29 -0
- package/dist/types/src/pagination/paginationService.d.ts +0 -1
- package/dist/types/src/pagination/paginationUtils.d.ts +3 -0
- package/dist/types/src/pagination/rowSummaryComp.d.ts +15 -0
- package/dist/types/src/pinnedColumns/pinnedColumnService.d.ts +2 -0
- package/dist/types/src/pinnedRowModel/manualPinnedRowModel.d.ts +2 -0
- package/dist/types/src/propertyKeys.d.ts +1 -1
- package/dist/types/src/publicEventHandlersMap.d.ts +1 -1
- package/dist/types/src/rendering/cell/cellCtrl.d.ts +6 -0
- package/dist/types/src/rendering/cell/cellPositionFeature.d.ts +0 -2
- package/dist/types/src/rendering/row/rowCtrl.d.ts +22 -2
- package/dist/types/src/rendering/spanning/rowSpanService.d.ts +2 -0
- package/dist/types/src/testing/testIdUtils.d.ts +6 -0
- package/dist/types/src/theming/core/core-css.d.ts +16 -0
- package/dist/types/src/theming/createTheme.d.ts +3 -1
- package/dist/types/src/theming/parts/notes/note-styles.d.ts +37 -0
- package/dist/types/src/theming/parts/theme/themes.d.ts +6 -2
- package/dist/types/src/utils/icon.d.ts +1 -1
- package/dist/types/src/validation/errorMessages/errorText.d.ts +25 -4
- package/dist/types/src/validation/validationService.d.ts +7 -1
- package/dist/types/src/validation/validationTypes.d.ts +5 -2
- package/dist/types/src/valueService/valueCache.d.ts +1 -2
- package/dist/types/src/valueService/valueService.d.ts +18 -13
- package/dist/types/src/vanillaFrameworkOverrides.d.ts +1 -0
- package/dist/types/src/version.d.ts +1 -1
- package/dist/types/src/widgets/component.d.ts +1 -1
- package/package.json +5 -8
- package/styles/_css-content.scss +1290 -310
- package/styles/_icon-font-codes.scss +1 -0
- package/styles/_index.scss +3 -3
- package/styles/ag-grid-no-native-widgets.css +416 -52
- package/styles/ag-grid-no-native-widgets.min.css +4 -4
- package/styles/ag-grid.css +433 -63
- package/styles/ag-grid.min.css +4 -4
- package/styles/ag-theme-alpine-no-font.css +21 -11
- package/styles/ag-theme-alpine-no-font.min.css +3 -3
- package/styles/ag-theme-alpine.css +22 -12
- package/styles/ag-theme-alpine.min.css +3 -3
- package/styles/ag-theme-balham-no-font.css +15 -2
- package/styles/ag-theme-balham-no-font.min.css +3 -3
- package/styles/ag-theme-balham.css +16 -3
- package/styles/ag-theme-balham.min.css +3 -3
- package/styles/ag-theme-material-no-font.css +92 -11
- package/styles/ag-theme-material-no-font.min.css +3 -4
- package/styles/ag-theme-material.css +93 -12
- package/styles/ag-theme-material.min.css +3 -4
- package/styles/ag-theme-quartz-no-font.css +49 -30
- package/styles/ag-theme-quartz-no-font.min.css +3 -3
- package/styles/ag-theme-quartz.css +50 -31
- package/styles/ag-theme-quartz.min.css +3 -3
- package/styles/agGridAlpineFont.css +1 -1
- package/styles/agGridAlpineFont.min.css +1 -1
- package/styles/agGridBalhamFont.css +1 -1
- package/styles/agGridBalhamFont.min.css +1 -1
- package/styles/agGridClassicFont.css +1 -1
- package/styles/agGridClassicFont.min.css +1 -1
- package/styles/agGridMaterialFont.css +1 -1
- package/styles/agGridMaterialFont.min.css +1 -1
- package/styles/agGridQuartzFont.css +1 -1
- package/styles/agGridQuartzFont.min.css +1 -1
- /package/dist/types/src/{export/downloader.d.ts → agStack/utils/download.d.ts} +0 -0
|
@@ -3,7 +3,7 @@ import type { Column } from '../../interfaces/iColumn';
|
|
|
3
3
|
import type { CommunityModuleName, EnterpriseModuleName, ValidationModuleName } from '../../interfaces/iModule';
|
|
4
4
|
import type { RowModelType } from '../../interfaces/iRowModel';
|
|
5
5
|
import type { RowNodeEventType, RowPinnedType } from '../../interfaces/iRowNode';
|
|
6
|
-
export declare const NoModulesRegisteredError: () =>
|
|
6
|
+
export declare const NoModulesRegisteredError: (usesAgGridProvider?: boolean) => string;
|
|
7
7
|
export declare function missingRowModelTypeError({ moduleName, rowModelType, }: {
|
|
8
8
|
moduleName: CommunityModuleName | EnterpriseModuleName;
|
|
9
9
|
rowModelType: RowModelType;
|
|
@@ -263,6 +263,12 @@ export declare const AG_GRID_ERRORS: {
|
|
|
263
263
|
agTotalRowCountComponent?: any;
|
|
264
264
|
agFilteredRowCountComponent?: any;
|
|
265
265
|
agTotalAndFilteredRowCountComponent?: any;
|
|
266
|
+
agButtonToolbarItem?: any;
|
|
267
|
+
agFindToolbarItem?: any;
|
|
268
|
+
agMenuToolbarItem?: any;
|
|
269
|
+
agPivotPanelToolbarItem?: any;
|
|
270
|
+
agQuickFilterToolbarItem?: any;
|
|
271
|
+
agRowGroupPanelToolbarItem?: any;
|
|
266
272
|
agFindCellRenderer?: any;
|
|
267
273
|
};
|
|
268
274
|
jsComps: {
|
|
@@ -475,7 +481,7 @@ export declare const AG_GRID_ERRORS: {
|
|
|
475
481
|
}) => `Provided ids must be of string type. Invalid id provided: ${string}`;
|
|
476
482
|
197: () => "`toggledNodes` must be an array of string ids.";
|
|
477
483
|
199: () => "getSelectedNodes and getSelectedRows functions cannot be used with select all functionality with the server-side row model. Use `api.getServerSideSelectionState()` instead.";
|
|
478
|
-
200: ({ reasonOrId, moduleName, gridScoped, gridId, rowModelType, additionalText, isUmd, }: {
|
|
484
|
+
200: ({ reasonOrId, moduleName, gridScoped, gridId, rowModelType, additionalText, isUmd, usesAgGridProvider, }: {
|
|
479
485
|
reasonOrId: string | keyof MissingModuleErrors;
|
|
480
486
|
moduleName: ValidationModuleName | ValidationModuleName[];
|
|
481
487
|
gridScoped: boolean;
|
|
@@ -483,6 +489,7 @@ export declare const AG_GRID_ERRORS: {
|
|
|
483
489
|
rowModelType: RowModelType;
|
|
484
490
|
additionalText?: string;
|
|
485
491
|
isUmd?: boolean;
|
|
492
|
+
usesAgGridProvider?: boolean;
|
|
486
493
|
}) => string;
|
|
487
494
|
201: ({ rowModelType }: {
|
|
488
495
|
rowModelType: string;
|
|
@@ -574,12 +581,13 @@ export declare const AG_GRID_ERRORS: {
|
|
|
574
581
|
259: ({ part }: {
|
|
575
582
|
part: any;
|
|
576
583
|
}) => `the argument to theme.withPart must be a Theming API part object, received: ${any}`;
|
|
577
|
-
260: ({ propName, compName, gridScoped, gridId, rowModelType, }: {
|
|
584
|
+
260: ({ propName, compName, gridScoped, gridId, rowModelType, usesAgGridProvider, }: {
|
|
578
585
|
propName: string;
|
|
579
586
|
compName: string;
|
|
580
587
|
gridScoped: boolean;
|
|
581
588
|
gridId: string;
|
|
582
589
|
rowModelType: RowModelType;
|
|
590
|
+
usesAgGridProvider?: boolean;
|
|
583
591
|
}) => string;
|
|
584
592
|
261: () => "As of v33, `column.isHovered()` is deprecated. Use `api.isColumnHovered(column)` instead.";
|
|
585
593
|
262: () => "As of v33, icon key \"smallDown\" is deprecated. Use \"advancedFilterBuilderSelect\" for Advanced Filter Builder dropdown, \"selectOpen\" for Select cell editor and dropdowns (e.g. Integrated Charts menu), \"richSelectOpen\" for Rich Select cell editor.";
|
|
@@ -600,7 +608,7 @@ export declare const AG_GRID_ERRORS: {
|
|
|
600
608
|
id: string;
|
|
601
609
|
parentId: string;
|
|
602
610
|
}) => `Parent row not found for row with id='${string}' and parent id='${string}'. Showing row with id='${string}' as a root-level node.`;
|
|
603
|
-
272: () =>
|
|
611
|
+
272: () => string;
|
|
604
612
|
273: ({ providedId, usedId }: {
|
|
605
613
|
providedId: string;
|
|
606
614
|
usedId: string;
|
|
@@ -651,6 +659,19 @@ export declare const AG_GRID_ERRORS: {
|
|
|
651
659
|
296: () => "Since v35, `api.hideOverlay()` does not hide the overlay when `activeOverlay` is set. Set `activeOverlay=null` instead.";
|
|
652
660
|
297: () => "`api.hideOverlay()` does not hide the no matching rows overlay as it is only controlled by grid state. Set `suppressOverlays=[\"noMatchingRows\"] to not show it.";
|
|
653
661
|
298: () => "Columns Tool Panel 'buttons' requires 'apply' to enable Deferred Updates.";
|
|
662
|
+
301: ({ key }: {
|
|
663
|
+
key: string;
|
|
664
|
+
}) => `Toolbar item '${string}' is missing the 'toolbarItem' property and will not be rendered.`;
|
|
665
|
+
302: ({ itemName, moduleName, gridScoped, gridId, rowModelType, }: {
|
|
666
|
+
itemName: string;
|
|
667
|
+
moduleName: ValidationModuleName | ValidationModuleName[];
|
|
668
|
+
gridScoped: boolean;
|
|
669
|
+
gridId: string;
|
|
670
|
+
rowModelType: RowModelType;
|
|
671
|
+
}) => string;
|
|
672
|
+
303: ({ key }: {
|
|
673
|
+
key: string;
|
|
674
|
+
}) => `Multiple toolbar items share the explicit key '${string}'. Only the first item is rendered.`;
|
|
654
675
|
};
|
|
655
676
|
export type ErrorMap = typeof AG_GRID_ERRORS;
|
|
656
677
|
export type ErrorId = keyof ErrorMap;
|
|
@@ -10,6 +10,13 @@ import type { IconName } from '../utils/icon';
|
|
|
10
10
|
export declare class ValidationService extends BeanStub implements NamedBean {
|
|
11
11
|
beanName: "validation";
|
|
12
12
|
private gridOptions;
|
|
13
|
+
/**
|
|
14
|
+
* Caches per-property-name validation results keyed by objectName.
|
|
15
|
+
* Each inner map records: property name → true if valid for runtime checks, false if not.
|
|
16
|
+
* A property is invalid if it has an unsupported row model, or is an unrecognised name.
|
|
17
|
+
* Deprecation warnings and fuzzy suggestions are emitted once when first encountered.
|
|
18
|
+
*/
|
|
19
|
+
private readonly propertyNameCache;
|
|
13
20
|
wireBeans(beans: BeanCollection): void;
|
|
14
21
|
warnOnInitialPropertyUpdate(source: AgPropertyChangedSource, key: string): void;
|
|
15
22
|
processGridOptions(options: GridOptions): void;
|
|
@@ -27,5 +34,4 @@ export declare class ValidationService extends BeanStub implements NamedBean {
|
|
|
27
34
|
validateColDef(colDef: ColDef | ColGroupDef): void;
|
|
28
35
|
private processOptions;
|
|
29
36
|
private checkForRequiredDependencies;
|
|
30
|
-
private checkProperties;
|
|
31
37
|
}
|
|
@@ -2,10 +2,13 @@ import type { BeanCollection } from '../context/context';
|
|
|
2
2
|
import type { GridOptions } from '../entities/gridOptions';
|
|
3
3
|
import type { ValidationModuleName } from '../interfaces/iModule';
|
|
4
4
|
import type { RowModelType } from '../interfaces/iRowModel';
|
|
5
|
+
/** Build the set of all property names that should be accepted without warning. */
|
|
6
|
+
export declare function buildAllValidNames<T extends object>(allProperties: string[], deprecations: Deprecations<T>, propertyExceptions?: string[]): Set<string>;
|
|
5
7
|
export interface OptionsValidator<T extends object> {
|
|
6
8
|
objectName: string;
|
|
7
|
-
allProperties
|
|
8
|
-
|
|
9
|
+
allProperties: string[];
|
|
10
|
+
/** Pre-computed set of all accepted property names (valid + deprecated + exceptions + Vue). */
|
|
11
|
+
allValidNames: Set<string>;
|
|
9
12
|
docsUrl?: `${string}/`;
|
|
10
13
|
deprecations: Deprecations<T>;
|
|
11
14
|
validations: Validations<T>;
|
|
@@ -5,11 +5,10 @@ import type { RowNode } from '../entities/rowNode';
|
|
|
5
5
|
export declare class ValueCache extends BeanStub implements NamedBean {
|
|
6
6
|
beanName: "valueCache";
|
|
7
7
|
private cacheVersion;
|
|
8
|
-
private active;
|
|
9
8
|
private neverExpires;
|
|
10
9
|
postConstruct(): void;
|
|
11
10
|
onDataChanged(): void;
|
|
12
11
|
expire(): void;
|
|
13
|
-
setValue(rowNode: RowNode, colId: string, value: any):
|
|
12
|
+
setValue(rowNode: RowNode, colId: string, value: any): void;
|
|
14
13
|
getValue(rowNode: RowNode, colId: string): any;
|
|
15
14
|
}
|
|
@@ -7,21 +7,26 @@ import type { IRowNode } from '../interfaces/iRowNode';
|
|
|
7
7
|
/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
|
|
8
8
|
export declare class ValueService extends BeanStub implements NamedBean {
|
|
9
9
|
beanName: "valueSvc";
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
private
|
|
15
|
-
private formulaDataSvc?;
|
|
16
|
-
private rowGroupColsSvc?;
|
|
17
|
-
wireBeans(beans: BeanCollection): void;
|
|
18
|
-
private cellExpressions;
|
|
10
|
+
/**
|
|
11
|
+
* Bound by `init()` to the cache or no-cache variant. Default is no-cache for safety.
|
|
12
|
+
* Unbound method reference is fine — call sites use `this.executeValueGetter(...)`.
|
|
13
|
+
*/
|
|
14
|
+
private executeValueGetter;
|
|
19
15
|
private isTreeData;
|
|
20
|
-
private initialised;
|
|
21
16
|
private isSsrm;
|
|
22
|
-
private
|
|
23
|
-
|
|
17
|
+
private cellExpressions;
|
|
18
|
+
private groupSuppressBlankHeader;
|
|
19
|
+
private editSvc;
|
|
20
|
+
private valueCache;
|
|
21
|
+
private rowGroupColsSvc;
|
|
22
|
+
private colModel;
|
|
23
|
+
private expressionSvc;
|
|
24
|
+
private dataTypeSvc;
|
|
25
|
+
private formulaDataSvc;
|
|
26
|
+
wireBeans(beans: BeanCollection): void;
|
|
27
|
+
/** Called by both wireBeans and postConstruct */
|
|
24
28
|
private init;
|
|
29
|
+
postConstruct(): void;
|
|
25
30
|
/**
|
|
26
31
|
* Use this function to get a displayable cell value.
|
|
27
32
|
* The values from this function are not used for sorting, filtering, or aggregation purposes.
|
|
@@ -64,6 +69,6 @@ export declare class ValueService extends BeanStub implements NamedBean {
|
|
|
64
69
|
private setValueUsingField;
|
|
65
70
|
private executeValueGetterWithValueCache;
|
|
66
71
|
private executeValueGetterWithoutValueCache;
|
|
67
|
-
getValueCallback
|
|
72
|
+
private getValueCallback;
|
|
68
73
|
getKeyForNode(col: AgColumn, rowNode: IRowNode): any;
|
|
69
74
|
}
|
|
@@ -8,6 +8,7 @@ export declare class VanillaFrameworkOverrides implements IFrameworkOverrides {
|
|
|
8
8
|
private readonly frameworkName;
|
|
9
9
|
readonly renderingEngine: 'vanilla' | 'react';
|
|
10
10
|
readonly batchFrameworkComps: boolean;
|
|
11
|
+
readonly usesAgGridProvider: boolean | undefined;
|
|
11
12
|
private readonly baseDocLink;
|
|
12
13
|
constructor(frameworkName?: 'javascript' | 'angular' | 'react' | 'vue');
|
|
13
14
|
wrapIncoming: <T>(callback: () => T, source?: FrameworkOverridesIncomingSource) => T;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "35.
|
|
1
|
+
export declare const VERSION = "35.3.0";
|
|
@@ -14,7 +14,7 @@ export type ComponentSelector<TComponent extends AgBaseComponent<BeanCollection>
|
|
|
14
14
|
* All the AG Grid components that are used within internal templates via <ag-autocomplete> syntax
|
|
15
15
|
* @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time.
|
|
16
16
|
*/
|
|
17
|
-
export type AgComponentSelectorType = AgWidgetSelectorType | 'AG-AUTOCOMPLETE' | 'AG-FAKE-HORIZONTAL-SCROLL' | 'AG-FAKE-VERTICAL-SCROLL' | 'AG-FILTER-BUTTON' | 'AG-FILTERS-TOOL-PANEL-HEADER' | 'AG-FILTERS-TOOL-PANEL-LIST' | 'AG-GRID-BODY' | 'AG-GRID-HEADER-DROP-ZONES' | 'AG-HEADER-ROOT' | 'AG-NAME-VALUE' | 'AG-OVERLAY-WRAPPER' | 'AG-
|
|
17
|
+
export type AgComponentSelectorType = AgWidgetSelectorType | 'AG-AUTOCOMPLETE' | 'AG-FAKE-HORIZONTAL-SCROLL' | 'AG-FAKE-VERTICAL-SCROLL' | 'AG-FILTER-BUTTON' | 'AG-FILTERS-TOOL-PANEL-HEADER' | 'AG-FILTERS-TOOL-PANEL-LIST' | 'AG-GRID-BODY' | 'AG-GRID-HEADER-DROP-ZONES' | 'AG-HEADER-ROOT' | 'AG-NAME-VALUE' | 'AG-OVERLAY-WRAPPER' | 'AG-PAGINATION' | 'AG-PRIMARY-COLS-HEADER' | 'AG-PRIMARY-COLS-LIST' | 'AG-ROW-CONTAINER' | 'AG-SIDE-BAR' | 'AG-SIDE-BAR-BUTTONS' | 'AG-SORT-INDICATOR' | 'AG-STATUS-BAR' | 'AG-TOOLBAR' | 'AG-WATERMARK' | 'AG-FORMULA-INPUT-FIELD';
|
|
18
18
|
/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
|
|
19
19
|
export declare class Component<TLocalEvent extends string = AgComponentEvent> extends AgComponentStub<BeanCollection, GridOptionsWithDefaults, AgEventTypeParams, AgGridCommon<any, any>, GridOptionsService, AgComponentSelectorType, TLocalEvent> {
|
|
20
20
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ag-grid-community",
|
|
3
|
-
"version": "35.
|
|
3
|
+
"version": "35.3.0",
|
|
4
4
|
"description": "Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue",
|
|
5
5
|
"main": "./dist/package/main.cjs.js",
|
|
6
6
|
"types": "./dist/types/src/main.d.ts",
|
|
@@ -119,15 +119,12 @@
|
|
|
119
119
|
],
|
|
120
120
|
"homepage": "https://www.ag-grid.com/",
|
|
121
121
|
"dependencies": {
|
|
122
|
-
"ag-charts-types": "13.
|
|
122
|
+
"ag-charts-types": "13.3.0"
|
|
123
123
|
},
|
|
124
124
|
"devDependencies": {
|
|
125
|
-
"web-streams-polyfill": "^
|
|
126
|
-
"blob-polyfill": "^
|
|
125
|
+
"web-streams-polyfill": "^4.2.0",
|
|
126
|
+
"blob-polyfill": "^9.0.20240710",
|
|
127
127
|
"compression-streams-polyfill": "^0.1.7",
|
|
128
|
-
"text-encoding-polyfill": "^0.6.7"
|
|
129
|
-
"@types/jest": "^29.5.0",
|
|
130
|
-
"jest": "^29.5.0",
|
|
131
|
-
"jest-environment-jsdom": "^29.7.0"
|
|
128
|
+
"text-encoding-polyfill": "^0.6.7"
|
|
132
129
|
}
|
|
133
130
|
}
|