You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@ag-grid-enterprise/core

Package Overview
Dependencies
Maintainers
0
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 31.3.2 to 32.0.0

dist/types/src/features/iVirtualListDragFeature.d.ts

30

CONTRIBUTING.md

@@ -5,6 +5,4 @@ # Contributing to AG Grid Enterprise

Retention of Intellectual Property Rights for AG Grid Enterprise component
==============
# Retention of Intellectual Property Rights for AG Grid Enterprise component
1.DEFINITIONS

@@ -27,9 +25,9 @@

- [Question or Problem?](#question)
- [Issues and Bugs](#issue)
- [Feature Requests](#feature)
- [Submission Guidelines](#submit)
- [Coding Rules](#rules)
- [Commit Message Guidelines](#commit)
- [Signing the CLA](#cla)
- [Question or Problem?](#question)
- [Issues and Bugs](#issue)
- [Feature Requests](#feature)
- [Submission Guidelines](#submit)
- [Coding Rules](#rules)
- [Commit Message Guidelines](#commit)
- [Signing the CLA](#cla)

@@ -45,2 +43,3 @@ ## <a name="question"></a> Got a Question or Problem?

## <a name="issue"></a> Found a Bug?
If you find a bug in the source code, you can help us by

@@ -50,3 +49,4 @@ [submitting an issue](#submit-issue) to our [GitHub Repository][github].

## <a name="feature"></a> Missing a Feature?
You can *request* a new feature by [submitting an issue](#submit-issue) to our GitHub
You can _request_ a new feature by [submitting an issue](#submit-issue) to our GitHub
Repository.

@@ -62,5 +62,5 @@

- version of AG Grid Enterprise used
- 3rd-party libraries and their versions
- and most importantly - a use-case that fails
- version of AG Grid Enterprise used
- 3rd-party libraries and their versions
- and most importantly - a use-case that fails

@@ -78,3 +78,1 @@ A minimal reproduce scenario using http://plnkr.co/ allows us to quickly confirm a bug (or point out coding problem) as well as confirm that we are fixing the right problem. If plunker is not a suitable way to demonstrate the problem (for example for issues related to our npm packaging), please create a standalone git repository demonstrating the problem.

[stackoverflow]: http://stackoverflow.com/questions/tagged/ag-grid
{
"name": "@ag-grid-enterprise/core",
"version": "31.3.2",
"version": "32.0.0",
"description": "Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue",

@@ -14,4 +14,5 @@ "main": "./dist/package/main.cjs.js",

},
"sideEffects": false,
"dependencies": {
"@ag-grid-community/core": "31.3.2"
"@ag-grid-community/core": "32.0.0"
},

@@ -18,0 +19,0 @@ "devDependencies": {

{
"name": "@ag-grid-enterprise/core",
"version": "31.3.2",
"version": "32.0.0",
"description": "Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue",

@@ -14,4 +14,5 @@ "main": "./src/main.js",

},
"sideEffects": false,
"dependencies": {
"@ag-grid-community/core": "31.3.2"
"@ag-grid-community/core": "32.0.0"
},

@@ -18,0 +19,0 @@ "devDependencies": {

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

import { Module } from "@ag-grid-community/core";
export { WatermarkComp } from "./license/watermark";
import type { Module } from '@ag-grid-community/core';
export { AgWatermark } from './license/watermark';
export declare const EnterpriseCoreModule: Module;

@@ -0,5 +1,8 @@

import type { ComponentSelector, IWatermark, NamedBean } from '@ag-grid-community/core';
import { BeanStub } from '@ag-grid-community/core';
import { ILicenseManager } from "./shared/licenseManager";
export declare class GridLicenseManager extends BeanStub {
import type { ILicenseManager } from './shared/licenseManager';
export declare class GridLicenseManager extends BeanStub implements NamedBean, IWatermark {
beanName: "licenseManager";
private licenseManager;
postConstruct(): void;
validateLicense(): void;

@@ -43,2 +46,3 @@ static getLicenseDetails(licenseKey: string): {

};
getWatermarkSelector(): ComponentSelector;
isDisplayWatermark(): boolean;

@@ -45,0 +49,0 @@ getWatermarkMessage(): string;

@@ -0,9 +1,12 @@

import type { BeanCollection, ComponentSelector } from '@ag-grid-community/core';
import { Component } from '@ag-grid-community/core';
import { GridLicenseManager as LicenseManager } from './gridLicenseManager';
export declare class WatermarkComp extends Component {
import type { GridLicenseManager as LicenseManager } from './gridLicenseManager';
export declare class AgWatermark extends Component {
licenseManager: LicenseManager;
private eLicenseTextRef;
wireBeans(beans: BeanCollection): void;
private readonly eLicenseTextRef;
constructor();
private postConstruct;
postConstruct(): void;
private shouldDisplayWatermark;
}
export declare const AgWatermarkSelector: ComponentSelector;

@@ -1,3 +0,21 @@

export { EnterpriseCoreModule } from "./agGridEnterpriseModule";
export { GridLicenseManager as LicenseManager } from "./license/gridLicenseManager";
export { ILicenseManager } from "./license/shared/licenseManager";
export { EnterpriseCoreModule } from './agGridEnterpriseModule';
export { GridLicenseManager as LicenseManager } from './license/gridLicenseManager';
export { ILicenseManager } from './license/shared/licenseManager';
export { AgGroupComponent, AgGroupComponentSelector, AgGroupComponentParams } from './widgets/agGroupComponent';
export { AgRichSelect } from './widgets/agRichSelect';
export { PillDragComp } from './widgets/pillDragComp';
export { PillDropZonePanel, PillDropZonePanelParams } from './widgets/pillDropZonePanel';
export { AgDialog } from './widgets/agDialog';
export { AgPanel } from './widgets/agPanel';
export { VirtualList } from './widgets/virtualList';
export { VirtualListModel } from './widgets/iVirtualList';
export { AgMenuItemComponent, MenuItemActivatedEvent, CloseMenuEvent } from './widgets/agMenuItemComponent';
export { AgMenuList } from './widgets/agMenuList';
export { AgMenuPanel } from './widgets/agMenuPanel';
export { AgMenuItemRenderer } from './widgets/agMenuItemRenderer';
export { VirtualListDragItem, VirtualListDragParams } from './features/iVirtualListDragFeature';
export { VirtualListDragFeature } from './features/virtualListDragFeature';
export { TabbedItem } from './widgets/iTabbedLayout';
export { TabbedLayout } from './widgets/tabbedLayout';
export { GroupCellRenderer } from './rendering/groupCellRenderer';
export { GroupCellRendererCtrl } from './rendering/groupCellRendererCtrl';

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

export declare const VERSION = "31.3.2";
export declare const VERSION = "32.0.0";
{
"name": "@ag-grid-enterprise/core",
"version": "31.3.2",
"version": "32.0.0",
"description": "Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue",

@@ -14,4 +14,5 @@ "main": "./dist/package/main.cjs.js",

},
"sideEffects": false,
"dependencies": {
"@ag-grid-community/core": "31.3.2"
"@ag-grid-community/core": "32.0.0"
},

@@ -18,0 +19,0 @@ "devDependencies": {

@@ -1,12 +0,13 @@

![AG Grid HTML5 Grid trusted by the community, built for enterprise](./github-banner.png "AG Grid")
![AG Grid HTML5 Grid trusted by the community, built for enterprise](./github-banner.png 'AG Grid')
[![CDNJS](https://img.shields.io/cdnjs/v/ag-grid)](https://cdnjs.com/libraries/ag-grid) [![Github Stars](https://img.shields.io/github/stars/ag-grid/ag-grid?style=social)](https://github.com/ag-grid/ag-grid) [![Twitter](https://img.shields.io/twitter/follow/ag_grid?style=social)](https://twitter.com/ag_grid)
| Module | Info |
| --------------------|------------------:|
| @ag-grid-enterprise/core | [![npm](https://img.shields.io/npm/dm/@ag-grid-enterprise/core)](https://www.npmjs.com/package/@ag-grid-enterprise/core) <br> [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=ag-grid-enterprise&metric=alert_status)](https://sonarcloud.io/dashboard?id=ag-grid-enterprise) |
| Module | Info |
| ------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
| @ag-grid-enterprise/core | [![npm](https://img.shields.io/npm/dm/@ag-grid-enterprise/core)](https://www.npmjs.com/package/@ag-grid-enterprise/core) <br> [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=ag-grid-enterprise&metric=alert_status)](https://sonarcloud.io/dashboard?id=ag-grid-enterprise) |
# AG Grid Enterprise
------
---
AG Grid is a fully-featured and highly customizable JavaScript data grid.

@@ -17,51 +18,48 @@ It delivers [outstanding performance](https://www.ag-grid.com/example?utm_source=ag-grid-readme&utm_medium=repository&utm_campaign=github), has no third-party dependencies and [integrates smoothly with all major JavaScript frameworks](https://www.ag-grid.com/javascript-data-grid/?utm_source=ag-grid-readme&utm_medium=repository&utm_campaign=github).

![Image of AG Grid showing filtering and grouping enabled.](./github-grid-demo.jpg "AG Grid demo")
![Image of AG Grid showing filtering and grouping enabled.](./github-grid-demo.jpg 'AG Grid demo')
## Features
Features
--------------
Besides the standard set of features you'd expect from any grid:
* Column Interactions (resize, reorder, and pin columns)
* Pagination
* Sorting
* Row Selection
- Column Interactions (resize, reorder, and pin columns)
- Pagination
- Sorting
- Row Selection
Here are some of the features that make AG Grid stand out:
* Grouping / Aggregation *
* Accessibility support
* Custom Filtering
* In-place Cell Editing
* Records Lazy Loading *
* Server-Side Records Operations *
* Live Stream Updates
* Hierarchical Data Support & Tree View *
* Customizable Appearance
* Customizable Cell Contents
* State Persistence
* Keyboard Navigation
* Data Export to CSV
* Data Export to Excel *
* Excel-like Pivoting *
* Row Reordering
* Copy / Paste
* Column Spanning
* Pinned Rows
* Full Width Rows
* Integrated Charting
* Sparklines
- Grouping / Aggregation \*
- Accessibility support
- Custom Filtering
- In-place Cell Editing
- Records Lazy Loading \*
- Server-Side Records Operations \*
- Live Stream Updates
- Hierarchical Data Support & Tree View \*
- Customizable Appearance
- Customizable Cell Contents
- State Persistence
- Keyboard Navigation
- Data Export to CSV
- Data Export to Excel \*
- Excel-like Pivoting \*
- Row Reordering
- Copy / Paste
- Column Spanning
- Pinned Rows
- Full Width Rows
- Integrated Charting
- Sparklines
* The features marked with an asterisk are available in the [enterprise version](https://www.ag-grid.com/license-pricing?utm_source=ag-grid-readme&utm_medium=repository&utm_campaign=github) only.
- The features marked with an asterisk are available in the [enterprise version](https://www.ag-grid.com/license-pricing?utm_source=ag-grid-readme&utm_medium=repository&utm_campaign=github) only.
Check out [developers documentation](https://www.ag-grid.com/javascript-data-grid?utm_source=ag-grid-readme&utm_medium=repository&utm_campaign=github) for a complete list of features or visit [our official docs](https://www.ag-grid.com/features-overview?utm_source=ag-grid-readme&utm_medium=repository&utm_campaign=github) for tutorials and feature demos.
* [Get Started with JavaScript](https://www.ag-grid.com/javascript-grid?utm_source=ag-grid-readme&utm_medium=repository&utm_campaign=github)
* [Get Started with Angular](https://www.ag-grid.com/angular-grid?utm_source=ag-grid-readme&utm_medium=repository&utm_campaign=github)
* [Get Started with React](https://www.ag-grid.com/react-grid?utm_source=ag-grid-readme&utm_medium=repository&utm_campaign=github)
* [Get Started with Vue](https://www.ag-grid.com/vue-getting-started?utm_source=ag-grid-readme&utm_medium=repository&utm_campaign=github)
- [Get Started with JavaScript](https://www.ag-grid.com/javascript-grid?utm_source=ag-grid-readme&utm_medium=repository&utm_campaign=github)
- [Get Started with Angular](https://www.ag-grid.com/angular-grid?utm_source=ag-grid-readme&utm_medium=repository&utm_campaign=github)
- [Get Started with React](https://www.ag-grid.com/react-grid?utm_source=ag-grid-readme&utm_medium=repository&utm_campaign=github)
- [Get Started with Vue](https://www.ag-grid.com/vue-getting-started?utm_source=ag-grid-readme&utm_medium=repository&utm_campaign=github)
Issue Reporting
----------
## Issue Reporting

@@ -73,14 +71,12 @@ If you are an Enterprise customer (or are evaluating AG Grid Enterprise) and wish to report a Bug or raise a new Feature Request please do so on our [Support Portal](https://ag-grid.zendesk.com/).

Asking Questions
-------------
## Asking Questions
Look for similar problems on [StackOverflow](https://stackoverflow.com/questions/tagged/ag-grid) using the `ag-grid` tag, or refer to our [Support Portal](https://ag-grid.zendesk.com/). If nothing seems related, post a new message there. Do not use GitHub issues to ask questions.
Contributing
------------
## Contributing
AG Grid is developed by a team of co-located developers in London. If you want to join the team send your application to info@ag-grid.com.
License
------------------
## License
Please refer to the [LICENSE](LICENSE.md) and [SUPPORT_AND_MAINTENANCE](SUPPORT_AND_MAINTENANCE.md).

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

Support and Maintenance document is now merged into the licence document. Please see the licence.

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

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc