@ic3/reporting-api 8.3.0-alpha.1 → 8.3.0

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.
Files changed (55) hide show
  1. package/dist/ApiUtils.js +1 -1
  2. package/dist/ApiUtils.js.map +1 -1
  3. package/dist/INotification.d.ts +11 -2
  4. package/dist/IOnNewEventJsContext.d.ts +1 -1
  5. package/dist/IReporting.d.ts +45 -4
  6. package/dist/IThemeManager.d.ts +1 -1
  7. package/dist/ITypes.d.ts +3 -3
  8. package/dist/IWidgetVariantManager.d.ts +2 -2
  9. package/dist/LazyTreeView.d.ts +1 -1
  10. package/dist/Loader.d.ts +94 -20
  11. package/dist/Loader.js +45 -44
  12. package/dist/Loader.js.map +1 -1
  13. package/dist/Logger.d.ts +1 -1
  14. package/dist/PublicContext.d.ts +18 -0
  15. package/dist/PublicContext.js +6 -1
  16. package/dist/PublicContext.js.map +1 -1
  17. package/dist/PublicLayout.d.ts +2 -2
  18. package/dist/PublicTemplate.d.ts +8 -5
  19. package/dist/PublicTemplate.js.map +1 -1
  20. package/dist/PublicTemplateForm.d.ts +19 -18
  21. package/dist/PublicTemplateForm.js.map +1 -1
  22. package/dist/PublicTemplates.d.ts +4 -2
  23. package/dist/PublicTheme.d.ts +89 -62
  24. package/dist/PublicTheme.js.map +1 -1
  25. package/dist/PublicTidyColumn.d.ts +23 -17
  26. package/dist/PublicTidyColumn.js.map +1 -1
  27. package/dist/PublicTidyTableInteractions.d.ts +7 -2
  28. package/dist/PublicTidyTableInteractions.js.map +1 -1
  29. package/dist/PublicTidyTableTypes.d.ts +45 -18
  30. package/dist/PublicTidyTableTypes.js +3 -4
  31. package/dist/PublicTidyTableTypes.js.map +1 -1
  32. package/dist/PublicTidyTree.d.ts +1 -1
  33. package/dist/index.d.ts +2 -0
  34. package/dist/index.js +2 -0
  35. package/dist/index.js.map +1 -1
  36. package/dist/theme/ThemeAmCharts4.d.ts +59 -19
  37. package/dist/theme/ThemeDatePicker.d.ts +8 -0
  38. package/dist/theme/ThemeEditorTopBar.d.ts +4 -0
  39. package/dist/theme/ThemeEditorTopBar.js +4 -0
  40. package/dist/theme/ThemeEditorTopBar.js.map +1 -1
  41. package/dist/theme/ThemeFilterAutocomplete.d.ts +6 -1
  42. package/dist/theme/ThemeFilterPanel.d.ts +4 -0
  43. package/dist/theme/ThemeFilterTree.d.ts +1 -1
  44. package/dist/theme/ThemeHtmlBox.d.ts +1 -1
  45. package/dist/theme/ThemeLazyTreeClasses.d.ts +1 -0
  46. package/dist/theme/ThemeListCounter.d.ts +5 -0
  47. package/dist/theme/ThemeListCounter.js +9 -0
  48. package/dist/theme/ThemeListCounter.js.map +1 -0
  49. package/dist/theme/ThemePrintButton.d.ts +22 -0
  50. package/dist/theme/ThemePrintButton.js +10 -0
  51. package/dist/theme/ThemePrintButton.js.map +1 -0
  52. package/dist/theme/ThemeSinglePanelFilter.d.ts +18 -0
  53. package/dist/theme/ThemeSinglePanelFilter.js +3 -0
  54. package/dist/theme/ThemeSinglePanelFilter.js.map +1 -0
  55. package/package.json +5 -5
@@ -53,7 +53,7 @@ export declare enum TidyColumnsType {
53
53
  */
54
54
  ANY = "any"
55
55
  }
