flexmonster 2.9.18 → 2.9.21
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/flexmonster.css +99 -1
- package/flexmonster.es5.full.js +2770 -2758
- package/flexmonster.es5.js +2651 -2639
- package/flexmonster.full.js +2578 -2553
- package/flexmonster.js +2460 -2435
- package/flexmonster.min.css +1 -1
- package/lib/flexmonster.highcharts.js +6 -0
- package/localizations/de.json +604 -604
- package/localizations/en.json +604 -604
- package/localizations/es.json +604 -604
- package/localizations/fr.json +604 -604
- package/localizations/hu.json +604 -604
- package/localizations/id.json +604 -604
- package/localizations/it.json +604 -604
- package/localizations/nl.json +604 -604
- package/localizations/pt.json +604 -604
- package/localizations/th.json +604 -604
- package/localizations/tr.json +604 -604
- package/localizations/uk.json +604 -604
- package/localizations/zh.json +603 -603
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +99 -1
- package/theme/accessible/flexmonster.min.css +1 -1
- package/theme/blackorange/flexmonster.css +99 -1
- package/theme/blackorange/flexmonster.min.css +1 -1
- package/theme/brightorange/flexmonster.css +99 -1
- package/theme/brightorange/flexmonster.min.css +1 -1
- package/theme/dark/flexmonster.css +99 -1
- package/theme/dark/flexmonster.min.css +1 -1
- package/theme/flexmonster-base.less +116 -1
- package/theme/green/flexmonster.css +99 -1
- package/theme/green/flexmonster.min.css +1 -1
- package/theme/lightblue/flexmonster.css +99 -1
- package/theme/lightblue/flexmonster.min.css +1 -1
- package/theme/macos/flexmonster.css +99 -1
- package/theme/macos/flexmonster.min.css +1 -1
- package/theme/midnight/flexmonster.css +99 -1
- package/theme/midnight/flexmonster.min.css +1 -1
- package/theme/old/flexmonster.css +99 -1
- package/theme/old/flexmonster.min.css +1 -1
- package/theme/orange/flexmonster.css +99 -1
- package/theme/orange/flexmonster.min.css +1 -1
- package/theme/purple/flexmonster.css +99 -1
- package/theme/purple/flexmonster.min.css +1 -1
- package/theme/softdefault/flexmonster.css +99 -1
- package/theme/softdefault/flexmonster.min.css +1 -1
- package/theme/stripedblue/flexmonster.css +99 -1
- package/theme/stripedblue/flexmonster.min.css +1 -1
- package/theme/stripedteal/flexmonster.css +99 -1
- package/theme/stripedteal/flexmonster.min.css +1 -1
- package/theme/teal/flexmonster.css +99 -1
- package/theme/teal/flexmonster.min.css +1 -1
- package/theme/yellow/flexmonster.css +99 -1
- package/theme/yellow/flexmonster.min.css +1 -1
- package/toolbar/flexmonster.toolbar.js +1 -1
- package/types/flexmonster.d.ts +8 -3
package/types/flexmonster.d.ts
CHANGED
|
@@ -46,7 +46,7 @@ declare namespace Flexmonster {
|
|
|
46
46
|
celldoubleclick?: (cell: CellData) => void;
|
|
47
47
|
chartclick?: (data: ChartData) => void;
|
|
48
48
|
datachanged?: (param: object) => void;
|
|
49
|
-
dataerror?: (
|
|
49
|
+
dataerror?: (event?: ErrorEvent) => void;
|
|
50
50
|
datafilecancelled?: () => void;
|
|
51
51
|
dataloaded?: () => void;
|
|
52
52
|
drillthroughclose?: () => void;
|
|
@@ -63,13 +63,13 @@ declare namespace Flexmonster {
|
|
|
63
63
|
loadingreportfile?: () => void;
|
|
64
64
|
localizationerror?: () => void;
|
|
65
65
|
localizationloaded?: () => void;
|
|
66
|
-
olapstructureerror?: () => void;
|
|
66
|
+
olapstructureerror?: (event?: ErrorEvent) => void;
|
|
67
67
|
olapstructureloaded?: () => void;
|
|
68
68
|
openingreportfile?: () => void;
|
|
69
69
|
printcomplete?: () => void;
|
|
70
70
|
printstart?: () => void;
|
|
71
71
|
querycomplete?: () => void;
|
|
72
|
-
queryerror?: () => void;
|
|
72
|
+
queryerror?: (event?: ErrorEvent) => void;
|
|
73
73
|
ready?: () => void;
|
|
74
74
|
reportchange?: () => void;
|
|
75
75
|
reportcomplete?: () => void;
|
|
@@ -272,6 +272,7 @@ declare namespace Flexmonster {
|
|
|
272
272
|
mapping?: object | string;
|
|
273
273
|
withCredentials?: boolean;
|
|
274
274
|
singleEndpoint?: boolean;
|
|
275
|
+
useGranularityNamesForDateFilters?: boolean;
|
|
275
276
|
}
|
|
276
277
|
|
|
277
278
|
interface SliceHierarchy {
|
|
@@ -815,4 +816,8 @@ declare namespace Flexmonster {
|
|
|
815
816
|
[header: string]: string | number;
|
|
816
817
|
}
|
|
817
818
|
}
|
|
819
|
+
|
|
820
|
+
interface ErrorEvent {
|
|
821
|
+
error?: string;
|
|
822
|
+
}
|
|
818
823
|
}
|