@ic3/reporting-api 8.0.0-alpha.9 → 8.0.0-rc.4
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/dist/ApiUtils.d.ts +10 -0
- package/dist/ApiUtils.js +25 -1
- package/dist/ApiUtils.js.map +1 -1
- package/dist/INotification.d.ts +33 -0
- package/dist/INotification.js +3 -0
- package/dist/INotification.js.map +1 -0
- package/dist/IPluginDefinition.d.ts +4 -1
- package/dist/IReporting.d.ts +43 -4
- package/dist/IThemeManager.d.ts +1 -1
- package/dist/ITidyTableTransformation.d.ts +20 -1
- package/dist/ITypes.d.ts +3 -0
- package/dist/ITypes.js +3 -0
- package/dist/ITypes.js.map +1 -0
- package/dist/IWidgetVariantManager.d.ts +1 -1
- package/dist/LazyTreeView.d.ts +43 -1
- package/dist/LazyTreeView.js +5 -1
- package/dist/LazyTreeView.js.map +1 -1
- package/dist/Loader.d.ts +10 -0
- package/dist/Loader.js +33 -0
- package/dist/Loader.js.map +1 -0
- package/dist/PublicContext.d.ts +75 -10
- package/dist/PublicContext.js.map +1 -1
- package/dist/PublicLayout.d.ts +13 -29
- package/dist/PublicTemplate.d.ts +161 -58
- package/dist/PublicTemplate.js +16 -1
- package/dist/PublicTemplate.js.map +1 -1
- package/dist/PublicTemplateForm.d.ts +183 -20
- package/dist/PublicTemplateForm.js +7 -1
- package/dist/PublicTemplateForm.js.map +1 -1
- package/dist/PublicTheme.d.ts +165 -69
- package/dist/PublicTheme.js.map +1 -1
- package/dist/PublicTidyColumn.d.ts +331 -259
- package/dist/PublicTidyColumn.js +48 -2
- package/dist/PublicTidyColumn.js.map +1 -1
- package/dist/PublicTidyHistogram.d.ts +24 -0
- package/dist/PublicTidyHistogram.js +77 -0
- package/dist/PublicTidyHistogram.js.map +1 -0
- package/dist/PublicTidyMath.d.ts +49 -45
- package/dist/PublicTidyMath.js +0 -280
- package/dist/PublicTidyMath.js.map +1 -1
- package/dist/PublicTidyTable.d.ts +170 -154
- package/dist/PublicTidyTableInteractions.d.ts +34 -23
- package/dist/PublicTidyTableInteractions.js +5 -4
- package/dist/PublicTidyTableInteractions.js.map +1 -1
- package/dist/PublicTidyTableTypes.d.ts +133 -55
- package/dist/PublicTidyTableTypes.js +35 -18
- package/dist/PublicTidyTableTypes.js.map +1 -1
- package/dist/PublicTidyTree.d.ts +27 -37
- package/dist/PublicTidyTree.js +30 -58
- package/dist/PublicTidyTree.js.map +1 -1
- package/dist/RemoteContainerUtils.d.ts +1 -1
- package/dist/RemoteContainerUtils.js +9 -1
- package/dist/RemoteContainerUtils.js.map +1 -1
- package/dist/index.d.ts +12 -0
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/dist/theme/ThemeFilterAutocomplete.d.ts +30 -0
- package/dist/theme/ThemeFilterAutocomplete.js +23 -0
- package/dist/theme/ThemeFilterAutocomplete.js.map +1 -0
- package/dist/theme/ThemeFilterButtons.d.ts +14 -2
- package/dist/theme/ThemeFilterButtons.js +4 -0
- package/dist/theme/ThemeFilterButtons.js.map +1 -1
- package/dist/theme/ThemeFilterCheckboxes.d.ts +18 -0
- package/dist/theme/ThemeFilterCheckboxes.js +11 -0
- package/dist/theme/ThemeFilterCheckboxes.js.map +1 -0
- package/dist/theme/ThemeFilterTree.d.ts +70 -0
- package/dist/theme/ThemeFilterTree.js +11 -0
- package/dist/theme/ThemeFilterTree.js.map +1 -0
- package/dist/theme/ThemeGoogleMapMarker.d.ts +51 -0
- package/dist/theme/ThemeGoogleMapMarker.js +3 -0
- package/dist/theme/ThemeGoogleMapMarker.js.map +1 -0
- package/dist/theme/ThemeHtmlBox.d.ts +7 -1
- package/dist/theme/ThemePivotTable.d.ts +23 -0
- package/dist/theme/ThemePivotTable.js +21 -0
- package/dist/theme/ThemePivotTable.js.map +1 -0
- package/dist/theme/ThemeTable.d.ts +99 -0
- package/dist/theme/ThemeTable.js +169 -0
- package/dist/theme/ThemeTable.js.map +1 -0
- package/package.json +9 -8
package/dist/PublicTidyTree.js
CHANGED
|
@@ -2,41 +2,48 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.TidyTree = void 0;
|
|
4
4
|
/**
|
|
5
|
-
* A tree structure that was generated from a TidyTable
|
|
6
|
-
* node. It makes 'sense'
|
|
5
|
+
* A tree structure that was generated from a TidyTable.
|
|
7
6
|
*
|
|
8
|
-
*
|
|
7
|
+
* Table:
|
|
8
|
+
* budget type | cc
|
|
9
|
+
* Monthly Budget | Savings
|
|
10
|
+
* Monthly Budget | Mortgage/Rent
|
|
11
|
+
* Yearly Budget | Car Payment
|
|
9
12
|
*
|
|
10
|
-
*
|
|
13
|
+
* converts to <nodeLabel> <rowIds>:
|
|
14
|
+
* root [0,1,2]
|
|
11
15
|
* |
|
|
12
|
-
* ---
|
|
16
|
+
* --- Monthly Budget [0,1]
|
|
13
17
|
* | |
|
|
14
|
-
* | ---
|
|
18
|
+
* | --- Savings [0]
|
|
15
19
|
* | |
|
|
16
|
-
* | ---
|
|
20
|
+
* | --- Mortgage/Rent [1]
|
|
17
21
|
* |
|
|
18
|
-
* ---
|
|
22
|
+
* --- Yearly Budget [3]
|
|
19
23
|
* |
|
|
20
|
-
* ---
|
|
24
|
+
* --- Car Payment [3]
|
|
21
25
|
*
|
|
22
|
-
* the values of the measures are added to the leafs
|
|
23
26
|
*/
|
|
24
27
|
class TidyTree {
|
|
25
|
-
constructor(
|
|
26
|
-
this.measures = measures;
|
|
28
|
+
constructor(root) {
|
|
27
29
|
this.root = root !== null && root !== void 0 ? root : {
|
|
28
|
-
|
|
30
|
+
rowIds: [],
|
|
29
31
|
nodeLabel: 'root',
|
|
30
32
|
children: [],
|
|
31
|
-
measures: []
|
|
32
33
|
};
|
|
33
34
|
}
|
|
35
|
+
/**
|
|
36
|
+
* A unique id for each node of the tree
|
|
37
|
+
* returns levelDepth + "--" + node.nodeLabel
|
|
38
|
+
*/
|
|
39
|
+
static getUniqueId(node, levelDepth) {
|
|
40
|
+
return levelDepth + "--" + node.nodeLabel + "--" + node.rowIds[0];
|
|
41
|
+
}
|
|
34
42
|
/**
|
|
35
43
|
* Performs the specified action on each node of the tree
|
|
36
|
-
*
|
|
37
44
|
* if callbackfn return false, it will not perform a foreach on it's children
|
|
38
45
|
*/
|
|
39
|
-
|
|
46
|
+
forEach(callbackfn) {
|
|
40
47
|
function forEachNested(children, levelDepth, parent, callbackfn) {
|
|
41
48
|
children.forEach((node, idx) => {
|
|
42
49
|
if (callbackfn(node, levelDepth, parent, idx) !== false) {
|
|
@@ -44,55 +51,20 @@ class TidyTree {
|
|
|
44
51
|
}
|
|
45
52
|
});
|
|
46
53
|
}
|
|
47
|
-
|
|
48
|
-
forEachNested(this.root.children, 1, this.root, callbackfn);
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
/**
|
|
52
|
-
* A unique id for each node of the tree
|
|
53
|
-
* returns levelDepth + "--" + node.nodeLabel
|
|
54
|
-
*/
|
|
55
|
-
static uniqueId(node, levelDepth) {
|
|
56
|
-
return levelDepth + "--" + node.nodeLabel;
|
|
54
|
+
forEachNested(this.root.children, 1, this.root, callbackfn);
|
|
57
55
|
}
|
|
58
56
|
/**
|
|
59
57
|
* aggregates all children measures values on parents using aggregation function recursively
|
|
60
|
-
*
|
|
61
58
|
* aggrfn is sum by default
|
|
62
59
|
*/
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
children.forEach(node => {
|
|
68
|
-
const measValues = node.children.length !== 0 ? aggregateChildren(node.children) : node.measures;
|
|
69
|
-
node.measures = measValues;
|
|
70
|
-
for (let i = 0; i < measValues.length; i++) {
|
|
71
|
-
const childMeasure = measValues[i];
|
|
72
|
-
if (childMeasure != null) {
|
|
73
|
-
nodeMeasures[i] = aggregateValues(nodeMeasures[i], childMeasure);
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
});
|
|
77
|
-
return nodeMeasures;
|
|
60
|
+
getNodeValue(node, measure, aggrfn) {
|
|
61
|
+
var _a;
|
|
62
|
+
if ((_a = node.originalColumn) === null || _a === void 0 ? void 0 : _a.isHierarchy()) {
|
|
63
|
+
return measure.getValue(node.rowIds[0]);
|
|
78
64
|
}
|
|
79
|
-
|
|
80
|
-
}
|
|
81
|
-
/**
|
|
82
|
-
* Aggregates for all no root nodes on the uniqueId at measureIdx
|
|
83
|
-
*
|
|
84
|
-
* if the getter returns the leveldepth it will aggregate all nodes for the same level.
|
|
85
|
-
* if the getter returns the nodelabel it will aggregate all nodes with the same label (you can add the level depth to ensure uniqueness).
|
|
86
|
-
*
|
|
87
|
-
*/
|
|
88
|
-
aggregateOnId(idGetter, measureIdx = 0, aggrfn) {
|
|
89
|
-
const nodeValues = new Map();
|
|
65
|
+
const values = node.rowIds.map(i => measure.getValue(i));
|
|
90
66
|
const aggregateValues = aggrfn !== null && aggrfn !== void 0 ? aggrfn : sumAggregation;
|
|
91
|
-
|
|
92
|
-
const id = idGetter(node, levelDepth);
|
|
93
|
-
nodeValues.set(id, aggregateValues(nodeValues.get(id), node.measures[measureIdx]));
|
|
94
|
-
});
|
|
95
|
-
return nodeValues;
|
|
67
|
+
return values.reduce(aggregateValues);
|
|
96
68
|
}
|
|
97
69
|
}
|
|
98
70
|
exports.TidyTree = TidyTree;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PublicTidyTree.js","sourceRoot":"","sources":["../src/PublicTidyTree.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"PublicTidyTree.js","sourceRoot":"","sources":["../src/PublicTidyTree.ts"],"names":[],"mappings":";;;AA8BA;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAa,QAAQ;IAIjB,YAAY,IAAmB;QAC3B,IAAI,CAAC,IAAI,GAAG,IAAI,aAAJ,IAAI,cAAJ,IAAI,GAAI;YAChB,MAAM,EAAE,EAAE;YACV,SAAS,EAAE,MAAM;YACjB,QAAQ,EAAE,EAAE;SACf,CAAC;IACN,CAAC;IAED;;;OAGG;IACH,MAAM,CAAC,WAAW,CAAC,IAAkB,EAAE,UAAkB;QACrD,OAAO,UAAU,GAAG,IAAI,GAAG,IAAI,CAAC,SAAS,GAAG,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;IACtE,CAAC;IAED;;;OAGG;IACH,OAAO,CAAC,UAAyH;QAC7H,SAAS,aAAa,CAAC,QAAwB,EAAE,UAAkB,EAAE,MAAoB,EAAE,UAAyH;YAChN,QAAQ,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE;gBAC3B,IAAI,UAAU,CAAC,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,GAAG,CAAC,KAAK,KAAK,EAAE;oBACrD,aAAa,CAAC,IAAI,CAAC,QAAQ,EAAE,UAAU,GAAG,CAAC,EAAE,IAAI,EAAE,UAAU,CAAC,CAAC;iBAClE;YACL,CAAC,CAAC,CAAA;QACN,CAAC;QAED,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;IAChE,CAAC;IAED;;;OAGG;IACH,YAAY,CAAI,IAAkB,EAAE,OAA2B,EAAE,MAAwB;;QACrF,IAAI,MAAA,IAAI,CAAC,cAAc,0CAAE,WAAW,EAAE,EAAE;YACpC,OAAO,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;SAC3C;QACD,MAAM,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;QACzD,MAAM,eAAe,GAAG,MAAM,aAAN,MAAM,cAAN,MAAM,GAAI,cAAc,CAAC;QACjD,OAAO,MAAM,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC;IAC1C,CAAC;CACJ;AAhDD,4BAgDC;AAED,SAAS,cAAc,CAAC,CAAM,EAAE,CAAM;IAClC,IAAI,CAAC,IAAI,IAAI;QACT,OAAO,CAAC,CAAC;IACb,IAAI,CAAC,IAAI,IAAI;QACT,OAAO,CAAC,CAAC;IACb,OAAO,CAAC,GAAG,CAAC,CAAC;AACjB,CAAC"}
|
|
@@ -4,6 +4,6 @@ export interface IScriptCallback {
|
|
|
4
4
|
onError: (event: Event | string, source?: string, lineno?: number, colno?: number, error?: Error) => void;
|
|
5
5
|
}
|
|
6
6
|
export declare class RemoteContainerUtils {
|
|
7
|
-
static loadScript(url: string, callback: IScriptCallback): void;
|
|
7
|
+
static loadScript(tenant: string | null, url: string, callback: IScriptCallback): void;
|
|
8
8
|
static loadModule(scope: string, module: string): () => Promise<any>;
|
|
9
9
|
}
|
|
@@ -12,7 +12,15 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
13
|
exports.RemoteContainerUtils = void 0;
|
|
14
14
|
class RemoteContainerUtils {
|
|
15
|
-
static loadScript(url, callback) {
|
|
15
|
+
static loadScript(tenant, url, callback) {
|
|
16
|
+
if (tenant) {
|
|
17
|
+
tenant = encodeURIComponent(tenant) + "_";
|
|
18
|
+
}
|
|
19
|
+
else {
|
|
20
|
+
tenant = "";
|
|
21
|
+
}
|
|
22
|
+
url = url + (url.indexOf("?") === -1 ? "?" : "&") + "t=" + tenant + new Date().getTime() /* cache busting */;
|
|
23
|
+
console.log("[RemotePlugin] Setup Remote Plugin (load-script) [" + url + "]");
|
|
16
24
|
const element = document.createElement("script");
|
|
17
25
|
element.src = url;
|
|
18
26
|
element.type = "text/javascript";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RemoteContainerUtils.js","sourceRoot":"","sources":["../src/RemoteContainerUtils.ts"],"names":[],"mappings":";AAAA,iDAAiD,CAAE,UAAU;;;;;;;;;;;;AAS7D,MAAa,oBAAoB;IAEtB,MAAM,CAAC,UAAU,CAAC,GAAW,EAAE,QAAyB;
|
|
1
|
+
{"version":3,"file":"RemoteContainerUtils.js","sourceRoot":"","sources":["../src/RemoteContainerUtils.ts"],"names":[],"mappings":";AAAA,iDAAiD,CAAE,UAAU;;;;;;;;;;;;AAS7D,MAAa,oBAAoB;IAEtB,MAAM,CAAC,UAAU,CAAC,MAAqB,EAAE,GAAW,EAAE,QAAyB;QAElF,IAAI,MAAM,EAAE;YACR,MAAM,GAAG,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,CAAC;SAC7C;aAAM;YACH,MAAM,GAAG,EAAE,CAAC;SACf;QAED,GAAG,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,MAAM,GAAG,IAAI,IAAI,EAAE,CAAC,OAAO,EAAE,CAAC,mBAAmB,CAAC;QAE7G,OAAO,CAAC,GAAG,CAAC,oDAAoD,GAAG,GAAG,GAAG,GAAG,CAAC,CAAC;QAE9E,MAAM,OAAO,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;QAEjD,OAAO,CAAC,GAAG,GAAG,GAAG,CAAC;QAClB,OAAO,CAAC,IAAI,GAAG,iBAAiB,CAAC;QACjC,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC;QAErB,OAAO,CAAC,MAAM,GAAG,GAAG,EAAE;YAClB,QAAQ,CAAC,SAAS,EAAE,CAAC;QACzB,CAAC,CAAC;QAEF,OAAO,CAAC,OAAO,GAAG,CAAC,KAAqB,EAAE,MAAe,EAAE,MAAe,EAAE,KAAc,EAAE,KAAa,EAAE,EAAE;YACzG,QAAQ,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;QAC1D,CAAC,CAAC;QAEF,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;IACvC,CAAC;IAEM,MAAM,CAAC,UAAU,CAAC,KAAa,EAAE,MAAc;QAElD,2EAA2E;QAC3E,+DAA+D;QAE/D,8EAA8E;QAC9E,4CAA4C;QAE5C,OAAO,GAAuB,EAAE;YAE5B,yEAAyE;YACzE,mCAAmC;YAEnC,aAAa;YACb,MAAM,wBAAwB,CAAC,SAAS,CAAC,CAAC;YAE1C,sCAAsC;YACtC,MAAM,SAAS,GAAI,MAAc,CAAC,KAAK,CAAC,CAAC;YAEzC,0DAA0D;YAE1D,aAAa;YACb,MAAM,SAAS,CAAC,IAAI,CAAC,wBAAwB,CAAC,OAAO,CAAC,CAAC;YACvD,MAAM,OAAO,GAAG,MAAO,MAAc,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;YAEzD,MAAM,MAAM,GAAG,OAAO,EAAE,CAAC;YACzB,OAAO,MAAM,CAAC;QAClB,CAAC,CAAA,CAAC;IACN,CAAC;CAGJ;AA9DD,oDA8DC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
export * from "./ApiUtils";
|
|
2
2
|
export * from "./IcEvent";
|
|
3
3
|
export * from "./ILocalizationManager";
|
|
4
|
+
export * from "./INotification";
|
|
4
5
|
export * from "./IPluginDefinition";
|
|
5
6
|
export * from "./IRemotePluginName";
|
|
6
7
|
export * from "./IReporting";
|
|
7
8
|
export * from "./IThemeManager";
|
|
8
9
|
export * from "./ITidyTableTransformation";
|
|
9
10
|
export * from "./ITidyTableTransformationManager";
|
|
11
|
+
export * from "./ITypes";
|
|
10
12
|
export * from "./IVersionedPluginDefinition";
|
|
11
13
|
export * from "./IWidgetDefaultsManager";
|
|
12
14
|
export * from "./IWidgetVariantManager";
|
|
13
15
|
export * from "./IWidgetManager";
|
|
14
16
|
export * from "./LazyTreeView";
|
|
17
|
+
export * from "./Loader";
|
|
15
18
|
export * from "./PublicCommon";
|
|
16
19
|
export * from "./PublicContext";
|
|
17
20
|
export * from "./PublicI18n";
|
|
@@ -25,16 +28,25 @@ export * from "./PublicTidyTable";
|
|
|
25
28
|
export * from "./PublicTidyTableInteractions";
|
|
26
29
|
export * from "./PublicTidyTableTypes";
|
|
27
30
|
export * from "./PublicTidyTree";
|
|
31
|
+
export * from "./PublicTidyHistogram";
|
|
28
32
|
export * from "./RemoteContainerUtils";
|
|
29
33
|
export * from "./ReportingVersion";
|
|
30
34
|
export * from "./theme/ThemeAlertDialog";
|
|
31
35
|
export * from "./theme/ThemeApp";
|
|
32
36
|
export * from "./theme/ThemeDrilldownUserSelectMenu";
|
|
33
37
|
export * from "./theme/ThemeErrorRenderer";
|
|
38
|
+
export * from "./theme/ThemeFilterAutocomplete";
|
|
39
|
+
export * from "./theme/ThemeFilterButtons";
|
|
40
|
+
export * from "./theme/ThemeFilterCheckboxes";
|
|
41
|
+
export * from "./theme/ThemeFilterSlider";
|
|
42
|
+
export * from "./theme/ThemeFilterTree";
|
|
43
|
+
export * from "./theme/ThemeGoogleMapMarker";
|
|
34
44
|
export * from "./theme/ThemeHtmlBox";
|
|
35
45
|
export * from "./theme/ThemeLayout";
|
|
36
46
|
export * from "./theme/ThemeLayoutPage";
|
|
47
|
+
export * from "./theme/ThemePivotTable";
|
|
37
48
|
export * from "./theme/ThemeReportAppBar";
|
|
38
49
|
export * from "./theme/ThemeReportAppMenu";
|
|
50
|
+
export * from "./theme/ThemeTable";
|
|
39
51
|
export * from "./theme/ThemeWidgetBox";
|
|
40
52
|
export * from "./theme/ThemeWidgetBoxContentMessage";
|
package/dist/index.js
CHANGED
|
@@ -13,17 +13,20 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
13
13
|
__exportStar(require("./ApiUtils"), exports);
|
|
14
14
|
__exportStar(require("./IcEvent"), exports);
|
|
15
15
|
__exportStar(require("./ILocalizationManager"), exports);
|
|
16
|
+
__exportStar(require("./INotification"), exports);
|
|
16
17
|
__exportStar(require("./IPluginDefinition"), exports);
|
|
17
18
|
__exportStar(require("./IRemotePluginName"), exports);
|
|
18
19
|
__exportStar(require("./IReporting"), exports);
|
|
19
20
|
__exportStar(require("./IThemeManager"), exports);
|
|
20
21
|
__exportStar(require("./ITidyTableTransformation"), exports);
|
|
21
22
|
__exportStar(require("./ITidyTableTransformationManager"), exports);
|
|
23
|
+
__exportStar(require("./ITypes"), exports);
|
|
22
24
|
__exportStar(require("./IVersionedPluginDefinition"), exports);
|
|
23
25
|
__exportStar(require("./IWidgetDefaultsManager"), exports);
|
|
24
26
|
__exportStar(require("./IWidgetVariantManager"), exports);
|
|
25
27
|
__exportStar(require("./IWidgetManager"), exports);
|
|
26
28
|
__exportStar(require("./LazyTreeView"), exports);
|
|
29
|
+
__exportStar(require("./Loader"), exports);
|
|
27
30
|
__exportStar(require("./PublicCommon"), exports);
|
|
28
31
|
__exportStar(require("./PublicContext"), exports);
|
|
29
32
|
__exportStar(require("./PublicI18n"), exports);
|
|
@@ -37,17 +40,26 @@ __exportStar(require("./PublicTidyTable"), exports);
|
|
|
37
40
|
__exportStar(require("./PublicTidyTableInteractions"), exports);
|
|
38
41
|
__exportStar(require("./PublicTidyTableTypes"), exports);
|
|
39
42
|
__exportStar(require("./PublicTidyTree"), exports);
|
|
43
|
+
__exportStar(require("./PublicTidyHistogram"), exports);
|
|
40
44
|
__exportStar(require("./RemoteContainerUtils"), exports);
|
|
41
45
|
__exportStar(require("./ReportingVersion"), exports);
|
|
42
46
|
__exportStar(require("./theme/ThemeAlertDialog"), exports);
|
|
43
47
|
__exportStar(require("./theme/ThemeApp"), exports);
|
|
44
48
|
__exportStar(require("./theme/ThemeDrilldownUserSelectMenu"), exports);
|
|
45
49
|
__exportStar(require("./theme/ThemeErrorRenderer"), exports);
|
|
50
|
+
__exportStar(require("./theme/ThemeFilterAutocomplete"), exports);
|
|
51
|
+
__exportStar(require("./theme/ThemeFilterButtons"), exports);
|
|
52
|
+
__exportStar(require("./theme/ThemeFilterCheckboxes"), exports);
|
|
53
|
+
__exportStar(require("./theme/ThemeFilterSlider"), exports);
|
|
54
|
+
__exportStar(require("./theme/ThemeFilterTree"), exports);
|
|
55
|
+
__exportStar(require("./theme/ThemeGoogleMapMarker"), exports);
|
|
46
56
|
__exportStar(require("./theme/ThemeHtmlBox"), exports);
|
|
47
57
|
__exportStar(require("./theme/ThemeLayout"), exports);
|
|
48
58
|
__exportStar(require("./theme/ThemeLayoutPage"), exports);
|
|
59
|
+
__exportStar(require("./theme/ThemePivotTable"), exports);
|
|
49
60
|
__exportStar(require("./theme/ThemeReportAppBar"), exports);
|
|
50
61
|
__exportStar(require("./theme/ThemeReportAppMenu"), exports);
|
|
62
|
+
__exportStar(require("./theme/ThemeTable"), exports);
|
|
51
63
|
__exportStar(require("./theme/ThemeWidgetBox"), exports);
|
|
52
64
|
__exportStar(require("./theme/ThemeWidgetBoxContentMessage"), exports);
|
|
53
65
|
//# sourceMappingURL=index.js.map
|
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,sDAAoC;AACpC,sDAAoC;AACpC,+CAA6B;AAC7B,kDAAgC;AAChC,6DAA0C;AAC1C,oEAAiD;AACjD,+DAA6C;AAC7C,2DAAyC;AACzC,0DAAwC;AACxC,mDAAiC;AACjC,iDAA+B;AAC/B,iDAA+B;AAC/B,kDAAgC;AAChC,+CAA6B;AAC7B,iDAA+B;AAC/B,mDAAiC;AACjC,uDAAqC;AACrC,gDAA8B;AAC9B,qDAAmC;AACnC,mDAAiC;AACjC,oDAAkC;AAClC,gEAA8C;AAC9C,yDAAuC;AACvC,mDAAiC;AACjC,yDAAuC;AACvC,qDAAmC;AAEnC,
|
|
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,6DAA0C;AAC1C,oEAAiD;AACjD,2CAAwB;AACxB,+DAA6C;AAC7C,2DAAyC;AACzC,0DAAwC;AACxC,mDAAiC;AACjC,iDAA+B;AAC/B,2CAAyB;AACzB,iDAA+B;AAC/B,kDAAgC;AAChC,+CAA6B;AAC7B,iDAA+B;AAC/B,mDAAiC;AACjC,uDAAqC;AACrC,gDAA8B;AAC9B,qDAAmC;AACnC,mDAAiC;AACjC,oDAAkC;AAClC,gEAA8C;AAC9C,yDAAuC;AACvC,mDAAiC;AACjC,wDAAsC;AACtC,yDAAuC;AACvC,qDAAmC;AAEnC,2DAAyC;AACzC,mDAAiC;AACjC,uEAAqD;AACrD,6DAA2C;AAC3C,kEAAgD;AAChD,6DAA2C;AAC3C,gEAA8C;AAC9C,4DAA0C;AAC1C,0DAAwC;AACxC,+DAA6C;AAC7C,uDAAqC;AACrC,sDAAoC;AACpC,0DAAwC;AACxC,0DAAwC;AACxC,4DAA0C;AAC1C,6DAA2C;AAC3C,qDAAmC;AACnC,yDAAuC;AACvC,uEAAqD"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { FormFieldObject } from "../PublicTemplateForm";
|
|
2
|
+
export interface FilterAutocompleteProps extends FormFieldObject {
|
|
3
|
+
/**
|
|
4
|
+
* Predefined variants , "filled", "outlined" + custome ones
|
|
5
|
+
*/
|
|
6
|
+
variant: string;
|
|
7
|
+
/**
|
|
8
|
+
* Size of the chips
|
|
9
|
+
*/
|
|
10
|
+
size: 'small' | 'medium';
|
|
11
|
+
/**
|
|
12
|
+
* The maximum number of chips that will be visible when not focused. Set -1 to disable the limit.
|
|
13
|
+
*/
|
|
14
|
+
limitTags: number;
|
|
15
|
+
}
|
|
16
|
+
export declare class FilterAutocompleteClasses {
|
|
17
|
+
/**
|
|
18
|
+
* Style applied to the root element
|
|
19
|
+
*/
|
|
20
|
+
static readonly root = "root";
|
|
21
|
+
/**
|
|
22
|
+
* Style applied to the muiAutocomplete root element
|
|
23
|
+
*
|
|
24
|
+
* you've all classes of autocompleteClasses
|
|
25
|
+
*
|
|
26
|
+
* @see AutocompleteClasses
|
|
27
|
+
*/
|
|
28
|
+
static readonly muiAutocomplete: string;
|
|
29
|
+
}
|
|
30
|
+
export declare type FilterAutocompleteClassesKey = keyof FilterAutocompleteClasses;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.FilterAutocompleteClasses = void 0;
|
|
7
|
+
const autocompleteClasses_1 = __importDefault(require("@mui/material/Autocomplete/autocompleteClasses"));
|
|
8
|
+
class FilterAutocompleteClasses {
|
|
9
|
+
}
|
|
10
|
+
exports.FilterAutocompleteClasses = FilterAutocompleteClasses;
|
|
11
|
+
/**
|
|
12
|
+
* Style applied to the root element
|
|
13
|
+
*/
|
|
14
|
+
FilterAutocompleteClasses.root = "root";
|
|
15
|
+
/**
|
|
16
|
+
* Style applied to the muiAutocomplete root element
|
|
17
|
+
*
|
|
18
|
+
* you've all classes of autocompleteClasses
|
|
19
|
+
*
|
|
20
|
+
* @see AutocompleteClasses
|
|
21
|
+
*/
|
|
22
|
+
FilterAutocompleteClasses.muiAutocomplete = autocompleteClasses_1.default.root;
|
|
23
|
+
//# sourceMappingURL=ThemeFilterAutocomplete.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeFilterAutocomplete.js","sourceRoot":"","sources":["../../src/theme/ThemeFilterAutocomplete.ts"],"names":[],"mappings":";;;;;;AACA,yGAAiF;AAsBjF,MAAa,yBAAyB;;AAAtC,8DAiBC;AAfG;;GAEG;AACa,8BAAI,GAAG,MAAM,CAAC;AAE9B;;;;;;GAMG;AACa,yCAAe,GAAG,6BAAmB,CAAC,IAAI,CAAC"}
|
|
@@ -1,17 +1,25 @@
|
|
|
1
1
|
import { FormFieldObject } from "../PublicTemplateForm";
|
|
2
2
|
export interface FilterButtonsProps extends FormFieldObject {
|
|
3
3
|
/**
|
|
4
|
-
* Predefined variants
|
|
4
|
+
* Predefined variants (add string to allow new variant without type augmentation)
|
|
5
5
|
*/
|
|
6
|
-
variant: '
|
|
6
|
+
variant: 'text' | 'outlined' | 'contained' | string;
|
|
7
7
|
/**
|
|
8
8
|
* Size of buttons
|
|
9
9
|
*/
|
|
10
10
|
size: 'small' | 'medium' | 'large';
|
|
11
|
+
/**
|
|
12
|
+
* If true, buttons will be grouped together (visual effect)
|
|
13
|
+
*/
|
|
14
|
+
group?: boolean;
|
|
11
15
|
/**
|
|
12
16
|
* If defined, buttons will be positioned in columns
|
|
13
17
|
*/
|
|
14
18
|
columns?: number;
|
|
19
|
+
/**
|
|
20
|
+
* If defined, buttons will be grouped by layout
|
|
21
|
+
*/
|
|
22
|
+
layout?: 'horizontal' | 'vertical';
|
|
15
23
|
}
|
|
16
24
|
export declare class FilterButtonsClasses {
|
|
17
25
|
/**
|
|
@@ -22,6 +30,10 @@ export declare class FilterButtonsClasses {
|
|
|
22
30
|
* Style applied to the mui button elements.
|
|
23
31
|
*/
|
|
24
32
|
static readonly button = "FilterSlider-button";
|
|
33
|
+
/**
|
|
34
|
+
* Style applied to the mui group element (if present).
|
|
35
|
+
*/
|
|
36
|
+
static readonly group = "FilterSlider-group";
|
|
25
37
|
/**
|
|
26
38
|
* Slot for MuiButton component(s)
|
|
27
39
|
*/
|
|
@@ -12,6 +12,10 @@ FilterButtonsClasses.root = "root";
|
|
|
12
12
|
* Style applied to the mui button elements.
|
|
13
13
|
*/
|
|
14
14
|
FilterButtonsClasses.button = "FilterSlider-button";
|
|
15
|
+
/**
|
|
16
|
+
* Style applied to the mui group element (if present).
|
|
17
|
+
*/
|
|
18
|
+
FilterButtonsClasses.group = "FilterSlider-group";
|
|
15
19
|
/**
|
|
16
20
|
* Slot for MuiButton component(s)
|
|
17
21
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeFilterButtons.js","sourceRoot":"","sources":["../../src/theme/ThemeFilterButtons.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"ThemeFilterButtons.js","sourceRoot":"","sources":["../../src/theme/ThemeFilterButtons.ts"],"names":[],"mappings":";;;AA+BA,MAAa,oBAAoB;;AAAjC,oDAsBC;AApBG;;GAEG;AACa,yBAAI,GAAG,MAAM,CAAC;AAE9B;;GAEG;AACa,2BAAM,GAAG,qBAAqB,CAAC;AAE/C;;GAEG;AACa,0BAAK,GAAG,oBAAoB,CAAC;AAE7C;;GAEG;AACa,8BAAS,GAAG,EAAE,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { FormFieldObject } from "../PublicTemplateForm";
|
|
2
|
+
export interface FilterCheckboxProps extends FormFieldObject {
|
|
3
|
+
/**
|
|
4
|
+
* Size of buttons
|
|
5
|
+
*/
|
|
6
|
+
size: 'small' | 'medium';
|
|
7
|
+
/**
|
|
8
|
+
* If defined, buttons will be positioned in columns
|
|
9
|
+
*/
|
|
10
|
+
columns?: number;
|
|
11
|
+
}
|
|
12
|
+
export declare class FilterCheckBoxesClasses {
|
|
13
|
+
/**
|
|
14
|
+
* Style applied to the root element.
|
|
15
|
+
*/
|
|
16
|
+
static readonly root = "root";
|
|
17
|
+
}
|
|
18
|
+
export declare type FilterCheckboxesClassKey = keyof FilterCheckBoxesClasses;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FilterCheckBoxesClasses = void 0;
|
|
4
|
+
class FilterCheckBoxesClasses {
|
|
5
|
+
}
|
|
6
|
+
exports.FilterCheckBoxesClasses = FilterCheckBoxesClasses;
|
|
7
|
+
/**
|
|
8
|
+
* Style applied to the root element.
|
|
9
|
+
*/
|
|
10
|
+
FilterCheckBoxesClasses.root = "root";
|
|
11
|
+
//# sourceMappingURL=ThemeFilterCheckboxes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeFilterCheckboxes.js","sourceRoot":"","sources":["../../src/theme/ThemeFilterCheckboxes.ts"],"names":[],"mappings":";;;AAeA,MAAa,uBAAuB;;AAApC,0DAMC;AAJG;;GAEG;AACa,4BAAI,GAAG,MAAM,CAAC"}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { FormFieldObject } from "../PublicTemplateForm";
|
|
2
|
+
import { TreeFireEventMode } from "../PublicTidyTableInteractions";
|
|
3
|
+
export declare type FilterFireEventMode = TreeFireEventMode.ALL_SELECTED | TreeFireEventMode.COMPACT_ON_PARENT;
|
|
4
|
+
export interface FilterTreeOptions extends FormFieldObject {
|
|
5
|
+
/**
|
|
6
|
+
* variants (if any)
|
|
7
|
+
*/
|
|
8
|
+
variant?: string;
|
|
9
|
+
/**
|
|
10
|
+
* size
|
|
11
|
+
*/
|
|
12
|
+
size: 'small' | 'medium';
|
|
13
|
+
/**
|
|
14
|
+
* add control icons for the tree item buttons
|
|
15
|
+
*/
|
|
16
|
+
useControlIcons?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Depth of the opened tree items at start
|
|
19
|
+
*/
|
|
20
|
+
startOpenDepth: number;
|
|
21
|
+
/**
|
|
22
|
+
* On user item click, selects/unselects all children as well
|
|
23
|
+
*/
|
|
24
|
+
cascadeSelection: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* When firing an event, do not fire children if the parent is selected (i.e. the filter is used as an MDX filter)
|
|
27
|
+
*/
|
|
28
|
+
fireMode: FilterFireEventMode;
|
|
29
|
+
/**
|
|
30
|
+
* Search feature to the tree
|
|
31
|
+
* if tree, adds an input field on top
|
|
32
|
+
* if autocomplete, uses the autocomplete to filter the tree
|
|
33
|
+
*/
|
|
34
|
+
addSearch: boolean;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
*/
|
|
38
|
+
searchPlaceholder?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Switches the filter to an autocomplete with a collapsible tree
|
|
41
|
+
*/
|
|
42
|
+
autoComplete: boolean;
|
|
43
|
+
/**
|
|
44
|
+
* Autocomplete predefined variants , "filled", "outlined" + custome ones
|
|
45
|
+
*/
|
|
46
|
+
autoCompleteVariant: string;
|
|
47
|
+
/**
|
|
48
|
+
* Autocomplete size of buttons
|
|
49
|
+
*/
|
|
50
|
+
autoCompleteSize?: 'small' | 'medium';
|
|
51
|
+
/**
|
|
52
|
+
* Autocomplete, the maximum number of tags that will be visible when not focused. Set -1 to disable the limit.
|
|
53
|
+
*/
|
|
54
|
+
autoCompleteLimitTags: number;
|
|
55
|
+
}
|
|
56
|
+
export declare class FilterTreeClasses {
|
|
57
|
+
/**
|
|
58
|
+
* Style applied to the root element.
|
|
59
|
+
*/
|
|
60
|
+
static readonly root = "root";
|
|
61
|
+
/**
|
|
62
|
+
* Style applied to the tree item without control icons
|
|
63
|
+
*/
|
|
64
|
+
static simpleItemLabel: "TreeFilter-simpleItemLabel";
|
|
65
|
+
/**
|
|
66
|
+
* Style applied to the tree item witht control icons
|
|
67
|
+
*/
|
|
68
|
+
static itemLabelWithIcons: "TreeFilter-itemLabelWithIcons";
|
|
69
|
+
}
|
|
70
|
+
export declare type FilterTreeClassKey = keyof FilterTreeClasses;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FilterTreeClasses = void 0;
|
|
4
|
+
class FilterTreeClasses {
|
|
5
|
+
}
|
|
6
|
+
exports.FilterTreeClasses = FilterTreeClasses;
|
|
7
|
+
/**
|
|
8
|
+
* Style applied to the root element.
|
|
9
|
+
*/
|
|
10
|
+
FilterTreeClasses.root = "root";
|
|
11
|
+
//# sourceMappingURL=ThemeFilterTree.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeFilterTree.js","sourceRoot":"","sources":["../../src/theme/ThemeFilterTree.ts"],"names":[],"mappings":";;;AAuEA,MAAa,iBAAiB;;AAA9B,8CAqBC;AAnBG;;GAEG;AACa,sBAAI,GAAG,MAAM,CAAC"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { FormFieldObject } from "../PublicTemplateForm";
|
|
2
|
+
export interface GoogleMapMarkerProps extends FormFieldObject {
|
|
3
|
+
/**
|
|
4
|
+
* Predefined variants
|
|
5
|
+
*/
|
|
6
|
+
variant?: string;
|
|
7
|
+
/**
|
|
8
|
+
* The symbol's path, which is a built-in symbol path, or a custom path
|
|
9
|
+
* expressed using <a
|
|
10
|
+
* href="http://www.w3.org/TR/SVG/paths.html#PathData">SVG path
|
|
11
|
+
* notation</a>. Required.
|
|
12
|
+
*
|
|
13
|
+
* 22px,22px expected
|
|
14
|
+
*/
|
|
15
|
+
path: string;
|
|
16
|
+
/**
|
|
17
|
+
* The symbol's fill opacity. Defaults to 0.
|
|
18
|
+
*/
|
|
19
|
+
fillOpacity?: number;
|
|
20
|
+
/**
|
|
21
|
+
* The amount by which the symbol is scaled in size. For symbol markers,
|
|
22
|
+
* this defaults to 1; after scaling, the symbol may be of any size. For
|
|
23
|
+
* symbols on a polyline, this defaults to the stroke weight of the
|
|
24
|
+
* polyline; after scaling, the symbol must lie inside a square 22 pixels in
|
|
25
|
+
* size centered at the symbol's anchor.
|
|
26
|
+
*/
|
|
27
|
+
scale?: number;
|
|
28
|
+
/**
|
|
29
|
+
* Anchor for the marker (0,0 is top left)
|
|
30
|
+
*/
|
|
31
|
+
anchorX?: number;
|
|
32
|
+
anchorY?: number;
|
|
33
|
+
/**
|
|
34
|
+
* The symbol's stroke color. All CSS3 colors are supported except for
|
|
35
|
+
* extended named colors. For symbol markers, this defaults to
|
|
36
|
+
* 'black'. For symbols on a polyline, this defaults to the stroke
|
|
37
|
+
* color of the polyline.
|
|
38
|
+
*/
|
|
39
|
+
strokeColor?: string | null | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* The symbol's stroke opacity. For symbol markers, this defaults to 1.
|
|
42
|
+
* For symbols on a polyline, this defaults to the stroke opacity of the
|
|
43
|
+
* polyline.
|
|
44
|
+
*/
|
|
45
|
+
strokeOpacity?: number | null | undefined;
|
|
46
|
+
/**
|
|
47
|
+
* The symbol's stroke weight. Defaults to the <code>scale</code> of the
|
|
48
|
+
* symbol.
|
|
49
|
+
*/
|
|
50
|
+
strokeWeight?: number | null | undefined;
|
|
51
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeGoogleMapMarker.js","sourceRoot":"","sources":["../../src/theme/ThemeGoogleMapMarker.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IWidgetPublicContext } from "../PublicContext";
|
|
1
2
|
export interface HtmlBoxClasses {
|
|
2
3
|
/**
|
|
3
4
|
* Style applied to the root element.
|
|
@@ -17,8 +18,13 @@ export declare type HtmlBoxVariant = "plain" |
|
|
|
17
18
|
/**
|
|
18
19
|
* Used for data tooltips in the charts
|
|
19
20
|
*/
|
|
20
|
-
"tooltip"
|
|
21
|
+
"tooltip" |
|
|
22
|
+
/**
|
|
23
|
+
* Based on dashboard theme definition (h1,h2...)
|
|
24
|
+
*/
|
|
25
|
+
"dashboardTheme";
|
|
21
26
|
export interface HtmlBoxProps {
|
|
27
|
+
context?: IWidgetPublicContext;
|
|
22
28
|
variant?: HtmlBoxVariant;
|
|
23
29
|
html: string;
|
|
24
30
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export declare class PivotTableClasses {
|
|
2
|
+
static readonly main = "ic3-pt";
|
|
3
|
+
static readonly cell = "ic3-pt-cell";
|
|
4
|
+
static readonly leftHeaderCell = "ic3-pt-col.lh";
|
|
5
|
+
static readonly leftHeaderTitle = "ic3-pt-col.lh .ic3-pt-header-label";
|
|
6
|
+
static readonly topHeaderCell = "ic3-pt-col.th";
|
|
7
|
+
static readonly topHeaderTitle = "ic3-pt-col.th .ic3-pt-header-label";
|
|
8
|
+
static readonly column = "ic3-pt-col";
|
|
9
|
+
static readonly columnSeparator = "ic3-pt .ic3-pt-col-separator";
|
|
10
|
+
static readonly columnSeparatorContent = "ic3-pt .ic3-pt-col-separator-content";
|
|
11
|
+
static readonly icon = "ic3-pt-icon";
|
|
12
|
+
static readonly iconSort = "ic3-pt-icon-sort";
|
|
13
|
+
static readonly emptyHeader = "ic3-pt-empty-header";
|
|
14
|
+
static readonly selected = "ic3-pt-selected";
|
|
15
|
+
static readonly hover = "ic3-pt-hover";
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* List of classNames available
|
|
19
|
+
*/
|
|
20
|
+
export declare type PivotTableClassKey = keyof PivotTableClasses;
|
|
21
|
+
export interface PivotTableProps {
|
|
22
|
+
variant?: string;
|
|
23
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PivotTableClasses = void 0;
|
|
4
|
+
class PivotTableClasses {
|
|
5
|
+
}
|
|
6
|
+
exports.PivotTableClasses = PivotTableClasses;
|
|
7
|
+
PivotTableClasses.main = "ic3-pt";
|
|
8
|
+
PivotTableClasses.cell = "ic3-pt-cell";
|
|
9
|
+
PivotTableClasses.leftHeaderCell = "ic3-pt-col.lh";
|
|
10
|
+
PivotTableClasses.leftHeaderTitle = "ic3-pt-col.lh .ic3-pt-header-label";
|
|
11
|
+
PivotTableClasses.topHeaderCell = "ic3-pt-col.th";
|
|
12
|
+
PivotTableClasses.topHeaderTitle = "ic3-pt-col.th .ic3-pt-header-label";
|
|
13
|
+
PivotTableClasses.column = "ic3-pt-col";
|
|
14
|
+
PivotTableClasses.columnSeparator = "ic3-pt .ic3-pt-col-separator";
|
|
15
|
+
PivotTableClasses.columnSeparatorContent = "ic3-pt .ic3-pt-col-separator-content";
|
|
16
|
+
PivotTableClasses.icon = "ic3-pt-icon";
|
|
17
|
+
PivotTableClasses.iconSort = "ic3-pt-icon-sort";
|
|
18
|
+
PivotTableClasses.emptyHeader = "ic3-pt-empty-header";
|
|
19
|
+
PivotTableClasses.selected = "ic3-pt-selected";
|
|
20
|
+
PivotTableClasses.hover = "ic3-pt-hover";
|
|
21
|
+
//# sourceMappingURL=ThemePivotTable.js.map
|