@highcharts/grid-pro 2.1.0 → 2.1.1
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/css/grid-pro.css +1 -1
- package/es-modules/Core/Globals.js +1 -1
- package/es-modules/Grid/Core/Globals.d.ts +2 -2
- package/es-modules/Grid/Core/Globals.js +1 -1
- package/es-modules/masters/grid-pro.src.d.ts +3 -3
- package/es-modules/masters/grid-pro.src.js +1 -1
- package/grid-pro.d.ts +3 -3
- package/grid-pro.js +3 -3
- package/grid-pro.js.map +1 -1
- package/grid-pro.src.d.ts +3 -3
- package/grid-pro.src.js +3 -3
- package/package.json +1 -9
package/grid-pro.src.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Highcharts Grid Pro v2.1.
|
|
2
|
+
* @license Highcharts Grid Pro v2.1.1 (2025-12-10)
|
|
3
3
|
* @module grid/grid-pro
|
|
4
4
|
*
|
|
5
5
|
* (c) 2009-2025 Highsoft AS
|
|
@@ -105,14 +105,14 @@ declare const G: {
|
|
|
105
105
|
helpers: Record<string, Function>;
|
|
106
106
|
numberFormat: (this: Templating.Owner | void, number: number, decimals: number, decimalPoint?: string, thousandsSep?: string) => string;
|
|
107
107
|
};
|
|
108
|
-
readonly version: "2.1.
|
|
108
|
+
readonly version: "2.1.1";
|
|
109
109
|
readonly win: Window & typeof globalThis;
|
|
110
110
|
};
|
|
111
111
|
export { AST, CellContentPro, CellRenderer, CellRendererRegistry, Column, ColumnResizing, DataConnector, DataConverter, DataCursor, DataModifier, DataPool, DataTable, HeaderCell, Pagination, Popup, SvgIcons, Table, TableCell, Templating };
|
|
112
112
|
export declare const classNamePrefix: string, defaultOptions: import("./es-modules/Shared/Types").DeepPartial<_Options>, Grid: typeof _Grid, grid: typeof _Grid.grid, grids: (_Grid | undefined)[], isHighContrastModeActive: () => boolean, merge: {
|
|
113
113
|
<T = object>(extend: true, a?: T, ...n: Array<import("./es-modules/Shared/Types").DeepPartial<T> | undefined>): (T);
|
|
114
114
|
<T1 extends object = object, T2 = unknown, T3 = unknown, T4 = unknown, T5 = unknown, T6 = unknown, T7 = unknown, T8 = unknown, T9 = unknown>(a?: T1, b?: T2, c?: T3, d?: T4, e?: T5, f?: T6, g?: T7, h?: T8, i?: T9): (T1 & T2 & T3 & T4 & T5 & T6 & T7 & T8 & T9);
|
|
115
|
-
}, product: "Grid Pro", setOptions: typeof import("./es-modules/Grid/Core/Defaults.js").setOptions, version: "2.1.
|
|
115
|
+
}, product: "Grid Pro", setOptions: typeof import("./es-modules/Grid/Core/Defaults.js").setOptions, version: "2.1.1", win: Window & typeof globalThis;
|
|
116
116
|
declare global {
|
|
117
117
|
interface Window {
|
|
118
118
|
Highcharts?: typeof H;
|
package/grid-pro.src.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Highcharts Grid Pro v2.1.
|
|
2
|
+
* @license Highcharts Grid Pro v2.1.1 (2025-12-10)
|
|
3
3
|
* @module grid/grid-pro
|
|
4
4
|
*
|
|
5
5
|
* (c) 2009-2025 Highsoft AS
|
|
@@ -76,7 +76,7 @@ var Globals;
|
|
|
76
76
|
* Constants
|
|
77
77
|
*
|
|
78
78
|
* */
|
|
79
|
-
Globals.SVG_NS = 'http://www.w3.org/2000/svg', Globals.product = 'Highcharts', Globals.version = '2.1.
|
|
79
|
+
Globals.SVG_NS = 'http://www.w3.org/2000/svg', Globals.product = 'Highcharts', Globals.version = '2.1.1', Globals.win = (typeof window !== 'undefined' ?
|
|
80
80
|
window :
|
|
81
81
|
{}), // eslint-disable-line node/no-unsupported-features/es-builtins
|
|
82
82
|
Globals.doc = Globals.win.document, Globals.svg = !!Globals.doc?.createElementNS?.(Globals.SVG_NS, 'svg')?.createSVGRect, Globals.pageLang = Globals.doc?.documentElement?.closest('[lang]')?.lang, Globals.userAgent = Globals.win.navigator?.userAgent || '', Globals.isChrome = Globals.win.chrome, Globals.isFirefox = Globals.userAgent.indexOf('Firefox') !== -1, Globals.isMS = /(edge|msie|trident)/i.test(Globals.userAgent) && !Globals.win.opera, Globals.isSafari = !Globals.isChrome && Globals.userAgent.indexOf('Safari') !== -1, Globals.isTouchDevice = /(Mobile|Android|Windows Phone)/.test(Globals.userAgent), Globals.isWebKit = Globals.userAgent.indexOf('AppleWebKit') !== -1, Globals.deg2rad = Math.PI * 2 / 360, Globals.marginNames = [
|
|
@@ -11993,7 +11993,7 @@ const whcm = {
|
|
|
11993
11993
|
*
|
|
11994
11994
|
* */
|
|
11995
11995
|
const classNamePrefix = 'hcg-';
|
|
11996
|
-
const version = '2.1.
|
|
11996
|
+
const version = '2.1.1';
|
|
11997
11997
|
const rawClassNames = {
|
|
11998
11998
|
container: 'container',
|
|
11999
11999
|
tableElement: 'table',
|
package/package.json
CHANGED
|
@@ -2,19 +2,11 @@
|
|
|
2
2
|
"name": "@highcharts/grid-pro",
|
|
3
3
|
"description": "Highcharts Grid Pro framework",
|
|
4
4
|
"homepage": "https://www.highcharts.com/products/grid/",
|
|
5
|
-
"version": "2.1.
|
|
5
|
+
"version": "2.1.1",
|
|
6
6
|
"author": "Highsoft AS <support@highcharts.com> (http://www.highcharts.com/about)",
|
|
7
7
|
"main": "grid-pro.js",
|
|
8
8
|
"module": "./es-modules/masters/grid-pro.src.js",
|
|
9
9
|
"types": "./es-modules/masters/grid-pro.src.d.ts",
|
|
10
|
-
"exports": {
|
|
11
|
-
".": {
|
|
12
|
-
"import": "./es-modules/masters/grid-pro.src.js",
|
|
13
|
-
"types": "./es-modules/masters/grid-pro.src.d.ts",
|
|
14
|
-
"require": "./grid-pro.js"
|
|
15
|
-
},
|
|
16
|
-
"./*": "./*"
|
|
17
|
-
},
|
|
18
10
|
"repository": {
|
|
19
11
|
"type": "git",
|
|
20
12
|
"url": "https://github.com/highcharts/grid-pro-dist"
|