@omnia/fx-models 8.0.94-vnext → 8.0.96-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/Exposes.d.ts +1 -0
- package/Exposes.js +1 -0
- package/FilterpickerModel.d.ts +9 -0
- package/FilterpickerModel.js +2 -0
- package/Icon.js +4 -1
- package/internal-do-not-import-from-here/velcron/core/models/VelcronDefinitions.d.ts +3 -3
- package/internal-do-not-import-from-here/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +10 -1
- package/oxide/OxideTypeDefinitions.d.ts +3 -3
- package/oxide/OxideTypeDefinitions.js +3 -3
- package/package.json +1 -1
package/Exposes.d.ts
CHANGED
@@ -93,6 +93,7 @@ export * from "./DateTimeZone";
|
|
93
93
|
export * from "./AzureAd";
|
94
94
|
export * from "./FilterEngineStyles";
|
95
95
|
export * from "./Func";
|
96
|
+
export * from "./FilterpickerModel";
|
96
97
|
export * from "./ux";
|
97
98
|
export * from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
98
99
|
export * from "./admin";
|
package/Exposes.js
CHANGED
@@ -99,6 +99,7 @@ tslib_1.__exportStar(require("./DateTimeZone"), exports);
|
|
99
99
|
tslib_1.__exportStar(require("./AzureAd"), exports);
|
100
100
|
tslib_1.__exportStar(require("./FilterEngineStyles"), exports);
|
101
101
|
tslib_1.__exportStar(require("./Func"), exports);
|
102
|
+
tslib_1.__exportStar(require("./FilterpickerModel"), exports);
|
102
103
|
//************************************************************************************ */
|
103
104
|
// End of file exports
|
104
105
|
//************************************************************************************ */
|
package/Icon.js
CHANGED
@@ -30,7 +30,7 @@ class FabricIcon {
|
|
30
30
|
this.fabClass = fabClass;
|
31
31
|
this.iconType = Enums_1.IconTypes.Fabric;
|
32
32
|
if (this.fabClass.indexOf("ms-Icon ") === -1) {
|
33
|
-
this.fabClass
|
33
|
+
this.fabClass = "ms-Icon " + this.fabClass;
|
34
34
|
}
|
35
35
|
}
|
36
36
|
toString() {
|
@@ -62,6 +62,9 @@ class FlagIcon {
|
|
62
62
|
constructor(flagClass) {
|
63
63
|
this.flagClass = flagClass;
|
64
64
|
this.iconType = Enums_1.IconTypes.Flag;
|
65
|
+
if (this.flagClass.indexOf("omux-flag ") === -1) {
|
66
|
+
this.flagClass = "omux-flag " + this.flagClass;
|
67
|
+
}
|
65
68
|
}
|
66
69
|
toString() {
|
67
70
|
return this.flagClass;
|
@@ -183,9 +183,9 @@ export interface VelcronAppDefinition<TState extends DynamicState = DynamicState
|
|
183
183
|
}
|
184
184
|
export interface VelcronComponentDefinition extends VelcronDefinition {
|
185
185
|
type: string;
|
186
|
-
events
|
187
|
-
properties
|
188
|
-
icon
|
186
|
+
events?: any;
|
187
|
+
properties?: [];
|
188
|
+
icon?: any;
|
189
189
|
}
|
190
190
|
/*** Built-in Components *********************************************************************/
|
191
191
|
export interface VelcronViewDefinition extends VelcronDefinition, VelcronColorStyling {
|
package/internal-do-not-import-from-here/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts
CHANGED
@@ -42,13 +42,19 @@ export interface VelcronSliderPropertyEditorSettings {
|
|
42
42
|
max: number;
|
43
43
|
step: number;
|
44
44
|
}
|
45
|
+
export interface VelcronTypographyEditorSettings {
|
46
|
+
type: "title" | "text";
|
47
|
+
}
|
45
48
|
export interface VelcronSliderPropertyEditor extends VelcronPropertyEditor<VelcronSliderPropertyEditorSettings> {
|
46
49
|
type: "slider";
|
47
50
|
}
|
48
51
|
export interface VelcronTextPropertyEditor extends VelcronPropertyEditor<any> {
|
49
52
|
type: "text";
|
50
53
|
}
|
51
|
-
export interface
|
54
|
+
export interface VelcronEnterprisePropertyEditor extends VelcronPropertyEditor<any> {
|
55
|
+
type: "enterprise-property";
|
56
|
+
}
|
57
|
+
export interface VelcronTypographyPropertyEditor extends VelcronPropertyEditor<VelcronTypographyEditorSettings> {
|
52
58
|
type: "typography";
|
53
59
|
}
|
54
60
|
export interface VelcronSwitchPropertyEditor extends VelcronPropertyEditor<any> {
|
@@ -78,6 +84,9 @@ export interface VelcronContentState {
|
|
78
84
|
main?: string;
|
79
85
|
};
|
80
86
|
}
|
87
|
+
export interface VelcronPropertiesState {
|
88
|
+
propertyItems: Array<any>;
|
89
|
+
}
|
81
90
|
export interface VelcronImageState {
|
82
91
|
url?: string;
|
83
92
|
ratio?: VelcronImageRatios;
|
@@ -25,7 +25,7 @@ export declare const AppBarTypesName = "AppBarTypes";
|
|
25
25
|
export declare const ButtonPresetDefinitions: readonly ["create", "remove", "delete", "ok", "cancel", "save", "close", "settings", "icon-add", "icon-delete", "icon-edit", "icon-drag-handle", "icon-copy", "icon-code", "icon-close", "icon-back", "icon-more", "icon-navigate", "icon-settings"];
|
26
26
|
export type OxideButtonPresets = typeof ButtonPresetDefinitions[number];
|
27
27
|
export declare const ButtonPresetsName = "OxideButtonPresets";
|
28
|
-
export declare const ButtonVariantDefinitions: readonly ["default", "prominent", "toolbar", "opacity", "dial"];
|
28
|
+
export declare const ButtonVariantDefinitions: readonly ["default", "prominent", "toolbar", "opacity", "dial", "slim"];
|
29
29
|
export type ButtonVariants = typeof ButtonVariantDefinitions[number];
|
30
30
|
export declare const ButtonVariantsName = "ButtonVariants";
|
31
31
|
/**Button Group */
|
@@ -44,7 +44,7 @@ export declare const DialogTypeDefinitions: readonly ["save-cancel", "confirm",
|
|
44
44
|
export type DialogTypes = typeof DialogTypeDefinitions[number];
|
45
45
|
export declare const DialogTypesName = "DialogTypes";
|
46
46
|
/** Expansion Panel */
|
47
|
-
export declare const PanelTypeDefinitions: readonly ["default", "navigation", "section"
|
47
|
+
export declare const PanelTypeDefinitions: readonly ["default", "navigation", "section"];
|
48
48
|
export type PanelTypes = typeof PanelTypeDefinitions[number];
|
49
49
|
export declare const PanelTypesName = "PanelTypes";
|
50
50
|
/**Icon */
|
@@ -114,7 +114,7 @@ export declare const TextBoxTypeDefinitions: readonly ["text", "password", "numb
|
|
114
114
|
export type TextBoxTypes = typeof TextBoxTypeDefinitions[number];
|
115
115
|
export declare const TextBoxTypesName = "TextBoxTypes";
|
116
116
|
/** Toolbar */
|
117
|
-
export declare const ToolbarVariationDefinitions: readonly ["default", "blade"];
|
117
|
+
export declare const ToolbarVariationDefinitions: readonly ["default", "blade", "menu"];
|
118
118
|
export type ToolbarVariants = typeof ToolbarVariationDefinitions[number];
|
119
119
|
export declare const ToolbarVariantsName = "ToolbarVariants";
|
120
120
|
export {};
|
@@ -20,7 +20,7 @@ exports.AppBarTypesName = "AppBarTypes";
|
|
20
20
|
/**Button */
|
21
21
|
exports.ButtonPresetDefinitions = ["create", "remove", "delete", "ok", "cancel", "save", "close", "settings", "icon-add", "icon-delete", "icon-edit", "icon-drag-handle", "icon-copy", "icon-code", "icon-close", "icon-back", "icon-more", "icon-navigate", "icon-settings"];
|
22
22
|
exports.ButtonPresetsName = "OxideButtonPresets";
|
23
|
-
exports.ButtonVariantDefinitions = ["default", "prominent", "toolbar", "opacity", "dial"];
|
23
|
+
exports.ButtonVariantDefinitions = ["default", "prominent", "toolbar", "opacity", "dial", "slim"];
|
24
24
|
exports.ButtonVariantsName = "ButtonVariants";
|
25
25
|
/**Button Group */
|
26
26
|
exports.ButtonGroupTypeDefinitions = ["default", "dial", "settings"];
|
@@ -34,7 +34,7 @@ exports.AlignmentTypesName = "AlignmentTypes";
|
|
34
34
|
exports.DialogTypeDefinitions = ["save-cancel", "confirm", "ok-cancel", "default", "app"];
|
35
35
|
exports.DialogTypesName = "DialogTypes";
|
36
36
|
/** Expansion Panel */
|
37
|
-
exports.PanelTypeDefinitions = ["default", "navigation", "section"
|
37
|
+
exports.PanelTypeDefinitions = ["default", "navigation", "section"];
|
38
38
|
exports.PanelTypesName = "PanelTypes";
|
39
39
|
/**Icon */
|
40
40
|
exports.IconPresetDefinitions = ["add", "delete", "edit", "drag-handle", "copy", "code", "expand", "remove", "info"];
|
@@ -87,5 +87,5 @@ exports.TextBoxVariantTypesName = "TextBoxVariantTypes";
|
|
87
87
|
exports.TextBoxTypeDefinitions = ["text", "password", "number"];
|
88
88
|
exports.TextBoxTypesName = "TextBoxTypes";
|
89
89
|
/** Toolbar */
|
90
|
-
exports.ToolbarVariationDefinitions = ["default", "blade"];
|
90
|
+
exports.ToolbarVariationDefinitions = ["default", "blade", "menu"];
|
91
91
|
exports.ToolbarVariantsName = "ToolbarVariants";
|