ingred-ui 23.2.3 → 23.3.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.
@@ -15,6 +15,7 @@ export type Color = {
15
15
  };
16
16
  export declare const colors: {
17
17
  red: {
18
+ 50: "#FFF4F5";
18
19
  100: "#FFE2E5";
19
20
  200: "#FFBAC3";
20
21
  300: "#F96979";
@@ -39,6 +40,7 @@ export declare const colors: {
39
40
  900: "#022575";
40
41
  };
41
42
  yellow: {
43
+ 50: "#FFFCE4";
42
44
  100: "#FEFACF";
43
45
  200: "#FEF4A0";
44
46
  300: "#FEED71";
@@ -50,6 +52,7 @@ export declare const colors: {
50
52
  900: "#785F03";
51
53
  };
52
54
  green: {
55
+ 50: "#F4FFE2";
53
56
  100: "#ECFCD3";
54
57
  200: "#D6F9A9";
55
58
  300: "#B4ED7B";
@@ -4,7 +4,12 @@ export type PaletteColor = {
4
4
  dark: string;
5
5
  main: string;
6
6
  light: string;
7
+ softlight?: string;
7
8
  highlight: string;
9
+ ultraLight?: string;
10
+ };
11
+ export type SuccessPaletteColor = PaletteColor & {
12
+ medium: string;
8
13
  };
9
14
  export type PaletteText = {
10
15
  primary: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ingred-ui",
3
- "version": "23.2.3",
3
+ "version": "23.3.1",
4
4
  "description": "",
5
5
  "author": "CARTA HOLDINGS, Inc.",
6
6
  "license": "MIT",
@@ -96,7 +96,9 @@
96
96
  "colors": "1.4.0",
97
97
  "react": "18.1.0",
98
98
  "react-dom": "18.1.0",
99
+ "rollup": "4.34.7",
99
100
  "@types/react": "18.0.12",
100
- "@types/react-dom": "18.0.5"
101
+ "@types/react-dom": "18.0.5",
102
+ "esbuild": "^0.25.0"
101
103
  }
102
104
  }