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.
- package/lib/components/accordion/Accordion.styles.d.ts +0 -1
- package/lib/components/bottomDrawer/BottomDrawer.styles.d.ts +0 -3
- package/lib/components/checkBox/CheckBox.interface.d.ts +7 -3
- package/lib/components/checkBox/CheckBox.styles.d.ts +3 -0
- package/lib/components/customIcon/CustomIcon.interface.d.ts +2 -1
- package/lib/components/customIcon/CustomIcon.styles.d.ts +1 -10
- package/lib/components/customSlideButton/custom-slide-button.interface.d.ts +4 -0
- package/lib/components/customSlideButton/index.d.ts +2 -2
- package/lib/components/customSlideButton/styles.d.ts +6 -0
- package/lib/components/dateRangePicker/DateRangePicker.styles.d.ts +26 -126
- package/lib/components/property-details/property-details.interface.d.ts +1 -0
- package/lib/components/property-details/styles.d.ts +17 -10
- package/lib/components/radio-button-group/RadioButtonGroup.interface.d.ts +4 -0
- package/lib/components/radio-button-group/index.d.ts +2 -2
- package/lib/components/radio-button-group/styles.d.ts +11 -3
- package/lib/components/textInput/Textinput.d.ts +1 -0
- package/lib/index.js +832 -525
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +827 -522
- package/lib/index.mjs.map +1 -1
- package/lib/theme/colors.d.ts +8 -0
- package/lib/theme/gradients.d.ts +10 -0
- package/lib/theme/themes.d.ts +8 -0
- package/lib/utils/appEnum.d.ts +3 -1
- package/package.json +1 -1
package/lib/theme/colors.d.ts
CHANGED
|
@@ -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;
|
package/lib/theme/themes.d.ts
CHANGED
package/lib/utils/appEnum.d.ts
CHANGED
|
@@ -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
|
}
|