@omnia/fx-models 8.0.245-dev → 8.0.247-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.
@@ -6,6 +6,8 @@ export interface MarkdownEditorActionRegistration {
|
|
6
6
|
altText?: string;
|
7
7
|
groupIndex: number;
|
8
8
|
itemIndex: number;
|
9
|
+
isActive?: (store: any) => boolean;
|
10
|
+
isDisabled?: (store: any) => boolean;
|
9
11
|
onClick?: (store: any) => void;
|
10
12
|
component?: () => JSX.Element;
|
11
13
|
}
|
@@ -182,7 +182,7 @@ export declare const OToolbarVariationDefinitions: readonly ["default", "blade",
|
|
182
182
|
export type OToolbarVariants = typeof OToolbarVariationDefinitions[number];
|
183
183
|
export declare const OToolbarVariantsName = "OToolbarVariants";
|
184
184
|
/** Draggable */
|
185
|
-
export declare const ODraggableVariationDefinitions: readonly ["default", "
|
185
|
+
export declare const ODraggableVariationDefinitions: readonly ["default", "element", "accordion"];
|
186
186
|
export type ODraggableVariants = typeof ODraggableVariationDefinitions[number];
|
187
187
|
export declare const ODraggableVariantsName = "ODraggableVariants";
|
188
188
|
/** Infinte Scroll */
|
@@ -134,7 +134,7 @@ exports.OTextBoxTypesName = "OTextBoxTypes";
|
|
134
134
|
exports.OToolbarVariationDefinitions = ["default", "blade", "menu", "drawer"];
|
135
135
|
exports.OToolbarVariantsName = "OToolbarVariants";
|
136
136
|
/** Draggable */
|
137
|
-
exports.ODraggableVariationDefinitions = ["default", "
|
137
|
+
exports.ODraggableVariationDefinitions = ["default", "element", "accordion"];
|
138
138
|
exports.ODraggableVariantsName = "ODraggableVariants";
|
139
139
|
/** Infinte Scroll */
|
140
140
|
exports.OInfiniteScrollStatusDefinitions = ["ok", "empty", "loading", "error"];
|