@omnia/fx-models 8.0.410-dev → 8.0.412-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.
@@ -98,7 +98,8 @@ export interface ButtonBlueprintVariant {
|
|
98
98
|
category: ButtonBlueprintType;
|
99
99
|
}
|
100
100
|
export interface ButtonBlueprint extends Blueprint {
|
101
|
-
|
101
|
+
paddingX?: SpacingValue;
|
102
|
+
iconPaddingX?: SpacingValue;
|
102
103
|
height?: number;
|
103
104
|
background?: BackgroundDefinition;
|
104
105
|
alterCase?: boolean;
|
@@ -82,7 +82,8 @@ export interface TextStyleDefinition {
|
|
82
82
|
decoration?: string;
|
83
83
|
uppercase?: boolean;
|
84
84
|
italic?: boolean;
|
85
|
-
|
85
|
+
bold?: boolean;
|
86
|
+
lg?: TextStyleBreakPoint;
|
86
87
|
md?: TextStyleBreakPoint;
|
87
88
|
sm?: TextStyleBreakPoint;
|
88
89
|
font?: TypographyFontRef;
|
@@ -114,6 +115,10 @@ export declare enum TextStyleTypes {
|
|
114
115
|
export interface ThemedTextStyleValue {
|
115
116
|
type: TextStyleType;
|
116
117
|
size: TextStyleSize;
|
118
|
+
decoration?: string;
|
119
|
+
uppercase?: boolean;
|
120
|
+
italic?: boolean;
|
121
|
+
bold?: boolean;
|
117
122
|
}
|
118
123
|
export type TextStyleValue = TextStyleDefinition | ThemedTextStyleValue;
|
119
124
|
export type TextStyleBreakpointType = "lg" | "md" | "sm";
|
@@ -59,7 +59,7 @@ export type LinkItemProps = {
|
|
59
59
|
export declare const OButtonPresetDefinitions: readonly ["confirm", "create", "remove", "delete", "add", "ok", "cancel", "save", "close", "manage-list", "settings", "icon-add", "icon-comment", "icon-delete", "icon-edit", "icon-drag-handle", "icon-copy", "icon-code", "icon-close", "icon-back", "icon-more", "icon-navigate", "icon-preview", "icon-settings", "load-more", "retry", "remove", "approve", "copy-to-clipboard", "details", "next", "previous", "select", "view-more", "send-request", "icon-download"];
|
60
60
|
export type OOxideButtonPresets = typeof OButtonPresetDefinitions[number];
|
61
61
|
export declare const OButtonPresetsName = "OOxideButtonPresets";
|
62
|
-
export declare const OButtonVariantDefinitions: readonly ["primary", "default", "accent", "warn", "link", "close", "toolbar", "
|
62
|
+
export declare const OButtonVariantDefinitions: readonly ["primary", "default", "accent", "warn", "link", "close", "toolbar", "dial", "overlay"];
|
63
63
|
export type OButtonVariants = typeof OButtonVariantDefinitions[number];
|
64
64
|
export declare const OButtonVariantsName = "OButtonVariants";
|
65
65
|
/**Button Group */
|
@@ -39,7 +39,7 @@ exports.OAlertTypesName = "OAlertTypes";
|
|
39
39
|
/**Button */
|
40
40
|
exports.OButtonPresetDefinitions = ["confirm", "create", "remove", "delete", "add", "ok", "cancel", "save", "close", "manage-list", "settings", "icon-add", "icon-comment", "icon-delete", "icon-edit", "icon-drag-handle", "icon-copy", "icon-code", "icon-close", "icon-back", "icon-more", "icon-navigate", "icon-preview", "icon-settings", "load-more", "retry", "remove", "approve", "copy-to-clipboard", "details", "next", "previous", "select", "view-more", "send-request", "icon-download"];
|
41
41
|
exports.OButtonPresetsName = "OOxideButtonPresets";
|
42
|
-
exports.OButtonVariantDefinitions = ["primary", "default", "accent", "warn", "link", "close", "toolbar", "
|
42
|
+
exports.OButtonVariantDefinitions = ["primary", "default", "accent", "warn", "link", "close", "toolbar", "dial", "overlay"];
|
43
43
|
exports.OButtonVariantsName = "OButtonVariants";
|
44
44
|
/**Button Group */
|
45
45
|
exports.OButtonGroupTypeDefinitions = ["default", "dial", "settings"];
|