@omnia/fx-models 8.0.101-vnext → 8.0.103-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/ClientManifests.d.ts
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
import { ClientManifestTypes, BundleTargetTypes, RuleLogicalOperator, ManifestLoadStatus, OmniaClientRuntimes, OmniaBackendRuntimes } from "./Enums";
|
2
|
-
import { WebComponentDefinition } from "./ComponentComposer";
|
2
|
+
import { WebComponentDefinition as ComponentDefinition } from "./ComponentComposer";
|
3
3
|
import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
4
4
|
import { OmniaNamedModel } from ".";
|
5
5
|
export interface OmniaManifests {
|
6
6
|
target: ClientManifestTargetTypes;
|
7
7
|
omniaServiceId: GuidValue;
|
8
|
-
webcomponent: Array<
|
8
|
+
webcomponent: Array<ComponentBundleManifest>;
|
9
9
|
resource: Array<ResourcesBundleManifest>;
|
10
10
|
groupedResouresAndComponents: Array<GroupedBundleManifest>;
|
11
11
|
blockedManifest: Array<BlockedBundleManifest>;
|
@@ -82,12 +82,12 @@ export interface SecurityBundleManifest {
|
|
82
82
|
}
|
83
83
|
export interface ResourcesBundleManifest extends LoadableBundleManifest, ApiBundleManifest, SecurityBundleManifest {
|
84
84
|
}
|
85
|
-
export interface
|
85
|
+
export interface ComponentBundleManifest extends LoadableBundleManifest, ApiBundleManifest, SecurityBundleManifest {
|
86
86
|
/** The name for this component, this should be a none conflicting name
|
87
87
|
e.g. use project as prefix myuniqueprojectname-componentName.
|
88
88
|
i.e. <myuniqueprojectname-componentName></myuniqueprojectname-componentName> */
|
89
89
|
elementName: string;
|
90
|
-
definition?:
|
90
|
+
definition?: ComponentDefinition;
|
91
91
|
}
|
92
92
|
export interface GroupedBundleManifest extends LoadableBundleManifest, SecurityBundleManifest {
|
93
93
|
/** The manifest id's in this group */
|
@@ -118,7 +118,7 @@ export declare const TextBoxTypeDefinitions: readonly ["text", "password", "numb
|
|
118
118
|
export type TextBoxTypes = typeof TextBoxTypeDefinitions[number];
|
119
119
|
export declare const TextBoxTypesName = "TextBoxTypes";
|
120
120
|
/** Toolbar */
|
121
|
-
export declare const ToolbarVariationDefinitions: readonly ["default", "blade", "menu"];
|
121
|
+
export declare const ToolbarVariationDefinitions: readonly ["default", "blade", "menu", "drawer"];
|
122
122
|
export type ToolbarVariants = typeof ToolbarVariationDefinitions[number];
|
123
123
|
export declare const ToolbarVariantsName = "ToolbarVariants";
|
124
124
|
export {};
|
@@ -90,5 +90,5 @@ exports.TextBoxVariantTypesName = "TextBoxVariantTypes";
|
|
90
90
|
exports.TextBoxTypeDefinitions = ["text", "password", "number"];
|
91
91
|
exports.TextBoxTypesName = "TextBoxTypes";
|
92
92
|
/** Toolbar */
|
93
|
-
exports.ToolbarVariationDefinitions = ["default", "blade", "menu"];
|
93
|
+
exports.ToolbarVariationDefinitions = ["default", "blade", "menu", "drawer"];
|
94
94
|
exports.ToolbarVariantsName = "ToolbarVariants";
|
package/package.json
CHANGED
@@ -13,7 +13,7 @@ export declare const LayoutEditorCanvasStyles: {
|
|
13
13
|
drawerPanel: NestedCSSPropertiesExtends;
|
14
14
|
developerDialog: NestedCSSPropertiesExtends;
|
15
15
|
drawerToolbar: NestedCSSPropertiesExtends;
|
16
|
-
drawerToolbarWrapper: NestedCSSPropertiesExtends;
|
16
|
+
drawerToolbarWrapper: (dark: boolean) => NestedCSSPropertiesExtends;
|
17
17
|
settingsWrapper: NestedCSSPropertiesExtends;
|
18
18
|
closeButton: NestedCSSPropertiesExtends;
|
19
19
|
rightResizer: (backgroundColor: string) => NestedCSSPropertiesExtends;
|