@fibery/ui-kit 1.34.6 → 1.34.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fibery/ui-kit",
3
- "version": "1.34.6",
3
+ "version": "1.34.7",
4
4
  "private": false,
5
5
  "files": [
6
6
  "src/antd/styles.ts",
@@ -79,7 +79,7 @@
79
79
  "ua-parser-js": "1.0.39",
80
80
  "@fibery/emoji-data": "2.6.0",
81
81
  "@fibery/helpers": "1.3.0",
82
- "@fibery/react": "1.4.0"
82
+ "@fibery/react": "1.4.1"
83
83
  },
84
84
  "peerDependencies": {
85
85
  "react": "^18.2.0",
@@ -81,6 +81,7 @@ export const cardTypeColors = [
81
81
  const swatches = {
82
82
  "gray-light": cardTypeColors[1],
83
83
  yellow: cardTypeColors[14],
84
+ green: "#69AC5E",
84
85
  };
85
86
 
86
87
  // switch to chroma.valid once we start using 2.0.1
@@ -456,6 +457,8 @@ export const themeColors = {
456
457
 
457
458
  mySpaceIconColor: [swatches["gray-light"], swatches["gray-light"]],
458
459
  mySpaceIconBg: [getOpacities(swatches["gray-light"]).opacity20, getOpacities(swatches["gray-light"]).opacity20],
460
+ privateIconColor: [swatches.green, swatches.green],
461
+ privateIconBg: [getOpacities(swatches.green).opacity20, getOpacities(swatches.green).opacity20],
459
462
  favoritesIconColor: [swatches.yellow, swatches.yellow],
460
463
  favoritesIconBg: [getOpacities(swatches.yellow).opacity20, getOpacities(swatches.yellow).opacity20],
461
464