@omnia/workplace 7.6.54-preview → 7.6.56-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.
@@ -24,6 +24,7 @@ export declare module FormsLocalization {
24
24
  Scope: {
25
25
  Title: string;
26
26
  CurrentApp: string;
27
+ CurrentBusinessProfile: string;
27
28
  };
28
29
  ScopeType: {
29
30
  Title: string;
@@ -96,7 +97,7 @@ export declare module FormsLocalization {
96
97
  DeleteFormMessage: string;
97
98
  };
98
99
  Validation: {
99
- EndDateMustBeSmallerThanStartDate: string;
100
+ EndDateMustBeGreaterThanStartDate: string;
100
101
  };
101
102
  CustomChartColors: string;
102
103
  Templates: string;
@@ -133,6 +134,7 @@ export declare module FormsLocalization {
133
134
  ShowResponse: string;
134
135
  CloseResponse: string;
135
136
  ShowFormTitle: string;
137
+ ShowFormImage: string;
136
138
  StatisticNotSupported: string;
137
139
  SaveForLater: string;
138
140
  };
@@ -187,6 +189,9 @@ export declare module FormsLocalization {
187
189
  FilterEngine: {
188
190
  ContextProperties: {
189
191
  Scope: string;
192
+ StartDate: string;
193
+ EndDate: string;
194
+ Status: string;
190
195
  };
191
196
  };
192
197
  Status: string;
@@ -270,4 +270,7 @@ export declare const PeopleRollupFilterEngineContextPropertyTypes: {
270
270
  };
271
271
  export declare const FormRollupFilterEngineContextPropertyTypes: {
272
272
  formScope: Guid;
273
+ startDate: Guid;
274
+ endDate: Guid;
275
+ status: Guid;
273
276
  };
@@ -292,5 +292,8 @@ exports.PeopleRollupFilterEngineContextPropertyTypes = {
292
292
  userType: new fx_models_1.Guid("dffba819-f884-4c18-a212-bd6895224356")
293
293
  };
294
294
  exports.FormRollupFilterEngineContextPropertyTypes = {
295
- formScope: new fx_models_1.Guid("6661706c-4cdf-40f2-80cb-591e040f666e")
295
+ formScope: new fx_models_1.Guid("6661706c-4cdf-40f2-80cb-591e040f666e"),
296
+ startDate: new fx_models_1.Guid("ec38c16c-ee3e-4a1a-8c5c-8b9784c18672"),
297
+ endDate: new fx_models_1.Guid("0d757e39-478c-4eeb-830b-7edb970b92d9"),
298
+ status: new fx_models_1.Guid("2740dbe0-cd74-4d73-b2bb-0c6ad20fc0a8")
296
299
  };
@@ -588,6 +588,10 @@ export declare class WebComponentManifests {
588
588
  static get FormScopeFilterEngineDefaultValueInput(): Guid;
589
589
  static get FormScopeFilterEngineSelectionsArea(): Guid;
590
590
  static get FormViewItem(): Guid;
591
+ static get FormStatusFilterEngineRenderer(): Guid;
592
+ static get FormStatusFilterEngineSettings(): Guid;
593
+ static get FormStatusFilterEngineSelectionsArea(): Guid;
594
+ static get FormStatusFilterEngineDefaultValueInput(): Guid;
591
595
  }
592
596
  export declare class WebComponentElements {
593
597
  static get AppProvisioningStepMember(): string;
@@ -597,6 +597,10 @@ class WebComponentManifests {
597
597
  static get FormScopeFilterEngineDefaultValueInput() { return new fx_models_1.Guid("c7352795-fe4f-44da-b6ce-5334200f437e"); }
598
598
  static get FormScopeFilterEngineSelectionsArea() { return new fx_models_1.Guid("5808d4d8-db56-424b-ace7-a84501e0350e"); }
599
599
  static get FormViewItem() { return new fx_models_1.Guid("ea2e21ff-d752-4d0d-84bb-51810a53521e"); }
600
+ static get FormStatusFilterEngineRenderer() { return new fx_models_1.Guid("2638caca-7acf-49b1-be9e-924327a2ad1a"); }
601
+ static get FormStatusFilterEngineSettings() { return new fx_models_1.Guid("fea6b108-c9cc-4ffd-9044-89e9e632ba42"); }
602
+ static get FormStatusFilterEngineSelectionsArea() { return new fx_models_1.Guid("77c771b4-5cce-4db4-8229-38ce362b9a64"); }
603
+ static get FormStatusFilterEngineDefaultValueInput() { return new fx_models_1.Guid("0f92d659-4323-4e68-9315-0416a26baa04"); }
600
604
  }
601
605
  exports.WebComponentManifests = WebComponentManifests;
602
606
  class WebComponentElements {
@@ -1,6 +1,6 @@
1
1
  import { BusinessProfileProperty, Guid, GuidValue, Identity, Layout, MediaPickerImage, MultilingualString, SpacingSettings } from "@omnia/fx/models";
2
2
  import { FormTemplateSettings } from "./FormTemplate";
3
- import { FormQueryScopes } from "./components";
3
+ import { FormQueryScopes, FormRollupViewComponentSettings } from "./components";
4
4
  export interface FormActionHandlerSettings extends FormBuilderSettings {
5
5
  selectedTypeId: number;
6
6
  scopeType: FormScopeTypes;
@@ -161,18 +161,22 @@ export interface QuestionBlockSettings {
161
161
  spacing?: SpacingSettings;
162
162
  };
163
163
  }
164
- export interface FormRendererBlockSettings {
165
- formId: number;
166
- blockTitle: MultilingualString;
164
+ export interface FormViewDisplaySettings {
167
165
  useDialog: boolean;
168
166
  showFormTitle: boolean;
167
+ showFormImage: boolean;
169
168
  legendAlignment: LegendAlignment;
170
169
  legendPosition: LegendPosition;
171
170
  customShowFormButton: MultilingualString;
172
171
  spacing?: SpacingSettings;
172
+ }
173
+ export interface FormRendererBlockSettings extends FormViewDisplaySettings {
174
+ formId: number;
175
+ blockTitle: MultilingualString;
173
176
  scopeType?: FormQueryScopes;
174
177
  scopeId?: GuidValue;
175
178
  }
179
+ export type FormViewComponentSettings = FormViewDisplaySettings & FormRollupViewComponentSettings;
176
180
  export declare class FormGenericSetting extends BusinessProfileProperty {
177
181
  chartColor: ChartColor[];
178
182
  constructor();
@@ -52,7 +52,7 @@ export interface FormRollupViewRegistrationSettings {
52
52
  viewSettings: FormRollupViewComponentSettings;
53
53
  }
54
54
  export interface FormStatusExtendedPropFilterValue extends RollupFilterValue {
55
- value: FormStatus;
55
+ value: Array<FormStatus>;
56
56
  }
57
57
  export interface FormScopeFilterEngineProperty extends BaseFilterEngineProperty {
58
58
  value: Array<GuidValue>;
@@ -72,3 +72,12 @@ export interface FormScopePropFilterValue extends RollupFilterValue {
72
72
  export interface FormTypePropFilterValue extends RollupFilterValue {
73
73
  value: Array<number>;
74
74
  }
75
+ export interface FormStatusFilterEngineProperty extends BaseFilterEngineProperty {
76
+ value: Array<FormStatus>;
77
+ type: PropertyIndexedType.Number;
78
+ }
79
+ export interface FormStatusEnginePropertyOutput extends TypedFilterEnginePropertyOutput {
80
+ type: PropertyIndexedType.Number;
81
+ value: Array<FormStatus>;
82
+ sub: FormStatusEnginePropertyOutput[];
83
+ }
@@ -36,9 +36,6 @@ export declare const FormDialogStyles: {
36
36
  footerWrapper?: types.NestedCSSProperties;
37
37
  dialogWrapper?: types.NestedCSSProperties;
38
38
  dialogContentWrapper?: types.NestedCSSProperties;
39
- overlayImageButtonGroup?: types.NestedCSSProperties;
40
- overlayButton?: types.NestedCSSProperties;
41
- flexCenterAligned?: types.NestedCSSProperties;
42
39
  };
43
40
  export declare const formDialogHeaderHeight = 80;
44
41
  export declare const formDialogFooterHeight = 46;
@@ -1,7 +1,6 @@
1
1
  export * from "./FormRollupBlockSettings";
2
- export * from "./FormRollupStyle";
3
2
  export * from "./FormRollupBlockViewSettings";
4
- export * from "./FormRollupViewRendererComponent";
5
3
  export * from "./FormRollupConstant";
6
- export * from "./FormViewComponentSettings";
4
+ export * from "./FormRollupStyle";
5
+ export * from "./FormRollupViewRendererComponent";
7
6
  export * from "./ListViewComponentSettings";
@@ -2,9 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  tslib_1.__exportStar(require("./FormRollupBlockSettings"), exports);
5
- tslib_1.__exportStar(require("./FormRollupStyle"), exports);
6
5
  tslib_1.__exportStar(require("./FormRollupBlockViewSettings"), exports);
7
- tslib_1.__exportStar(require("./FormRollupViewRendererComponent"), exports);
8
6
  tslib_1.__exportStar(require("./FormRollupConstant"), exports);
9
- tslib_1.__exportStar(require("./FormViewComponentSettings"), exports);
7
+ tslib_1.__exportStar(require("./FormRollupStyle"), exports);
8
+ tslib_1.__exportStar(require("./FormRollupViewRendererComponent"), exports);
10
9
  tslib_1.__exportStar(require("./ListViewComponentSettings"), exports);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/workplace",
3
3
  "license": "MIT",
4
- "version": "7.6.54-preview",
4
+ "version": "7.6.56-preview",
5
5
  "description": "Omnia Workplace.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -1,11 +0,0 @@
1
- import { MultilingualString, SpacingSettings } from "@omnia/fx-models";
2
- import { LegendAlignment, LegendPosition } from "../Form";
3
- import { FormRollupViewComponentSettings } from "./FormRollupBlockViewSettings";
4
- export interface FormViewComponentSettings extends FormRollupViewComponentSettings {
5
- useDialog: boolean;
6
- showFormTitle: boolean;
7
- legendAlignment: LegendAlignment;
8
- legendPosition: LegendPosition;
9
- customShowFormButton: MultilingualString;
10
- spacing?: SpacingSettings;
11
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });