dhre-ui-kit 3.0.2 → 3.2.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.
- package/lib/components/checkBox/CheckBox.interface.d.ts +3 -0
- package/lib/components/checkBox/CheckBox.styles.d.ts +5 -0
- package/lib/components/toast/Toast.styles.d.ts +0 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +109 -10
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +99 -11
- package/lib/index.mjs.map +1 -1
- package/lib/theme/colors.d.ts +14 -0
- package/lib/theme/gradients.d.ts +10 -0
- package/lib/theme/themes.d.ts +4 -0
- package/lib/utils/appEnum.d.ts +2 -1
- package/package.json +1 -1
- package/lib/components/customDocumentPicker/CustomDocumentPicker.d.ts +0 -0
- package/lib/components/customDocumentPicker/CustomDocumentPicker.interface.d.ts +0 -0
- package/lib/components/customDocumentPicker/CustomDocumentPicker.styles.d.ts +0 -30
- package/lib/components/customDocumentPicker/index.d.ts +0 -0
package/lib/theme/colors.d.ts
CHANGED
|
@@ -192,6 +192,7 @@ export declare const DHRE_DEEP_SPACE_BLUE: {
|
|
|
192
192
|
100: string;
|
|
193
193
|
DSP_900_TRANSPERANT_20: string;
|
|
194
194
|
DSP_900_TRANSPERANT_10: string;
|
|
195
|
+
DSP_900_TRANSPERANT_30: string;
|
|
195
196
|
};
|
|
196
197
|
export declare const DHRE_CORE_BLUE: {
|
|
197
198
|
400: string;
|
|
@@ -234,6 +235,7 @@ export declare const DHRE_SUCCESS_GREEN: {
|
|
|
234
235
|
50: string;
|
|
235
236
|
TRANSPARENT_50: string;
|
|
236
237
|
TRANSPARENT_10: string;
|
|
238
|
+
TRANSPARENT_30: string;
|
|
237
239
|
};
|
|
238
240
|
export declare const DHRE_ORANGE_WARNING: {
|
|
239
241
|
400: string;
|
|
@@ -261,3 +263,15 @@ export declare const DHRE_CONFIRMATION_BASE_GRADIENT: {
|
|
|
261
263
|
light: readonly ["rgba(165, 233, 255, 0)", "#52C5E8"];
|
|
262
264
|
dark: readonly ["rgba(165, 233, 255, 0)", "#279DC1"];
|
|
263
265
|
};
|
|
266
|
+
export declare const GRADIENT_COLORS_SUCCESS: {
|
|
267
|
+
light: readonly ["#89C798", "#FFFFFF", "#A5E9FF", "#52C5E8", "#0B214A", "#355D7A"];
|
|
268
|
+
dark: readonly ["#24584B", "#123D46", "#00113A", "#000A28", "#0B214A", "#355D7A"];
|
|
269
|
+
};
|
|
270
|
+
export declare const GRADIENT_COLORS_ERROR: {
|
|
271
|
+
light: readonly ["#F0809E", "#FFFFFF", "#A5E9FF", "#52C5E8", "#0B214A", "#355D7A"];
|
|
272
|
+
dark: readonly ["#EB0542", "#780835", "#00113A", "#000A28", "#0B214A", "#355D7A"];
|
|
273
|
+
};
|
|
274
|
+
export declare const GRADIENT_COLORS_PENDING: {
|
|
275
|
+
light: readonly ["#E9F8FF", "#52C5E8"];
|
|
276
|
+
dark: readonly ["#EB0542", "#780835", "#00113A", "#000A28", "#000A28", "#0B214A", "#355D7A"];
|
|
277
|
+
};
|
package/lib/theme/gradients.d.ts
CHANGED
|
@@ -8,3 +8,13 @@ export declare const OUTLINED_GRADIENT_END: {
|
|
|
8
8
|
readonly y: 1;
|
|
9
9
|
};
|
|
10
10
|
export declare const OUTLINED_BORDER_WIDTH = 1;
|
|
11
|
+
export declare const TAG_SUCCESS_GRADIENT_COLORS: readonly [string, string];
|
|
12
|
+
export declare const TAG_SUCCESS_GRADIENT_BASE_COLOR: string;
|
|
13
|
+
export declare const TAG_SUCCESS_GRADIENT_START: {
|
|
14
|
+
readonly x: 0;
|
|
15
|
+
readonly y: 0;
|
|
16
|
+
};
|
|
17
|
+
export declare const TAG_SUCCESS_GRADIENT_END: {
|
|
18
|
+
readonly x: 1;
|
|
19
|
+
readonly y: 0;
|
|
20
|
+
};
|
package/lib/theme/themes.d.ts
CHANGED
package/lib/utils/appEnum.d.ts
CHANGED
|
@@ -164,5 +164,6 @@ export declare enum Theme {
|
|
|
164
164
|
STROKE_DISABLED_DARK = "STROKE_DISABLED_DARK",
|
|
165
165
|
STROKE_DISABLED_DARK2 = "STROKE_DISABLED_DARK2",
|
|
166
166
|
STROKE_ACTIVE = "STROKE_ACTIVE",
|
|
167
|
-
STROKE_DISABLED_SELECTED = "STROKE_DISABLED_SELECTED"
|
|
167
|
+
STROKE_DISABLED_SELECTED = "STROKE_DISABLED_SELECTED",
|
|
168
|
+
SHADOW_10 = "SHADOW_10"
|
|
168
169
|
}
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
@@ -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
|