Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ag-grid-community

Package Overview
Dependencies
Maintainers
4
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ag-grid-community - npm Package Compare versions

Comparing version 32.2.2 to 32.3.0

16

dist/package/package.json
{
"name": "ag-grid-community",
"version": "32.2.2",
"version": "32.3.0",
"description": "Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue",

@@ -91,3 +91,3 @@ "main": "./dist/package/main.cjs.js",

"dependencies": {
"ag-charts-types": "10.2.0"
"ag-charts-types": "10.3.0"
},

@@ -99,8 +99,8 @@ "devDependencies": {

"gulp-rename": "^2.0.0",
"@ag-grid-community/client-side-row-model": "32.2.2",
"@ag-grid-community/core": "32.2.2",
"@ag-grid-community/csv-export": "32.2.2",
"@ag-grid-community/infinite-row-model": "32.2.2",
"@ag-grid-community/styles": "32.2.2",
"@ag-grid-community/theming": "32.2.2",
"@ag-grid-community/client-side-row-model": "32.3.0",
"@ag-grid-community/core": "32.3.0",
"@ag-grid-community/csv-export": "32.3.0",
"@ag-grid-community/infinite-row-model": "32.3.0",
"@ag-grid-community/styles": "32.3.0",
"@ag-grid-community/theming": "32.3.0",
"ts-loader": "^9.5.1",

@@ -107,0 +107,0 @@ "style-loader": "^3.3.4",

@@ -57,2 +57,4 @@ import type { BeanCollection, ClientSideRowModelStep, IClientSideRowModel, NamedBean, RefreshModelParams, RowBounds, RowDataTransaction, RowModelType, RowNodeTransaction } from 'ag-grid-community';

getLastHighlightedRowNode(): RowNode | null;
private isHighlightingCurrentPosition;
private clearHighlightedRow;
isLastRowIndexKnown(): boolean;

@@ -142,2 +144,3 @@ getRowCount(): number;

isRowDataLoaded(): boolean;
destroy(): void;
}

@@ -1,1 +0,1 @@

export declare const VERSION = "32.2.2";
export declare const VERSION = "32.3.0";

@@ -676,3 +676,3 @@ import type { ApplyColumnStateParams, ColumnState } from '../columns/columnApplyStateService';

getOpenedToolPanel(): string | null;
/** Force refresh all tool panels by calling their `refresh` method. */
/** Force refreshes all tool panels by calling their `refresh` method. */
refreshToolPanel(): void;

@@ -679,0 +679,0 @@ /** Returns `true` if the tool panel is showing, otherwise `false`. */

@@ -208,2 +208,4 @@ import type { CellClickedEvent, CellContextMenuEvent, CellDoubleClickedEvent } from '../events';

/**
* @deprecated v32.2 Use the new selection API instead. See `GridOptions.rowSelection`
*
* Set to `true` to display a disabled checkbox when row is not selectable and checkboxes are enabled.

@@ -210,0 +212,0 @@ * @default false

@@ -12,2 +12,3 @@ import { BeanStub } from '../context/beanStub';

private columnViewportService;
private animationFrameService;
wireBeans(beans: BeanCollection): void;

@@ -14,0 +15,0 @@ private centerContainerCtrl;

@@ -11,3 +11,2 @@ import { BeanStub } from '../../../context/beanStub';

private processingEventFromCheckbox;
private selectionOptions;
private column;

@@ -17,3 +16,2 @@ private headerCellCtrl;

constructor(column: AgColumn);
postConstruct(): void;
onSpaceKeyDown(e: KeyboardEvent): void;

@@ -20,0 +18,0 @@ getCheckboxGui(): HTMLElement;

@@ -11,2 +11,3 @@ import { AbstractHeaderCellComp } from '../abstractCell/abstractHeaderCellComp';

private afterHeaderCompCreated;
private addOrRemoveHeaderWrapperStyle;
}

@@ -17,2 +17,4 @@ import type { UserCompDetails } from '../../../components/framework/userComponentFactory';

setWidth(width: string): void;
setHeaderWrapperMaxHeight(value: number | null): void;
setHeaderWrapperHidden(value: boolean): void;
setAriaExpanded(expanded: 'true' | 'false' | undefined): void;

@@ -28,2 +30,3 @@ setUserCompDetails(compDetails: UserCompDetails): void;

setComp(comp: IHeaderGroupCellComp, eGui: HTMLElement, eResize: HTMLElement, eHeaderCompWrapper: HTMLElement, compBean: BeanStub<any> | undefined): void;
private refreshMaxHeaderHeight;
private addHighlightListeners;

@@ -30,0 +33,0 @@ private onLeafColumnHighlightChanged;

@@ -7,3 +7,3 @@ import type { RowNode } from '../entities/rowNode';

import type { RowNodeTransaction } from './rowNodeTransaction';
export type ClientSideRowModelStep = `${ClientSideRowModelSteps}`;
export type ClientSideRowModelStep = 'everything' | 'group' | 'filter' | 'sort' | 'map' | 'aggregate' | 'filter_aggregates' | 'pivot' | 'nothing';
export declare enum ClientSideRowModelSteps {

@@ -10,0 +10,0 @@ EVERYTHING = "group",

@@ -10,2 +10,3 @@ import type { NamedBean } from '../context/bean';

import type { ShowColumnChooserParams } from '../interfaces/iColumnChooserFactory';
import type { IRowNode } from '../interfaces/iRowNode';
interface BaseShowColumnMenuParams {

@@ -32,7 +33,7 @@ column?: Column;

export interface ShowContextMenuParams {
/** The `RowNode` associated with the Context Menu */
rowNode?: RowNode | null;
/** The `Column` associated with the Context Menu */
/** The row node associated with the Context Menu */
rowNode?: IRowNode | null;
/** The column associated with the Context Menu */
column?: Column | null;
/** The value that will be passed to the Context Menu (useful with `getContextMenuItems`). If none is passed, and `RowNode` and `Column` are provided, this will be the respective Cell value */
/** The value that will be passed to the Context Menu (useful with `getContextMenuItems`). If none is passed, and `rowNode` and `column` are provided, this will be the respective Cell value */
value: any;

@@ -48,5 +49,5 @@ }

