@omnia/fx-models 8.0.118-dev → 8.0.119-dev

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/ManifestIds.d.ts CHANGED
@@ -498,4 +498,5 @@ export declare class OmniaWebComponentManifests {
498
498
  static get DateTimePropertyDisplay(): Guid;
499
499
  static get DateTimePropertyEditor(): Guid;
500
500
  static get DateTimePropertyConfiguration(): Guid;
501
+ static get BirthdayPropertyConfiguration(): Guid;
501
502
  }
package/ManifestIds.js CHANGED
@@ -1500,5 +1500,6 @@ class OmniaWebComponentManifests {
1500
1500
  static get DateTimePropertyDisplay() { return new models_1.Guid("5666ffa1-5ff1-4a64-bac8-854da534ff16"); }
1501
1501
  static get DateTimePropertyEditor() { return new models_1.Guid("0f52758b-4d0c-4e02-abfe-ea1c5c935571"); }
1502
1502
  static get DateTimePropertyConfiguration() { return new models_1.Guid("0AA4B891-6FCF-4B1F-959C-8FD04EF8BFE9"); }
1503
+ static get BirthdayPropertyConfiguration() { return new models_1.Guid("5b7f85ec-36cf-4e88-911e-7951ccec4e2b"); }
1503
1504
  }
1504
1505
  exports.OmniaWebComponentManifests = OmniaWebComponentManifests;
@@ -1,4 +1,5 @@
1
+ import { ColorValue } from "@omnia/fx-models";
1
2
  export interface TermColorSettings {
2
- backgroundColor: string;
3
- textColor: string;
3
+ backgroundColor: ColorValue;
4
+ textColor: ColorValue;
4
5
  }
@@ -1,4 +1,4 @@
1
- import { IIcon, MultilingualString, SpacingSettings } from "../";
1
+ import { ColorValue, IIcon, MultilingualString, SpacingSettings } from "../";
2
2
  export interface EnterprisePropertySettings {
3
3
  }
4
4
  export interface TaxonomyPropertySettings extends EnterprisePropertySettings {
@@ -8,12 +8,13 @@ export interface EnterprisePropertiesDisplaySettings {
8
8
  internalName?: string;
9
9
  blockTitle?: MultilingualString;
10
10
  showLabel?: boolean;
11
- labelColor?: string;
12
- contentColor?: string;
11
+ labelColor?: ColorValue;
12
+ contentColor?: ColorValue;
13
13
  icon?: IIcon;
14
14
  separator?: string;
15
15
  fontSize?: string;
16
16
  itemClass?: string;
17
+ inline?: boolean;
17
18
  }
18
19
  export interface EnterprisePropertiesDateDisplaySettings extends EnterprisePropertiesDisplaySettings {
19
20
  mode: EnterprisePropertiesBlockDateTimeModes;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.118-dev",
4
+ "version": "8.0.119-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"