aq-fe-framework 0.1.1014 → 0.1.1016

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.
@@ -1,3 +1,9 @@
1
+ import {
2
+ createGenericStore as createGenericStore2,
3
+ useAppStore,
4
+ useStore_Permission,
5
+ useStore_ProjectInfo
6
+ } from "./chunk-WW55EZ4B.mjs";
1
7
  import {
2
8
  utils_aq_mapBaseEntityToDomain,
3
9
  utils_aq_mapDomainToEntity,
@@ -12,12 +18,6 @@ import {
12
18
  utils_notification_show,
13
19
  utils_pdf_download
14
20
  } from "./chunk-KGBXMHKR.mjs";
15
- import {
16
- createGenericStore as createGenericStore2,
17
- useAppStore,
18
- useStore_Permission,
19
- useStore_ProjectInfo
20
- } from "./chunk-WW55EZ4B.mjs";
21
21
  import {
22
22
  utils_date,
23
23
  utils_excel,
@@ -31,7 +31,7 @@ import {
31
31
  import {
32
32
  const_object_colors,
33
33
  const_object_documentTypes
34
- } from "./chunk-C74M5VPE.mjs";
34
+ } from "./chunk-OHAOJE5F.mjs";
35
35
  import {
36
36
  enumLabel_gender,
37
37
  enum_daysOfWeek
@@ -18510,8 +18510,41 @@ function MyFlexEnd2(_a) {
18510
18510
  }
18511
18511
 
18512
18512
  // src/core/navigation/CustomTabs/CustomTabs.tsx
18513
- import { Tabs as Tabs5 } from "@mantine/core";
18513
+ import { Paper as Paper16, Tabs as Tabs5, Text as Text31 } from "@mantine/core";
18514
+
18515
+ // src/core/navigation/CustomTabs/Customtabs.module.css
18516
+ var Customtabs_default = {};
18517
+
18518
+ // src/core/navigation/CustomTabs/CustomTabs.tsx
18514
18519
  import { jsx as jsx242, jsxs as jsxs135 } from "react/jsx-runtime";
18520
+ var tabColors = [
18521
+ { color: "blue" },
18522
+ { color: "orange" },
18523
+ { color: "teal" },
18524
+ { color: "grape" },
18525
+ { color: "pink" }
18526
+ ];
18527
+ function CustomTabs(_a) {
18528
+ var _b = _a, { tabs } = _b, rest = __objRest(_b, ["tabs"]);
18529
+ return /* @__PURE__ */ jsx242(Paper16, { bg: const_object_colors.mantineBackgroundSecondary, children: /* @__PURE__ */ jsxs135(Tabs5, __spreadProps(__spreadValues({ defaultValue: "gallery", color: "lime", variant: "outline", h: "55vh", classNames: Customtabs_default }, rest), { children: [
18530
+ /* @__PURE__ */ jsx242(Tabs5.List, { children: tabs.map((item, index) => {
18531
+ const colors = tabColors[index];
18532
+ return /* @__PURE__ */ jsx242(
18533
+ Tabs5.Tab,
18534
+ __spreadProps(__spreadValues({
18535
+ value: item.label
18536
+ }, item), {
18537
+ children: /* @__PURE__ */ jsx242(Text31, { fw: "bold", children: item.label })
18538
+ }),
18539
+ item.label
18540
+ );
18541
+ }) }),
18542
+ tabs.map((item, index) => {
18543
+ const colors = tabColors[index];
18544
+ return /* @__PURE__ */ jsx242(Tabs5.Panel, { p: "md", value: item.label, children: item.children }, index);
18545
+ })
18546
+ ] })) });
18547
+ }
18515
18548
 
18516
18549
  // src/core/overlays/MyPrintContent.tsx
18517
18550
  import { jsx as jsx243, jsxs as jsxs136 } from "react/jsx-runtime";
@@ -18549,7 +18582,7 @@ function MyPrintContent({
18549
18582
  }
18550
18583
 
18551
18584
  // src/core/overlays/MyModalStackImport/Usecase/FileImportValidationDetailModal.tsx
18552
- import { Modal as Modal19, Table as Table5, Text as Text31 } from "@mantine/core";
18585
+ import { Modal as Modal19, Table as Table5, Text as Text32 } from "@mantine/core";
18553
18586
  import { jsx as jsx244, jsxs as jsxs137 } from "react/jsx-runtime";
18554
18587
 
18555
18588
  // src/core/overlays/MyModalStackImport/Usecase/FileImportValidationModal.tsx
@@ -18644,6 +18677,7 @@ export {
18644
18677
  MyWeeklySessionSchedulerPicker,
18645
18678
  DroppablePlaceholder,
18646
18679
  MyFlexEnd2 as MyFlexEnd,
18680
+ CustomTabs,
18647
18681
  MyPrintContent,
18648
18682
  MyModalImport,
18649
18683
  MyButtonViewFileAPI,
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { ButtonProps, ModalProps, ScrollAreaAutosizeProps, TooltipProps, TextProps, PaperProps, GroupProps, ThemeIconProps, BadgeProps, AutocompleteProps, NumberInputProps, TextInputProps, FileInputProps, InputWrapperProps, FlexProps } from '@mantine/core';
2
+ import { ButtonProps, ModalProps, ScrollAreaAutosizeProps, TooltipProps, TextProps, PaperProps, GroupProps, ThemeIconProps, BadgeProps, AutocompleteProps, NumberInputProps, TextInputProps, FileInputProps, InputWrapperProps, FlexProps, TabsProps, TabsTabProps, MantineColor } from '@mantine/core';
3
3
  import { UseFormReturnType } from '@mantine/form';
4
4
  import { ReactNode, ComponentProps } from 'react';
5
5
  import { M as MyButtonModalProps, a as MyActionIconProps, b as MyButtonProps, c as MyDataTableProps } from '../MyDataTable-gxL6qCfE.mjs';
@@ -236,6 +236,16 @@ interface MyFlexEndProps extends GroupProps {
236
236
  }
237
237
  declare function MyFlexEnd({ children, ...rest }: MyFlexEndProps): react_jsx_runtime.JSX.Element;
238
238
 
239
+ interface ITab extends Omit<TabsTabProps, "value"> {
240
+ label: string;
241
+ color?: MantineColor;
242
+ children?: ReactNode;
243
+ }
244
+ interface CustomTabsProps extends TabsProps {
245
+ tabs: ITab[];
246
+ }
247
+ declare function CustomTabs({ tabs, ...rest }: CustomTabsProps): react_jsx_runtime.JSX.Element;
248
+
239
249
  type PageSizeOption = "portrait" | "landscape" | "A4-landscape";
240
250
  interface MyPrintContentProps {
241
251
  children?: ReactNode;
@@ -296,4 +306,4 @@ declare function MyButtonViewFileAPI({ filePath }: {
296
306
  filePath?: string;
297
307
  }): react_jsx_runtime.JSX.Element;
298
308
 
299
- export { CustomAutocomplete, CustomEnumBadge, CustomNumberInput, type CustomNumberInputProps, CustomPhoneNumberInput, CustomSwitchTheme, CustomThemeIconSquareCheck, DroppablePlaceholder, type FieldDefinition, type IWeeklySession, type ModalImportId, MyActionIconProps, MyButtonCreateUpdate, type MyButtonCreateUpdateProps, type MyButtonExportStructureProps, MyButtonModalForm, type MyButtonModalFormProps, MyButtonModalProps, MyButtonPrintPDF, type MyButtonPrintPDFProps, MyButtonProps, MyButtonViewFile, MyButtonViewFileAPI, MyDataTableSelectOne, MyDataTableStagedChanges, type MyDataTableStagedChangesProps, MyDayOfWeekPicker, MyFileInputPreview, MyFlexColumn, MyFlexEnd, MyFlexIconTitle, MyInfoBox, type MyInfoBoxItem, type MyInfoBoxProps, MyLabelValueRow, MyModalImport, MyPrintContent, type MyPrintContentProps, MyRichTextEditor, MySelectFromAPI, type MySelectFromAPIProps, MySelectProps, MyStatsCard, MyTextInput, type MyTextInputProps, MyWeeklySessionSchedulerPicker, type RowDetail, type StagedChange, type ValidationResult, type WeeklySessionSchedulerProps };
309
+ export { CustomAutocomplete, CustomEnumBadge, CustomNumberInput, type CustomNumberInputProps, CustomPhoneNumberInput, CustomSwitchTheme, CustomTabs, CustomThemeIconSquareCheck, DroppablePlaceholder, type FieldDefinition, type IWeeklySession, type ModalImportId, MyActionIconProps, MyButtonCreateUpdate, type MyButtonCreateUpdateProps, type MyButtonExportStructureProps, MyButtonModalForm, type MyButtonModalFormProps, MyButtonModalProps, MyButtonPrintPDF, type MyButtonPrintPDFProps, MyButtonProps, MyButtonViewFile, MyButtonViewFileAPI, MyDataTableSelectOne, MyDataTableStagedChanges, type MyDataTableStagedChangesProps, MyDayOfWeekPicker, MyFileInputPreview, MyFlexColumn, MyFlexEnd, MyFlexIconTitle, MyInfoBox, type MyInfoBoxItem, type MyInfoBoxProps, MyLabelValueRow, MyModalImport, MyPrintContent, type MyPrintContentProps, MyRichTextEditor, MySelectFromAPI, type MySelectFromAPIProps, MySelectProps, MyStatsCard, MyTextInput, type MyTextInputProps, MyWeeklySessionSchedulerPicker, type RowDetail, type StagedChange, type ValidationResult, type WeeklySessionSchedulerProps };
@@ -0,0 +1,51 @@
1
+ .tab {
2
+ position: relative;
3
+ border: 1px solid light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-4));
4
+ background-color: light-dark(var(--mantine-color-gray-3), var(--mantine-color-dark-7));
5
+
6
+ &:first-of-type {
7
+ border-radius: 4px 0 0 4px;
8
+
9
+ @mixin rtl {
10
+ border-radius: 0 4px 4px 0;
11
+ }
12
+ }
13
+
14
+ &:last-of-type {
15
+ border-radius: 0 4px 4px 0;
16
+
17
+ @mixin rtl {
18
+ border-radius: 4px 0 0 4px;
19
+ }
20
+ }
21
+
22
+ & + & {
23
+ /* border-left-width: 0; */
24
+
25
+ @mixin rtl {
26
+ border-right-width: 0;
27
+ border-left-width: 1px;
28
+ }
29
+ }
30
+
31
+ @mixin hover {
32
+ background-color: light-dark(var(--mantine-color-gray-0), var(--mantine-color-dark-9));
33
+ }
34
+
35
+ &[data-active] {
36
+ z-index: 1;
37
+ background-color:light-dark(var(--mantine-color-white), var(--mantine-color-dark-4));
38
+ /* border-color: var(--mantine-color-blue-filled); */
39
+ color: light-dark(var(--mantine-color-blue-8), var(--mantine-color-blue-4));
40
+
41
+ /* @mixin hover {
42
+ background-color: var(--mantine-color-blue-filled-hover);
43
+ } */
44
+ }
45
+ }
46
+
47
+
48
+ .panel {
49
+ background-color: light-dark(var(--mantine-color-white), var(--mantine-color-dark-4)); /* màu xám nhạt */
50
+ min-height: 100%; /* đảm bảo phủ toàn bộ chiều cao */
51
+ }
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  createTenantSettingsStore
3
- } from "../chunk-NYAWQRB7.mjs";
3
+ } from "../../chunk-NYAWQRB7.mjs";
4
4
  import {
5
5
  createGenericStore
6
- } from "../chunk-BTITP4TN.mjs";
7
- import "../chunk-JD6AELXS.mjs";
6
+ } from "../../chunk-BTITP4TN.mjs";
7
+ import "../../chunk-JD6AELXS.mjs";
8
8
  export {
9
9
  createGenericStore,
10
10
  createTenantSettingsStore
@@ -1,3 +1,74 @@
1
+ /* src/core/navigation/CustomTabs/Customtabs.module.css */
2
+ .tab {
3
+ position: relative;
4
+ border: 1px solid var(--mantine-color-gray-2);
5
+ }
6
+ [data-mantine-color-scheme=dark] .tab {
7
+ border: 1px solid var(--mantine-color-dark-4);
8
+ }
9
+ .tab {
10
+ background-color: var(--mantine-color-gray-3);
11
+ }
12
+ [data-mantine-color-scheme=dark] .tab {
13
+ background-color: var(--mantine-color-dark-7);
14
+ }
15
+ .tab:first-of-type {
16
+ border-radius: calc(0.25rem * var(--mantine-scale)) 0 0 calc(0.25rem * var(--mantine-scale));
17
+ }
18
+ [dir=rtl] .tab:first-of-type {
19
+ border-radius: 0 calc(0.25rem * var(--mantine-scale)) calc(0.25rem * var(--mantine-scale)) 0;
20
+ }
21
+ .tab:last-of-type {
22
+ border-radius: 0 calc(0.25rem * var(--mantine-scale)) calc(0.25rem * var(--mantine-scale)) 0;
23
+ }
24
+ [dir=rtl] .tab:last-of-type {
25
+ border-radius: calc(0.25rem * var(--mantine-scale)) 0 0 calc(0.25rem * var(--mantine-scale));
26
+ }
27
+ .tab + .tab {
28
+ }
29
+ [dir=rtl] .tab + .tab {
30
+ border-right-width: 0;
31
+ border-left-width: calc(0.0625rem * var(--mantine-scale));
32
+ }
33
+ @media (hover: hover) {
34
+ .tab:hover {
35
+ background-color: var(--mantine-color-gray-0);
36
+ }
37
+ [data-mantine-color-scheme=dark] .tab:hover {
38
+ background-color: var(--mantine-color-dark-9);
39
+ }
40
+ }
41
+ @media (hover: none) {
42
+ .tab:active {
43
+ background-color: var(--mantine-color-gray-0);
44
+ }
45
+ [data-mantine-color-scheme=dark] .tab:active {
46
+ background-color: var(--mantine-color-dark-9);
47
+ }
48
+ }
49
+ .tab[data-active] {
50
+ z-index: 1;
51
+ background-color: var(--mantine-color-white);
52
+ }
53
+ [data-mantine-color-scheme=dark] .tab[data-active] {
54
+ background-color: var(--mantine-color-dark-4);
55
+ }
56
+ .tab[data-active] {
57
+ color: var(--mantine-color-blue-8);
58
+ }
59
+ [data-mantine-color-scheme=dark] .tab[data-active] {
60
+ color: var(--mantine-color-blue-4);
61
+ }
62
+ .panel {
63
+ background-color: var(--mantine-color-white);
64
+ }
65
+ [data-mantine-color-scheme=dark] .panel {
66
+ background-color: var(--mantine-color-dark-4);
67
+ }
68
+ .panel {
69
+ min-height: 100%;
70
+ }
71
+
1
72
  /* src/components/Layouts/HeaderMegaMenu/css.module.css */
2
73
  .header {
3
74
  position: sticky;
@@ -69,17 +69,17 @@ import {
69
69
  useHeaderMegaMenuStore,
70
70
  useS_ButtonImport,
71
71
  useStore_BasicAppShell
72
- } from "../chunk-TWX6HL37.mjs";
73
- import "../chunk-KGBXMHKR.mjs";
74
- import "../chunk-WW55EZ4B.mjs";
75
- import "../chunk-7ZI7IOEP.mjs";
76
- import "../chunk-NYAWQRB7.mjs";
77
- import "../chunk-BTITP4TN.mjs";
78
- import "../chunk-C74M5VPE.mjs";
79
- import "../chunk-J4WTZ3B4.mjs";
80
- import "../chunk-Z76CSZFI.mjs";
81
- import "../chunk-WZ6PXGGC.mjs";
82
- import "../chunk-JD6AELXS.mjs";
72
+ } from "../../chunk-DRUHKWPQ.mjs";
73
+ import "../../chunk-WW55EZ4B.mjs";
74
+ import "../../chunk-KGBXMHKR.mjs";
75
+ import "../../chunk-7ZI7IOEP.mjs";
76
+ import "../../chunk-NYAWQRB7.mjs";
77
+ import "../../chunk-BTITP4TN.mjs";
78
+ import "../../chunk-OHAOJE5F.mjs";
79
+ import "../../chunk-J4WTZ3B4.mjs";
80
+ import "../../chunk-Z76CSZFI.mjs";
81
+ import "../../chunk-WZ6PXGGC.mjs";
82
+ import "../../chunk-JD6AELXS.mjs";
83
83
  export {
84
84
  AQButtonCreateByImportFile,
85
85
  AQButtonExportData,
@@ -5,8 +5,8 @@ import {
5
5
  const_object_colors,
6
6
  const_object_documentTypes,
7
7
  const_object_generalMenuData
8
- } from "../chunk-C74M5VPE.mjs";
9
- import "../chunk-JD6AELXS.mjs";
8
+ } from "../../chunk-OHAOJE5F.mjs";
9
+ import "../../chunk-JD6AELXS.mjs";
10
10
  export {
11
11
  const_aqModuleId,
12
12
  const_array_daysOfWeek,
@@ -92,3 +92,74 @@
92
92
  [data-mantine-color-scheme=dark] .dropdownFooter {
93
93
  border-top: 1px solid var(--mantine-color-dark-5);
94
94
  }
95
+
96
+ /* src/core/navigation/CustomTabs/Customtabs.module.css */
97
+ .tab {
98
+ position: relative;
99
+ border: 1px solid var(--mantine-color-gray-2);
100
+ }
101
+ [data-mantine-color-scheme=dark] .tab {
102
+ border: 1px solid var(--mantine-color-dark-4);
103
+ }
104
+ .tab {
105
+ background-color: var(--mantine-color-gray-3);
106
+ }
107
+ [data-mantine-color-scheme=dark] .tab {
108
+ background-color: var(--mantine-color-dark-7);
109
+ }
110
+ .tab:first-of-type {
111
+ border-radius: calc(0.25rem * var(--mantine-scale)) 0 0 calc(0.25rem * var(--mantine-scale));
112
+ }
113
+ [dir=rtl] .tab:first-of-type {
114
+ border-radius: 0 calc(0.25rem * var(--mantine-scale)) calc(0.25rem * var(--mantine-scale)) 0;
115
+ }
116
+ .tab:last-of-type {
117
+ border-radius: 0 calc(0.25rem * var(--mantine-scale)) calc(0.25rem * var(--mantine-scale)) 0;
118
+ }
119
+ [dir=rtl] .tab:last-of-type {
120
+ border-radius: calc(0.25rem * var(--mantine-scale)) 0 0 calc(0.25rem * var(--mantine-scale));
121
+ }
122
+ .tab + .tab {
123
+ }
124
+ [dir=rtl] .tab + .tab {
125
+ border-right-width: 0;
126
+ border-left-width: calc(0.0625rem * var(--mantine-scale));
127
+ }
128
+ @media (hover: hover) {
129
+ .tab:hover {
130
+ background-color: var(--mantine-color-gray-0);
131
+ }
132
+ [data-mantine-color-scheme=dark] .tab:hover {
133
+ background-color: var(--mantine-color-dark-9);
134
+ }
135
+ }
136
+ @media (hover: none) {
137
+ .tab:active {
138
+ background-color: var(--mantine-color-gray-0);
139
+ }
140
+ [data-mantine-color-scheme=dark] .tab:active {
141
+ background-color: var(--mantine-color-dark-9);
142
+ }
143
+ }
144
+ .tab[data-active] {
145
+ z-index: 1;
146
+ background-color: var(--mantine-color-white);
147
+ }
148
+ [data-mantine-color-scheme=dark] .tab[data-active] {
149
+ background-color: var(--mantine-color-dark-4);
150
+ }
151
+ .tab[data-active] {
152
+ color: var(--mantine-color-blue-8);
153
+ }
154
+ [data-mantine-color-scheme=dark] .tab[data-active] {
155
+ color: var(--mantine-color-blue-4);
156
+ }
157
+ .panel {
158
+ background-color: var(--mantine-color-white);
159
+ }
160
+ [data-mantine-color-scheme=dark] .panel {
161
+ background-color: var(--mantine-color-dark-4);
162
+ }
163
+ .panel {
164
+ min-height: 100%;
165
+ }
@@ -4,6 +4,7 @@ import {
4
4
  CustomNumberInput,
5
5
  CustomPhoneNumberInput,
6
6
  CustomSwitchTheme,
7
+ CustomTabs,
7
8
  CustomThemeIconSquareCheck,
8
9
  DroppablePlaceholder,
9
10
  MyActionIcon2 as MyActionIcon,
@@ -31,23 +32,24 @@ import {
31
32
  MyStatsCard,
32
33
  MyTextInput2 as MyTextInput,
33
34
  MyWeeklySessionSchedulerPicker
34
- } from "../chunk-TWX6HL37.mjs";
35
- import "../chunk-KGBXMHKR.mjs";
36
- import "../chunk-WW55EZ4B.mjs";
37
- import "../chunk-7ZI7IOEP.mjs";
38
- import "../chunk-NYAWQRB7.mjs";
39
- import "../chunk-BTITP4TN.mjs";
40
- import "../chunk-C74M5VPE.mjs";
41
- import "../chunk-J4WTZ3B4.mjs";
42
- import "../chunk-Z76CSZFI.mjs";
43
- import "../chunk-WZ6PXGGC.mjs";
44
- import "../chunk-JD6AELXS.mjs";
35
+ } from "../../chunk-DRUHKWPQ.mjs";
36
+ import "../../chunk-WW55EZ4B.mjs";
37
+ import "../../chunk-KGBXMHKR.mjs";
38
+ import "../../chunk-7ZI7IOEP.mjs";
39
+ import "../../chunk-NYAWQRB7.mjs";
40
+ import "../../chunk-BTITP4TN.mjs";
41
+ import "../../chunk-OHAOJE5F.mjs";
42
+ import "../../chunk-J4WTZ3B4.mjs";
43
+ import "../../chunk-Z76CSZFI.mjs";
44
+ import "../../chunk-WZ6PXGGC.mjs";
45
+ import "../../chunk-JD6AELXS.mjs";
45
46
  export {
46
47
  CustomAutocomplete,
47
48
  CustomEnumBadge,
48
49
  CustomNumberInput,
49
50
  CustomPhoneNumberInput,
50
51
  CustomSwitchTheme,
52
+ CustomTabs,
51
53
  CustomThemeIconSquareCheck,
52
54
  DroppablePlaceholder,
53
55
  MyActionIcon,
@@ -1,10 +1,10 @@
1
- import "../chunk-NMY3UEY5.mjs";
1
+ import "../../chunk-NMY3UEY5.mjs";
2
2
  import {
3
3
  enumLabel_gender,
4
4
  enum_daysOfWeek,
5
5
  enum_gender
6
- } from "../chunk-J4WTZ3B4.mjs";
7
- import "../chunk-JD6AELXS.mjs";
6
+ } from "../../chunk-J4WTZ3B4.mjs";
7
+ import "../../chunk-JD6AELXS.mjs";
8
8
  export {
9
9
  enumLabel_gender,
10
10
  enum_daysOfWeek,
@@ -10,9 +10,9 @@ import {
10
10
  useMyReactQuery,
11
11
  useMyRouter,
12
12
  useQ_AQ_GetAQModule
13
- } from "../chunk-Z76CSZFI.mjs";
14
- import "../chunk-WZ6PXGGC.mjs";
15
- import "../chunk-JD6AELXS.mjs";
13
+ } from "../../chunk-Z76CSZFI.mjs";
14
+ import "../../chunk-WZ6PXGGC.mjs";
15
+ import "../../chunk-JD6AELXS.mjs";
16
16
  export {
17
17
  createBaseApi,
18
18
  useConfig,
@@ -92,3 +92,74 @@
92
92
  [data-mantine-color-scheme=dark] .dropdownFooter {
93
93
  border-top: 1px solid var(--mantine-color-dark-5);
94
94
  }
95
+
96
+ /* src/core/navigation/CustomTabs/Customtabs.module.css */
97
+ .tab {
98
+ position: relative;
99
+ border: 1px solid var(--mantine-color-gray-2);
100
+ }
101
+ [data-mantine-color-scheme=dark] .tab {
102
+ border: 1px solid var(--mantine-color-dark-4);
103
+ }
104
+ .tab {
105
+ background-color: var(--mantine-color-gray-3);
106
+ }
107
+ [data-mantine-color-scheme=dark] .tab {
108
+ background-color: var(--mantine-color-dark-7);
109
+ }
110
+ .tab:first-of-type {
111
+ border-radius: calc(0.25rem * var(--mantine-scale)) 0 0 calc(0.25rem * var(--mantine-scale));
112
+ }
113
+ [dir=rtl] .tab:first-of-type {
114
+ border-radius: 0 calc(0.25rem * var(--mantine-scale)) calc(0.25rem * var(--mantine-scale)) 0;
115
+ }
116
+ .tab:last-of-type {
117
+ border-radius: 0 calc(0.25rem * var(--mantine-scale)) calc(0.25rem * var(--mantine-scale)) 0;
118
+ }
119
+ [dir=rtl] .tab:last-of-type {
120
+ border-radius: calc(0.25rem * var(--mantine-scale)) 0 0 calc(0.25rem * var(--mantine-scale));
121
+ }
122
+ .tab + .tab {
123
+ }
124
+ [dir=rtl] .tab + .tab {
125
+ border-right-width: 0;
126
+ border-left-width: calc(0.0625rem * var(--mantine-scale));
127
+ }
128
+ @media (hover: hover) {
129
+ .tab:hover {
130
+ background-color: var(--mantine-color-gray-0);
131
+ }
132
+ [data-mantine-color-scheme=dark] .tab:hover {
133
+ background-color: var(--mantine-color-dark-9);
134
+ }
135
+ }
136
+ @media (hover: none) {
137
+ .tab:active {
138
+ background-color: var(--mantine-color-gray-0);
139
+ }
140
+ [data-mantine-color-scheme=dark] .tab:active {
141
+ background-color: var(--mantine-color-dark-9);
142
+ }
143
+ }
144
+ .tab[data-active] {
145
+ z-index: 1;
146
+ background-color: var(--mantine-color-white);
147
+ }
148
+ [data-mantine-color-scheme=dark] .tab[data-active] {
149
+ background-color: var(--mantine-color-dark-4);
150
+ }
151
+ .tab[data-active] {
152
+ color: var(--mantine-color-blue-8);
153
+ }
154
+ [data-mantine-color-scheme=dark] .tab[data-active] {
155
+ color: var(--mantine-color-blue-4);
156
+ }
157
+ .panel {
158
+ background-color: var(--mantine-color-white);
159
+ }
160
+ [data-mantine-color-scheme=dark] .panel {
161
+ background-color: var(--mantine-color-dark-4);
162
+ }
163
+ .panel {
164
+ min-height: 100%;
165
+ }
@@ -97,17 +97,17 @@ import {
97
97
  MailTemplateDeleteButton,
98
98
  useS_moduleConfig,
99
99
  useStore_Authenticate
100
- } from "../chunk-TWX6HL37.mjs";
101
- import "../chunk-KGBXMHKR.mjs";
102
- import "../chunk-WW55EZ4B.mjs";
103
- import "../chunk-7ZI7IOEP.mjs";
104
- import "../chunk-NYAWQRB7.mjs";
105
- import "../chunk-BTITP4TN.mjs";
106
- import "../chunk-C74M5VPE.mjs";
107
- import "../chunk-J4WTZ3B4.mjs";
108
- import "../chunk-Z76CSZFI.mjs";
109
- import "../chunk-WZ6PXGGC.mjs";
110
- import "../chunk-JD6AELXS.mjs";
100
+ } from "../../chunk-DRUHKWPQ.mjs";
101
+ import "../../chunk-WW55EZ4B.mjs";
102
+ import "../../chunk-KGBXMHKR.mjs";
103
+ import "../../chunk-7ZI7IOEP.mjs";
104
+ import "../../chunk-NYAWQRB7.mjs";
105
+ import "../../chunk-BTITP4TN.mjs";
106
+ import "../../chunk-OHAOJE5F.mjs";
107
+ import "../../chunk-J4WTZ3B4.mjs";
108
+ import "../../chunk-Z76CSZFI.mjs";
109
+ import "../../chunk-WZ6PXGGC.mjs";
110
+ import "../../chunk-JD6AELXS.mjs";
111
111
  export {
112
112
  AcademicYearsCreate,
113
113
  AcademicYearsDelete,
@@ -1,3 +1,74 @@
1
+ /* src/core/navigation/CustomTabs/Customtabs.module.css */
2
+ .tab {
3
+ position: relative;
4
+ border: 1px solid var(--mantine-color-gray-2);
5
+ }
6
+ [data-mantine-color-scheme=dark] .tab {
7
+ border: 1px solid var(--mantine-color-dark-4);
8
+ }
9
+ .tab {
10
+ background-color: var(--mantine-color-gray-3);
11
+ }
12
+ [data-mantine-color-scheme=dark] .tab {
13
+ background-color: var(--mantine-color-dark-7);
14
+ }
15
+ .tab:first-of-type {
16
+ border-radius: calc(0.25rem * var(--mantine-scale)) 0 0 calc(0.25rem * var(--mantine-scale));
17
+ }
18
+ [dir=rtl] .tab:first-of-type {
19
+ border-radius: 0 calc(0.25rem * var(--mantine-scale)) calc(0.25rem * var(--mantine-scale)) 0;
20
+ }
21
+ .tab:last-of-type {
22
+ border-radius: 0 calc(0.25rem * var(--mantine-scale)) calc(0.25rem * var(--mantine-scale)) 0;
23
+ }
24
+ [dir=rtl] .tab:last-of-type {
25
+ border-radius: calc(0.25rem * var(--mantine-scale)) 0 0 calc(0.25rem * var(--mantine-scale));
26
+ }
27
+ .tab + .tab {
28
+ }
29
+ [dir=rtl] .tab + .tab {
30
+ border-right-width: 0;
31
+ border-left-width: calc(0.0625rem * var(--mantine-scale));
32
+ }
33
+ @media (hover: hover) {
34
+ .tab:hover {
35
+ background-color: var(--mantine-color-gray-0);
36
+ }
37
+ [data-mantine-color-scheme=dark] .tab:hover {
38
+ background-color: var(--mantine-color-dark-9);
39
+ }
40
+ }
41
+ @media (hover: none) {
42
+ .tab:active {
43
+ background-color: var(--mantine-color-gray-0);
44
+ }
45
+ [data-mantine-color-scheme=dark] .tab:active {
46
+ background-color: var(--mantine-color-dark-9);
47
+ }
48
+ }
49
+ .tab[data-active] {
50
+ z-index: 1;
51
+ background-color: var(--mantine-color-white);
52
+ }
53
+ [data-mantine-color-scheme=dark] .tab[data-active] {
54
+ background-color: var(--mantine-color-dark-4);
55
+ }
56
+ .tab[data-active] {
57
+ color: var(--mantine-color-blue-8);
58
+ }
59
+ [data-mantine-color-scheme=dark] .tab[data-active] {
60
+ color: var(--mantine-color-blue-4);
61
+ }
62
+ .panel {
63
+ background-color: var(--mantine-color-white);
64
+ }
65
+ [data-mantine-color-scheme=dark] .panel {
66
+ background-color: var(--mantine-color-dark-4);
67
+ }
68
+ .panel {
69
+ min-height: 100%;
70
+ }
71
+
1
72
  /* src/components/Layouts/HeaderMegaMenu/css.module.css */
2
73
  .header {
3
74
  position: sticky;
@@ -1,25 +1,25 @@
1
+ import "../../chunk-NMY3UEY5.mjs";
1
2
  import {
2
3
  MySelect
3
- } from "../chunk-TWX6HL37.mjs";
4
- import "../chunk-KGBXMHKR.mjs";
5
- import "../chunk-WW55EZ4B.mjs";
4
+ } from "../../chunk-DRUHKWPQ.mjs";
5
+ import "../../chunk-WW55EZ4B.mjs";
6
+ import "../../chunk-KGBXMHKR.mjs";
6
7
  import {
7
8
  utils_converter
8
- } from "../chunk-7ZI7IOEP.mjs";
9
- import "../chunk-NYAWQRB7.mjs";
10
- import "../chunk-BTITP4TN.mjs";
11
- import "../chunk-C74M5VPE.mjs";
12
- import "../chunk-NMY3UEY5.mjs";
9
+ } from "../../chunk-7ZI7IOEP.mjs";
10
+ import "../../chunk-NYAWQRB7.mjs";
11
+ import "../../chunk-BTITP4TN.mjs";
12
+ import "../../chunk-OHAOJE5F.mjs";
13
13
  import {
14
14
  enumLabel_gender,
15
15
  enum_gender
16
- } from "../chunk-J4WTZ3B4.mjs";
17
- import "../chunk-Z76CSZFI.mjs";
18
- import "../chunk-WZ6PXGGC.mjs";
16
+ } from "../../chunk-J4WTZ3B4.mjs";
17
+ import "../../chunk-Z76CSZFI.mjs";
18
+ import "../../chunk-WZ6PXGGC.mjs";
19
19
  import {
20
20
  __objRest,
21
21
  __spreadValues
22
- } from "../chunk-JD6AELXS.mjs";
22
+ } from "../../chunk-JD6AELXS.mjs";
23
23
 
24
24
  // src/shared/Account/Shared_AccountTable.tsx
25
25
  import { jsx } from "react/jsx-runtime";
@@ -3,9 +3,9 @@ import {
3
3
  useAppStore,
4
4
  useStore_Permission,
5
5
  useStore_ProjectInfo
6
- } from "../chunk-WW55EZ4B.mjs";
7
- import "../chunk-BTITP4TN.mjs";
8
- import "../chunk-JD6AELXS.mjs";
6
+ } from "../../chunk-WW55EZ4B.mjs";
7
+ import "../../chunk-BTITP4TN.mjs";
8
+ import "../../chunk-JD6AELXS.mjs";
9
9
  export {
10
10
  createGenericStore,
11
11
  useAppStore,
@@ -0,0 +1,7 @@
1
+ import {
2
+ typeLabel_mutation
3
+ } from "../../chunk-WZ6PXGGC.mjs";
4
+ import "../../chunk-JD6AELXS.mjs";
5
+ export {
6
+ typeLabel_mutation
7
+ };
@@ -35,8 +35,8 @@ import {
35
35
  utils_time_getCurrentTimeString,
36
36
  utils_time_getHourMinuteFromString,
37
37
  utils_validator_validateCode
38
- } from "../chunk-KGBXMHKR.mjs";
39
- import "../chunk-JD6AELXS.mjs";
38
+ } from "../../chunk-KGBXMHKR.mjs";
39
+ import "../../chunk-JD6AELXS.mjs";
40
40
  export {
41
41
  updateEnableList,
42
42
  utils_aq_mapBaseEntityToDomain,
@@ -9,8 +9,8 @@ import {
9
9
  utils_mantineReactTable,
10
10
  utils_text,
11
11
  utils_time
12
- } from "../chunk-7ZI7IOEP.mjs";
13
- import "../chunk-JD6AELXS.mjs";
12
+ } from "../../chunk-7ZI7IOEP.mjs";
13
+ import "../../chunk-JD6AELXS.mjs";
14
14
  export {
15
15
  normalizeDate,
16
16
  utils_build,
package/package.json CHANGED
@@ -54,7 +54,7 @@
54
54
  "types": "./dist/build-object/index.d.mts"
55
55
  }
56
56
  },
57
- "version": "0.1.1014",
57
+ "version": "0.1.1016",
58
58
  "private": false,
59
59
  "files": [
60
60
  "dist"
@@ -1,7 +0,0 @@
1
- import {
2
- typeLabel_mutation
3
- } from "../chunk-WZ6PXGGC.mjs";
4
- import "../chunk-JD6AELXS.mjs";
5
- export {
6
- typeLabel_mutation
7
- };
@@ -90,10 +90,10 @@ var const_object_generalMenuData = {
90
90
  };
91
91
 
92
92
  export {
93
+ const_object_colors,
93
94
  const_array_daysOfWeek,
94
95
  const_aqModuleId,
95
96
  const_columnSize,
96
- const_object_colors,
97
97
  const_object_documentTypes,
98
98
  const_object_generalMenuData
99
99
  };
File without changes