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.mjs CHANGED
@@ -7765,7 +7765,8 @@ const FeedbackForm = ({
7765
7765
  inputText,
7766
7766
  rightBtnTxt,
7767
7767
  leftBtnTxt,
7768
- setFeedback
7768
+ setFeedback,
7769
+ inputStyle = {}
7769
7770
  }) => {
7770
7771
  const maxChars = 200;
7771
7772
  const { theme } = useTheme();
@@ -7781,7 +7782,7 @@ const FeedbackForm = ({
7781
7782
  ), /* @__PURE__ */ React.createElement(
7782
7783
  TextInput,
7783
7784
  {
7784
- style: [styles.textInput, { height: Math.max(100) }],
7785
+ style: [styles.textInput, inputStyle, { height: Math.max(100) }],
7785
7786
  placeholder: inputText,
7786
7787
  multiline: true,
7787
7788
  placeholderTextColor: Theme.CONTENT_SECONDRY,
@@ -8882,7 +8883,11 @@ const styles$4 = StyleSheet.create({
8882
8883
  width: "100%",
8883
8884
  marginLeft: 10
8884
8885
  },
8885
- lableContainer: { width: 60 }
8886
+ lableContainer: { width: 60 },
8887
+ newDividerStyle: {
8888
+ marginLeft: 10,
8889
+ width: "100%"
8890
+ }
8886
8891
  });
8887
8892
 
8888
8893
  var Status = /* @__PURE__ */ ((Status2) => {