56
- export declare type TidyColumnsSubType = "YEAR" | "HALF_YEAR" | "QUARTER" | "MONTH" | "WEEK" | "DAY" | "DAY_MONTH" | "DAY_YEAR" | "HOUR" | "HALF_HOUR" | "QUARTER_HOUR" | "MINUTE" | "SECOND";
56
+ export type TidyColumnsSubType = "YEAR" | "HALF_YEAR" | "QUARTER" | "MONTH" | "WEEK" | "DAY" | "DAY_MONTH" | "DAY_YEAR" | "HOUR" | "HALF_HOUR" | "QUARTER_HOUR" | "MINUTE" | "SECOND";
57
57
  export declare enum ITidyColumnsSource {
58
58
  QUERY = "query",
59
59
  TRANSFORMATION = "transformation",
@@ -64,12 +64,12 @@ export declare enum ITidyColumnsSource {
64
64
  * The key represents the internal lowercase-name for the mapping, e.g., axis, group, rows, columns.
65
65
  * Note that a mapping can have multiple columns, for example, on the Rows.
66
66
  */
67
- export declare type ChartTemplateDataMapping = Record<string, ITidyColumn[] | undefined>;
67
+ export type ChartTemplateDataMapping = Record<string, ITidyColumn[] | undefined>;
68
68
  /**
69
69
  * Defines an index from column tag (name, mapping, role, etc..) to the name or index of the column in the table.
70
70
  * The column tag is converted to lower case.
71
71
  */
72
- export declare type TidyColumnIndex = Record<string, string | number>;
72
+ export type TidyColumnIndex = Record<string, string | number>;
73
73
  export declare enum TidyTableMappingColumnSelectorOptions {
74
74
  ALL = "@IC3_ALL",
75
75
  ALL_NUMERIC = "@IC3_ALL_NUMERIC",
@@ -93,8 +93,8 @@ export interface TidyTableRoleSelector {
93
93
  */
94
94
  role: string;
95
95
  }
96
- export declare type TidyTableColumnSelector = TidyTableColumnIdentifier | TidyTableMappingColumnSelectorOptions | TidyTableRoleSelector;
97
- export declare type IFormFieldGranularityItem = IFormFieldGranularityItemColumn | IFormFieldGranularityItemRole | IFormFieldGranularityItemHierarchy | IFormFieldGranularityColumns;
96
+ export type TidyTableColumnSelector = TidyTableColumnIdentifier | TidyTableMappingColumnSelectorOptions | TidyTableRoleSelector;
97
+ export type IFormFieldGranularityItem = IFormFieldGranularityItemColumn | IFormFieldGranularityItemRole | IFormFieldGranularityItemHierarchy | IFormFieldGranularityColumns;
98
98
  export interface IFormFieldGranularityItemColumn {
99
99
  type: "column";
100
100
  /**
@@ -147,7 +147,7 @@ export interface MdxMemberCoordinates {
147
147
  */
148
148
  hierIdx?: number;
149
149
  }
150
- declare type Optional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>;
150
+ type Optional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>;
151
151
  /**
152
152
  * The coordinate of an MDX axis. If and only if the columns source is from ON 0, the hierIdx is defined.
153
153
  */
@@ -171,50 +171,77 @@ export interface MdxRepetitionInfo {
171
171
  /**
172
172
  * identifier of a column value ( uniqueName if it´s an axis or idx if measure )
173
173
  */
174
- export declare type TidyColumnCoordinateUniqueName = MdxNodeIdentifier['uid'];
174
+ export type TidyColumnCoordinateUniqueName = MdxNodeIdentifier['uid'];
175
175
  export declare enum IAmcharts4DataKey {
176
176
  /**
177
- * The value of the axis. The value is a date if the user mapped a date column and the row number string if the
178
- * user mapped a character column. Use an adapter on the category axis to get the actual value of the label.
177
+ * Data key for the date/string value of the axis.
179
178
  */
180
179
  AXIS = "axis",
181
180
  /**
182
- * Tag for the rows in the result
181
+ * Data key for the tidy-row number.
183
182
  */
184
183
  ROW = "row",
185
184
  /**
186
- * When there are no groups or levels in the data, this name is used.
185
+ * Data key for accessing the value of a dataItem. Used when there are no groups or levels in the data.
187
186
  */
188
187
  NULL = "_"
189
188
  }
190
189
  /**
191
190
  * Objects that have this type are used in chart.data in amCharts.
192
191
  */
193
- export declare type IAmCharts4Data = Record<string, any>;
194
- export interface IAmCharts4DataTreeMap extends IAmCharts4Data {
195
- children: IAmCharts4Data[];
192
+ export interface IAmCharts4Data {
193
+ /**
194
+ * The date/string value of the axis.
195
+ */
196
+ axis: Date | string;
197
+ /**
198
+ * The row number of the axis. Uses first row if multiple rows are in the dataItem for the axis.
199
+ */
200
+ row: number;
201
+ /**
202
+ * Other values for the series
203
+ */
204
+ [key: string]: any;
205
+ }
206
+ export interface IAmCharts4DataTreeMap {
207
+ children: {
208
+ [key: string]: any;
209
+ }[];
210
+ [key: string]: any;
196
211
  }
197
- export declare type ITidyRow = any[];
212
+ export type ITidyRow = any[];
198
213
  export interface MdxInfo {
199
214
  uniqueName: string;
200
215
  key: any;
216
+ keyS: string | undefined;
201
217
  name: string;
202
218
  caption: string;
203
219
  isAll?: boolean;
204
220
  pun?: string;
221
+ /**
222
+ * Children count
223
+ */
205
224
  cc?: number;
206
225
  levelCaption?: string;
207
226
  /**
208
227
  * Relative: starts at 0 + visual depths for ragged dimension.
209
228
  */
210
229
  levelDepthR: number;
230
+ /**
231
+ * Actual MDX level depth
232
+ */
233
+ levelDepth: number;
234
+ /**
235
+ * hierUN
236
+ */
237
+ hierUN: string;
211
238
  /**
212
239
  * Index on the MDX axis of the tuple the member belongs to.
213
240
  */
214
241
  tupleIndex: number;
215
242
  }
216
- export declare type MdxLevelType = "date" | "time";
217
- export declare type MdxLevelSubType = "YEAR" | "HALF_YEAR" | "QUARTER" | "MONTH" | "WEEK" | "DAY" | "DAY_MONTH" | "DAY_YEAR" | "HOUR" | "HALF_HOUR" | "QUARTER_HOUR" | "MINUTE" | "SECOND";
243
+ export type MdxLevelType = "date" | "time";
244
+ export type MdxLevelSubType = "YEAR" | "HALF_YEAR" | "QUARTER" | "MONTH" | "WEEK" | "DAY" | "DAY_MONTH" | "DAY_YEAR" | "HOUR" | "HALF_HOUR" | "QUARTER_HOUR" | "MINUTE" | "SECOND";
218
245
  export interface IMdxAxisSeriesInfo {
219
246
  hierarchyName?: string;
220
247
  hierarchyUN?: string;
@@ -439,7 +466,7 @@ export interface WidgetTidySelectionOptions {
439
466
  */
440
467
  initSelectionOnNewQuery?: boolean;
441
468
  }
442
- export declare type GroupRowIndices = [number, ...number[]];
469
+ export type GroupRowIndices = [number, ...number[]];
443
470
  export interface TreeRowPropsTreeData {
444
471
  rowIndex: number;
445
472
  nodeId: string;
@@ -70,16 +70,15 @@ var TidyTableMappingColumnSelectorOptions;
70
70
  var IAmcharts4DataKey;
71
71
  (function (IAmcharts4DataKey) {
72
72
  /**
73
- * The value of the axis. The value is a date if the user mapped a date column and the row number string if the
74
- * user mapped a character column. Use an adapter on the category axis to get the actual value of the label.
73
+ * Data key for the date/string value of the axis.
75
74
  */
76
75
  IAmcharts4DataKey["AXIS"] = "axis";
77
76
  /**
78
- * Tag for the rows in the result
77
+ * Data key for the tidy-row number.
79
78
  */
80
79
  IAmcharts4DataKey["ROW"] = "row";
81
80
  /**
82
- * When there are no groups or levels in the data, this name is used.
81
+ * Data key for accessing the value of a dataItem. Used when there are no groups or levels in the data.
83
82
  */
84
83
  IAmcharts4DataKey["NULL"] = "_";
85
84
  })(IAmcharts4DataKey = exports.IAmcharts4DataKey || (exports.IAmcharts4DataKey = {}));
@@ -1 +1 @@
1
- {"version":3,"file":"PublicTidyTableTypes.js","sourceRoot":"","sources":["../src/PublicTidyTableTypes.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAOH,IAAY,eA0DX;AA1DD,WAAY,eAAe;IACvB;;OAEG;IACH,kCAAe,CAAA;IAEf,0CAAuB,CAAA;IACvB,wCAAqB,CAAA;IAErB;;OAEG;IACH,sDAAmC,CAAA;IAEnC;;OAEG;IACH,wCAAqB,CAAA;IAErB;;OAEG;IACH,sCAAmB,CAAA;IAEnB;;OAEG;IACH,0CAAuB,CAAA;IAEvB;;OAEG;IACH,sCAAmB,CAAA;IAEnB;;OAEG;IACH,gCAAa,CAAA;IAEb;;OAEG;IACH,kCAAe,CAAA;IAEf;;OAEG;IACH,sCAAmB,CAAA;IAEnB;;OAEG;IACH,gCAAa,CAAA;IAEb;;OAEG;IACH,8BAAW,CAAA;AACf,CAAC,EA1DW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QA0D1B;AAkBD,IAAY,kBAIX;AAJD,WAAY,kBAAkB;IAC1B,qCAAe,CAAA;IACf,uDAAiC,CAAA;IACjC,yCAAmB,CAAA;AACvB,CAAC,EAJW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAI7B;AAeD,IAAY,qCAQX;AARD,WAAY,qCAAqC;IAE7C,yDAAgB,CAAA;IAChB,yEAAgC,CAAA;IAChC,6EAAoC,CAAA;IACpC,2EAAkC,CAAA;IAClC,mEAA0B,CAAA;AAE9B,CAAC,EARW,qCAAqC,GAArC,6CAAqC,KAArC,6CAAqC,QAQhD;AAuHD,IAAY,iBAgBX;AAhBD,WAAY,iBAAiB;IACzB;;;OAGG;IACH,kCAAa,CAAA;IAEb;;OAEG;IACH,gCAAW,CAAA;IAEX;;OAEG;IACH,+BAAU,CAAA;AACd,CAAC,EAhBW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAgB5B;AA0HD,IAAY,kBAqCX;AArCD,WAAY,kBAAkB;IAC1B;;OAEG;IACH,iDAA2B,CAAA;IAE3B;;OAEG;IACH,+CAAyB,CAAA;IAEzB;;OAEG;IACH,mDAA6B,CAAA;IAE7B,iDAA2B,CAAA;IAE3B;;OAEG;IACH,iDAA2B,CAAA;IAE3B;;OAEG;IACH,iDAA2B,CAAA;IAE3B;;OAEG;IACH,6CAAuB,CAAA;IAEvB;;OAEG;IACH,yDAAmC,CAAA;AACvC,CAAC,EArCW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAqC7B;AAED,IAAY,WAIX;AAJD,WAAY,WAAW;IACnB,sCAAuB,CAAA;IACvB,wCAAyB,CAAA;IACzB,wCAAyB,CAAA;AAC7B,CAAC,EAJW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAItB;AAwDD,IAAY,iBAMX;AAND,WAAY,iBAAiB;IACzB,kCAAa,CAAA;IACb,gCAAW,CAAA;IACX,gCAAW,CAAA;IACX,gCAAW,CAAA;IACX,gCAAW,CAAA;AACf,CAAC,EANW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAM5B;AAED,IAAY,sBAIX;AAJD,WAAY,sBAAsB;IAC9B,6CAAmB,CAAA;IACnB,uCAAa,CAAA;IACb,yCAAe,CAAA;AACnB,CAAC,EAJW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAIjC;AAyBD;;;;;GAKG;AACH,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,8BAAW,CAAA;IACX,4BAAS,CAAA;IACT,gCAAa,CAAA;AACjB,CAAC,EAJW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAI1B"}
1
+ {"version":3,"file":"PublicTidyTableTypes.js","sourceRoot":"","sources":["../src/PublicTidyTableTypes.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAOH,IAAY,eA0DX;AA1DD,WAAY,eAAe;IACvB;;OAEG;IACH,kCAAe,CAAA;IAEf,0CAAuB,CAAA;IACvB,wCAAqB,CAAA;IAErB;;OAEG;IACH,sDAAmC,CAAA;IAEnC;;OAEG;IACH,wCAAqB,CAAA;IAErB;;OAEG;IACH,sCAAmB,CAAA;IAEnB;;OAEG;IACH,0CAAuB,CAAA;IAEvB;;OAEG;IACH,sCAAmB,CAAA;IAEnB;;OAEG;IACH,gCAAa,CAAA;IAEb;;OAEG;IACH,kCAAe,CAAA;IAEf;;OAEG;IACH,sCAAmB,CAAA;IAEnB;;OAEG;IACH,gCAAa,CAAA;IAEb;;OAEG;IACH,8BAAW,CAAA;AACf,CAAC,EA1DW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QA0D1B;AAkBD,IAAY,kBAIX;AAJD,WAAY,kBAAkB;IAC1B,qCAAe,CAAA;IACf,uDAAiC,CAAA;IACjC,yCAAmB,CAAA;AACvB,CAAC,EAJW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAI7B;AAeD,IAAY,qCAQX;AARD,WAAY,qCAAqC;IAE7C,yDAAgB,CAAA;IAChB,yEAAgC,CAAA;IAChC,6EAAoC,CAAA;IACpC,2EAAkC,CAAA;IAClC,mEAA0B,CAAA;AAE9B,CAAC,EARW,qCAAqC,GAArC,6CAAqC,KAArC,6CAAqC,QAQhD;AA0HD,IAAY,iBAiBX;AAjBD,WAAY,iBAAiB;IAEzB;;OAEG;IACH,kCAAa,CAAA;IAEb;;OAEG;IACH,gCAAW,CAAA;IAEX;;OAEG;IACH,+BAAU,CAAA;AAEd,CAAC,EAjBW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAiB5B;AA8JD,IAAY,kBAqCX;AArCD,WAAY,kBAAkB;IAC1B;;OAEG;IACH,iDAA2B,CAAA;IAE3B;;OAEG;IACH,+CAAyB,CAAA;IAEzB;;OAEG;IACH,mDAA6B,CAAA;IAE7B,iDAA2B,CAAA;IAE3B;;OAEG;IACH,iDAA2B,CAAA;IAE3B;;OAEG;IACH,iDAA2B,CAAA;IAE3B;;OAEG;IACH,6CAAuB,CAAA;IAEvB;;OAEG;IACH,yDAAmC,CAAA;AACvC,CAAC,EArCW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAqC7B;AAED,IAAY,WAIX;AAJD,WAAY,WAAW;IACnB,sCAAuB,CAAA;IACvB,wCAAyB,CAAA;IACzB,wCAAyB,CAAA;AAC7B,CAAC,EAJW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAItB;AAwDD,IAAY,iBAMX;AAND,WAAY,iBAAiB;IACzB,kCAAa,CAAA;IACb,gCAAW,CAAA;IACX,gCAAW,CAAA;IACX,gCAAW,CAAA;IACX,gCAAW,CAAA;AACf,CAAC,EANW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAM5B;AAED,IAAY,sBAIX;AAJD,WAAY,sBAAsB;IAC9B,6CAAmB,CAAA;IACnB,uCAAa,CAAA;IACb,yCAAe,CAAA;AACnB,CAAC,EAJW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAIjC;AAyBD;;;;;GAKG;AACH,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,8BAAW,CAAA;IACX,4BAAS,CAAA;IACT,gCAAa,CAAA;AACjB,CAAC,EAJW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAI1B"}
@@ -68,4 +68,4 @@ export declare class TidyTree {
68
68
  /**
69
69
  * Top parent node = the node that is a direct child of root and of which node is a descendant.
70
70
  */
71
- export declare type ForEachNodeCallbackFn<T> = (node: TidyTreeNode, levelDepth: number, parent: TidyTreeNode, nodeChildrenIdx: number, parentSummary?: T) => boolean | void;
71
+ export type ForEachNodeCallbackFn<T> = (node: TidyTreeNode, levelDepth: number, parent: TidyTreeNode, nodeChildrenIdx: number, parentSummary?: T) => boolean | void;
package/dist/index.d.ts CHANGED
@@ -45,6 +45,7 @@ export * from "./theme/ThemeFilterAutocomplete";
45
45
  export * from "./theme/ThemeFilterButtons";
46
46
  export * from "./theme/ThemeFilterCheckboxRadio";
47
47
  export * from "./theme/ThemeFilterPanel";
48
+ export * from "./theme/ThemeSinglePanelFilter";
48
49
  export * from "./theme/ThemeFilterSlider";
49
50
  export * from "./theme/ThemeFilterTree";
50
51
  export * from "./theme/ThemeGlobal";
@@ -61,6 +62,7 @@ export * from "./theme/ThemeLayoutPage";
61
62
  export * from "./theme/ThemeLazyTreeClasses";
62
63
  export * from "./theme/ThemeMarkdownText";
63
64
  export * from "./theme/ThemePivotTable";
65
+ export * from "./theme/ThemePrintButton";
64
66
  export * from "./theme/ThemeRepetitionWidget";
65
67
  export * from "./theme/ThemeReportAppBar";
66
68
  export * from "./theme/ThemeTable";
package/dist/index.js CHANGED
@@ -61,6 +61,7 @@ __exportStar(require("./theme/ThemeFilterAutocomplete"), exports);
61
61
  __exportStar(require("./theme/ThemeFilterButtons"), exports);
62
62
  __exportStar(require("./theme/ThemeFilterCheckboxRadio"), exports);
63
63
  __exportStar(require("./theme/ThemeFilterPanel"), exports);
64
+ __exportStar(require("./theme/ThemeSinglePanelFilter"), exports);
64
65
  __exportStar(require("./theme/ThemeFilterSlider"), exports);
65
66
  __exportStar(require("./theme/ThemeFilterTree"), exports);
66
67
  __exportStar(require("./theme/ThemeGlobal"), exports);
@@ -77,6 +78,7 @@ __exportStar(require("./theme/ThemeLayoutPage"), exports);
77
78
  __exportStar(require("./theme/ThemeLazyTreeClasses"), exports);
78
79
  __exportStar(require("./theme/ThemeMarkdownText"), exports);
79
80
  __exportStar(require("./theme/ThemePivotTable"), exports);
81
+ __exportStar(require("./theme/ThemePrintButton"), exports);
80
82
  __exportStar(require("./theme/ThemeRepetitionWidget"), exports);
81
83
  __exportStar(require("./theme/ThemeReportAppBar"), exports);
82
84
  __exportStar(require("./theme/ThemeTable"), exports);
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,4CAA0B;AAC1B,yDAAuC;AACvC,kDAAgC;AAChC,sDAAoC;AACpC,sDAAoC;AACpC,+CAA6B;AAC7B,kDAAgC;AAChC,uDAAqC;AACrC,6DAA0C;AAC1C,oEAAiD;AACjD,2CAAwB;AACxB,+DAA6C;AAC7C,2DAAyC;AACzC,0DAAwC;AACxC,mDAAiC;AACjC,iDAA+B;AAC/B,2CAAyB;AACzB,2CAAyB;AACzB,iDAA+B;AAC/B,kDAAgC;AAChC,+CAA6B;AAC7B,iDAA+B;AAC/B,mDAAiC;AACjC,uDAAqC;AACrC,oDAAkC;AAClC,gDAA8B;AAC9B,qDAAmC;AACnC,mDAAiC;AACjC,oDAAkC;AAClC,gEAA8C;AAC9C,yDAAuC;AACvC,mDAAiC;AACjC,wDAAsC;AACtC,yDAAuC;AACvC,qDAAmC;AAEnC,2DAAyC;AACzC,yDAAuC;AACvC,mDAAiC;AACjC,yDAAuC;AACvC,0DAAwC;AACxC,8DAA4C;AAC5C,6DAA2C;AAC3C,kEAAgD;AAChD,6DAA2C;AAC3C,mEAAiD;AACjD,2DAAyC;AACzC,4DAA0C;AAC1C,0DAAwC;AACxC,sDAAoC;AACpC,sDAAoC;AACpC,6DAA2C;AAC3C,8DAA4C;AAC5C,4DAA0C;AAC1C,uDAAqC;AACrC,qDAAmC;AACnC,sDAAoC;AACpC,uDAAqC;AACrC,sDAAoC;AACpC,0DAAwC;AACxC,+DAA6C;AAC7C,4DAA0C;AAC1C,0DAAwC;AACxC,gEAA8C;AAC9C,4DAA0C;AAC1C,qDAAmC;AACnC,kEAAgD;AAChD,yDAAuC;AACvC,uEAAqD"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,4CAA0B;AAC1B,yDAAuC;AACvC,kDAAgC;AAChC,sDAAoC;AACpC,sDAAoC;AACpC,+CAA6B;AAC7B,kDAAgC;AAChC,uDAAqC;AACrC,6DAA0C;AAC1C,oEAAiD;AACjD,2CAAwB;AACxB,+DAA6C;AAC7C,2DAAyC;AACzC,0DAAwC;AACxC,mDAAiC;AACjC,iDAA+B;AAC/B,2CAAyB;AACzB,2CAAyB;AACzB,iDAA+B;AAC/B,kDAAgC;AAChC,+CAA6B;AAC7B,iDAA+B;AAC/B,mDAAiC;AACjC,uDAAqC;AACrC,oDAAkC;AAClC,gDAA8B;AAC9B,qDAAmC;AACnC,mDAAiC;AACjC,oDAAkC;AAClC,gEAA8C;AAC9C,yDAAuC;AACvC,mDAAiC;AACjC,wDAAsC;AACtC,yDAAuC;AACvC,qDAAmC;AAEnC,2DAAyC;AACzC,yDAAuC;AACvC,mDAAiC;AACjC,yDAAuC;AACvC,0DAAwC;AACxC,8DAA4C;AAC5C,6DAA2C;AAC3C,kEAAgD;AAChD,6DAA2C;AAC3C,mEAAiD;AACjD,2DAAyC;AACzC,iEAA+C;AAC/C,4DAA0C;AAC1C,0DAAwC;AACxC,sDAAoC;AACpC,sDAAoC;AACpC,6DAA2C;AAC3C,8DAA4C;AAC5C,4DAA0C;AAC1C,uDAAqC;AACrC,qDAAmC;AACnC,sDAAoC;AACpC,uDAAqC;AACrC,sDAAoC;AACpC,0DAAwC;AACxC,+DAA6C;AAC7C,4DAA0C;AAC1C,0DAAwC;AACxC,2DAAyC;AACzC,gEAA8C;AAC9C,4DAA0C;AAC1C,qDAAmC;AACnC,kEAAgD;AAChD,yDAAuC;AACvC,uEAAqD"}
@@ -349,6 +349,14 @@ export interface Am4SimpleCategoryAxisOptions extends FormFieldObject {
349
349
  * The start index and the end index seperated by a comma.
350
350
  */
351
351
  xAxisInitialZoom?: string;
352
+ /**
353
+ * In-place processing of the amCharts 4 category/date axis instance.
354
+ *
355
+ * <pre>
356
+ * ( value: CategoryAxis | DateAxis ) => void;
357
+ * </pre>
358
+ */
359
+ xAxisPostRenderHook?: Hook<any>;
352
360
  }
353
361
  export interface Am4ValueAxisOptions extends FormFieldObject {
354
362
  /**
@@ -421,6 +429,14 @@ export interface Am4ValueAxisOptions extends FormFieldObject {
421
429
  * Show the grid lines perpendicular to the value axis.
422
430
  */
423
431
  yAxisShowGridLines: boolean;
432
+ /**
433
+ * In-place processing of the amCharts 4 category/date axis instance.
434
+ *
435
+ * <pre>
436
+ * ( value: ValueAxis ) => void;
437
+ * </pre>
438
+ */
439
+ yAxisPostRenderHook?: Hook<any>;
424
440
  }
425
441
  export interface Am4SimpleColumnSeriesOptions extends FormFieldObject, IStrokeStyleProperties {
426
442
  /**
@@ -642,7 +658,7 @@ export interface Am4GeoSeriesOptions extends FormFieldObject {
642
658
  /**
643
659
  * Region.
644
660
  *
645
- * Column with map codes, [ISO-2 codes](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements)
661
+ * Column with [ISO-2 codes](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements)
646
662
  * (e.g., US, CH, GB, FR). Note that provinces, regions, departments are available as well (e.g., FR-30).
647
663
  */
648
664
  region: TidyTableColumnSelector;
@@ -784,6 +800,14 @@ export interface Am4SecondValueAxisOptions extends FormFieldObject {
784
800
  * The start value and the end value seperated by a comma.
785
801
  */
786
802
  yAxisSecondInitialZoom?: string;
803
+ /**
804
+ * In-place processing of the amCharts 4 category/date axis instance.
805
+ *
806
+ * <pre>
807
+ * ( value: ValueAxis ) => void;
808
+ * </pre>
809
+ */
810
+ yAxisSecondPostRenderHook?: Hook<any>;
787
811
  }
788
812
  export interface Am4BubbleSeriesOptions extends FormFieldObject, IStrokeStyleProperties {
789
813
  /**
@@ -1024,6 +1048,14 @@ export interface Am4CategoryDateAxisOptions extends FormFieldObject {
1024
1048
  * Show the grid lines perpendicular to the category axis.
1025
1049
  */
1026
1050
  xAxisShowGridLines: boolean;
1051
+ /**
1052
+ * In-place processing of the amCharts 4 category/date axis instance.
1053
+ *
1054
+ * <pre>
1055
+ * ( value: CategoryAxis | DateAxis ) => void;
1056
+ * </pre>
1057
+ */
1058
+ xAxisPostRenderHook?: Hook<any>;
1027
1059
  }
1028
1060
  export interface Am4ValueAxisRangeOptions extends FormFieldObject {
1029
1061
  /**
@@ -1370,73 +1402,81 @@ export interface Am4ChartOptions extends FormFieldObject {
1370
1402
  * </pre>
1371
1403
  */
1372
1404
  postRenderHook?: Hook<any>;
1405
+ /**
1406
+ * Called after the chart is created.
1407
+ *
1408
+ * <pre>
1409
+ * ( chart: amcharts4.Chart ) => void;
1410
+ * </pre>
1411
+ */
1412
+ onChartCreatedHook?: Hook<any>;
1373
1413
  }
1374
1414
  /**
1375
1415
  * The corresponding AmCharts 4 chart class is PieChart.
1376
1416
  */
1377
- export declare type AmCharts4DonutChartOptions = Am4PieSeriesOptions & Am4PieLabelOptions & Am4LabelOptions & Am4DonutLegendOptions & Am4DonutOptions & Am4ChartOptions;
1417
+ export type AmCharts4DonutChartOptions = Am4PieSeriesOptions & Am4PieLabelOptions & Am4LabelOptions & Am4DonutLegendOptions & Am4DonutOptions & Am4ChartOptions;
1378
1418
  /**
1379
1419
  * The corresponding AmCharts 4 chart class is GaugeChart.
1380
1420
  */
1381
- export declare type AmCharts4GaugeChartOptions = Am4GaugeHandOptions & Am4GaugeAxisOptions & Am4LabelOptions & Am4GaugeOptions & Am4ChartOptions;
1421
+ export type AmCharts4GaugeChartOptions = Am4GaugeHandOptions & Am4GaugeAxisOptions & Am4LabelOptions & Am4GaugeOptions & Am4ChartOptions;
1382
1422
  /**
1383
1423
  * The corresponding AmCharts 4 chart class is XYChart.
1384
1424
  */
1385
- export declare type AmCharts4HistogramOptions = Am4SimpleCategoryAxisOptions & Am4ValueAxisOptions & Am4SimpleColumnSeriesOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4LegendOptions & TidyHistogramOptions;
1425
+ export type AmCharts4HistogramOptions = Am4SimpleCategoryAxisOptions & Am4ValueAxisOptions & Am4SimpleColumnSeriesOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4LegendOptions & TidyHistogramOptions;
1386
1426
  /**
1387
1427
  * The corresponding AmCharts 4 chart class is SankeyDiagram.
1388
1428
  */
1389
- export declare type AmCharts4SankeyDiagramOptions = Am4SankeyFlowOptions & Am4SankeyNodeOptions & Am4SankeyDiagramOptions & Am4ChartOptions;
1429
+ export type AmCharts4SankeyDiagramOptions = Am4SankeyFlowOptions & Am4SankeyNodeOptions & Am4SankeyDiagramOptions & Am4ChartOptions;
1390
1430
  /**
1391
1431
  * The corresponding AmCharts 4 chart class is TreeMap.
1392
1432
  */
1393
- export declare type AmCharts4TreemapOptions = Am4ChartOptions & Am4LegendOptions & Am4TreeMapSeriesOptions;
1433
+ export type AmCharts4TreemapOptions = Am4ChartOptions & Am4LegendOptions & Am4TreeMapSeriesOptions;
1394
1434
  /**
1395
1435
  * The corresponding AmCharts 4 chart class is MapChart.
1396
1436
  */
1397
- export declare type GeoMapChartOptions = Am4GeoSeriesOptions;
1437
+ export type GeoMapChartOptions = Am4GeoSeriesOptions;
1398
1438
  /**
1399
1439
  * The corresponding AmCharts 4 chart class is XYChart.
1400
1440
  */
1401
- export declare type AmCharts4BubbleChartOptions = Am4SecondValueAxisOptions & Am4ValueAxisOptions & Am4BubbleSeriesOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4ScatterTrendLineOptions & Am4ScrollbarOptions & Am4LegendOptions & Am4ChartOptions;
1441
+ export type AmCharts4BubbleChartOptions = Am4SecondValueAxisOptions & Am4ValueAxisOptions & Am4BubbleSeriesOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4ScatterTrendLineOptions & Am4ScrollbarOptions & Am4LegendOptions & Am4ChartOptions;
1402
1442
  /**
1403
1443
  * The corresponding AmCharts 4 chart class is XYChart.
1404
1444
  */
1405
- export declare type AmCharts4ComboChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4SecondValueAxisOptions & Am4ComboSeriesOptions & Am4LegendOptions & Am4ChartCursorOptions & Am4ScrollbarOptions & Am4ChartOptions;
1406
- export declare type AmCharts4CoordinateChartOptions = Am4TrendLineOptions;
1445
+ export type AmCharts4ComboChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4SecondValueAxisOptions & Am4ComboSeriesOptions & Am4LegendOptions & Am4ChartCursorOptions & Am4ScrollbarOptions & Am4ChartOptions;
1446
+ export type AmCharts4CoordinateChartOptions = Am4TrendLineOptions;
1407
1447
  /**
1408
1448
  * The corresponding AmCharts 4 chart class is XYChart.
1409
1449
  */
1410
- export declare type AmCharts4RegularAreaChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4LineSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ValueAxisRangeOptions & Am4ChartOptions;
1450
+ export type AmCharts4RegularAreaChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4LineSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ValueAxisRangeOptions & Am4ChartOptions;
1411
1451
  /**
1412
1452
  * The corresponding AmCharts 4 chart class is XYChart.
1413
1453
  */
1414
- export declare type AmCharts4RegularBarChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4ColumnSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ValueAxisRangeOptions & Am4ChartOptions;
1454
+ export type AmCharts4RegularBarChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4ColumnSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ValueAxisRangeOptions & Am4ChartOptions;
1415
1455
  /**
1416
1456
  * The corresponding AmCharts 4 chart class is XYChart.
1417
1457
  */
1418
- export declare type AmCharts4DivergentBarChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4DivergentBarSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4ScrollbarOptions & Am4ValueAxisRangeOptions & Am4ChartOptions;
1458
+ export type AmCharts4DivergentBarChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4DivergentBarSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4ScrollbarOptions & Am4ValueAxisRangeOptions & Am4ChartOptions;
1419
1459
  /**
1420
1460
  * The corresponding AmCharts 4 chart class is XYChart.
1421
1461
  */
1422
- export declare type AmCharts4RegularColumnChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4ValueAxisRangeOptions & Am4ColumnSeriesOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4LegendOptions;
1462
+ export type AmCharts4RegularColumnChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4ValueAxisRangeOptions & Am4ColumnSeriesOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4LegendOptions;
1423
1463
  /**
1424
1464
  * The corresponding AmCharts 4 chart class is XYChart.
1425
1465
  */
1426
- export declare type AmCharts4RegularLineChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4LineSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4ValueAxisRangeOptions;
1466
+ export type AmCharts4RegularLineChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4LineSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4ValueAxisRangeOptions;
1427
1467
  /**
1428
1468
  * The corresponding AmCharts 4 chart class is XYChart.
1429
1469
  */
1430
- export declare type AmCharts4ScatterPlotOptions = Am4SecondValueAxisOptions & Am4ValueAxisOptions & Am4ScatterSeriesOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4ScatterTrendLineOptions & Am4ScrollbarOptions & Am4LegendOptions & Am4ChartOptions;
1470
+ export type AmCharts4ScatterPlotOptions = Am4SecondValueAxisOptions & Am4ValueAxisOptions & Am4ScatterSeriesOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4ScatterTrendLineOptions & Am4ScrollbarOptions & Am4LegendOptions & Am4ChartOptions;
1431
1471
  /**
1432
1472
  * The corresponding AmCharts 4 chart class is XYChart.
1433
1473
  */
1434
- export declare type AmCharts4StackedAreaChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4LineSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4ValueAxisRangeOptions;
1474
+ export type AmCharts4StackedAreaChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4LineSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4ValueAxisRangeOptions;
1435
1475
  /**
1436
1476
  * The corresponding AmCharts 4 chart class is XYChart.
1437
1477
  */
1438
- export declare type AmCharts4StackedBarChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4ColumnSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4ValueAxisRangeOptions;
1478
+ export type AmCharts4StackedBarChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4ColumnSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4ValueAxisRangeOptions;
1439
1479
  /**
1440
1480
  * The corresponding AmCharts 4 chart class is XYChart.
1441
1481
  */
1442
- export declare type AmCharts4StackedColumnChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4ColumnSeriesOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4LegendOptions & Am4ValueAxisRangeOptions;
1482
+ export type AmCharts4StackedColumnChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4ColumnSeriesOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4LegendOptions & Am4ValueAxisRangeOptions;
@@ -24,6 +24,10 @@ export interface DatePickerChartOptions extends FormFieldObject {
24
24
  * Display this text when the datepicker is empty.
25
25
  */
26
26
  helperText?: string;
27
+ /**
28
+ * Text to show when the filter is empty.
29
+ */
30
+ placeholderText?: string;
27
31
  /**
28
32
  * Input Date Format.
29
33
  *
@@ -89,6 +93,10 @@ export interface DatePickerChartOptions extends FormFieldObject {
89
93
  * Placeholder value for the end of the range. The widget shows this when the end of the range is empty.
90
94
  */
91
95
  helperEndText?: string;
96
+ /**
97
+ * Text to show when the second date picker is empty.
98
+ */
99
+ placeholderTextEnd?: string;
92
100
  /**
93
101
  * Range Picker: Center Text.
94
102
  *
@@ -27,6 +27,10 @@ export declare class EditorAppTopBarClasses {
27
27
  * Style applied to
28
28
  */
29
29
  static readonly leftSpacer: string;
30
+ /**
31
+ * Style applied to
32
+ */
33
+ static readonly fileButtonsSpacer: string;
30
34
  /**
31
35
  * Style applied to
32
36
  */
@@ -32,6 +32,10 @@ EditorAppTopBarClasses.topRightBar = "ic3EditorTopBar-topRightBar";
32
32
  * Style applied to
33
33
  */
34
34
  EditorAppTopBarClasses.leftSpacer = "ic3EditorTopBar-leftSpacer";
35
+ /**
36
+ * Style applied to
37
+ */
38
+ EditorAppTopBarClasses.fileButtonsSpacer = "ic3EditorTopBar-fileButtonsSpacer";
35
39
  /**
36
40
  * Style applied to
37
41
  */
@@ -1 +1 @@
1
- {"version":3,"file":"ThemeEditorTopBar.js","sourceRoot":"","sources":["../../src/theme/ThemeEditorTopBar.ts"],"names":[],"mappings":";;;AAAA,MAAa,sBAAsB;;AAAnC,wDAoCC;AAnCG;;GAEG;AACa,2BAAI,GAAW,sBAAsB,CAAC;AACtD;;GAEG;AACa,2BAAI,GAAW,sBAAsB,CAAC;AAEtD;;GAEG;AACa,8BAAO,GAAW,yBAAyB,CAAC;AAE5D;;GAEG;AACa,4BAAK,GAAW,uBAAuB,CAAC;AACxD;;GAEG;AACa,iCAAU,GAAW,4BAA4B,CAAC;AAElE;;GAEG;AACa,kCAAW,GAAW,6BAA6B,CAAC;AACpE;;GAEG;AACa,iCAAU,GAAW,4BAA4B,CAAC;AAClE;;GAEG;AACa,iCAAU,GAAW,4BAA4B,CAAC"}
1
+ {"version":3,"file":"ThemeEditorTopBar.js","sourceRoot":"","sources":["../../src/theme/ThemeEditorTopBar.ts"],"names":[],"mappings":";;;AAAA,MAAa,sBAAsB;;AAAnC,wDAwCC;AAvCG;;GAEG;AACa,2BAAI,GAAW,sBAAsB,CAAC;AACtD;;GAEG;AACa,2BAAI,GAAW,sBAAsB,CAAC;AAEtD;;GAEG;AACa,8BAAO,GAAW,yBAAyB,CAAC;AAE5D;;GAEG;AACa,4BAAK,GAAW,uBAAuB,CAAC;AACxD;;GAEG;AACa,iCAAU,GAAW,4BAA4B,CAAC;AAElE;;GAEG;AACa,kCAAW,GAAW,6BAA6B,CAAC;AACpE;;GAEG;AACa,iCAAU,GAAW,4BAA4B,CAAC;AAClE;;GAEG;AACa,wCAAiB,GAAW,mCAAmC,CAAC;AAChF;;GAEG;AACa,iCAAU,GAAW,4BAA4B,CAAC"}
@@ -25,7 +25,8 @@ export interface FilterAutocompleteChartOptions extends FilterTidyTableChartOpti
25
25
  *
26
26
  * Allows for selecting a set of preset options. Note that a variant is possibly overriding defined options.
27
27
  */
28
- variant: string;
28
+ variant?: string;
29
+ inputVariant: "standard" | "filled" | "outlined";
29
30
  /**
30
31
  * Size.
31
32
  *
@@ -38,4 +39,8 @@ export interface FilterAutocompleteChartOptions extends FilterTidyTableChartOpti
38
39
  * Maximum number of chips that will be visible
39
40
  */
40
41
  limitChips: number;
42
+ /**
43
+ * Text to show when the filter is empty.
44
+ */
45
+ placeholderText?: string;
41
46
  }
@@ -152,4 +152,8 @@ export interface FilterPanelChartOptions extends FormFieldObject {
152
152
  * has <= `useSimpleFilterCutoff` members.
153
153
  */
154
154
  useSimpleFilterCutoff?: number;
155
+ /**
156
+ * Per default, the filter panel allows users to filter on properties. You can disable that with this option.
157
+ */
158
+ hidePropertyFilters?: boolean;
155
159
  }
@@ -16,7 +16,7 @@ export declare class FilterTreeClasses extends LazyTreeClasses {
16
16
  static itemLabelWithIcons: "ic3TreeFilter-itemLabelWithIcons";
17
17
  }
18
18
  export declare type FilterTreeClassKey = keyof FilterTreeClasses;
19
- export declare type FilterFireEventMode = TreeFireEventMode.ALL_SELECTED | TreeFireEventMode.COMPACT_ON_PARENT;
19
+ export type FilterFireEventMode = TreeFireEventMode.ALL_SELECTED | TreeFireEventMode.COMPACT_ON_PARENT;
20
20
  /**
21
21
  * Filter Tree Options (fields of the "Chart" tab in the widget editor).
22
22
  *
@@ -6,7 +6,7 @@ export declare class HtmlBoxClasses {
6
6
  static root: string;
7
7
  }
8
8
  export declare type HtmlBoxClassKey = keyof HtmlBoxClasses;
9
- export declare type HtmlBoxVariant = "plain" |
9
+ export type HtmlBoxVariant = "plain" |
10
10
  /**
11
11
  * Used by the editor documentation dialog and text box used for Live Demo documentation.
12
12
  */
@@ -12,3 +12,4 @@ export declare class LazyTreeClasses {
12
12
  /** Styles applied to the TreeRoot element */
13
13
  static readonly treeRoot = "ic3LazyTreeView-treeRoot";
14
14
  }
15
+ export declare type LazyTreeClassesClassKey = keyof LazyTreeClasses;
@@ -0,0 +1,5 @@
1
+ export declare class ListCounterClasses {
2
+ static readonly counter = "ic3Counter";
3
+ static readonly label = "ic3ListCounter-Label";
4
+ }
5
+ export declare type ListCounterClassKey = keyof ListCounterClasses;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListCounterClasses = void 0;
4
+ class ListCounterClasses {
5
+ }
6
+ exports.ListCounterClasses = ListCounterClasses;
7
+ ListCounterClasses.counter = "ic3Counter";
8
+ ListCounterClasses.label = "ic3ListCounter-Label";
9
+ //# sourceMappingURL=ThemeListCounter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ThemeListCounter.js","sourceRoot":"","sources":["../../src/theme/ThemeListCounter.ts"],"names":[],"mappings":";;;AACA,MAAa,kBAAkB;;AAA/B,gDAMC;AAJmB,0BAAO,GAAG,YAAY,CAAC;AAEvB,wBAAK,GAAG,sBAAsB,CAAC"}
@@ -0,0 +1,22 @@
1
+ import { FormFieldObject } from "../PublicTemplateForm";
2
+ export declare class PrintButtonClasses {
3
+ static readonly root: string;
4
+ static readonly progress: string;
5
+ static readonly cancel: string;
6
+ }
7
+ export declare type PrintButtonClassKey = keyof PrintButtonClasses;
8
+ /**
9
+ * Print Button Options (fields of the "Chart" tab in the widget editor).
10
+ *
11
+ * <pre>
12
+ * Plugin ID : ic3
13
+ * Widget/Template ID: PrintButton
14
+ * </pre>
15
+ *
16
+ * @see WidgetTemplateChartOptions
17
+ */
18
+ export interface PrintButtonChartOptions extends FormFieldObject {
19
+ caption: string;
20
+ variant: "text" | "outlined" | "contained" | string;
21
+ withDialog: boolean;
22
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PrintButtonClasses = void 0;
4
+ class PrintButtonClasses {
5
+ }
6
+ exports.PrintButtonClasses = PrintButtonClasses;
7
+ PrintButtonClasses.root = "ic3PrintButton";
8
+ PrintButtonClasses.progress = "ic3PrintButton-progress";
9
+ PrintButtonClasses.cancel = "ic3PrintButton-cancel";
10
+ //# sourceMappingURL=ThemePrintButton.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ThemePrintButton.js","sourceRoot":"","sources":["../../src/theme/ThemePrintButton.ts"],"names":[],"mappings":";;;AAEA,MAAa,kBAAkB;;AAA/B,gDAQC;AANmB,uBAAI,GAAW,gBAAgB,CAAC;AAEhC,2BAAQ,GAAW,yBAAyB,CAAC;AAE7C,yBAAM,GAAW,uBAAuB,CAAC"}
@@ -0,0 +1,18 @@
1
+ import { FormFieldObject } from "../PublicTemplateForm";
2
+ import { FilterPanelChartOptions } from "./ThemeFilterPanel";
3
+ /**
4
+ * Single Panel Filter Options (fields of the "Chart" tab in the widget editor).
5
+ *
6
+ * <pre>
7
+ * Plugin ID : ic3
8
+ * Widget/Template ID: SinglePanelFilter
9
+ * </pre>
10
+ *
11
+ * @see WidgetTemplateChartOptions
12
+ */
13
+ export interface SinglePanelFilterChartOptions extends FormFieldObject, Pick<FilterPanelChartOptions, "variant" | "measureMdx" | "useSimpleFilterCutoff"> {
14
+ /**
15
+ * The id of the level / hierarchy that is used in the filter.
16
+ */
17
+ levelId: string;
18
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ThemeSinglePanelFilter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ThemeSinglePanelFilter.js","sourceRoot":"","sources":["../../src/theme/ThemeSinglePanelFilter.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ic3/reporting-api",
3
- "version": "8.3.0-alpha.1",
3
+ "version": "8.3.0",
4
4
  "description": "icCube dashboards API",
5
5
  "homepage": "https://github.com/ic3-software/ic3-reporting-api",
6
6
  "repository": "https://github.com/ic3-software/ic3-reporting-api",
@@ -14,14 +14,14 @@
14
14
  "access": "public"
15
15
  },
16
16
  "devDependencies": {
17
- "@mui/material": "5.10.10",
18
- "@mui/system": "5.10.10",
17
+ "@mui/material": "5.11.2",
18
+ "@mui/system": "5.11.2",
19
19
  "@types/googlemaps": "3.43.3",
20
20
  "@types/markerclustererplus": "2.1.33",
21
- "@types/node": "18.11.2",
21
+ "@types/node": "18.11.18",
22
22
  "@types/react": "17.0.43",
23
23
  "del-cli": "5.0.0",
24
- "typescript": "4.8.4"
24
+ "typescript": "4.9.4"
25
25
  },
26
26
  "scripts": {
27
27
  "build": "del-cli dist && npx tsc",