@true-engineering/true-react-common-ui-kit 3.56.1 → 3.56.2
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/components/FiltersPane/components/FilterInterval/FilterInterval.d.ts +3 -11
- package/dist/components/FiltersPane/types.d.ts +2 -0
- package/dist/true-react-common-ui-kit.js +4 -10
- package/dist/true-react-common-ui-kit.js.map +1 -1
- package/dist/true-react-common-ui-kit.umd.cjs +4 -10
- package/dist/true-react-common-ui-kit.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/src/components/FiltersPane/components/FilterInterval/FilterInterval.tsx +5 -17
- package/src/components/FiltersPane/types.ts +6 -0
|
@@ -17024,19 +17024,16 @@
|
|
|
17024
17024
|
children: [
|
|
17025
17025
|
/* @__PURE__ */ jsxs("div", {
|
|
17026
17026
|
children: [
|
|
17027
|
-
/* @__PURE__ */ jsx(NumberInput, {
|
|
17027
|
+
/* @__PURE__ */ jsx(NumberInput, _object_spread$A({
|
|
17028
17028
|
onChange: handleFromChange,
|
|
17029
17029
|
value: value === null || value === void 0 ? void 0 : value[0],
|
|
17030
17030
|
label: withFieldNameInLabel ? "".concat(labelName, " ").concat(translates.from.toLocaleLowerCase()) : translates.from,
|
|
17031
17031
|
border: "bottom",
|
|
17032
17032
|
canBeFloat,
|
|
17033
17033
|
isClearable: true,
|
|
17034
|
-
min: fromInput === null || fromInput === void 0 ? void 0 : fromInput.min,
|
|
17035
|
-
max: fromInput === null || fromInput === void 0 ? void 0 : fromInput.max,
|
|
17036
|
-
maxLength: fromInput === null || fromInput === void 0 ? void 0 : fromInput.maxLength,
|
|
17037
17034
|
tweakStyles: tweakInputStyles,
|
|
17038
17035
|
testId: trueReactPlatformHelpers.getTestId(testId, "start")
|
|
17039
|
-
}),
|
|
17036
|
+
}, fromInput)),
|
|
17040
17037
|
withFieldNameInLabel && /* @__PURE__ */ jsxs("div", {
|
|
17041
17038
|
className: classes.autosize,
|
|
17042
17039
|
children: [
|
|
@@ -17049,19 +17046,16 @@
|
|
|
17049
17046
|
}),
|
|
17050
17047
|
/* @__PURE__ */ jsxs("div", {
|
|
17051
17048
|
children: [
|
|
17052
|
-
/* @__PURE__ */ jsx(NumberInput, {
|
|
17049
|
+
/* @__PURE__ */ jsx(NumberInput, _object_spread$A({
|
|
17053
17050
|
onChange: handleToChange,
|
|
17054
17051
|
value: value === null || value === void 0 ? void 0 : value[1],
|
|
17055
17052
|
label: withFieldNameInLabel ? "".concat(labelName, " ").concat(translates.to.toLocaleLowerCase()) : translates.to,
|
|
17056
17053
|
border: "bottom",
|
|
17057
17054
|
canBeFloat,
|
|
17058
17055
|
isClearable: true,
|
|
17059
|
-
min: toInput === null || toInput === void 0 ? void 0 : toInput.min,
|
|
17060
|
-
max: toInput === null || toInput === void 0 ? void 0 : toInput.max,
|
|
17061
|
-
maxLength: toInput === null || toInput === void 0 ? void 0 : toInput.maxLength,
|
|
17062
17056
|
tweakStyles: tweakInputStyles,
|
|
17063
17057
|
testId: trueReactPlatformHelpers.getTestId(testId, "end")
|
|
17064
|
-
}),
|
|
17058
|
+
}, toInput)),
|
|
17065
17059
|
withFieldNameInLabel && /* @__PURE__ */ jsxs("div", {
|
|
17066
17060
|
className: classes.autosize,
|
|
17067
17061
|
children: [
|