aq-fe-framework 0.1.477 → 0.1.479

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.
@@ -451,9 +451,59 @@ function MyLabelValueRow({
451
451
  ] }));
452
452
  }
453
453
 
454
+ // src/core/dataDisplay/MyPaperTag.tsx
455
+ import {
456
+ Badge,
457
+ Paper as Paper2,
458
+ rgba,
459
+ useMantineTheme
460
+ } from "@mantine/core";
461
+ import { jsx as jsx14 } from "react/jsx-runtime";
462
+ function MyPaperTag(_a) {
463
+ var _b = _a, {
464
+ bg = "blue",
465
+ children,
466
+ badgeProps
467
+ } = _b, rest = __objRest(_b, [
468
+ "bg",
469
+ "children",
470
+ "badgeProps"
471
+ ]);
472
+ var _a2, _b2, _c, _d;
473
+ const theme = useMantineTheme();
474
+ const bgColor = ((_a2 = theme.colors[bg]) == null ? void 0 : _a2[0]) || rgba(bg, 0.05);
475
+ const borderColor = ((_b2 = theme.colors[bg]) == null ? void 0 : _b2[2]) || rgba(bg, 0.2);
476
+ const badgeColor = (_c = theme.colors[bg]) == null ? void 0 : _c[8];
477
+ return /* @__PURE__ */ jsx14(
478
+ Paper2,
479
+ __spreadProps(__spreadValues({
480
+ p: "xs",
481
+ style: {
482
+ backgroundColor: bgColor,
483
+ border: `1px solid ${borderColor}`,
484
+ display: "inline-block"
485
+ }
486
+ }, rest), {
487
+ children: /* @__PURE__ */ jsx14(
488
+ Badge,
489
+ __spreadProps(__spreadValues({
490
+ variant: "light",
491
+ color: badgeColor,
492
+ radius: "xl",
493
+ size: "md",
494
+ fw: "bold",
495
+ style: { fontWeight: 500, backgroundColor: (_d = theme.colors[bg]) == null ? void 0 : _d[1] }
496
+ }, badgeProps), {
497
+ children
498
+ })
499
+ )
500
+ })
501
+ );
502
+ }
503
+
454
504
  // src/core/dataDisplay/MyStatsCartd.tsx
455
505
  import { Box, Card, ThemeIcon } from "@mantine/core";