export interface IContextMenuParams extends ShowContextMenuParams {
/** The x position for the Context Menu, if no value is given and `RowNode` and `Column` are provided, this will default to be middle of the cell, otherwise it will be `0`. */
/** The x position for the Context Menu, if no value is given and `rowNode` and `column` are provided, this will default to be middle of the cell, otherwise it will be `0`. */
x?: number;
/** The y position for the Context Menu, if no value is given and `RowNode` and `Column` are provided, this will default to be middle of the cell, otherwise it will be `0`. */
/** The y position for the Context Menu, if no value is given and `rowNode` and `column` are provided, this will default to be middle of the cell, otherwise it will be `0`. */
y?: number;

@@ -53,0 +54,0 @@ }

@@ -1,4 +0,1 @@

export declare function _fuzzyCheckStrings(inputValues: string[], validValues: string[], allSuggestions: string[]): {
[p: string]: string[];
};
/**

@@ -9,5 +6,11 @@ *

*/
export declare function _fuzzySuggestions(inputValue: string, allSuggestions: string[], hideIrrelevant?: boolean, filterByPercentageOfBestMatch?: number): {
export declare function _fuzzySuggestions(params: {
inputValue: string;
allSuggestions: string[];
hideIrrelevant?: boolean;
filterByPercentageOfBestMatch?: number;
addSequentialWeight?: boolean;
}): {
values: string[];
indices: number[];
};

@@ -1,1 +0,1 @@

export declare const VERSION = "32.2.2";
export declare const VERSION = "32.3.0";

@@ -107,3 +107,3 @@ import type { NamedBean } from '../context/bean';

/** @return true if moved */
bringPopupToFront(ePopup: HTMLElement): boolean;
bringPopupToFront(ePopup: HTMLElement): void;
}

@@ -37,2 +37,3 @@ import { BeanStub } from '../context/beanStub';

private onColumnMovedEventCallback;
private onDocumentKeyDownCallback;
constructor(parentComp: TooltipParentComp, tooltipShowDelayOverride?: number | undefined, tooltipHideDelayOverride?: number | undefined, shouldDisplayTooltip?: (() => boolean) | undefined);

@@ -39,0 +40,0 @@ postConstruct(): void;

@@ -1,1 +0,1 @@

export declare const VERSION = "32.2.2";
export declare const VERSION = "32.3.0";

@@ -1,1 +0,1 @@

export declare const VERSION = "32.2.2";
export declare const VERSION = "32.3.0";

@@ -1,1 +0,1 @@

export declare const VERSION = "32.2.2";
export declare const VERSION = "32.3.0";
The MIT License
Copyright (c) 2015-2019 AG GRID LTD
Copyright (c) 2015-2024 AG GRID LTD

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

{
"name": "ag-grid-community",
"version": "32.2.2",
"version": "32.3.0",
"description": "Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue",

@@ -91,3 +91,3 @@ "main": "./dist/package/main.cjs.js",

"dependencies": {
"ag-charts-types": "10.2.0"
"ag-charts-types": "10.3.0"
},

@@ -99,8 +99,8 @@ "devDependencies": {

"gulp-rename": "^2.0.0",
"@ag-grid-community/client-side-row-model": "32.2.2",
"@ag-grid-community/core": "32.2.2",
"@ag-grid-community/csv-export": "32.2.2",
"@ag-grid-community/infinite-row-model": "32.2.2",
"@ag-grid-community/styles": "32.2.2",
"@ag-grid-community/theming": "32.2.2",
"@ag-grid-community/client-side-row-model": "32.3.0",
"@ag-grid-community/core": "32.3.0",
"@ag-grid-community/csv-export": "32.3.0",
"@ag-grid-community/infinite-row-model": "32.3.0",
"@ag-grid-community/styles": "32.3.0",
"@ag-grid-community/theming": "32.3.0",
"ts-loader": "^9.5.1",

@@ -107,0 +107,0 @@ "style-loader": "^3.3.4",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc