aq-fe-framework 0.1.328 → 0.1.329
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.
@@ -346,13 +346,13 @@ function MyDataTableSelectOne({
|
|
346
346
|
// src/core/dataDisplay/MyLabelValueRow.tsx
|
347
347
|
import { Group, Text } from "@mantine/core";
|
348
348
|
import { jsx as jsx6, jsxs as jsxs3 } from "react/jsx-runtime";
|
349
|
-
|
349
|
+
function MyLabelValueRow({
|
350
350
|
label,
|
351
351
|
value,
|
352
352
|
labelProps,
|
353
353
|
valueProps,
|
354
354
|
groupProps
|
355
|
-
})
|
355
|
+
}) {
|
356
356
|
return /* @__PURE__ */ jsxs3(Group, __spreadProps(__spreadValues({ gap: 5, wrap: "nowrap" }, groupProps), { children: [
|
357
357
|
/* @__PURE__ */ jsxs3(Text, __spreadProps(__spreadValues({ fw: 600 }, labelProps), { children: [
|
358
358
|
label,
|
@@ -360,7 +360,7 @@ var MyLabelValueRow = ({
|
|
360
360
|
] })),
|
361
361
|
/* @__PURE__ */ jsx6(Text, __spreadProps(__spreadValues({}, valueProps), { children: value }))
|
362
362
|
] }));
|
363
|
-
}
|
363
|
+
}
|
364
364
|
|
365
365
|
// src/core/input/MyDayOfWeekPicker.tsx
|
366
366
|
import { Badge, Group as Group2 } from "@mantine/core";
|
package/dist/core/index.d.mts
CHANGED
@@ -60,7 +60,7 @@ interface LabelValueRowProps {
|
|
60
60
|
valueProps?: TextProps;
|
61
61
|
groupProps?: GroupProps;
|
62
62
|
}
|
63
|
-
declare
|
63
|
+
declare function MyLabelValueRow({ label, value, labelProps, valueProps, groupProps }: LabelValueRowProps): react_jsx_runtime.JSX.Element;
|
64
64
|
|
65
65
|
interface CoreDayOfWeekPickerProps {
|
66
66
|
value?: number[];
|
package/dist/core/index.mjs
CHANGED