@sikka/hawa 0.49.9-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.js +2 -1
- package/dist/blocks/auth/index.mjs +1 -1
- package/dist/blocks/index.js +2 -1
- package/dist/blocks/index.mjs +1 -1
- 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 +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- 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
package/dist/dataTable/index.mjs
CHANGED
@@ -1071,7 +1071,7 @@ var Input = forwardRef5(
|
|
1071
1071
|
"input",
|
1072
1072
|
{
|
1073
1073
|
required: true,
|
1074
|
-
dir: props.dir,
|
1074
|
+
dir: props.alwaysLTR ? "ltr" : props.dir,
|
1075
1075
|
type: props.type,
|
1076
1076
|
value: props.value || value,
|
1077
1077
|
onChange: handleChange,
|
@@ -1092,6 +1092,7 @@ var Input = forwardRef5(
|
|
1092
1092
|
"hawa-pe-[60px]": countPosition === "center"
|
1093
1093
|
},
|
1094
1094
|
preview && "hawa-border-transparent hawa-bg-transparent hawa-px-0",
|
1095
|
+
props.alwaysLTR && "hawa-text-end",
|
1095
1096
|
inputProps == null ? void 0 : inputProps.className
|
1096
1097
|
)
|
1097
1098
|
}
|