@ic3/reporting-api 8.6.0 → 8.6.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/dist/ApiUtils.js +1 -1
- package/dist/IcEvent.d.ts +1 -0
- package/dist/IcEvent.js +1 -0
- package/dist/IcEvent.js.map +1 -1
- package/dist/PublicTheme.d.ts +1 -1
- package/dist/theme/ThemePrintButton.d.ts +1 -0
- package/package.json +1 -1
package/dist/ApiUtils.js
CHANGED
|
@@ -8,7 +8,7 @@ const ReportingVersion_1 = __importDefault(require("./ReportingVersion"));
|
|
|
8
8
|
class ApiUtils {
|
|
9
9
|
static makePlugin(definition) {
|
|
10
10
|
return () => {
|
|
11
|
-
return Object.assign({ apiVersion: new ReportingVersion_1.default("8.6.
|
|
11
|
+
return Object.assign({ apiVersion: new ReportingVersion_1.default("8.6.1" || "-", "Thu, 23 Jan 2025 08:15:37 GMT" || "-") }, definition);
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
14
|
/**
|
package/dist/IcEvent.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ export declare enum WidgetNotificationType {
|
|
|
48
48
|
doExportToSVG = "ic3exportToSVG",
|
|
49
49
|
toInitialSelection = "ic3toInitialSelection",
|
|
50
50
|
clearSelection = "ic3clearSelection",
|
|
51
|
+
clearState = "ic3clearState",
|
|
51
52
|
doTemplateUserMenuAction = "ic3doTemplateUserMenuAction"
|
|
52
53
|
}
|
|
53
54
|
export type WidgetNotificationHandler = {
|
package/dist/IcEvent.js
CHANGED
|
@@ -19,6 +19,7 @@ var WidgetNotificationType;
|
|
|
19
19
|
WidgetNotificationType["doExportToSVG"] = "ic3exportToSVG";
|
|
20
20
|
WidgetNotificationType["toInitialSelection"] = "ic3toInitialSelection";
|
|
21
21
|
WidgetNotificationType["clearSelection"] = "ic3clearSelection";
|
|
22
|
+
WidgetNotificationType["clearState"] = "ic3clearState";
|
|
22
23
|
WidgetNotificationType["doTemplateUserMenuAction"] = "ic3doTemplateUserMenuAction";
|
|
23
24
|
})(WidgetNotificationType || (exports.WidgetNotificationType = WidgetNotificationType = {}));
|
|
24
25
|
//# sourceMappingURL=IcEvent.js.map
|
package/dist/IcEvent.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IcEvent.js","sourceRoot":"","sources":["../src/IcEvent.ts"],"names":[],"mappings":";;;AAAa,QAAA,QAAQ,GAAG,GAAG,CAAA;AAE3B,IAAY,WAKX;AALD,WAAY,WAAW;IACnB,iEAAc,CAAA;IACd,uDAAS,CAAA;IACT,2DAAW,CAAA;IACX,2CAAG,CAAA;AACP,CAAC,EALW,WAAW,2BAAX,WAAW,QAKtB;AA+CD,IAAY,
|
|
1
|
+
{"version":3,"file":"IcEvent.js","sourceRoot":"","sources":["../src/IcEvent.ts"],"names":[],"mappings":";;;AAAa,QAAA,QAAQ,GAAG,GAAG,CAAA;AAE3B,IAAY,WAKX;AALD,WAAY,WAAW;IACnB,iEAAc,CAAA;IACd,uDAAS,CAAA;IACT,2DAAW,CAAA;IACX,2CAAG,CAAA;AACP,CAAC,EALW,WAAW,2BAAX,WAAW,QAKtB;AA+CD,IAAY,sBAkBX;AAlBD,WAAY,sBAAsB;IAE9B,wDAA8B,CAAA;IAE9B,8DAAoC,CAAA;IAEpC,oEAA0C,CAAA;IAE1C,8DAAoC,CAAA;IACpC,0DAAgC,CAAA;IAChC,0DAAgC,CAAA;IAEhC,sEAA4C,CAAA;IAE5C,8DAAoC,CAAA;IACpC,sDAA4B,CAAA;IAE5B,kFAAwD,CAAA;AAC5D,CAAC,EAlBW,sBAAsB,sCAAtB,sBAAsB,QAkBjC"}
|
package/dist/PublicTheme.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/// <reference types="
|
|
1
|
+
/// <reference types="googlemaps" />
|
|
2
2
|
/// <reference types="markerclustererplus" />
|
|
3
3
|
import { ComponentsOverrides, ComponentsVariants, Interpolation, Theme } from "@mui/material";
|
|
4
4
|
import { IPublicWidgetTemplateDefinition } from "./PublicTemplate";
|
|
@@ -22,6 +22,7 @@ export interface PrintButtonChartOptions extends FormFieldObject {
|
|
|
22
22
|
withDialog: boolean;
|
|
23
23
|
paperSizeName?: string;
|
|
24
24
|
paperOrientation?: PaperOrientation;
|
|
25
|
+
"$-fileName"?: string;
|
|
25
26
|
}
|
|
26
27
|
export interface StyledPrintButtonDivProps {
|
|
27
28
|
variant: "text" | "outlined" | "contained" | string;
|
package/package.json
CHANGED