@omnia/fx-models 8.0.99-vnext → 8.0.101-vnext
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/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { VelcronImageRatios } from "@omnia/fx-models";
|
1
|
+
import { TypographySize, TypographyType, VelcronImageRatios } from "@omnia/fx-models";
|
2
2
|
export interface ResolvedPropertyEditor {
|
3
3
|
editor: VelcronPropertyEditor;
|
4
4
|
}
|
@@ -78,16 +78,43 @@ export interface VelcronMarkdownPropertyEditor extends VelcronPropertyEditor<any
|
|
78
78
|
export interface VelcronImagePropertyEditor extends VelcronPropertyEditor<any> {
|
79
79
|
type: "image";
|
80
80
|
}
|
81
|
+
export interface VelcronState {
|
82
|
+
images?: VelcronImagesState;
|
83
|
+
styling?: VelcronStylingState;
|
84
|
+
colorSchema?: VelcronColorSchemaState;
|
85
|
+
content?: VelcronContentState;
|
86
|
+
properties?: VelcronPropertiesState;
|
87
|
+
}
|
88
|
+
export interface VelcronTextState {
|
89
|
+
text: string;
|
90
|
+
typography?: VelcronTypographyState;
|
91
|
+
}
|
92
|
+
export interface VelcronTypographyState {
|
93
|
+
type?: TypographyType;
|
94
|
+
size?: TypographySize;
|
95
|
+
toned?: boolean;
|
96
|
+
}
|
81
97
|
export interface VelcronContentState {
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
98
|
+
caption?: VelcronTextState;
|
99
|
+
main?: VelcronTextState;
|
100
|
+
title?: VelcronTextState;
|
101
|
+
summary?: VelcronTextState;
|
86
102
|
}
|
87
103
|
export interface VelcronPropertiesState {
|
88
|
-
|
104
|
+
user: any;
|
105
|
+
mappings: Array<any>;
|
106
|
+
}
|
107
|
+
export interface VelcronImagesState {
|
108
|
+
main?: VelcronImageState;
|
89
109
|
}
|
90
110
|
export interface VelcronImageState {
|
91
111
|
url?: string;
|
92
112
|
ratio?: VelcronImageRatios;
|
113
|
+
caption?: VelcronTextState;
|
114
|
+
}
|
115
|
+
export interface VelcronStylingState {
|
116
|
+
}
|
117
|
+
export interface VelcronColorSchemaState {
|
118
|
+
type?: string;
|
119
|
+
filled?: boolean;
|
93
120
|
}
|
@@ -43,6 +43,10 @@ export declare const AlignmentTypesName = "AlignmentTypes";
|
|
43
43
|
export declare const DialogTypeDefinitions: readonly ["save-cancel", "confirm", "ok-cancel", "default", "app"];
|
44
44
|
export type DialogTypes = typeof DialogTypeDefinitions[number];
|
45
45
|
export declare const DialogTypesName = "DialogTypes";
|
46
|
+
/** Divider */
|
47
|
+
export declare const PageDividerTypeDefinitions: readonly ["default", "prominent"];
|
48
|
+
export type PageDividerTypes = typeof DividerTypeDefinitions[number];
|
49
|
+
export declare const PageDividerTypesName = "PageDividerTypes";
|
46
50
|
/** Expansion Panel */
|
47
51
|
export declare const PanelTypeDefinitions: readonly ["default", "navigation", "section"];
|
48
52
|
export type PanelTypes = typeof PanelTypeDefinitions[number];
|
@@ -62,7 +66,7 @@ export declare const RatioTypesName = "RatioTypes";
|
|
62
66
|
export declare const ListItemVariantDefinitions: readonly ["default", "delete"];
|
63
67
|
export type ListItemVariants = typeof ListItemVariantDefinitions[number];
|
64
68
|
export declare const ListItemVariantsName = "ListItemVariants";
|
65
|
-
export declare const ListTypeDefinitions: readonly ["default", "navigation"];
|
69
|
+
export declare const ListTypeDefinitions: readonly ["default", "navigation", "options"];
|
66
70
|
export type ListTypes = typeof ListTypeDefinitions[number];
|
67
71
|
export declare const ListTypesName = "ListTypes";
|
68
72
|
export declare const ListLineTypeDefinitions: readonly [false, "one", "two", "three"];
|
@@ -1,7 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
4
|
-
exports.ToolbarVariantsName = exports.ToolbarVariationDefinitions = exports.TextBoxTypesName = exports.TextBoxTypeDefinitions = exports.TextBoxVariantTypesName = exports.TextBoxVariantTypeDefinitions = exports.TabVariantsName = exports.TabVariantDefinitions = exports.ScrollOffsetTypesName = exports.ScrollOffsetTypeDefinitions = exports.SelectTypesName = exports.SelectTypeDefinitions = exports.VerticalAlignmentsName = exports.VerticalAlignmentDefinitions = void 0;
|
3
|
+
exports.PanelDirectionsName = exports.PanelDirectionDefinitions = exports.PanelVariantsName = exports.PanelVariantDefinitions = exports.DividerTypesName = exports.DividerTypeDefinitions = exports.NavigationDrawerVariantsName = exports.NavigationDrawerVariantDefinitions = exports.NavigationDrawerLocationsName = exports.NavigationDrawerLocationDefinitions = exports.MenuLocationsName = exports.MenuLocationDefinitions = exports.ListLineTypesName = exports.ListLineTypeDefinitions = exports.ListTypesName = exports.ListTypeDefinitions = exports.ListItemVariantsName = exports.ListItemVariantDefinitions = exports.RatioTypesName = exports.RatioTypeDefinitions = exports.IconSizesName = exports.IconSizeDefinitions = exports.IconPresetsName = exports.IconPresetDefinitions = exports.PanelTypesName = exports.PanelTypeDefinitions = exports.PageDividerTypesName = exports.PageDividerTypeDefinitions = exports.DialogTypesName = exports.DialogTypeDefinitions = exports.AlignmentTypesName = exports.AlignmentTypeDefinitions = exports.ColValuesName = exports.ColValueDefinitions = exports.ButtonGroupTypesName = exports.ButtonGroupTypeDefinitions = exports.ButtonVariantsName = exports.ButtonVariantDefinitions = exports.ButtonPresetsName = exports.ButtonPresetDefinitions = exports.AppBarTypesName = exports.AppBarTypeDefinitions = exports.ProgressTypesName = exports.ProgressTypeDefinitions = exports.SliderVariantsName = exports.SliderVariantDefinitions = exports.DirectionTypesName = exports.DirectionDefinitions = exports.SizeTypesName = exports.SizeTypeDefinitions = void 0;
|
4
|
+
exports.ToolbarVariantsName = exports.ToolbarVariationDefinitions = exports.TextBoxTypesName = exports.TextBoxTypeDefinitions = exports.TextBoxVariantTypesName = exports.TextBoxVariantTypeDefinitions = exports.TabVariantsName = exports.TabVariantDefinitions = exports.ScrollOffsetTypesName = exports.ScrollOffsetTypeDefinitions = exports.SelectTypesName = exports.SelectTypeDefinitions = exports.VerticalAlignmentsName = exports.VerticalAlignmentDefinitions = exports.HorizontalAlignmentsName = exports.HorizontalAlignmentDefinitions = void 0;
|
5
5
|
const block = ["top", "bottom"];
|
6
6
|
const inline = ["start", "end", "left", "right"];
|
7
7
|
exports.SizeTypeDefinitions = ["default", "x-small", "small", "large", "x-large"];
|
@@ -33,6 +33,9 @@ exports.AlignmentTypesName = "AlignmentTypes";
|
|
33
33
|
/** Dialog */
|
34
34
|
exports.DialogTypeDefinitions = ["save-cancel", "confirm", "ok-cancel", "default", "app"];
|
35
35
|
exports.DialogTypesName = "DialogTypes";
|
36
|
+
/** Divider */
|
37
|
+
exports.PageDividerTypeDefinitions = ["default", "prominent"];
|
38
|
+
exports.PageDividerTypesName = "PageDividerTypes";
|
36
39
|
/** Expansion Panel */
|
37
40
|
exports.PanelTypeDefinitions = ["default", "navigation", "section"];
|
38
41
|
exports.PanelTypesName = "PanelTypes";
|
@@ -47,7 +50,7 @@ exports.RatioTypesName = "RatioTypes";
|
|
47
50
|
/** List */
|
48
51
|
exports.ListItemVariantDefinitions = ["default", "delete"];
|
49
52
|
exports.ListItemVariantsName = "ListItemVariants";
|
50
|
-
exports.ListTypeDefinitions = ["default", "navigation"];
|
53
|
+
exports.ListTypeDefinitions = ["default", "navigation", "options"];
|
51
54
|
exports.ListTypesName = "ListTypes";
|
52
55
|
exports.ListLineTypeDefinitions = [false, "one", "two", "three"];
|
53
56
|
exports.ListLineTypesName = "ListLineTypes";
|