@omnia/fx-models 8.0.508-dev → 8.0.510-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/filterengine/Shared.d.ts +2 -2
- package/package.json +1 -1
package/filterengine/Shared.d.ts
CHANGED
@@ -130,7 +130,7 @@ export interface FilterEnginePropertyDefaultValueInputProps<T extends BaseFilter
|
|
130
130
|
propertyDefinitionAsHash: {
|
131
131
|
[internalName: string]: EnterprisePropertyDefinition;
|
132
132
|
};
|
133
|
-
|
133
|
+
"onUpdate:modelValue"?: (value: T) => void;
|
134
134
|
}
|
135
135
|
/**
|
136
136
|
* Implementation only props interface, used for property settings component
|
@@ -143,7 +143,7 @@ export type FilterEnginePropertySettingsImplProps<T extends BaseFilterEngineProp
|
|
143
143
|
*/
|
144
144
|
export interface FilterEnginePropertySettingsProps<T extends BaseFilterEngineProperty> {
|
145
145
|
modelValue: T;
|
146
|
-
|
146
|
+
"onUpdate:modelValue"?: (value: T) => void;
|
147
147
|
propertyDefinitionAsHash: {
|
148
148
|
[internalName: string]: EnterprisePropertyDefinition;
|
149
149
|
};
|