master-components-react-ts 2.11.25 → 2.12.0
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 +14 -12
- package/dist/Provider/ColorVariables.d.ts +15 -12
- package/dist/index.js +1425 -1402
- package/package.json +1 -1
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
export type ThemeColors = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
2
|
+
colorPrimaryDefault?: string;
|
|
3
|
+
colorPrimaryBorder?: string;
|
|
4
|
+
colorPrimaryHover?: string;
|
|
5
|
+
colorPrimaryPressed?: string;
|
|
6
|
+
colorPrimaryDisabled?: string;
|
|
7
|
+
colorPrimaryText?: string;
|
|
8
|
+
colorPrimaryDisabledText?: string;
|
|
9
|
+
colorSecondaryDefault?: string;
|
|
10
|
+
colorSecondaryBorder?: string;
|
|
11
|
+
colorSecondaryHover?: string;
|
|
12
|
+
colorSecondaryPressed?: string;
|
|
13
|
+
colorSecondaryDisabled?: string;
|
|
14
|
+
colorSecondaryText?: string;
|
|
15
|
+
colorSecondaryDisabledText?: string;
|
|
14
16
|
};
|
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
export declare const variableMap: {
|
|
2
|
-
readonly
|
|
3
|
-
readonly
|
|
4
|
-
readonly
|
|
5
|
-
readonly
|
|
6
|
-
readonly
|
|
7
|
-
readonly
|
|
8
|
-
readonly
|
|
9
|
-
readonly
|
|
10
|
-
readonly
|
|
11
|
-
readonly
|
|
12
|
-
readonly
|
|
13
|
-
readonly
|
|
2
|
+
readonly colorPrimaryDefault: "--color-primary-default";
|
|
3
|
+
readonly colorPrimaryBorder: "--color-primary-border";
|
|
4
|
+
readonly colorPrimaryHover: "--color-primary-hover";
|
|
5
|
+
readonly colorPrimaryPressed: "--color-primary-pressed";
|
|
6
|
+
readonly colorPrimaryDisabled: "--color-primary-disabled";
|
|
7
|
+
readonly colorPrimaryText: "--color-primary-text";
|
|
8
|
+
readonly colorPrimaryDisabledText: "--color-primary-disabled-text";
|
|
9
|
+
readonly colorPrimaryPlaceholder: "--color-primary-placeholder";
|
|
10
|
+
readonly colorSecondaryDefault: "--color-secondary-default";
|
|
11
|
+
readonly colorSecondaryBorder: "--color-secondary-border";
|
|
12
|
+
readonly colorSecondaryHover: "--color-secondary-hover";
|
|
13
|
+
readonly colorSecondaryPressed: "--color-secondary-pressed";
|
|
14
|
+
readonly colorSecondaryDisabled: "--color-secondary-disabled";
|
|
15
|
+
readonly colorSecondaryText: "--color-secondary-text";
|
|
16
|
+
readonly colorSecondaryDisabledText: "--color-secondary-disabled-text";
|
|
14
17
|
};
|