dhre-ui-kit 3.0.1 → 3.1.0

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.
@@ -261,3 +261,15 @@ export declare const DHRE_CONFIRMATION_BASE_GRADIENT: {
261
261
  light: readonly ["rgba(165, 233, 255, 0)", "#52C5E8"];
262
262
  dark: readonly ["rgba(165, 233, 255, 0)", "#279DC1"];
263
263
  };
264
+ export declare const GRADIENT_COLORS_SUCCESS: {
265
+ light: readonly ["#89C798", "#FFFFFF", "#A5E9FF", "#52C5E8", "#0B214A", "#355D7A"];
266
+ dark: readonly ["#24584B", "#123D46", "#00113A", "#000A28", "#0B214A", "#355D7A"];
267
+ };
268
+ export declare const GRADIENT_COLORS_ERROR: {
269
+ light: readonly ["#F0809E", "#FFFFFF", "#A5E9FF", "#52C5E8", "#0B214A", "#355D7A"];
270
+ dark: readonly ["#EB0542", "#780835", "#00113A", "#000A28", "#0B214A", "#355D7A"];
271
+ };
272
+ export declare const GRADIENT_COLORS_PENDING: {
273
+ light: readonly ["#E9F8FF", "#52C5E8"];
274
+ dark: readonly ["#EB0542", "#780835", "#00113A", "#000A28", "#000A28", "#0B214A", "#355D7A"];
275
+ };
@@ -0,0 +1,10 @@
1
+ export declare const OUTLINED_GRADIENT_COLORS: readonly [string, "#438CB1"];
2
+ export declare const OUTLINED_GRADIENT_START: {
3
+ readonly x: 0;
4
+ readonly y: 0;
5
+ };
6
+ export declare const OUTLINED_GRADIENT_END: {
7
+ readonly x: 1;
8
+ readonly y: 1;
9
+ };
10
+ export declare const OUTLINED_BORDER_WIDTH = 1;
@@ -339,5 +339,13 @@ declare const theme: {
339
339
  dark: string;
340
340
  light: string;
341
341
  };
342
+ STROKE_DISABLED_SELECTED: {
343
+ dark: string;
344
+ light: string;
345
+ };
346
+ SHADOW_10: {
347
+ dark: string;
348
+ light: string;
349
+ };
342
350
  };
343
351
  export default theme;
@@ -163,5 +163,7 @@ export declare enum Theme {
163
163
  STROKE_INFO = "STROKE_INFO",
164
164
  STROKE_DISABLED_DARK = "STROKE_DISABLED_DARK",
165
165
  STROKE_DISABLED_DARK2 = "STROKE_DISABLED_DARK2",
166
- STROKE_ACTIVE = "STROKE_ACTIVE"
166
+ STROKE_ACTIVE = "STROKE_ACTIVE",
167
+ STROKE_DISABLED_SELECTED = "STROKE_DISABLED_SELECTED",
168
+ SHADOW_10 = "SHADOW_10"
167
169
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhre-ui-kit",
3
- "version": "3.0.1",
3
+ "version": "3.1.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -1,30 +0,0 @@
1
- declare const styles: {
2
- container: {
3
- flexDirection: "row";
4
- alignItems: "center";
5
- justifyContent: "space-between";
6
- paddingVertical: number;
7
- paddingHorizontal: number;
8
- borderWidth: number;
9
- borderStyle: "dashed";
10
- borderRadius: number;
11
- marginBottom: number;
12
- };
13
- fileUploadContainerStyle: {
14
- flexDirection: "row";
15
- alignItems: "center";
16
- justifyContent: "space-between";
17
- paddingVertical: number;
18
- paddingHorizontal: number;
19
- borderRadius: number;
20
- marginBottom: number;
21
- };
22
- innerContainer: {
23
- flexDirection: "row";
24
- columnGap: number;
25
- };
26
- titleContainer: {
27
- gap: number;
28
- };
29
- };
30
- export default styles;
File without changes