@ansible/ansible-ui-framework 2.4.177 → 2.4.178
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/framework/components/pfcolors.d.ts +2 -1
- package/index.js +9014 -9008
- package/index.umd.cjs +186 -181
- package/package.json +1 -1
- package/style.css +1 -1
@@ -7,11 +7,12 @@ export declare enum PFColorE {
|
|
7
7
|
Red = "red",
|
8
8
|
Danger = "danger",
|
9
9
|
Yellow = "yellow",
|
10
|
+
Orange = "orange",
|
10
11
|
Warning = "warning",
|
11
12
|
Grey = "grey",
|
12
13
|
Disabled = "disabled"
|
13
14
|
}
|
14
|
-
export type PFColor = 'default' | 'green' | 'success' | 'blue' | 'info' | 'red' | 'danger' | 'yellow' | 'warning' | 'grey' | 'disabled';
|
15
|
+
export type PFColor = 'default' | 'green' | 'success' | 'blue' | 'info' | 'red' | 'danger' | 'yellow' | 'orange' | 'warning' | 'grey' | 'disabled';
|
15
16
|
export declare function getPatternflyColor(color: PFColor): "var(--pf-global--danger-color--100)" | "var(--pf-global--success-color--100)" | "var(--pf-global--warning-color--100)" | "var(--pf-global--info-color--100)" | "var(--pf-global--disabled-color--100)" | undefined;
|
16
17
|
export declare const pfSuccess = "var(--pf-global--success-color--100)";
|
17
18
|
export declare const pfDanger = "var(--pf-global--danger-color--100)";
|