@sikka/hawa 0.49.8-next → 0.49.10-next
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/dist/blocks/auth/index.d.mts +1 -0
- package/dist/blocks/auth/index.d.ts +1 -0
- package/dist/blocks/auth/index.js +61 -52
- package/dist/blocks/auth/index.mjs +60 -52
- package/dist/blocks/index.d.mts +1 -0
- package/dist/blocks/index.d.ts +1 -0
- package/dist/blocks/index.js +61 -52
- package/dist/blocks/index.mjs +60 -52
- package/dist/blocks/misc/index.js +2 -1
- package/dist/blocks/misc/index.mjs +1 -1
- package/dist/{chunk-5CD5WZIQ.mjs → chunk-HKHXE2VO.mjs} +2 -1
- package/dist/{chunk-JT7R3L5O.mjs → chunk-LDN5RXGD.mjs} +2 -1
- package/dist/dataTable/index.js +2 -1
- package/dist/dataTable/index.js.map +1 -1
- package/dist/dataTable/index.mjs +2 -1
- package/dist/dataTable/index.mjs.map +1 -1
- package/dist/elements/index.d.mts +2 -0
- package/dist/elements/index.d.ts +2 -0
- package/dist/elements/index.js +2 -1
- package/dist/elements/index.mjs +1 -1
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +61 -52
- package/dist/index.mjs +61 -52
- package/dist/input/index.d.mts +2 -0
- package/dist/input/index.d.ts +2 -0
- package/dist/input/index.js +2 -1
- package/dist/input/index.js.map +1 -1
- package/dist/input/index.mjs +2 -1
- package/dist/input/index.mjs.map +1 -1
- package/dist/passwordInput/index.js +2 -1
- package/dist/passwordInput/index.js.map +1 -1
- package/dist/passwordInput/index.mjs +2 -1
- package/dist/passwordInput/index.mjs.map +1 -1
- package/package.json +4 -4
@@ -440,7 +440,7 @@ var Input = forwardRef2(
|
|
440
440
|
"input",
|
441
441
|
{
|
442
442
|
required: true,
|
443
|
-
dir: props.dir,
|
443
|
+
dir: props.alwaysLTR ? "ltr" : props.dir,
|
444
444
|
type: props.type,
|
445
445
|
value: props.value || value,
|
446
446
|
onChange: handleChange,
|
@@ -461,6 +461,7 @@ var Input = forwardRef2(
|
|
461
461
|
"hawa-pe-[60px]": countPosition === "center"
|
462
462
|
},
|
463
463
|
preview && "hawa-border-transparent hawa-bg-transparent hawa-px-0",
|
464
|
+
props.alwaysLTR && "hawa-text-end",
|
464
465
|
inputProps == null ? void 0 : inputProps.className
|
465
466
|
)
|
466
467
|
}
|
package/dist/dataTable/index.js
CHANGED
@@ -1098,7 +1098,7 @@ var Input = (0, import_react6.forwardRef)(
|
|
1098
1098
|
"input",
|
1099
1099
|
{
|
1100
1100
|
required: true,
|
1101
|
-
dir: props.dir,
|
1101
|
+
dir: props.alwaysLTR ? "ltr" : props.dir,
|
1102
1102
|
type: props.type,
|
1103
1103
|
value: props.value || value,
|
1104
1104
|
onChange: handleChange,
|
@@ -1119,6 +1119,7 @@ var Input = (0, import_react6.forwardRef)(
|
|
1119
1119
|
"hawa-pe-[60px]": countPosition === "center"
|
1120
1120
|
},
|
1121
1121
|
preview && "hawa-border-transparent hawa-bg-transparent hawa-px-0",
|
1122
|
+
props.alwaysLTR && "hawa-text-end",
|
1122
1123
|
inputProps == null ? void 0 : inputProps.className
|
1123
1124
|
)
|
1124
1125
|
}
|