dhre-ui-kit 3.0.0 → 3.0.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.
@@ -253,3 +253,11 @@ export declare const DHRE_RED_ERROR: {
253
253
  TRANSPARENT_400_60: string;
254
254
  TRANSPARENT_400_10: string;
255
255
  };
256
+ export declare const DHRE_CONFIRMATION_ERROR_GRADIENT: {
257
+ light: readonly ["#F0809E", "#FFFFFF"];
258
+ dark: readonly ["#EB0542", "#000A28"];
259
+ };
260
+ export declare const DHRE_CONFIRMATION_BASE_GRADIENT: {
261
+ light: readonly ["rgba(165, 233, 255, 0)", "#52C5E8"];
262
+ dark: readonly ["rgba(165, 233, 255, 0)", "#279DC1"];
263
+ };
@@ -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;
@@ -335,5 +335,13 @@ declare const theme: {
335
335
  dark: string;
336
336
  light: string;
337
337
  };
338
+ STROKE_ACTIVE: {
339
+ dark: string;
340
+ light: string;
341
+ };
342
+ STROKE_DISABLED_SELECTED: {
343
+ dark: string;
344
+ light: string;
345
+ };
338
346
  };
339
347
  export default theme;
@@ -162,5 +162,7 @@ export declare enum Theme {
162
162
  STROKE_WARNING = "STROKE_WARNING",
163
163
  STROKE_INFO = "STROKE_INFO",
164
164
  STROKE_DISABLED_DARK = "STROKE_DISABLED_DARK",
165
- STROKE_DISABLED_DARK2 = "STROKE_DISABLED_DARK2"
165
+ STROKE_DISABLED_DARK2 = "STROKE_DISABLED_DARK2",
166
+ STROKE_ACTIVE = "STROKE_ACTIVE",
167
+ STROKE_DISABLED_SELECTED = "STROKE_DISABLED_SELECTED"
166
168
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhre-ui-kit",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },