@omnia/fx-models 8.0.428-dev → 8.0.430-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.
- package/internal-do-not-import-from-here/shared/broadcasting/index.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/theme/Blueprints.d.ts +2 -1
- package/internal-do-not-import-from-here/shared/workers/index.d.ts +0 -1
- package/oxide/ActionMenu.d.ts +2 -1
- package/package.json +1 -1
- /package/internal-do-not-import-from-here/shared/{workers → broadcasting}/Leader.d.ts +0 -0
@@ -53,8 +53,9 @@ export interface ContainerFillBlueprint extends Blueprints, BlueprintsReference
|
|
53
53
|
export interface IFontBlueprints extends Blueprints, BlueprintsReference {
|
54
54
|
fonts: Array<TypographyFontDefinition>;
|
55
55
|
}
|
56
|
+
export type BlueprintsStrategyBase = "MD2" | "MD3";
|
56
57
|
export interface ComponentBlueprints extends ThemeBase {
|
57
|
-
|
58
|
+
baseBlueprints?: BlueprintsStrategyBase;
|
58
59
|
buttons?: ButtonBlueprints;
|
59
60
|
tabs?: TabsBlueprints;
|
60
61
|
icons?: IconBlueprints;
|
package/oxide/ActionMenu.d.ts
CHANGED
@@ -7,9 +7,10 @@ export interface ActionDefinition {
|
|
7
7
|
disabled?: boolean;
|
8
8
|
loading?: boolean;
|
9
9
|
icon: IIcon;
|
10
|
-
type?: "default" | "switch";
|
10
|
+
type?: "default" | "switch" | "custom";
|
11
11
|
onClick?: () => void;
|
12
12
|
activator?: (activatorRenderer: VNodeChild) => VNodeChild;
|
13
|
+
customRenderer?: () => VNodeChild;
|
13
14
|
colorSchemaType?: ColorSchemaTypes | ColorSchemaType;
|
14
15
|
}
|
15
16
|
export interface ActionSwitchDefinition extends ActionDefinition {
|
package/package.json
CHANGED
File without changes
|