dhre-ui-kit 3.1.0 → 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/index.d.ts CHANGED
@@ -60,6 +60,7 @@ export * from './theme/sizing';
60
60
  export * from './theme/padding';
61
61
  export * from './theme/stroke';
62
62
  export * from './theme/borderRadius';
63
+ export * from './theme/gradients';
63
64
  export { default as Avatar } from './components/avatar';
64
65
  export * from './components/avatar/Avatar.interface';
65
66
  export { default as AppointmentCard } from './components/appointment-card';
package/lib/index.js CHANGED
@@ -426,7 +426,8 @@ const DHRE_DEEP_SPACE_BLUE = {
426
426
  200: "#D8DDEA",
427
427
  100: "#F5F8FF",
428
428
  DSP_900_TRANSPERANT_20: "rgba(0, 10, 40, 0.20)",
429
- DSP_900_TRANSPERANT_10: "rgba(0, 10, 40, 0.10)"
429
+ DSP_900_TRANSPERANT_10: "rgba(0, 10, 40, 0.10)",
430
+ DSP_900_TRANSPERANT_30: "rgba(0, 10, 40, 0.30)"
430
431
  };
431
432
  const DHRE_CORE_BLUE = {
432
433
  400: "#15214B",
@@ -468,7 +469,8 @@ const DHRE_SUCCESS_GREEN = {
468
469
  100: "#C4E3CC",
469
470
  50: "#EBF7EE",
470
471
  TRANSPARENT_50: "rgba(137, 199, 152, 0.50)",
471
- TRANSPARENT_10: "rgba(137, 199, 152, 0.10)"
472
+ TRANSPARENT_10: "rgba(137, 199, 152, 0.10)",
473
+ TRANSPARENT_30: "rgba(137, 199, 152, 0.30)"
472
474
  };
473
475
  const DHRE_ORANGE_WARNING = {
474
476
  400: "#A4560E",
@@ -3900,6 +3902,13 @@ const OUTLINED_GRADIENT_COLORS = [
3900
3902
  const OUTLINED_GRADIENT_START = { x: 0, y: 0 };
3901
3903
  const OUTLINED_GRADIENT_END = { x: 1, y: 1 };
3902
3904
  const OUTLINED_BORDER_WIDTH = 1;
3905
+ const TAG_SUCCESS_GRADIENT_COLORS = [
3906
+ DHRE_DEEP_SPACE_BLUE.DSP_900_TRANSPERANT_30,
3907
+ DHRE_SUCCESS_GREEN.TRANSPARENT_30
3908
+ ];
3909
+ const TAG_SUCCESS_GRADIENT_BASE_COLOR = DHRE_DEEP_SPACE_BLUE[900];
3910
+ const TAG_SUCCESS_GRADIENT_START = { x: 0, y: 0 };
3911
+ const TAG_SUCCESS_GRADIENT_END = { x: 1, y: 0 };
3903
3912
 
3904
3913
  const styles$f = reactNative.StyleSheet.create({
3905
3914
  container: {
@@ -13724,6 +13733,10 @@ exports.Loader = Loader$1;
13724
13733
  exports.NAKHEEL_DEFAULT = NAKHEEL_DEFAULT;
13725
13734
  exports.NotificationBandge = NotificationBandge;
13726
13735
  exports.OTPInput = OTPInput;
13736
+ exports.OUTLINED_BORDER_WIDTH = OUTLINED_BORDER_WIDTH;
13737
+ exports.OUTLINED_GRADIENT_COLORS = OUTLINED_GRADIENT_COLORS;
13738
+ exports.OUTLINED_GRADIENT_END = OUTLINED_GRADIENT_END;
13739
+ exports.OUTLINED_GRADIENT_START = OUTLINED_GRADIENT_START;
13727
13740
  exports.OurOfficesButton = OurOffices;
13728
13741
  exports.PdfView = PdfView;
13729
13742
  exports.PopUp = PopUp;
@@ -13734,6 +13747,10 @@ exports.SingleSelectionTags = TagSingleSelection;
13734
13747
  exports.StarRating = Star;
13735
13748
  exports.Stepper = index$4;
13736
13749
  exports.SwipableList = SwipableList$1;
13750
+ exports.TAG_SUCCESS_GRADIENT_BASE_COLOR = TAG_SUCCESS_GRADIENT_BASE_COLOR;
13751
+ exports.TAG_SUCCESS_GRADIENT_COLORS = TAG_SUCCESS_GRADIENT_COLORS;
13752
+ exports.TAG_SUCCESS_GRADIENT_END = TAG_SUCCESS_GRADIENT_END;
13753
+ exports.TAG_SUCCESS_GRADIENT_START = TAG_SUCCESS_GRADIENT_START;
13737
13754
  exports.Tabs = Tabs$1;
13738
13755
  exports.Tags = Tags;
13739
13756
  exports.TextDirectType = TextDirectType;