@omnia/fx-models 8.0.177-dev → 8.0.178-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.
@@ -60,7 +60,7 @@ export interface VelcronComponentDefinition extends VelcronDefinition {
60
60
  icon?: any;
61
61
  }
62
62
  export type VelcronCustomComponentDefinition = VelcronComponentDefinition;
63
- export type BuiltInPropertyEditorType = "text" | "slider" | "switch" | "alignment" | "color" | "markdown" | "icon" | "image" | "typography" | "spacing" | "color-schema-type" | "blueprint" | "background" | "grid" | "reference";
63
+ export type BuiltInPropertyEditorType = "text" | "number" | "slider" | "switch" | "alignment" | "color" | "markdown" | "icon" | "image" | "typography" | "spacing" | "color-schema-type" | "blueprint" | "background" | "grid" | "reference";
64
64
  export type EditorLocation = "inline " | "pane" | "toolbar";
65
65
  export interface VelcronEditor<TSettings = any> {
66
66
  name?: string;
@@ -23,6 +23,11 @@ export interface VelcronTextEditorSettings {
23
23
  type: TypographyType;
24
24
  placeholder: string;
25
25
  }
26
+ export interface VelcronNumberEditorSettings {
27
+ min: number;
28
+ max: number;
29
+ step: number;
30
+ }
26
31
  export interface VelcronBlueprintEditorSettings {
27
32
  type: "container" | "";
28
33
  }
@@ -35,6 +40,9 @@ export interface VelcronSliderPropertyEditor extends VelcronEditor<VelcronSlider
35
40
  export interface VelcronTextPropertyEditor extends VelcronEditor<VelcronTextEditorSettings> {
36
41
  type: "text";
37
42
  }
43
+ export interface VelcronNumberPropertyEditor extends VelcronEditor<VelcronNumberEditorSettings> {
44
+ type: "number";
45
+ }
38
46
  export interface VelcronEnterprisePropertyEditor extends VelcronEditor<any> {
39
47
  type: "enterprise-property";
40
48
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.177-dev",
4
+ "version": "8.0.178-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"