@omnia/fx 8.0.278-dev → 8.0.279-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/ux/models/Velcron.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/PropertyResolverEditor.d.ts +2 -1
- package/package.json +2 -2
@@ -0,0 +1,7 @@
|
|
1
|
+
import { IDataSourcePropertySelection } from "../properties/models/PropertyPicker";
|
2
|
+
export interface VelcronPropertyDefinitionValueResolver {
|
3
|
+
source?: IDataSourcePropertySelection;
|
4
|
+
}
|
5
|
+
export interface VelcronPropertyEditorValue {
|
6
|
+
[key: string]: VelcronPropertyDefinitionValueResolver;
|
7
|
+
}
|
@@ -58,6 +58,7 @@ export * from "./MotionDirective";
|
|
58
58
|
export * from "./EventCalendarType";
|
59
59
|
export * from "./LocalizationInputStyles";
|
60
60
|
export * from "./LocalizationAdminStyles";
|
61
|
+
export * from "./Velcron";
|
61
62
|
export { ValidationOnDefinitions, type IValidationRuleBuilder, type IValidator, type ValidationRule, type ValidationResult } from "./Validation";
|
62
63
|
export type { ValidationOnTypes } from "./Validation";
|
63
64
|
export * from "./SpecialUserConfiguration";
|
@@ -4,7 +4,6 @@ import { AssignOperators, VelcronHorizontalAlignments, VelcronIconTypes, Velcron
|
|
4
4
|
import { DynamicState, VelcronDefinition, VelcronEffects, useVelcronThemingStore } from "..";
|
5
5
|
import { guid, PropertyConfiguration, PropertyValue, PropertyDefinition, PropertySetupBase } from "@omnia/fx/models";
|
6
6
|
import { useVelcronColorSchemaStore } from "../stores/VelcronColorSchema";
|
7
|
-
import { IDataSourcePropertySelection } from "internal/fx/ux/properties/models/PropertyPicker";
|
8
7
|
export interface ResolvedComponentRenderer {
|
9
8
|
component: unknown;
|
10
9
|
definition: VelcronDefinition;
|
@@ -381,12 +380,6 @@ export interface VelcronPropertyDefinitionValue {
|
|
381
380
|
value: PropertyValue;
|
382
381
|
configuration: PropertyConfiguration<PropertyDefinition<any, any, any, PropertySetupBase>>;
|
383
382
|
}
|
384
|
-
export interface VelcronPropertyDefinitionValueResolver {
|
385
|
-
source?: IDataSourcePropertySelection;
|
386
|
-
}
|
387
|
-
export interface VelcronPropertyEditorValue {
|
388
|
-
[key: string]: VelcronPropertyDefinitionValueResolver;
|
389
|
-
}
|
390
383
|
export type VelcronRenderProps<TDefinition> = {
|
391
384
|
definition: TDefinition;
|
392
385
|
renderContext: VelcronRenderContext;
|
package/internal-do-not-import-from-here/ux/velcron/renderer/editors/PropertyResolverEditor.d.ts
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
import { EditorLocation,
|
1
|
+
import { EditorLocation, VelcronPropertyResolverEditorSettings } from "@omnia/fx-models";
|
2
|
+
import { VelcronPropertyEditorValue } from "@omnia/fx/ux";
|
2
3
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
4
|
location?: EditorLocation;
|
4
5
|
} & {
|
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.279-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.279-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|