dhre-ui-kit 2.0.11 → 2.0.13

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
@@ -608,6 +608,7 @@ declare const _default$6: (props: {
608
608
  clearAllData?: () => void;
609
609
  handleSendFeedback?: () => void;
610
610
  setFeedback: (val: string) => void;
611
+ inputStyle?: ViewStyle;
611
612
  }) => React$1.JSX.Element;
612
613
 
613
614
  interface MobileNumberInputProps {
package/lib/index.js CHANGED
@@ -7801,7 +7801,8 @@ const FeedbackForm = ({
7801
7801
  inputText,
7802
7802
  rightBtnTxt,
7803
7803
  leftBtnTxt,
7804
- setFeedback
7804
+ setFeedback,
7805
+ inputStyle = {}
7805
7806
  }) => {
7806
7807
  const maxChars = 200;
7807
7808
  const { theme } = useTheme();
@@ -7817,7 +7818,7 @@ const FeedbackForm = ({
7817
7818
  ), /* @__PURE__ */ React__default["default"].createElement(
7818
7819
  reactNative.TextInput,
7819
7820
  {
7820
- style: [styles.textInput, { height: Math.max(100) }],
7821
+ style: [styles.textInput, inputStyle, { height: Math.max(100) }],
7821
7822
  placeholder: inputText,
7822
7823
  multiline: true,
7823
7824
  placeholderTextColor: Theme.CONTENT_SECONDRY,
@@ -8918,7 +8919,11 @@ const styles$4 = reactNative.StyleSheet.create({
8918
8919
  width: "100%",
8919
8920
  marginLeft: 10
8920
8921
  },
8921
- lableContainer: { width: 60 }
8922
+ lableContainer: { width: 60 },
8923
+ newDividerStyle: {
8924
+ marginLeft: 10,
8925
+ width: "100%"
8926
+ }
8922
8927
  });
8923
8928
 
8924
8929
  var Status = /* @__PURE__ */ ((Status2) => {