dhre-ui-kit 0.0.118 → 0.0.120
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 → dist}/index.d.ts +1 -1
- package/{lib → dist}/index.js +3 -3
- package/dist/index.js.map +1 -0
- package/{lib → dist}/index.mjs +3 -3
- package/dist/index.mjs.map +1 -0
- package/package.json +7 -26
- package/lib/index.js.map +0 -1
- package/lib/index.mjs.map +0 -1
package/{lib → dist}/index.d.ts
RENAMED
|
@@ -386,7 +386,7 @@ interface CustomSearchBarProps extends TextInputProps {
|
|
|
386
386
|
onCrossIconPress?: () => void;
|
|
387
387
|
handleOnChangeText?: (text: string) => void;
|
|
388
388
|
searchIcon: React.ReactElement;
|
|
389
|
-
rightIcon
|
|
389
|
+
rightIcon: React.ReactElement;
|
|
390
390
|
disableBorderColor?: string;
|
|
391
391
|
disablePlaceHolderStyle?: string;
|
|
392
392
|
enablePlaceHolderStyle?: string;
|
package/{lib → dist}/index.js
RENAMED
|
@@ -754,7 +754,7 @@ const CustomButton = ({
|
|
|
754
754
|
/* @__PURE__ */ React__default["default"].createElement(
|
|
755
755
|
CustomText$1,
|
|
756
756
|
{
|
|
757
|
-
text:
|
|
757
|
+
text: "shashank",
|
|
758
758
|
variant: titleVariant,
|
|
759
759
|
style: [
|
|
760
760
|
textStyle,
|
|
@@ -2190,11 +2190,11 @@ const CustomSearchBar = ({
|
|
|
2190
2190
|
},
|
|
2191
2191
|
style: crossIconStyle
|
|
2192
2192
|
},
|
|
2193
|
-
|
|
2193
|
+
React__default["default"].cloneElement(rightIcon, {
|
|
2194
2194
|
// width: moderateScale(24),
|
|
2195
2195
|
// height: moderateScale(24),
|
|
2196
2196
|
style: [styles$l.crossIconStyle, crossIconStyle]
|
|
2197
|
-
})
|
|
2197
|
+
})
|
|
2198
2198
|
)
|
|
2199
2199
|
);
|
|
2200
2200
|
};
|