@connectif/ui-components 2.3.0 → 2.3.2

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.
@@ -13,7 +13,6 @@ export declare const primaryDark = "#516DC4";
13
13
  export declare const primaryLight = "#82BDFD";
14
14
  export declare const primaryOpacity32 = "rgba(212, 224, 246, 0.32)";
15
15
  export declare const primaryAlpha32 = "#F1F5FC";
16
- export declare const primaryAlpha64 = "#E3EBF9";
17
16
  export declare const complementary50 = "#FBF3E3";
18
17
  export declare const complementary100 = "#F5E0B9";
19
18
  export declare const complementary200 = "#F0CC8C";
@@ -63,14 +62,6 @@ export declare const grey900 = "#212121";
63
62
  export declare const white = "#FFFFFF";
64
63
  export declare const whiteOpacity32 = "rgba(255, 255, 255, 0.32)";
65
64
  export declare const black = "#000000";
66
- export declare const blackOpacity04 = "rgba(0, 0, 0, 0.04)";
67
- export declare const blueGrey300 = "#A0A4AB";
68
- export declare const blueGrey400 = "#646D7A";
69
- export declare const blueGrey500 = "#495362";
70
- export declare const blueGrey700 = "#414A58";
71
- export declare const blueGrey800 = "#383F4C";
72
- export declare const lightGreen = "#599D7D";
73
- export declare const darkGreen = "#487F65";
74
65
  export declare const dark500 = "#7F8BA8";
75
66
  export declare const dark600 = "#3A4155";
76
67
  export declare const dark700 = "#2F3646";
@@ -79,20 +70,7 @@ export declare const dark900 = "#1D202A";
79
70
  export declare const darkMain = "#2F3646";
80
71
  export declare const electricLavender = "#AD77EF";
81
72
  export declare const cornflowerBlue = "#5F90EF";
82
- export declare const tertiaryBlueGray = "#0E7178";
83
- export declare const tertiaryBlueGrayLight = "#E4F5F7";
84
- export declare const tertiaryOliveGreen = "#619C1D";
85
- export declare const tertiaryOliveGreenLight = "#EFF7E6";
86
- export declare const tertiaryTealBlue = "#73849F";
87
- export declare const tertiaryTealBlueLight = "#F1F3F5";
88
- export declare const overlay02 = "rgba(0, 0, 0, 0.02)";
89
- export declare const overlay05 = "rgba(0, 0, 0, 0.05)";
90
- export declare const purpleDark = "#8035DC";
91
- export declare const purpleLight = "#FCEDFF";
92
73
  export declare const gunMetal = "#47535D";
93
74
  export declare const yellow = "#FFD234";
94
- export declare const blueGrey = "#7384A0";
95
75
  export declare const paleOliveGreen = "#AED581";
96
76
  export declare const oliveGreen = "#83B04E";
97
- export declare const redOrange = "#FF3D00";
98
- export declare const green2 = "#2AC1CB";
@@ -8,7 +8,6 @@ export interface CustomPalette extends Palette {
8
8
  success: CustomPaletteColor;
9
9
  grey: CustomPaletteColor;
10
10
  common: CustomPaletteCommon;
11
- blueGrey: CustomPaletteColor;
12
11
  green: CustomPaletteColor;
13
12
  dark: CustomPaletteColor;
14
13
  electricLavender: CustomPaletteColor;
@@ -21,7 +20,6 @@ export interface CustomPaletteOptions extends PaletteOptions {
21
20
  success?: CustomPaletteColorOptions;
22
21
  grey?: CustomPaletteColorOptions;
23
22
  common?: CustomPaletteCommonOptions;
24
- blueGrey?: CustomPaletteColorOptions;
25
23
  green?: CustomPaletteColorOptions;
26
24
  dark?: CustomPaletteColorOptions;
27
25
  electricLavender?: CustomPaletteColorOptions;
@@ -1,7 +1,6 @@
1
1
  export interface CustomPaletteCommon {
2
2
  black: string;
3
3
  white: string;
4
- blackOpacity04: string;
5
4
  whiteOpacity32: string;
6
5
  }
7
6
  export type CustomPaletteCommonOptions = Partial<CustomPaletteCommon>;
@@ -6,7 +6,6 @@ export declare const errorPalette: CustomPaletteColorOptions;
6
6
  export declare const successPalette: CustomPaletteColorOptions;
7
7
  export declare const greyPalette: CustomPaletteColorOptions;
8
8
  export declare const commonPalette: CustomPaletteCommonOptions;
9
- export declare const blueGreyPalette: CustomPaletteColorOptions;
10
9
  export declare const greenPalette: CustomPaletteColorOptions;
11
10
  export declare const darkPalette: CustomPaletteColorOptions;
12
11
  export declare const electricLavenderPalette: CustomPaletteColorOptions;