@omnia/fx-models 7.7.67-preview → 7.7.68-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.
@@ -2,4 +2,5 @@ export declare const SharedConstants: {
2
2
  broadcast: {
3
3
  channelName: string;
4
4
  };
5
+ commaSeparatedValue: string;
5
6
  };
@@ -6,4 +6,5 @@ exports.SharedConstants = {
6
6
  broadcast: {
7
7
  channelName: "omnia-fx-broadcast"
8
8
  },
9
+ commaSeparatedValue: ","
9
10
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "7.7.67-preview",
4
+ "version": "7.7.68-preview",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -1,10 +1,14 @@
1
1
  import { Guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
+ import { LockStatusExcludeChildren, PropertyLockStatusType } from "../../../ux";
2
3
  import { PropertyDefinition, PropertyDisplaySettingsBase } from "../PropertyDefinition";
3
4
  import { PhoneNumberPropertyValue } from "../values";
4
5
  export declare class PhoneDisplaySettings extends PropertyDisplaySettingsBase {
6
+ locks?: PropertyLockStatusType<LockStatusExcludeChildren<Omit<PhoneDisplaySettings, "locks">, "label">>;
5
7
  }
6
8
  export type PhoneEditorSettings = {
9
+ locks?: PropertyLockStatusType<Omit<PhoneEditorSettings, "locks">>;
7
10
  required: boolean;
11
+ multiple?: boolean;
8
12
  };
9
13
  export declare const PhoneNumberPropertyDefinitionId: Guid;
10
14
  export declare class PhoneNumberPropertyDefinition extends PropertyDefinition<PhoneNumberPropertyValue, PhoneDisplaySettings, PhoneEditorSettings> {