@omnia/workplace 7.6.38-preview → 7.6.39-preview

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.
@@ -586,6 +586,7 @@ export declare class WebComponentManifests {
586
586
  static get FormScopeFilterEngineSettings(): Guid;
587
587
  static get FormScopeFilterEngineDefaultValueInput(): Guid;
588
588
  static get FormScopeFilterEngineSelectionsArea(): Guid;
589
+ static get FormViewItem(): Guid;
589
590
  }
590
591
  export declare class WebComponentElements {
591
592
  static get AppProvisioningStepMember(): string;
@@ -595,6 +595,7 @@ class WebComponentManifests {
595
595
  static get FormScopeFilterEngineSettings() { return new fx_models_1.Guid("2689637e-d336-4224-b91d-85c6a5f625b0"); }
596
596
  static get FormScopeFilterEngineDefaultValueInput() { return new fx_models_1.Guid("c7352795-fe4f-44da-b6ce-5334200f437e"); }
597
597
  static get FormScopeFilterEngineSelectionsArea() { return new fx_models_1.Guid("5808d4d8-db56-424b-ace7-a84501e0350e"); }
598
+ static get FormViewItem() { return new fx_models_1.Guid("ea2e21ff-d752-4d0d-84bb-51810a53521e"); }
598
599
  }
599
600
  exports.WebComponentManifests = WebComponentManifests;
600
601
  class WebComponentElements {
@@ -1,4 +1,5 @@
1
1
  import { BusinessProfileProperty, Guid, GuidValue, Identity, Layout, MediaPickerImage, MultilingualString, SpacingSettings } from "@omnia/fx/models";
2
+ import { FormQueryScopes } from "./components";
2
3
  import { FormTemplateSettings } from "./FormTemplate";
3
4
  export interface FormActionHandlerSettings extends FormBuilderSettings {
4
5
  selectedTypeId: number;
@@ -171,6 +172,8 @@ export interface FormRendererBlockSettings {
171
172
  legendPosition: LegendPosition;
172
173
  customShowFormButton: MultilingualString;
173
174
  spacing?: SpacingSettings;
175
+ scopeType?: FormQueryScopes;
176
+ scopeId?: GuidValue;
174
177
  }
175
178
  export declare class FormGenericSetting extends BusinessProfileProperty {
176
179
  chartColor: ChartColor[];
@@ -69,3 +69,6 @@ export interface FormScopePropFilterValue extends RollupFilterValue {
69
69
  value: Array<GuidValue>;
70
70
  scopeType: FormScopeTypes;
71
71
  }
72
+ export interface FormTypePropFilterValue extends RollupFilterValue {
73
+ value: Array<number>;
74
+ }
@@ -4,6 +4,7 @@ export declare class FormRollupConstants {
4
4
  Status: string;
5
5
  StartDate: string;
6
6
  EndDate: string;
7
+ Type: string;
7
8
  };
8
9
  static ViewRegistration: {
9
10
  listView: string;
@@ -8,7 +8,8 @@ FormRollupConstants.CustomProperties = {
8
8
  TitleAndLink: "titleandlink_c180e07a-0362-4de4-a418-128c3b2b75f5",
9
9
  Status: "status_6fcde526-501b-4a6e-aea1-b08022dba59b",
10
10
  StartDate: "startdate_469895bb-54b4-434e-b96a-90a0dd7eaa10",
11
- EndDate: "enddate_44a47f32-6248-4025-9b8c-0df518ec8550"
11
+ EndDate: "enddate_44a47f32-6248-4025-9b8c-0df518ec8550",
12
+ Type: "type_63b3e788-f544-4563-bc7a-0793ae5b9d21",
12
13
  };
13
14
  FormRollupConstants.ViewRegistration = {
14
15
  listView: "d91762c6-f646-408a-b628-7ef4f2bb2e17",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/workplace",
3
3
  "license": "MIT",
4
- "version": "7.6.38-preview",
4
+ "version": "7.6.39-preview",
5
5
  "description": "Omnia Workplace.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"