master-components-react-ts 2.12.0 → 2.12.1
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/dist/Provider/Color.types.d.ts +7 -0
- package/dist/Provider/ColorVariables.d.ts +7 -0
- package/dist/index.js +362 -355
- package/package.json +1 -1
|
@@ -13,4 +13,11 @@ export type ThemeColors = {
|
|
|
13
13
|
colorSecondaryDisabled?: string;
|
|
14
14
|
colorSecondaryText?: string;
|
|
15
15
|
colorSecondaryDisabledText?: string;
|
|
16
|
+
colorTertiaryV2Default?: string;
|
|
17
|
+
colorTertiaryV2Border?: string;
|
|
18
|
+
colorTertiaryV2Hover?: string;
|
|
19
|
+
colorTertiaryV2Pressed?: string;
|
|
20
|
+
colorTertiaryV2Disabled?: string;
|
|
21
|
+
colorTertiaryV2Text?: string;
|
|
22
|
+
colorTertiaryV2DisabledText?: string;
|
|
16
23
|
};
|
|
@@ -14,4 +14,11 @@ export declare const variableMap: {
|
|
|
14
14
|
readonly colorSecondaryDisabled: "--color-secondary-disabled";
|
|
15
15
|
readonly colorSecondaryText: "--color-secondary-text";
|
|
16
16
|
readonly colorSecondaryDisabledText: "--color-secondary-disabled-text";
|
|
17
|
+
readonly colorTertiaryV2Default: "--color-tertiaryV2-default";
|
|
18
|
+
readonly colorTertiaryV2Border: "--color-tertiaryV2-border";
|
|
19
|
+
readonly colorTertiaryV2Hover: "--color-tertiaryV2-hover";
|
|
20
|
+
readonly colorTertiaryV2Pressed: "--color-tertiaryV2-pressed";
|
|
21
|
+
readonly colorTertiaryV2Disabled: "--color-tertiaryV2-disabled";
|
|
22
|
+
readonly colorTertiaryV2Text: "--color-tertiaryV2-text";
|
|
23
|
+
readonly colorTertiaryV2DisabledText: "--color-tertiaryV2-disabled-text";
|
|
17
24
|
};
|