bruce-models 6.2.9 → 6.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.
- 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 +9 -2
- package/package.json +1 -1
package/dist/lib/bruce-models.js
CHANGED
|
@@ -113,5 +113,5 @@ __exportStar(require("./data-source/data-source"), exports);
|
|
|
113
113
|
__exportStar(require("./scenario/scenario"), exports);
|
|
114
114
|
__exportStar(require("./tracking/tracking"), exports);
|
|
115
115
|
// This is updated with the package.json version on build.
|
|
116
|
-
exports.VERSION = "6.
|
|
116
|
+
exports.VERSION = "6.3.0";
|
|
117
117
|
//# 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" | "LINK" | "ENTITY_GALLERY" | "ENTITY_ATTRIBUTES" | "ENTITY_ATTRIBUTE_GROUP" | "ENTITY_COMMENTS" | "BUTTON" | "NUMBER_CHART" | "NUMBER_SERIES_CHART" | "CHART_GALLERY";
|
|
20
|
+
type Component = "STATIC_TEXT" | "ENTITY_TEXT" | "IFRAME" | "LINK" | "ENTITY_GALLERY" | "ENTITY_ATTRIBUTES" | "ENTITY_ATTRIBUTE_GROUP" | "ENTITY_COMMENTS" | "BUTTON" | "NUMBER_CHART" | "NUMBER_SERIES_CHART" | "CHART_GALLERY" | "PLUGIN";
|
|
21
21
|
interface IStaticTextParams {
|
|
22
22
|
text: string;
|
|
23
23
|
}
|
|
@@ -102,5 +102,12 @@ export declare namespace CustomFormContent {
|
|
|
102
102
|
interface IChartGallery {
|
|
103
103
|
charts: (INumberChartParams | INumberSeriesChartParams)[];
|
|
104
104
|
}
|
|
105
|
-
|
|
105
|
+
/**
|
|
106
|
+
* A custom plugin to load within the custom form.
|
|
107
|
+
*/
|
|
108
|
+
interface IPluginParams {
|
|
109
|
+
pluginId: string;
|
|
110
|
+
height: number;
|
|
111
|
+
}
|
|
112
|
+
type StackItemParams = IStaticTextParams | IEntityTextParams | IIFrameParams | IButtonParams | IEntityAttrGroupParams | INumberChartParams | INumberSeriesChartParams | ILinkParams | IChartGallery | IPluginParams | any;
|
|
106
113
|
}
|