@omnia/fx 8.0.339-dev → 8.0.340-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/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertyDefinitionHandler.d.ts +1 -1
- package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertyProvider.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/StyleFlow.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +5 -0
- package/package.json +2 -2
@@ -27,7 +27,7 @@ export declare abstract class DataSourcePropertyDefinitionHandler<TPropertyDefin
|
|
27
27
|
/**
|
28
28
|
* This method should convert from the data source value to PropertyValue matching the TPropertyDefinition
|
29
29
|
* */
|
30
|
-
abstract propertyValueCreator(dataSourceProperty: TDataSourceProperty, valueFromSource: DataSourceReadDataType, propertyconfiguration?: PropertyConfiguration<PropertyDefinition<any, any, any>>): Promise<PropertyValueType<TPropertyDefinition>>;
|
30
|
+
abstract propertyValueCreator(dataSourceProperty: TDataSourceProperty, valueFromSource: DataSourceReadDataType, propertyconfiguration?: PropertyConfiguration<PropertyDefinition<any, any, any>>): PropertyValueType<TPropertyDefinition> | Promise<PropertyValueType<TPropertyDefinition>>;
|
31
31
|
/**
|
32
32
|
* This method should convert from PropertyValue matching the TPropertyDefinition to the write back data type expected for data source to be able to writeback
|
33
33
|
* */
|
@@ -53,7 +53,10 @@ export declare abstract class PropertyDataSourceBase<TDataSourceProperty extends
|
|
53
53
|
abstract getPropertyRenderInformation(dataSourceProperty: TDataSourceProperty, hanlderId: DataSourcePropertyDefintionHandlerId, propertyConfiguration: PropertyConfiguration<PropertyDefinition<any, any, any>>, value: any): {
|
54
54
|
propertyDefinitionId: PropertyDefinitionId;
|
55
55
|
propertyValue: PropertyValue;
|
56
|
-
}
|
56
|
+
} | Promise<{
|
57
|
+
propertyDefinitionId: PropertyDefinitionId;
|
58
|
+
propertyValue: PropertyValue;
|
59
|
+
}>;
|
57
60
|
}
|
58
61
|
export declare abstract class DynamicPropertyDataSource<TDataSourceProperty extends DataSourceProperty> extends PropertyDataSourceBase<TDataSourceProperty> implements IDataSourcePropertyCreator {
|
59
62
|
abstract createPropertyFromString(propertyName: string): Promise<DataSourceProperty>;
|
@@ -100,7 +100,7 @@ export declare namespace StyleFlow {
|
|
100
100
|
bottom: (bottom: number | string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
101
101
|
left(left: number | string): import("./Styles.stylex").StylexValue;
|
102
102
|
right: (right: number | string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
103
|
-
zIndex(zIndex: number): import("./Styles.stylex").StylexValue;
|
103
|
+
zIndex(zIndex: number, important?: boolean): import("./Styles.stylex").StylexValue;
|
104
104
|
textAlign(textAlign: string): import("./Styles.stylex").StylexValue;
|
105
105
|
transformOrigin(transformOrigin: string): import("./Styles.stylex").StylexValue;
|
106
106
|
borderColor(borderColor: string): import("./Styles.stylex").StylexValue;
|
@@ -90,7 +90,7 @@ export declare const cssRules: {
|
|
90
90
|
bottom: (bottom: number | string, important?: boolean) => StylexValue;
|
91
91
|
left(left: number | string): StylexValue;
|
92
92
|
right: (right: number | string, important?: boolean) => StylexValue;
|
93
|
-
zIndex(zIndex: number): StylexValue;
|
93
|
+
zIndex(zIndex: number, important?: boolean): StylexValue;
|
94
94
|
textAlign(textAlign: string): StylexValue;
|
95
95
|
transformOrigin(transformOrigin: string): StylexValue;
|
96
96
|
borderColor(borderColor: string): StylexValue;
|
@@ -651,6 +651,11 @@ export interface OmniaUxLocalization {
|
|
651
651
|
Providers: string;
|
652
652
|
};
|
653
653
|
Features: {
|
654
|
+
SeoCore: {
|
655
|
+
Category: string;
|
656
|
+
Description: string;
|
657
|
+
Title: string;
|
658
|
+
};
|
654
659
|
SharepointUserProfile: {
|
655
660
|
Category: string;
|
656
661
|
Description: string;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.340-dev",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.340-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|