@xfers/design-system 4.2.0-dev.0bacf0ee1a → 4.2.0-dev.48a042e49b
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/cjs/index.js +13 -13
- package/cjs/index.js.map +1 -1
- package/dist/components/Alert/Alert.js +2 -2
- package/dist/components/Alert/Alert.js.map +1 -1
- package/dist/components/Alert/styles.js +2 -2
- package/dist/components/Alert/styles.js.map +1 -1
- package/dist/components/Button/Button.js +2 -2
- package/dist/components/Button/Button.js.map +1 -1
- package/dist/components/EmptyData/index.js +1 -1
- package/dist/components/EmptyData/index.js.map +1 -1
- package/dist/components/Radio/index.js +4 -4
- package/dist/components/Radio/index.js.map +1 -1
- package/dist/components/Table/index.js +2 -2
- package/dist/components/Table/index.js.map +1 -1
- package/dist/constants/Typography/Typography.styles.js +7 -7
- package/dist/constants/Typography/Typography.styles.js.map +1 -1
- package/dist/constants/{Colors/colors.js → colors.js} +7 -7
- package/dist/constants/colors.js.map +1 -0
- package/dist/constants/fontStyles.js +1 -1
- package/dist/constants/fontStyles.js.map +1 -1
- package/dist/theme/theme.js +4 -4
- package/dist/theme/theme.js.map +1 -1
- package/dist/types/components/Alert/Alert.d.ts +1 -1
- package/dist/types/components/EmptyData/index.d.ts +1 -1
- package/dist/types/constants/{Colors/colors.d.ts → colors.d.ts} +7 -7
- package/dist/types/theme/ThemeContext.d.ts +72 -72
- package/dist/types/theme/theme.d.ts +7 -7
- package/es/index.js +13 -13
- package/es/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/constants/Colors/colors.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BLACK, BLUE, GREEN, GREY, RED, YELLOW, WHITE, BACKGROUND, SURFACE, BASE, INTERACTIVE, STATUS, COMPONENT } from 'src/constants/
|
|
1
|
+
import { BLACK, BLUE, GREEN, GREY, RED, YELLOW, WHITE, BACKGROUND, SURFACE, BASE, INTERACTIVE, STATUS, COMPONENT } from 'src/constants/colors';
|
|
2
2
|
import { SHADOW } from 'src/constants/shadow';
|
|
3
3
|
export declare const xfersTheme: {
|
|
4
4
|
brand: {
|
|
@@ -52,13 +52,13 @@ export declare const xfersTheme: {
|
|
|
52
52
|
};
|
|
53
53
|
base: {
|
|
54
54
|
primary: BASE;
|
|
55
|
-
primary2: BASE;
|
|
56
|
-
primary3: BASE;
|
|
57
55
|
onContainer: BASE;
|
|
58
56
|
onNeutral: BASE;
|
|
59
57
|
onNeutralSecondary: BASE;
|
|
58
|
+
info: BASE;
|
|
59
|
+
warning: BASE;
|
|
60
|
+
critical: BASE;
|
|
60
61
|
line: BASE;
|
|
61
|
-
link: BASE;
|
|
62
62
|
overlay: BASE;
|
|
63
63
|
};
|
|
64
64
|
interactive: {
|
|
@@ -211,13 +211,13 @@ export declare const straitsXTheme: {
|
|
|
211
211
|
};
|
|
212
212
|
base: {
|
|
213
213
|
primary: BASE;
|
|
214
|
-
primary2: BASE;
|
|
215
|
-
primary3: BASE;
|
|
216
214
|
onContainer: BASE;
|
|
217
215
|
onNeutral: BASE;
|
|
218
216
|
onNeutralSecondary: BASE;
|
|
217
|
+
info: BASE;
|
|
218
|
+
warning: BASE;
|
|
219
|
+
critical: BASE;
|
|
219
220
|
line: BASE;
|
|
220
|
-
link: BASE;
|
|
221
221
|
overlay: BASE;
|
|
222
222
|
};
|
|
223
223
|
interactive: {
|