@omnia/fx-models 8.0.118-dev → 8.0.120-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
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,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?:
|
12
|
-
contentColor?:
|
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;
|