aq-fe-framework 0.1.115 → 0.1.116
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.
@@ -6676,6 +6676,12 @@ function AQCard({
|
|
6676
6676
|
// src/components/DataDisplay/IconText/MyIconText.tsx
|
6677
6677
|
import { Group as Group9, Text as Text8 } from "@mantine/core";
|
6678
6678
|
import { jsx as jsx46, jsxs as jsxs25 } from "react/jsx-runtime";
|
6679
|
+
function MyIconText({ icon: Icon, text }) {
|
6680
|
+
return /* @__PURE__ */ jsxs25(Group9, { wrap: "nowrap", gap: 10, mt: 3, children: [
|
6681
|
+
Icon && /* @__PURE__ */ jsx46(Icon, { stroke: 1.5, size: 16 }),
|
6682
|
+
/* @__PURE__ */ jsx46(Text8, { fz: "lg", c: "dimmed", children: text })
|
6683
|
+
] });
|
6684
|
+
}
|
6679
6685
|
|
6680
6686
|
// src/components/DataDisplay/KeyLabel/MyKeyLabel.tsx
|
6681
6687
|
import { Group as Group10, Text as Text9 } from "@mantine/core";
|
@@ -11406,6 +11412,7 @@ export {
|
|
11406
11412
|
MyCheckbox,
|
11407
11413
|
MyFlexRow,
|
11408
11414
|
AQCard,
|
11415
|
+
MyIconText,
|
11409
11416
|
MyKeyLabel,
|
11410
11417
|
MyNumberFormatter,
|
11411
11418
|
AQStatCard1,
|
@@ -291,6 +291,12 @@ interface IDataTable$1<TData extends MRT_RowData> extends MRT_TableOptions<TData
|
|
291
291
|
}
|
292
292
|
declare function MyDataTable<TData extends MRT_RowData>({ formats, exportAble, csvConfigProps, rowActionSize, columns, data, renderTopToolbarCustomActions, setSelectedRow, ...rest }: IDataTable$1<TData>): react_jsx_runtime.JSX.Element | undefined;
|
293
293
|
|
294
|
+
interface MyIconTextProps {
|
295
|
+
icon?: React.ElementType;
|
296
|
+
text?: string;
|
297
|
+
}
|
298
|
+
declare function MyIconText({ icon: Icon, text }: MyIconTextProps): react_jsx_runtime.JSX.Element;
|
299
|
+
|
294
300
|
interface I$4 {
|
295
301
|
keyLabel?: string;
|
296
302
|
label?: string;
|
@@ -487,4 +493,4 @@ interface IMySkeletonTable extends SkeletonProps {
|
|
487
493
|
}
|
488
494
|
declare function MySkeletonTable({ h }: IMySkeletonTable): react_jsx_runtime.JSX.Element;
|
489
495
|
|
490
|
-
export { AQButtonCreateByImportFile, AQButtonExportData, AQCard, AQSelectTableByOpenModal, AQStatCard1, Boxes, FaviconSetter, HeaderMegaMenu, type IAQCardProps, type IMyTextEditor, I_BasicAppShell_LinkItem, MyActionIcon, MyActionIconCheck, MyActionIconDelete, MyActionIconDownloadPDF, MyActionIconModal, MyActionIconUpdate, MyActionIconUpload, MyActionIconViewPDF, MyAnchorViewPDF, MyAppSpotlight, MyBoxesBackground, MyBoxesCore, MyButton, MyButtonCreate, MyButtonImport, MyButtonModal, MyButtonPrintPDF, MyButtonPrintTablePDF, MyButtonRouterBack, MyButtonViewPDF, MyCalendar, MyCardioLoader, MyCenterFull, MyCheckbox, MyContainer, MyDataTable, MyDataTableSelect, MyDateInput, MyFieldset, MyFileInput, MyFlexColumn, MyFlexEnd, MyFlexRow, MyHtmlWrapper, MyKeyLabel, MyNumberFormatter, MyNumberInput, MyPageContent, MyScheduleX, MySelect, MySelectAPIGet, MySkeletonTable, MySwitchTheme, MyTab, MyTextArea, MyTextEditor, MyTextInput, SelectFieldModal, SelectFileModal, type SelectFileModalProps, SpotlightTrigger, useHeaderMegaMenuStore, useS_BasicAppShell, useS_ButtonImport };
|
496
|
+
export { AQButtonCreateByImportFile, AQButtonExportData, AQCard, AQSelectTableByOpenModal, AQStatCard1, Boxes, FaviconSetter, HeaderMegaMenu, type IAQCardProps, type IMyTextEditor, I_BasicAppShell_LinkItem, MyActionIcon, MyActionIconCheck, MyActionIconDelete, MyActionIconDownloadPDF, MyActionIconModal, MyActionIconUpdate, MyActionIconUpload, MyActionIconViewPDF, MyAnchorViewPDF, MyAppSpotlight, MyBoxesBackground, MyBoxesCore, MyButton, MyButtonCreate, MyButtonImport, MyButtonModal, MyButtonPrintPDF, MyButtonPrintTablePDF, MyButtonRouterBack, MyButtonViewPDF, MyCalendar, MyCardioLoader, MyCenterFull, MyCheckbox, MyContainer, MyDataTable, MyDataTableSelect, MyDateInput, MyFieldset, MyFileInput, MyFlexColumn, MyFlexEnd, MyFlexRow, MyHtmlWrapper, MyIconText, MyKeyLabel, MyNumberFormatter, MyNumberInput, MyPageContent, MyScheduleX, MySelect, MySelectAPIGet, MySkeletonTable, MySwitchTheme, MyTab, MyTextArea, MyTextEditor, MyTextInput, SelectFieldModal, SelectFileModal, type SelectFileModalProps, SpotlightTrigger, useHeaderMegaMenuStore, useS_BasicAppShell, useS_ButtonImport };
|
@@ -43,6 +43,7 @@ import {
|
|
43
43
|
MyFlexEnd,
|
44
44
|
MyFlexRow,
|
45
45
|
MyHtmlWrapper,
|
46
|
+
MyIconText,
|
46
47
|
MyKeyLabel,
|
47
48
|
MyNumberFormatter,
|
48
49
|
MyNumberInput,
|
@@ -64,7 +65,7 @@ import {
|
|
64
65
|
useS_BasicAppShell,
|
65
66
|
useS_ButtonImport,
|
66
67
|
utils_layout_getItemsWithoutLinks
|
67
|
-
} from "../chunk-
|
68
|
+
} from "../chunk-ODP26FHU.mjs";
|
68
69
|
import "../chunk-QAWKASVG.mjs";
|
69
70
|
import "../chunk-Y3YGC5IH.mjs";
|
70
71
|
import "../chunk-CJDXLINF.mjs";
|
@@ -115,6 +116,7 @@ export {
|
|
115
116
|
MyFlexEnd,
|
116
117
|
MyFlexRow,
|
117
118
|
MyHtmlWrapper,
|
119
|
+
MyIconText,
|
118
120
|
MyKeyLabel,
|
119
121
|
MyNumberFormatter,
|
120
122
|
MyNumberInput,
|