@hazelcast/ui 1.3.2-next.67 → 1.3.2-next.69

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.
@@ -38,7 +38,7 @@
38
38
  &.success {
39
39
  color: c.$colorText;
40
40
  border-color: c.$colorSuccess;
41
- background-color: rgba(c.$colorSuccess, 30%);
41
+ background-color: c.$colorSuccessLight;
42
42
 
43
43
  .icon {
44
44
  color: c.$colorText;
@@ -55,7 +55,7 @@
55
55
  &.info {
56
56
  color: c.$colorText;
57
57
  border-color: c.$colorInfo;
58
- background-color: rgba(c.$colorInfo, 30%);
58
+ background-color: c.$colorInfoLight;
59
59
 
60
60
  .icon {
61
61
  color: c.$colorText;
@@ -72,7 +72,7 @@
72
72
  &.warning {
73
73
  color: c.$colorText;
74
74
  border-color: c.$colorWarning;
75
- background-color: rgba(c.$colorWarning, 30%);
75
+ background-color: c.$colorWarningLight;
76
76
 
77
77
  .icon {
78
78
  color: c.$colorText;
@@ -89,7 +89,7 @@
89
89
  &.critical {
90
90
  color: c.$colorText;
91
91
  border-color: c.$colorError;
92
- background-color: rgba(c.$colorError, 30%);
92
+ background-color: c.$colorErrorLight;
93
93
 
94
94
  .icon {
95
95
  color: c.$colorText;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hazelcast/ui",
3
- "version": "1.3.2-next.67+67b20de",
3
+ "version": "1.3.2-next.69+d231d00",
4
4
  "description": "Hazelcast design system components",
5
5
  "author": "",
6
6
  "homepage": "https://github.com/hazelcast/frontend-shared#readme",
@@ -32,9 +32,9 @@
32
32
  "build-storybook": "build-storybook",
33
33
  "publish-storybook": "chromatic --storybook-build-dir storybook-static --project-token $CHROMATIC_PROJECT_TOKEN --exit-zero-on-changes",
34
34
  "chromatic": "chromatic --project-token=CHROMATIC_PROJECT_TOKEN",
35
- "test:visual": "loki --verboseRenderer --requireReference --reactUri file:./storybook-static --chromeFlags='--headless --disable-gpu --hide-scrollbars --no-sandbox --allow-file-access-from-files'",
35
+ "test:visual": "loki --verboseRenderer --requireReference --chromeTolerance 3 --reactUri file:./storybook-static --chromeDockerImage 'yukinying/chrome-headless-browser-stable:110.0.5481.77' --chromeFlags='--headless --disable-gpu --hide-scrollbars --no-sandbox --allow-file-access-from-files'",
36
36
  "test:visual:approve": "loki approve",
37
- "generate-screenshots": "pnpm run build-storybook && loki update --reactUri file:./storybook-static --chromeFlags='--headless --disable-gpu --hide-scrollbars --no-sandbox --allow-file-access-from-files'",
37
+ "generate-screenshots": "pnpm run build-storybook && loki update --reactUri file:./storybook-static --chromeDockerImage 'yukinying/chrome-headless-browser-stable:110.0.5481.77' --chromeFlags='--headless --disable-gpu --hide-scrollbars --no-sandbox --allow-file-access-from-files'",
38
38
  "lint": "pnpm run lint:ts && pnpm run lint:css",
39
39
  "lint:fix": "pnpm run lint:ts:fix && pnpm run lint:css:fix",
40
40
  "lint:ts": "eslint --ext .ts,.tsx .",
@@ -95,7 +95,7 @@
95
95
  "doiuse": "^4.4.1",
96
96
  "enzyme": "^3.11.0",
97
97
  "jest-axe": "^5.0.1",
98
- "loki": "^0.31.1",
98
+ "loki": "^0.32.0",
99
99
  "postcss": "^8.4.23",
100
100
  "postcss-cli": "^9.1.0",
101
101
  "postcss-reporter": "^7.0.5",
@@ -117,5 +117,5 @@
117
117
  "react": "^17 || ^18",
118
118
  "react-dom": "^17 || ^18"
119
119
  },
120
- "gitHead": "67b20dec3ddfbfdc3709c940c7304018e0c60ae6"
120
+ "gitHead": "d231d00d96497032bf10c04ad1de563e74225cbb"
121
121
  }
@@ -1,5 +1,4 @@
1
- // @todo: remove 'Roboto' after we release New Brand. It's only for backward compatibility here
2
- $fontFamilyHeading: 'Roboto', 'PP Telegraf', 'Helvetica', 'Arial', sans-serif !default;
1
+ $fontFamilyHeading: 'PP Telegraf', 'Helvetica', 'Arial', sans-serif !default;
3
2
  $fontWeightHeadingRegular: 400 !default;
4
3
  $fontWeightHeadingBold: 500 !default;
5
4
  $fontFamilyText: 'Open Sans', 'Helvetica', 'Arial', sans-serif !default;