@omnia/fx 8.0.334-dev → 8.0.336-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.
@@ -50,15 +50,10 @@ export declare abstract class PropertyDataSourceBase<TDataSourceProperty extends
|
|
50
50
|
property: TDataSourceProperty;
|
51
51
|
displayInformation: DataSourcePropertyDisplayInformation;
|
52
52
|
}>>;
|
53
|
-
abstract getPropertyRenderInformation(
|
54
|
-
dataSourceProperty: TDataSourceProperty;
|
55
|
-
hanlderId: DataSourcePropertyDefintionHandlerId;
|
56
|
-
propertyConfiguration?: PropertyConfiguration<PropertyDefinition<any, any, any>>;
|
57
|
-
value?: any;
|
58
|
-
}>): Array<{
|
53
|
+
abstract getPropertyRenderInformation(dataSourceProperty: TDataSourceProperty, hanlderId: DataSourcePropertyDefintionHandlerId, propertyConfiguration: PropertyConfiguration<PropertyDefinition<any, any, any>>, value: any): {
|
59
54
|
propertyDefinitionId: PropertyDefinitionId;
|
60
55
|
propertyValue: PropertyValue;
|
61
|
-
}
|
56
|
+
};
|
62
57
|
}
|
63
58
|
export declare abstract class DynamicPropertyDataSource<TDataSourceProperty extends DataSourceProperty> extends PropertyDataSourceBase<TDataSourceProperty> implements IDataSourcePropertyCreator {
|
64
59
|
abstract createPropertyFromString(propertyName: string): Promise<DataSourceProperty>;
|
@@ -2,15 +2,10 @@ import { PropertyConfiguration, PropertyDefinition, DataSourcePropertyDisplayInf
|
|
2
2
|
import { EnterprisePropertyStore, MultilingualStore } from "@omnia/fx/stores";
|
3
3
|
import { PropertyDataSourceBase, WritebackResult, EnterprisePropertiesProvider, PropertyBindingService, DataSourcePropertyDefintionHandlerId } from "@omnia/fx/services";
|
4
4
|
export declare class AppPropertiesProvider extends PropertyDataSourceBase<AppDataSourceProperty> {
|
5
|
-
getPropertyRenderInformation(
|
6
|
-
dataSourceProperty: AppDataSourceProperty;
|
7
|
-
hanlderId: DataSourcePropertyDefintionHandlerId;
|
8
|
-
propertyConfiguration?: PropertyConfiguration<PropertyDefinition<any, any, any>>;
|
9
|
-
value?: any;
|
10
|
-
}[]): Array<{
|
5
|
+
getPropertyRenderInformation(dataSourceProperty: AppDataSourceProperty, hanlderId: DataSourcePropertyDefintionHandlerId, propertyConfiguration: PropertyConfiguration<PropertyDefinition<any, any, any>>, value: any): {
|
11
6
|
propertyDefinitionId: PropertyDefinitionId;
|
12
7
|
propertyValue: PropertyValue;
|
13
|
-
}
|
8
|
+
};
|
14
9
|
id: guid;
|
15
10
|
title: string;
|
16
11
|
private omniaContext;
|
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.336-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.336-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|