dhre-ui-kit 0.0.397 → 0.0.398
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.js +12 -4
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +12 -4
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -5243,8 +5243,11 @@ const CustomDropdown = (props) => {
|
|
|
5243
5243
|
const styles$8 = StyleSheet.create({
|
|
5244
5244
|
container: {
|
|
5245
5245
|
backgroundColor: theme.SURFACE_STATIC["light"],
|
|
5246
|
-
marginVertical: verticalScale(4)
|
|
5246
|
+
marginVertical: verticalScale(4),
|
|
5247
5247
|
// External margin
|
|
5248
|
+
direction: "ltr",
|
|
5249
|
+
writingDirection: "ltr",
|
|
5250
|
+
textAlign: "left"
|
|
5248
5251
|
},
|
|
5249
5252
|
dropdown: {
|
|
5250
5253
|
height: verticalScale(48),
|
|
@@ -5264,10 +5267,13 @@ const styles$8 = StyleSheet.create({
|
|
|
5264
5267
|
fontSize: verticalScale(12)
|
|
5265
5268
|
},
|
|
5266
5269
|
placeholderStyle: {
|
|
5267
|
-
fontSize: verticalScale(16)
|
|
5270
|
+
fontSize: verticalScale(16),
|
|
5271
|
+
writingDirection: "ltr",
|
|
5272
|
+
direction: "ltr"
|
|
5268
5273
|
},
|
|
5269
5274
|
selectedTextStyle: {
|
|
5270
|
-
fontSize: verticalScale(16)
|
|
5275
|
+
fontSize: verticalScale(16),
|
|
5276
|
+
writingDirection: "ltr"
|
|
5271
5277
|
},
|
|
5272
5278
|
iconStyle: {
|
|
5273
5279
|
width: horizontalScale(20),
|
|
@@ -5608,7 +5614,9 @@ const styles$5 = StyleSheet.create({
|
|
|
5608
5614
|
textInputContainer: {
|
|
5609
5615
|
flexDirection: "row",
|
|
5610
5616
|
justifyContent: "space-between",
|
|
5611
|
-
marginTop: verticalScale(8)
|
|
5617
|
+
marginTop: verticalScale(8),
|
|
5618
|
+
direction: "ltr",
|
|
5619
|
+
writingDirection: "ltr"
|
|
5612
5620
|
},
|
|
5613
5621
|
textInputStyle: {
|
|
5614
5622
|
height: verticalScale(48),
|