456
- import { jsx as jsx14, jsxs as jsxs7 } from "react/jsx-runtime";
506
+ import { jsx as jsx15, jsxs as jsxs7 } from "react/jsx-runtime";
457
507
  function MyStatsCard({
458
508
  title,
459
509
  value,
@@ -463,21 +513,21 @@ function MyStatsCard({
463
513
  themeIconProps
464
514
  }) {
465
515
  return /* @__PURE__ */ jsxs7(Card, { children: [
466
- /* @__PURE__ */ jsx14("div", { className: `absolute inset-0 bg-gradient-to-br ${color} opacity-5` }),
467
- /* @__PURE__ */ jsx14(Box, { className: "p-6", children: /* @__PURE__ */ jsxs7("div", { className: "flex items-center justify-between", children: [
516
+ /* @__PURE__ */ jsx15("div", { className: `absolute inset-0 bg-gradient-to-br ${color} opacity-5` }),
517
+ /* @__PURE__ */ jsx15(Box, { className: "p-6", children: /* @__PURE__ */ jsxs7("div", { className: "flex items-center justify-between", children: [
468
518
  /* @__PURE__ */ jsxs7("div", { children: [
469
- /* @__PURE__ */ jsx14("p", { className: "text-sm font-medium text-muted-foreground", children: title }),
470
- /* @__PURE__ */ jsx14("p", { className: "text-3xl font-bold", children: value }),
471
- /* @__PURE__ */ jsx14("p", { className: "text-xs text-muted-foreground mt-1", children: subtitle })
519
+ /* @__PURE__ */ jsx15("p", { className: "text-sm font-medium text-muted-foreground", children: title }),
520
+ /* @__PURE__ */ jsx15("p", { className: "text-3xl font-bold", children: value }),
521
+ /* @__PURE__ */ jsx15("p", { className: "text-xs text-muted-foreground mt-1", children: subtitle })
472
522
  ] }),
473
- /* @__PURE__ */ jsx14(ThemeIcon, __spreadProps(__spreadValues({ size: "xl", radius: "xl" }, themeIconProps), { children: icon }))
523
+ /* @__PURE__ */ jsx15(ThemeIcon, __spreadProps(__spreadValues({ size: "xl", radius: "xl" }, themeIconProps), { children: icon }))
474
524
  ] }) })
475
525
  ] });
476
526
  }
477
527
 
478
528
  // src/core/input/MyDayOfWeekPicker.tsx
479
- import { Badge, Group as Group3 } from "@mantine/core";
480
- import { jsx as jsx15 } from "react/jsx-runtime";
529
+ import { Badge as Badge2, Group as Group3 } from "@mantine/core";
530
+ import { jsx as jsx16 } from "react/jsx-runtime";
481
531
  var days = Object.entries(enum_daysOfWeek).filter(([key]) => isNaN(Number(key))).map(([label, value]) => ({ label, value }));
482
532
  function MyDayOfWeekPicker({ value = [], onChange }) {
483
533
  const toggle = (val) => {
@@ -485,8 +535,8 @@ function MyDayOfWeekPicker({ value = [], onChange }) {
485
535
  const newValue = value.includes(val) ? value.filter((v) => v !== val) : [...value, val].sort((a, b) => a - b);
486
536
  onChange(newValue);
487
537
  };
488
- return /* @__PURE__ */ jsx15(MyFlexRow, { align: "center", children: /* @__PURE__ */ jsx15(Group3, { gap: "xs", children: days.map((d) => /* @__PURE__ */ jsx15(
489
- Badge,
538
+ return /* @__PURE__ */ jsx16(MyFlexRow, { align: "center", children: /* @__PURE__ */ jsx16(Group3, { gap: "xs", children: days.map((d) => /* @__PURE__ */ jsx16(
539
+ Badge2,
490
540
  {
491
541
  variant: value.includes(d.value) ? "filled" : "outline",
492
542
  color: "blue",
@@ -513,7 +563,7 @@ import Underline from "@tiptap/extension-underline";
513
563
  import { useEditor } from "@tiptap/react";
514
564
  import StarterKit from "@tiptap/starter-kit";
515
565
  import { useEffect as useEffect2 } from "react";
516
- import { jsx as jsx16, jsxs as jsxs8 } from "react/jsx-runtime";
566
+ import { jsx as jsx17, jsxs as jsxs8 } from "react/jsx-runtime";
517
567
  function MyRichTextEditor(props) {
518
568
  const editor = useEditor({
519
569
  extensions: [
@@ -597,44 +647,44 @@ function MyRichTextEditor(props) {
597
647
  editor.commands.setContent(props.value || "", false);
598
648
  }
599
649
  }, [props.value, editor]);
600
- return /* @__PURE__ */ jsx16(Input.Wrapper, __spreadProps(__spreadValues({}, props.inputWrapperProps), { children: /* @__PURE__ */ jsxs8(MantineRichTextEditor, __spreadProps(__spreadValues({ editor }, props.richTextEditorProps), { children: [
650
+ return /* @__PURE__ */ jsx17(Input.Wrapper, __spreadProps(__spreadValues({}, props.inputWrapperProps), { children: /* @__PURE__ */ jsxs8(MantineRichTextEditor, __spreadProps(__spreadValues({ editor }, props.richTextEditorProps), { children: [
601
651
  /* @__PURE__ */ jsxs8(MantineRichTextEditor.Toolbar, __spreadProps(__spreadValues({}, props.richTextEditorToolBarProps), { children: [
602
652
  /* @__PURE__ */ jsxs8(MantineRichTextEditor.ControlsGroup, { children: [
603
- /* @__PURE__ */ jsx16(MantineRichTextEditor.Bold, {}),
604
- /* @__PURE__ */ jsx16(MantineRichTextEditor.Italic, {}),
605
- /* @__PURE__ */ jsx16(MantineRichTextEditor.Underline, {}),
606
- /* @__PURE__ */ jsx16(MantineRichTextEditor.Strikethrough, {}),
607
- /* @__PURE__ */ jsx16(MantineRichTextEditor.ClearFormatting, {}),
608
- /* @__PURE__ */ jsx16(MantineRichTextEditor.Highlight, {}),
609
- /* @__PURE__ */ jsx16(MantineRichTextEditor.Code, {})
653
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.Bold, {}),
654
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.Italic, {}),
655
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.Underline, {}),
656
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.Strikethrough, {}),
657
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.ClearFormatting, {}),
658
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.Highlight, {}),
659
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.Code, {})
610
660
  ] }),
611
661
  /* @__PURE__ */ jsxs8(MantineRichTextEditor.ControlsGroup, { children: [
612
- /* @__PURE__ */ jsx16(MantineRichTextEditor.H1, {}),
613
- /* @__PURE__ */ jsx16(MantineRichTextEditor.H2, {}),
614
- /* @__PURE__ */ jsx16(MantineRichTextEditor.H3, {}),
615
- /* @__PURE__ */ jsx16(MantineRichTextEditor.H4, {})
662
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.H1, {}),
663
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.H2, {}),
664
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.H3, {}),
665
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.H4, {})
616
666
  ] }),
617
667
  /* @__PURE__ */ jsxs8(MantineRichTextEditor.ControlsGroup, { children: [
618
- /* @__PURE__ */ jsx16(MantineRichTextEditor.Blockquote, {}),
619
- /* @__PURE__ */ jsx16(MantineRichTextEditor.Hr, {}),
620
- /* @__PURE__ */ jsx16(MantineRichTextEditor.BulletList, {}),
621
- /* @__PURE__ */ jsx16(MantineRichTextEditor.OrderedList, {}),
622
- /* @__PURE__ */ jsx16(MantineRichTextEditor.Subscript, {}),
623
- /* @__PURE__ */ jsx16(MantineRichTextEditor.Superscript, {})
668
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.Blockquote, {}),
669
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.Hr, {}),
670
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.BulletList, {}),
671
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.OrderedList, {}),
672
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.Subscript, {}),
673
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.Superscript, {})
624
674
  ] }),
625
675
  /* @__PURE__ */ jsxs8(MantineRichTextEditor.ControlsGroup, { children: [
626
- /* @__PURE__ */ jsx16(MantineRichTextEditor.Link, {}),
627
- /* @__PURE__ */ jsx16(MantineRichTextEditor.Unlink, {})
676
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.Link, {}),
677
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.Unlink, {})
628
678
  ] }),
629
679
  /* @__PURE__ */ jsxs8(MantineRichTextEditor.ControlsGroup, { children: [
630
- /* @__PURE__ */ jsx16(MantineRichTextEditor.AlignLeft, {}),
631
- /* @__PURE__ */ jsx16(MantineRichTextEditor.AlignCenter, {}),
632
- /* @__PURE__ */ jsx16(MantineRichTextEditor.AlignJustify, {}),
633
- /* @__PURE__ */ jsx16(MantineRichTextEditor.AlignRight, {})
680
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.AlignLeft, {}),
681
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.AlignCenter, {}),
682
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.AlignJustify, {}),
683
+ /* @__PURE__ */ jsx17(MantineRichTextEditor.AlignRight, {})
634
684
  ] }),
635
685
  props.extraControlsGroup
636
686
  ] })),
637
- /* @__PURE__ */ jsx16(
687
+ /* @__PURE__ */ jsx17(
638
688
  ScrollArea2.Autosize,
639
689
  __spreadProps(__spreadValues({
640
690
  onMouseDown: () => {
@@ -643,7 +693,7 @@ function MyRichTextEditor(props) {
643
693
  mah: "200",
644
694
  style: { cursor: "text" }
645
695
  }, props.scrollAreaAutosizeProps), {
646
- children: /* @__PURE__ */ jsx16(RichTextEditor.Content, __spreadValues({ mih: "200" }, props.richTextEditorContentProps))
696
+ children: /* @__PURE__ */ jsx17(RichTextEditor.Content, __spreadValues({ mih: "200" }, props.richTextEditorContentProps))
647
697
  })
648
698
  )
649
699
  ] })) }));
@@ -652,7 +702,7 @@ function MyRichTextEditor(props) {
652
702
  // src/core/input/MySelect.tsx
653
703
  import { Loader, Select } from "@mantine/core";
654
704
  import React from "react";
655
- import { jsx as jsx17 } from "react/jsx-runtime";
705
+ import { jsx as jsx18 } from "react/jsx-runtime";
656
706
  function extractTextFromReactNode(node) {
657
707
  if (typeof node === "string" || typeof node === "number") return String(node);
658
708
  if (Array.isArray(node)) return node.map(extractTextFromReactNode).join(" ");
@@ -670,7 +720,7 @@ function MySelect(_a) {
670
720
  const plainTextLabel = extractTextFromReactNode(label).toLowerCase().trim();
671
721
  placeholder = `Ch\u1ECDn ${plainTextLabel}`;
672
722
  }
673
- return /* @__PURE__ */ jsx17(
723
+ return /* @__PURE__ */ jsx18(
674
724
  Select,
675
725
  __spreadValues({
676
726
  searchable: true,
@@ -678,7 +728,7 @@ function MySelect(_a) {
678
728
  placeholder,
679
729
  data: data != null ? data : [],
680
730
  error: isError ? true : void 0,
681
- rightSection: isLoading ? /* @__PURE__ */ jsx17(Loader, { size: "xs" }) : void 0,
731
+ rightSection: isLoading ? /* @__PURE__ */ jsx18(Loader, { size: "xs" }) : void 0,
682
732
  disabled: isLoading || isError,
683
733
  styles: (theme) => ({
684
734
  input: rest.readOnly ? {
@@ -694,7 +744,7 @@ function MySelect(_a) {
694
744
 
695
745
  // src/core/input/MySelectFromAPI.tsx
696
746
  import { useCallback, useEffect as useEffect3, useMemo as useMemo3, useRef } from "react";
697
- import { jsx as jsx18 } from "react/jsx-runtime";
747
+ import { jsx as jsx19 } from "react/jsx-runtime";
698
748
  function MySelectFromAPI(_a) {
699
749
  var _b = _a, {
700
750
  queryKey,
@@ -758,7 +808,7 @@ function MySelectFromAPI(_a) {
758
808
  hasAutoSelected.current = true;
759
809
  }
760
810
  }, [autoSelectFirstItem, query.data, value, getLabel, onChange, setObjectData]);
761
- return /* @__PURE__ */ jsx18(
811
+ return /* @__PURE__ */ jsx19(
762
812
  MySelect,
763
813
  __spreadValues({
764
814
  isLoading: query.isLoading,
@@ -772,10 +822,10 @@ function MySelectFromAPI(_a) {
772
822
 
773
823
  // src/core/input/MyTextInput.tsx
774
824
  import { TextInput } from "@mantine/core";
775
- import { jsx as jsx19 } from "react/jsx-runtime";
825
+ import { jsx as jsx20 } from "react/jsx-runtime";
776
826
  function MyTextInput(_a) {
777
827
  var _b = _a, { label, isPhoneNumber } = _b, rest = __objRest(_b, ["label", "isPhoneNumber"]);
778
- return /* @__PURE__ */ jsx19(
828
+ return /* @__PURE__ */ jsx20(
779
829
  TextInput,
780
830
  __spreadValues({
781
831
  onKeyDown: (e) => {
@@ -818,13 +868,13 @@ import {
818
868
  Divider,
819
869
  Group as Group4,
820
870
  NumberInput,
821
- Paper as Paper2,
871
+ Paper as Paper3,
822
872
  ScrollArea as ScrollArea3,
823
873
  Text as Text5
824
874
  } from "@mantine/core";
825
875
  import { IconPlus as IconPlus4, IconTrash as IconTrash3 } from "@tabler/icons-react";
826
876
  import { useState } from "react";
827
- import { jsx as jsx20, jsxs as jsxs9 } from "react/jsx-runtime";
877
+ import { jsx as jsx21, jsxs as jsxs9 } from "react/jsx-runtime";
828
878
  function MyWeeklySessionSchedulerPicker({
829
879
  value = [],
830
880
  onChange
@@ -855,8 +905,8 @@ function MyWeeklySessionSchedulerPicker({
855
905
  return acc;
856
906
  }, {});
857
907
  const getLabel = (day) => enum_daysOfWeek[day] || `Day ${day}`;
858
- return /* @__PURE__ */ jsx20(Paper2, { w: "100%", p: "md", children: /* @__PURE__ */ jsxs9(MyFlexColumn, { children: [
859
- /* @__PURE__ */ jsx20(Center, { children: /* @__PURE__ */ jsx20(
908
+ return /* @__PURE__ */ jsx21(Paper3, { w: "100%", p: "md", children: /* @__PURE__ */ jsxs9(MyFlexColumn, { children: [
909
+ /* @__PURE__ */ jsx21(Center, { children: /* @__PURE__ */ jsx21(
860
910
  MyDayOfWeekPicker,
861
911
  {
862
912
  value: selectedDays,
@@ -866,29 +916,29 @@ function MyWeeklySessionSchedulerPicker({
866
916
  }
867
917
  }
868
918
  ) }),
869
- /* @__PURE__ */ jsx20(Divider, { my: "xs" }),
870
- /* @__PURE__ */ jsx20(Center, { children: /* @__PURE__ */ jsx20(ScrollArea3.Autosize, { h: "40vh", children: /* @__PURE__ */ jsx20(MyFlexColumn, { w: { base: "100%", sm: "70%" }, children: selectedDays.map((dayOfWeek) => {
919
+ /* @__PURE__ */ jsx21(Divider, { my: "xs" }),
920
+ /* @__PURE__ */ jsx21(Center, { children: /* @__PURE__ */ jsx21(ScrollArea3.Autosize, { h: "40vh", children: /* @__PURE__ */ jsx21(MyFlexColumn, { w: { base: "100%", sm: "70%" }, children: selectedDays.map((dayOfWeek) => {
871
921
  var _a;
872
922
  return /* @__PURE__ */ jsxs9(
873
- Paper2,
923
+ Paper3,
874
924
  {
875
925
  w: "100%",
876
926
  p: "md",
877
927
  bg: const_object_colors.mantineBackgroundBlueLight,
878
928
  children: [
879
929
  /* @__PURE__ */ jsxs9(Group4, { gap: "apart", children: [
880
- /* @__PURE__ */ jsx20(Text5, { w: "70px", fw: 500, children: getLabel(dayOfWeek) }),
881
- /* @__PURE__ */ jsx20(
930
+ /* @__PURE__ */ jsx21(Text5, { w: "70px", fw: 500, children: getLabel(dayOfWeek) }),
931
+ /* @__PURE__ */ jsx21(
882
932
  Button5,
883
933
  {
884
934
  color: "teal.5",
885
- leftSection: /* @__PURE__ */ jsx20(IconPlus4, { size: 14 }),
935
+ leftSection: /* @__PURE__ */ jsx21(IconPlus4, { size: 14 }),
886
936
  onClick: () => handleAddSession(dayOfWeek),
887
937
  children: "Th\xEAm bu\u1ED5i"
888
938
  }
889
939
  )
890
940
  ] }),
891
- /* @__PURE__ */ jsx20(Divider, { my: "sm" }),
941
+ /* @__PURE__ */ jsx21(Divider, { my: "sm" }),
892
942
  (_a = grouped[dayOfWeek]) == null ? void 0 : _a.map((item, indexInDay) => {
893
943
  const globalIndex = value.findIndex(
894
944
  (v) => v === item
@@ -900,7 +950,7 @@ function MyWeeklySessionSchedulerPicker({
900
950
  gap: "xs",
901
951
  align: "flex-end",
902
952
  children: [
903
- /* @__PURE__ */ jsx20(
953
+ /* @__PURE__ */ jsx21(
904
954
  NumberInput,
905
955
  {
906
956
  label: "Ti\u1EBFt b\u1EAFt \u0111\u1EA7u",
@@ -912,7 +962,7 @@ function MyWeeklySessionSchedulerPicker({
912
962
  )
913
963
  }
914
964
  ),
915
- /* @__PURE__ */ jsx20(
965
+ /* @__PURE__ */ jsx21(
916
966
  NumberInput,
917
967
  {
918
968
  label: "S\u1ED1 ti\u1EBFt",
@@ -924,7 +974,7 @@ function MyWeeklySessionSchedulerPicker({
924
974
  )
925
975
  }
926
976
  ),
927
- /* @__PURE__ */ jsx20(
977
+ /* @__PURE__ */ jsx21(
928
978
  NumberInput,
929
979
  {
930
980
  label: "S\u1ED1 ph\xFAt ",
@@ -933,13 +983,13 @@ function MyWeeklySessionSchedulerPicker({
933
983
  value: item.durationMinutes
934
984
  }
935
985
  ),
936
- /* @__PURE__ */ jsx20(
986
+ /* @__PURE__ */ jsx21(
937
987
  Button5,
938
988
  {
939
989
  variant: "light",
940
990
  color: "red",
941
991
  onClick: () => handleRemove(globalIndex),
942
- leftSection: /* @__PURE__ */ jsx20(IconTrash3, { size: 14 }),
992
+ leftSection: /* @__PURE__ */ jsx21(IconTrash3, { size: 14 }),
943
993
  children: "X\xF3a bu\u1ED5i"
944
994
  }
945
995
  )
@@ -958,10 +1008,10 @@ function MyWeeklySessionSchedulerPicker({
958
1008
 
959
1009
  // src/core/layout/MyFlexEnd.tsx
960
1010
  import { Group as Group5 } from "@mantine/core";
961
- import { jsx as jsx21 } from "react/jsx-runtime";
1011
+ import { jsx as jsx22 } from "react/jsx-runtime";
962
1012
  function MyFlexEnd2(_a) {
963
1013
  var _b = _a, { children } = _b, rest = __objRest(_b, ["children"]);
964
- return /* @__PURE__ */ jsx21(Group5, __spreadProps(__spreadValues({ justify: "end", mt: "md" }, rest), { children }));
1014
+ return /* @__PURE__ */ jsx22(Group5, __spreadProps(__spreadValues({ justify: "end", mt: "md" }, rest), { children }));
965
1015
  }
966
1016
 
967
1017
  export {
@@ -975,6 +1025,7 @@ export {
975
1025
  MyFlexIconTitle,
976
1026
  MyInfoBox,
977
1027
  MyLabelValueRow,
1028
+ MyPaperTag,
978
1029
  MyStatsCard,
979
1030
  MyDayOfWeekPicker,
980
1031
  MyRichTextEditor,
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { t as type_action } from '../types-B5rmBuXz.mjs';
3
- import { ActionIconProps, ButtonProps, ModalProps, ScrollAreaAutosizeProps, TextProps, PaperProps, GroupProps, ThemeIconProps, InputWrapperProps, SelectProps, TextInputProps, FlexProps } from '@mantine/core';
3
+ import { ActionIconProps, ButtonProps, ModalProps, ScrollAreaAutosizeProps, TextProps, PaperProps, GroupProps, BadgeProps, ThemeIconProps, InputWrapperProps, SelectProps, TextInputProps, FlexProps } from '@mantine/core';
4
4
  import { ReactNode, ButtonHTMLAttributes } from 'react';
5
5
  import { M as MyApiResponse } from '../createBaseApi-D9OK2lA_.mjs';
6
6
  import { AxiosResponse } from 'axios';
@@ -101,6 +101,13 @@ interface LabelValueRowProps {
101
101
  }
102
102
  declare function MyLabelValueRow({ label, value, labelProps, valueProps, groupProps }: LabelValueRowProps): react_jsx_runtime.JSX.Element;
103
103
 
104
+ interface MyPaperTagProps extends PaperProps {
105
+ children?: string;
106
+ badgeProps?: BadgeProps;
107
+ bg?: string;
108
+ }
109
+ declare function MyPaperTag({ bg, children, badgeProps, ...rest }: MyPaperTagProps): react_jsx_runtime.JSX.Element;
110
+
104
111
  declare function MyStatsCard({ title, value, subtitle, icon, color, themeIconProps }: {
105
112
  title: string;
106
113
  value: number;
@@ -180,4 +187,4 @@ interface MyFlexEndProps extends GroupProps {
180
187
  }
181
188
  declare function MyFlexEnd({ children, ...rest }: MyFlexEndProps): react_jsx_runtime.JSX.Element;
182
189
 
183
- export { type IWeeklySession, MyActionIcon, type MyActionIconProps, MyButton, MyButtonCreateUpdate, type MyButtonExportStructureProps, MyButtonModal, MyButtonModalCreateUpdate, type MyButtonModalProps, type MyButtonProps$1 as MyButtonProps, MyDataTableSelectOne, MyDayOfWeekPicker, MyFlexColumn, MyFlexEnd, MyFlexIconTitle, MyInfoBox, type MyInfoBoxItem, type MyInfoBoxProps, MyLabelValueRow, MyRichTextEditor, MySelect, MySelectFromAPI, type MySelectProps, MyStatsCard, MyTextInput, MyWeeklySessionSchedulerPicker, type WeeklySessionSchedulerProps };
190
+ export { type IWeeklySession, MyActionIcon, type MyActionIconProps, MyButton, MyButtonCreateUpdate, type MyButtonExportStructureProps, MyButtonModal, MyButtonModalCreateUpdate, type MyButtonModalProps, type MyButtonProps$1 as MyButtonProps, MyDataTableSelectOne, MyDayOfWeekPicker, MyFlexColumn, MyFlexEnd, MyFlexIconTitle, MyInfoBox, type MyInfoBoxItem, type MyInfoBoxProps, MyLabelValueRow, MyPaperTag, MyRichTextEditor, MySelect, MySelectFromAPI, type MySelectProps, MyStatsCard, MyTextInput, MyWeeklySessionSchedulerPicker, type WeeklySessionSchedulerProps };
@@ -11,17 +11,18 @@ import {
11
11
  MyFlexIconTitle,
12
12
  MyInfoBox,
13
13
  MyLabelValueRow,
14
+ MyPaperTag,
14
15
  MyRichTextEditor,
15
16
  MySelect,
16
17
  MySelectFromAPI,
17
18
  MyStatsCard,
18
19
  MyTextInput,
19
20
  MyWeeklySessionSchedulerPicker
20
- } from "../chunk-LON64CYM.mjs";
21
+ } from "../chunk-F26FS5GJ.mjs";
22
+ import "../chunk-GFEMKKFH.mjs";
21
23
  import "../chunk-R43BUIMD.mjs";
22
24
  import "../chunk-U62R2QKJ.mjs";
23
25
  import "../chunk-5U2JSHSJ.mjs";
24
- import "../chunk-GFEMKKFH.mjs";
25
26
  import "../chunk-OMJJAHOC.mjs";
26
27
  import "../chunk-K6S7R6LU.mjs";
27
28
  import "../chunk-KFSAV44B.mjs";
@@ -40,6 +41,7 @@ export {
40
41
  MyFlexIconTitle,
41
42
  MyInfoBox,
42
43
  MyLabelValueRow,
44
+ MyPaperTag,
43
45
  MyRichTextEditor,
44
46
  MySelect,
45
47
  MySelectFromAPI,
@@ -15,7 +15,10 @@ import {
15
15
  MyButton as MyButton2,
16
16
  MyDataTableSelectOne,
17
17
  MyTextInput as MyTextInput2
18
- } from "../chunk-LON64CYM.mjs";
18
+ } from "../chunk-F26FS5GJ.mjs";
19
+ import {
20
+ const_object_documentTypes
21
+ } from "../chunk-GFEMKKFH.mjs";
19
22
  import {
20
23
  F_authenticate_Logout,
21
24
  MyActionIconDelete,
@@ -46,9 +49,6 @@ import {
46
49
  createGenericStore
47
50
  } from "../chunk-U62R2QKJ.mjs";
48
51
  import "../chunk-5U2JSHSJ.mjs";
49
- import {
50
- const_object_documentTypes
51
- } from "../chunk-GFEMKKFH.mjs";
52
52
  import {
53
53
  const_object_colors
54
54
  } from "../chunk-OMJJAHOC.mjs";
package/package.json CHANGED
@@ -42,7 +42,7 @@
42
42
  "types": "./dist/columns/index.d.mts"
43
43
  }
44
44
  },
45
- "version": "0.1.477",
45
+ "version": "0.1.479",
46
46
  "private": false,
47
47
  "files": [
48
48
  "dist"