bruce-models 5.6.3 → 5.6.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/bruce-models.es5.js +1 -1
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +1 -1
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/custom-form/custom-form-content.d.ts +6 -2
- package/package.json +1 -1
package/dist/lib/bruce-models.js
CHANGED
|
@@ -111,5 +111,5 @@ __exportStar(require("./environment"), exports);
|
|
|
111
111
|
__exportStar(require("./data-source/data-source"), exports);
|
|
112
112
|
__exportStar(require("./scenario/scenario"), exports);
|
|
113
113
|
// This is updated with the package.json version on build.
|
|
114
|
-
exports.VERSION = "5.6.
|
|
114
|
+
exports.VERSION = "5.6.4";
|
|
115
115
|
//# sourceMappingURL=bruce-models.js.map
|
|
@@ -17,7 +17,7 @@ export declare namespace CustomFormContent {
|
|
|
17
17
|
component: Component;
|
|
18
18
|
params: StackItemParams;
|
|
19
19
|
}
|
|
20
|
-
type Component = "STATIC_TEXT" | "ENTITY_TEXT" | "IFRAME" | "ENTITY_GALLERY" | "ENTITY_ATTRIBUTES" | "ENTITY_ATTRIBUTE_GROUP" | "ENTITY_COMMENTS" | "BUTTON" | "NUMBER_CHART" | "NUMBER_SERIES_CHART";
|
|
20
|
+
type Component = "STATIC_TEXT" | "ENTITY_TEXT" | "IFRAME" | "LINK" | "ENTITY_GALLERY" | "ENTITY_ATTRIBUTES" | "ENTITY_ATTRIBUTE_GROUP" | "ENTITY_COMMENTS" | "BUTTON" | "NUMBER_CHART" | "NUMBER_SERIES_CHART";
|
|
21
21
|
interface IStaticTextParams {
|
|
22
22
|
text: string;
|
|
23
23
|
}
|
|
@@ -28,6 +28,10 @@ export declare namespace CustomFormContent {
|
|
|
28
28
|
url: string;
|
|
29
29
|
height: number;
|
|
30
30
|
}
|
|
31
|
+
interface ILinkParams {
|
|
32
|
+
url: string;
|
|
33
|
+
label: string;
|
|
34
|
+
}
|
|
31
35
|
/**
|
|
32
36
|
* The button component is used to perform some sort of navigator or action.
|
|
33
37
|
* Navigation is between other forms or the default info-view dialog.
|
|
@@ -89,5 +93,5 @@ export declare namespace CustomFormContent {
|
|
|
89
93
|
title?: string;
|
|
90
94
|
textSuffix?: string;
|
|
91
95
|
}
|
|
92
|
-
type StackItemParams = IStaticTextParams | IEntityTextParams | IIFrameParams | IButtonParams | IEntityAttrGroupParams | INumberChartParams | INumberSeriesChartParams | any;
|
|
96
|
+
type StackItemParams = IStaticTextParams | IEntityTextParams | IIFrameParams | IButtonParams | IEntityAttrGroupParams | INumberChartParams | INumberSeriesChartParams | ILinkParams | any;
|
|
93
97
|
}
|