aq-fe-framework 0.1.190 → 0.1.193
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.
@@ -6693,8 +6693,15 @@ function MyFileInput(_a) {
|
|
6693
6693
|
import { NumberInput as NumberInput2 } from "@mantine/core";
|
6694
6694
|
import { jsx as jsx47 } from "react/jsx-runtime";
|
6695
6695
|
function MyNumberInput(_a) {
|
6696
|
-
var _b = _a, { label } = _b, rest = __objRest(_b, ["label"]);
|
6697
|
-
return /* @__PURE__ */ jsx47(
|
6696
|
+
var _b = _a, { minValue, label } = _b, rest = __objRest(_b, ["minValue", "label"]);
|
6697
|
+
return /* @__PURE__ */ jsx47(
|
6698
|
+
NumberInput2,
|
6699
|
+
__spreadValues({
|
6700
|
+
label,
|
6701
|
+
min: minValue ? minValue : 0,
|
6702
|
+
placeholder: label ? `Nh\u1EADp ${label == null ? void 0 : label.toLowerCase()}` : ""
|
6703
|
+
}, rest)
|
6704
|
+
);
|
6698
6705
|
}
|
6699
6706
|
|
6700
6707
|
// src/components/Inputs/TextArea/MyTextArea.tsx
|
@@ -349,8 +349,9 @@ declare function MyFileInput({ label, ...rest }: IFileInput): react_jsx_runtime.
|
|
349
349
|
|
350
350
|
interface INumberInput extends NumberInputProps {
|
351
351
|
label?: string;
|
352
|
+
minValue?: number;
|
352
353
|
}
|
353
|
-
declare function MyNumberInput({ label, ...rest }: INumberInput): react_jsx_runtime.JSX.Element;
|
354
|
+
declare function MyNumberInput({ minValue, label, ...rest }: INumberInput): react_jsx_runtime.JSX.Element;
|
354
355
|
|
355
356
|
interface IMyTextArea extends TextareaProps {
|
356
357
|
label?: string;
|
@@ -66,7 +66,7 @@ import {
|
|
66
66
|
useS_BasicAppShell,
|
67
67
|
useS_ButtonImport,
|
68
68
|
utils_layout_getItemsWithoutLinks
|
69
|
-
} from "../chunk-
|
69
|
+
} from "../chunk-OXDO4ODE.mjs";
|
70
70
|
import "../chunk-PPIWRJB2.mjs";
|
71
71
|
import "../chunk-Y3YGC5IH.mjs";
|
72
72
|
import "../chunk-5U2JSHSJ.mjs";
|