@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/css/grid-pro.css
CHANGED
|
@@ -24,7 +24,7 @@ var Globals;
|
|
|
24
24
|
* Constants
|
|
25
25
|
*
|
|
26
26
|
* */
|
|
27
|
-
Globals.SVG_NS = 'http://www.w3.org/2000/svg', Globals.product = 'Highcharts', Globals.version = '2.1.
|
|
27
|
+
Globals.SVG_NS = 'http://www.w3.org/2000/svg', Globals.product = 'Highcharts', Globals.version = '2.1.1', Globals.win = (typeof window !== 'undefined' ?
|
|
28
28
|
window :
|
|
29
29
|
{}), // eslint-disable-line node/no-unsupported-features/es-builtins
|
|
30
30
|
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 = [
|
|
@@ -3,7 +3,7 @@ export type DeepRequired<T> = {
|
|
|
3
3
|
};
|
|
4
4
|
export type ClassNameKey = keyof typeof rawClassNames;
|
|
5
5
|
export declare const classNamePrefix: string;
|
|
6
|
-
export declare const version = "2.1.
|
|
6
|
+
export declare const version = "2.1.1";
|
|
7
7
|
export declare const rawClassNames: {
|
|
8
8
|
readonly container: "container";
|
|
9
9
|
readonly tableElement: "table";
|
|
@@ -90,7 +90,7 @@ export declare const isSafari: boolean;
|
|
|
90
90
|
export declare const getClassName: (classNameKey: ClassNameKey) => string;
|
|
91
91
|
declare const _default: {
|
|
92
92
|
readonly classNamePrefix: string;
|
|
93
|
-
readonly version: "2.1.
|
|
93
|
+
readonly version: "2.1.1";
|
|
94
94
|
readonly rawClassNames: {
|
|
95
95
|
readonly container: "container";
|
|
96
96
|
readonly tableElement: "table";
|
|
@@ -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("../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("../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("../Grid/Core/Defaults.js").setOptions, version: "2.1.
|
|
115
|
+
}, product: "Grid Pro", setOptions: typeof import("../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.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;
|