bruce-models 2.7.4 → 2.7.6
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 +15 -3
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +15 -3
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/custom-form/custom-form-content.js +12 -0
- package/dist/lib/custom-form/custom-form-content.js.map +1 -1
- package/dist/lib/markup/markup.js +2 -2
- package/dist/lib/markup/markup.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/custom-form/custom-form-content.d.ts +18 -4
- package/dist/types/markup/markup.d.ts +2 -2
- package/package.json +1 -1
package/dist/bruce-models.es5.js
CHANGED
|
@@ -4796,14 +4796,26 @@ var CustomFormContent;
|
|
|
4796
4796
|
(function (CustomFormContent) {
|
|
4797
4797
|
let ECellType;
|
|
4798
4798
|
(function (ECellType) {
|
|
4799
|
+
// Description-like text box that the user types in.
|
|
4799
4800
|
ECellType[ECellType["StaticText"] = 0] = "StaticText";
|
|
4801
|
+
// Label + Value pair of an entity attribute.
|
|
4800
4802
|
ECellType[ECellType["DataValue"] = 1] = "DataValue";
|
|
4803
|
+
// Static picture.
|
|
4801
4804
|
ECellType[ECellType["StaticPicture"] = 2] = "StaticPicture";
|
|
4805
|
+
// Sub-section of the form. Contains other sections.
|
|
4802
4806
|
ECellType[ECellType["SubSection"] = 3] = "SubSection";
|
|
4807
|
+
// Button that opens another form (or info view).
|
|
4803
4808
|
ECellType[ECellType["ButtonMore"] = 4] = "ButtonMore";
|
|
4809
|
+
// Entity gallery.
|
|
4804
4810
|
ECellType[ECellType["EntityPhoto"] = 5] = "EntityPhoto";
|
|
4811
|
+
// Embedded media frame. Eg: youtube video.
|
|
4805
4812
|
ECellType[ECellType["EmbeddedMedia"] = 6] = "EmbeddedMedia";
|
|
4813
|
+
// Deprecated
|
|
4806
4814
|
ECellType[ECellType["Chart"] = 7] = "Chart";
|
|
4815
|
+
// Similar to DataValue, except it populates a description-like text-box.
|
|
4816
|
+
ECellType[ECellType["EntityText"] = 8] = "EntityText";
|
|
4817
|
+
// Icon and optional action associated with it.
|
|
4818
|
+
ECellType[ECellType["Icon"] = 9] = "Icon";
|
|
4807
4819
|
})(ECellType = CustomFormContent.ECellType || (CustomFormContent.ECellType = {}));
|
|
4808
4820
|
let EFlowDirection;
|
|
4809
4821
|
(function (EFlowDirection) {
|
|
@@ -11410,8 +11422,6 @@ var Markup;
|
|
|
11410
11422
|
(function (EType) {
|
|
11411
11423
|
// Default, no special handling.
|
|
11412
11424
|
EType["Default"] = "default";
|
|
11413
|
-
// Same as default but assumes there is no content within it.
|
|
11414
|
-
EType["Shape"] = "shape";
|
|
11415
11425
|
// Callout, assumes it will be positioned in 3d space.
|
|
11416
11426
|
// Assumes existence of line that is used to anchor it.
|
|
11417
11427
|
EType["Callout"] = "callout";
|
|
@@ -11428,6 +11438,8 @@ var Markup;
|
|
|
11428
11438
|
EItemType["Icon"] = "ICON";
|
|
11429
11439
|
// Content is expected to be an image.
|
|
11430
11440
|
EItemType["Image"] = "IMAGE";
|
|
11441
|
+
// No content. Only a shape.
|
|
11442
|
+
EItemType["None"] = "NONE";
|
|
11431
11443
|
})(EItemType = Div.EItemType || (Div.EItemType = {}));
|
|
11432
11444
|
let ItemAction;
|
|
11433
11445
|
(function (ItemAction) {
|
|
@@ -11940,7 +11952,7 @@ var DataSource;
|
|
|
11940
11952
|
DataSource.GetList = GetList;
|
|
11941
11953
|
})(DataSource || (DataSource = {}));
|
|
11942
11954
|
|
|
11943
|
-
const VERSION$1 = "2.7.
|
|
11955
|
+
const VERSION$1 = "2.7.6";
|
|
11944
11956
|
|
|
11945
11957
|
export { VERSION$1 as VERSION, AnnDocument, CustomForm, CustomFormContent, AbstractApi, Api, BruceApi, CamApi, IdmApi, GlobalApi, GuardianApi, ApiGetters, Calculator, Bounds, BruceEvent, CacheControl, Camera, Cartes, Carto, Color, DelayQueue, Geometry, UTC, BruceVariable, LRUCache, EntityAttachmentType, EntityAttachment, EntityComment, EntityLink, EntityLod, EntityLodCategory, EntityRelationType, EntityRelation, EntitySource, EntityTag, EntityType, Entity, EntityGlobe, EntityFilterGetter, BatchedDataGetter, EntityCoords, EntityTypeVisualSettings, EntityAttribute, ClientFile, ProgramKey, ZoomControl, MenuItem, ProjectViewBookmark, ProjectView, ProjectViewLegacyTile, ProjectViewTile, PendingAction, MessageBroker, HostingLocation, Style, Tileset, Permission, Session, UserGroup, User, Account, AccountInvite, EncryptUtils, MathUtils, ObjectUtils, PathUtils, UrlUtils, DataLab, ImportCad, ImportCsv, ImportJson, ImportKml, ImportedFile, Markup, Uploader, Plugin, ENVIRONMENT, DataSource };
|
|
11946
11958
|
//# sourceMappingURL=bruce-models.es5.js.map
|