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.
@@ -4761,14 +4761,26 @@
4761
4761
  (function (CustomFormContent) {
4762
4762
  let ECellType;
4763
4763
  (function (ECellType) {
4764
+ // Description-like text box that the user types in.
4764
4765
  ECellType[ECellType["StaticText"] = 0] = "StaticText";
4766
+ // Label + Value pair of an entity attribute.
4765
4767
  ECellType[ECellType["DataValue"] = 1] = "DataValue";
4768
+ // Static picture.
4766
4769
  ECellType[ECellType["StaticPicture"] = 2] = "StaticPicture";
4770
+ // Sub-section of the form. Contains other sections.
4767
4771
  ECellType[ECellType["SubSection"] = 3] = "SubSection";
4772
+ // Button that opens another form (or info view).
4768
4773
  ECellType[ECellType["ButtonMore"] = 4] = "ButtonMore";
4774
+ // Entity gallery.
4769
4775
  ECellType[ECellType["EntityPhoto"] = 5] = "EntityPhoto";
4776
+ // Embedded media frame. Eg: youtube video.
4770
4777
  ECellType[ECellType["EmbeddedMedia"] = 6] = "EmbeddedMedia";
4778
+ // Deprecated
4771
4779
  ECellType[ECellType["Chart"] = 7] = "Chart";
4780
+ // Similar to DataValue, except it populates a description-like text-box.
4781
+ ECellType[ECellType["EntityText"] = 8] = "EntityText";
4782
+ // Icon and optional action associated with it.
4783
+ ECellType[ECellType["Icon"] = 9] = "Icon";
4772
4784
  })(ECellType = CustomFormContent.ECellType || (CustomFormContent.ECellType = {}));
4773
4785
  let EFlowDirection;
4774
4786
  (function (EFlowDirection) {
@@ -11177,8 +11189,6 @@
11177
11189
  (function (EType) {
11178
11190
  // Default, no special handling.
11179
11191
  EType["Default"] = "default";
11180
- // Same as default but assumes there is no content within it.
11181
- EType["Shape"] = "shape";
11182
11192
  // Callout, assumes it will be positioned in 3d space.
11183
11193
  // Assumes existence of line that is used to anchor it.
11184
11194
  EType["Callout"] = "callout";
@@ -11195,6 +11205,8 @@
11195
11205
  EItemType["Icon"] = "ICON";
11196
11206
  // Content is expected to be an image.
11197
11207
  EItemType["Image"] = "IMAGE";
11208
+ // No content. Only a shape.
11209
+ EItemType["None"] = "NONE";
11198
11210
  })(EItemType = Div.EItemType || (Div.EItemType = {}));
11199
11211
  let ItemAction;
11200
11212
  (function (ItemAction) {
@@ -11705,7 +11717,7 @@
11705
11717
  DataSource.GetList = GetList;
11706
11718
  })(exports.DataSource || (exports.DataSource = {}));
11707
11719
 
11708
- const VERSION$1 = "2.7.4";
11720
+ const VERSION$1 = "2.7.6";
11709
11721
 
11710
11722
  exports.VERSION = VERSION$1;
11711
11723
  exports.AbstractApi = AbstractApi;