@true-engineering/true-react-common-ui-kit 3.1.0 → 3.1.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/README.md CHANGED
@@ -10,6 +10,10 @@
10
10
 
11
11
  # Release Notes
12
12
 
13
+ ## v3.1.1
14
+
15
+ - **Status** фикс цветов
16
+
13
17
  ## v3.1.0
14
18
 
15
19
  - Добавлены компоненты **Selector** **Status** **TextButton**
@@ -28227,19 +28227,19 @@ var useStyles$7 = createThemedStyles("Status", {
28227
28227
  }
28228
28228
  },
28229
28229
  green: {
28230
- "--status-background": rgba("#D4E3AC", 0.4),
28231
- "--status-color": "#769E19"
28230
+ "--status-background": rgba("#D4E3AC", 0.5),
28231
+ "--status-color": "#6F990F"
28232
28232
  },
28233
28233
  blue: {
28234
- "--status-background": "#EBF1FF",
28235
- "--status-color": "#577EDC"
28234
+ "--status-background": rgba("#AABFFC", 0.4),
28235
+ "--status-color": "#4C6EBF"
28236
28236
  },
28237
28237
  grey: {
28238
- "--status-background": "#ECEFF5",
28238
+ "--status-background": rgba("#95A0B3", 0.25),
28239
28239
  "--status-color": "#7A869A"
28240
28240
  },
28241
28241
  orange: {
28242
- "--status-background": rgba("#FCD3A9", 0.4),
28242
+ "--status-background": rgba("#FCD3A9", 0.5),
28243
28243
  "--status-color": "#E5741C"
28244
28244
  },
28245
28245
  red: {
@@ -28217,19 +28217,19 @@
28217
28217
  }
28218
28218
  },
28219
28219
  green: {
28220
- "--status-background": rgba("#D4E3AC", 0.4),
28221
- "--status-color": "#769E19"
28220
+ "--status-background": rgba("#D4E3AC", 0.5),
28221
+ "--status-color": "#6F990F"
28222
28222
  },
28223
28223
  blue: {
28224
- "--status-background": "#EBF1FF",
28225
- "--status-color": "#577EDC"
28224
+ "--status-background": rgba("#AABFFC", 0.4),
28225
+ "--status-color": "#4C6EBF"
28226
28226
  },
28227
28227
  grey: {
28228
- "--status-background": "#ECEFF5",
28228
+ "--status-background": rgba("#95A0B3", 0.25),
28229
28229
  "--status-color": "#7A869A"
28230
28230
  },
28231
28231
  orange: {
28232
- "--status-background": rgba("#FCD3A9", 0.4),
28232
+ "--status-background": rgba("#FCD3A9", 0.5),
28233
28233
  "--status-color": "#E5741C"
28234
28234
  },
28235
28235
  red: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@true-engineering/true-react-common-ui-kit",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "True Engineering React UI Kit with theming support",
5
5
  "author": "True Engineering (https://trueengineering.ru)",
6
6
  "keywords": [
@@ -103,22 +103,22 @@ export const useStyles = createThemedStyles('Status', {
103
103
  },
104
104
 
105
105
  green: {
106
- '--status-background': rgba('#D4E3AC', 0.4),
107
- '--status-color': '#769E19',
106
+ '--status-background': rgba('#D4E3AC', 0.5),
107
+ '--status-color': '#6F990F',
108
108
  },
109
109
 
110
110
  blue: {
111
- '--status-background': '#EBF1FF',
112
- '--status-color': '#577EDC',
111
+ '--status-background': rgba('#AABFFC', 0.4),
112
+ '--status-color': '#4C6EBF',
113
113
  },
114
114
 
115
115
  grey: {
116
- '--status-background': '#ECEFF5',
116
+ '--status-background': rgba('#95A0B3', 0.25),
117
117
  '--status-color': '#7A869A',
118
118
  },
119
119
 
120
120
  orange: {
121
- '--status-background': rgba('#FCD3A9', 0.4),
121
+ '--status-background': rgba('#FCD3A9', 0.5),
122
122
  '--status-color': '#E5741C',
123
123
  },
124
124