aq-fe-framework 0.1.135 → 0.1.137
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.
- package/dist/{chunk-7EHNYA4A.mjs → chunk-KI5V7QJP.mjs} +0 -2
- package/dist/{chunk-AG6IAZ3Q.mjs → chunk-X5EVS5EU.mjs} +357 -218
- package/dist/components/index.css +1 -1
- package/dist/components/index.d.mts +14 -4
- package/dist/components/index.mjs +4 -2
- package/dist/hooks/index.mjs +1 -1
- package/dist/modules-features/index.css +1 -1
- package/dist/modules-features/index.d.mts +2 -2
- package/dist/modules-features/index.mjs +4 -4
- package/dist/utils/index.d.mts +1 -2
- package/package.json +134 -134
@@ -16,7 +16,7 @@
|
|
16
16
|
display: block;
|
17
17
|
}
|
18
18
|
|
19
|
-
/* src/modules-features/
|
19
|
+
/* src/modules-features/authenticate/F_authenticate_Login/css.module.css */
|
20
20
|
.title {
|
21
21
|
font-family: Greycliff CF, var(--mantine-font-family);
|
22
22
|
font-weight: 900;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
2
|
-
import
|
2
|
+
import React$1, { ReactNode, ComponentProps } from 'react';
|
3
3
|
import { MantineSize, ActionIconProps, ButtonProps, useModalsStack, CheckboxProps, SelectProps, NumberFormatterProps, FieldsetProps, FileInputProps, NumberInputProps, TextareaProps, TextInputProps, ContainerProps, FlexProps, GroupProps, TypographyStylesProviderProps, TabsProps, SkeletonProps } from '@mantine/core';
|
4
4
|
import { useDisclosure, useListState } from '@mantine/hooks';
|
5
5
|
import { UseFormReturnType, useForm } from '@mantine/form';
|
@@ -17,7 +17,7 @@ import 'exceljs';
|
|
17
17
|
declare const MyBoxesCore: ({ className, ...rest }: {
|
18
18
|
className?: string;
|
19
19
|
}) => react_jsx_runtime.JSX.Element;
|
20
|
-
declare const Boxes:
|
20
|
+
declare const Boxes: React$1.MemoExoticComponent<({ className, ...rest }: {
|
21
21
|
className?: string;
|
22
22
|
}) => react_jsx_runtime.JSX.Element>;
|
23
23
|
|
@@ -276,6 +276,16 @@ interface IAQCardProps {
|
|
276
276
|
}
|
277
277
|
declare function AQCard({ imgSrc, title, description, date, children, status, href }: IAQCardProps): react_jsx_runtime.JSX.Element;
|
278
278
|
|
279
|
+
interface MyCardInformationProps {
|
280
|
+
title: string;
|
281
|
+
value: string;
|
282
|
+
unit?: string;
|
283
|
+
description: string;
|
284
|
+
icons: ReactNode;
|
285
|
+
diff: number;
|
286
|
+
}
|
287
|
+
declare function MyCardInformation({ title, value, unit, description, icons, diff }: MyCardInformationProps): react_jsx_runtime.JSX.Element;
|
288
|
+
|
279
289
|
type FormatFunction<TData extends MRT_RowData> = (value: any) => any;
|
280
290
|
interface IDataTable$1<TData extends MRT_RowData> extends MRT_TableOptions<TData> {
|
281
291
|
columns: MRT_ColumnDef<TData>[];
|
@@ -444,7 +454,7 @@ declare function MyPageContent({ leftTopBar, title, canBack, rightTopBar, status
|
|
444
454
|
|
445
455
|
interface ITab {
|
446
456
|
label: string;
|
447
|
-
icon?:
|
457
|
+
icon?: React$1.ForwardRefExoticComponent<IconProps & React$1.RefAttributes<Icon>>;
|
448
458
|
}
|
449
459
|
interface IMyTab extends TabsProps {
|
450
460
|
tabList: ITab[];
|
@@ -495,4 +505,4 @@ interface IMySkeletonTable extends SkeletonProps {
|
|
495
505
|
}
|
496
506
|
declare function MySkeletonTable({ h }: IMySkeletonTable): react_jsx_runtime.JSX.Element;
|
497
507
|
|
498
|
-
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 };
|
508
|
+
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, MyCardInformation, 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 };
|
@@ -30,6 +30,7 @@ import {
|
|
30
30
|
MyButtonRouterBack,
|
31
31
|
MyButtonViewPDF,
|
32
32
|
MyCalendar,
|
33
|
+
MyCardInformation,
|
33
34
|
MyCardioLoader,
|
34
35
|
MyCenterFull,
|
35
36
|
MyCheckbox,
|
@@ -65,8 +66,8 @@ import {
|
|
65
66
|
useS_BasicAppShell,
|
66
67
|
useS_ButtonImport,
|
67
68
|
utils_layout_getItemsWithoutLinks
|
68
|
-
} from "../chunk-
|
69
|
-
import "../chunk-
|
69
|
+
} from "../chunk-X5EVS5EU.mjs";
|
70
|
+
import "../chunk-KI5V7QJP.mjs";
|
70
71
|
import "../chunk-Y3YGC5IH.mjs";
|
71
72
|
import "../chunk-CJDXLINF.mjs";
|
72
73
|
import "../chunk-7ZCOFATU.mjs";
|
@@ -103,6 +104,7 @@ export {
|
|
103
104
|
MyButtonRouterBack,
|
104
105
|
MyButtonViewPDF,
|
105
106
|
MyCalendar,
|
107
|
+
MyCardInformation,
|
106
108
|
MyCardioLoader,
|
107
109
|
MyCenterFull,
|
108
110
|
MyCheckbox,
|
package/dist/hooks/index.mjs
CHANGED
@@ -111,7 +111,7 @@
|
|
111
111
|
border-top: 1px solid var(--mantine-color-dark-5);
|
112
112
|
}
|
113
113
|
|
114
|
-
/* src/modules-features/
|
114
|
+
/* src/modules-features/authenticate/F_authenticate_Login/css.module.css */
|
115
115
|
.title {
|
116
116
|
font-family: Greycliff CF, var(--mantine-font-family);
|
117
117
|
font-weight: 900;
|
@@ -511,7 +511,7 @@ interface I$1 {
|
|
511
511
|
fullName?: string;
|
512
512
|
code?: string;
|
513
513
|
}
|
514
|
-
declare function
|
514
|
+
declare function useS_authenticate(): {
|
515
515
|
state: I$1;
|
516
516
|
setState: (newState: I$1) => void;
|
517
517
|
setProperty: <K extends keyof I$1>(key: K, value: I$1[K]) => void;
|
@@ -531,4 +531,4 @@ interface I {
|
|
531
531
|
}
|
532
532
|
declare function F_Authenticate_Login({ loginInfo, redirectUrlAfterLogin, additionalActions, backgroundImage, onSuccess }: I): react_jsx_runtime.JSX.Element;
|
533
533
|
|
534
|
-
export { F_Authenticate_Login, F_Authenticate_Logout, F_authenticate_SplashPage, F_core12196, F_core12196_Create, F_core12196_Delete, F_core12196_Read, F_core12196_Update, F_core16209, F_core16209_Create, F_core16209_Delete, F_core16209_Update, F_core18256, F_core18256_Create, F_core18256_Delete, F_core18256_Read, F_core18256_Select, F_core18256_Update, F_core26965, F_core26965_Create, F_core26965_Delete, F_core26965_Update, F_core27311, F_core27311_Create, F_core27311_Delete, F_core27311_Read, F_core27311_Update, F_core35923, F_core38677, F_core38677_ReadUser, F_core38677_Save, F_core38677_ViewMenuPermissions, F_core40207, F_core40207_Create, F_core40207_Delete, F_core40207_Read, F_core40207_Update, F_core47643, F_core47643_Delete, F_core47643_Form, F_core47643_Read, F_core60524, F_core64229, F_core64229_Delete, F_core64229_Form, F_core64229_Read, F_core71678, F_core71678_ChangePermission, F_core71678_Create, F_core71678_Delete, F_core71678_Read, F_core71678_Update, F_core76318, F_core76318_Create, F_core76318_Delete, F_core76318_Update, F_core83092, F_core83092_ReadUser, F_core83092_Save, F_core83092_ViewMenuPermissions, type I_core38677_User, type I_core60524_AQModule, type I_core71678_Read, type I_core83092_RolePermission, PieChart_DiscountUsedPercentage, PieChart_VoucherUsedPercentage,
|
534
|
+
export { F_Authenticate_Login, F_Authenticate_Logout, F_authenticate_SplashPage, F_core12196, F_core12196_Create, F_core12196_Delete, F_core12196_Read, F_core12196_Update, F_core16209, F_core16209_Create, F_core16209_Delete, F_core16209_Update, F_core18256, F_core18256_Create, F_core18256_Delete, F_core18256_Read, F_core18256_Select, F_core18256_Update, F_core26965, F_core26965_Create, F_core26965_Delete, F_core26965_Update, F_core27311, F_core27311_Create, F_core27311_Delete, F_core27311_Read, F_core27311_Update, F_core35923, F_core38677, F_core38677_ReadUser, F_core38677_Save, F_core38677_ViewMenuPermissions, F_core40207, F_core40207_Create, F_core40207_Delete, F_core40207_Read, F_core40207_Update, F_core47643, F_core47643_Delete, F_core47643_Form, F_core47643_Read, F_core60524, F_core64229, F_core64229_Delete, F_core64229_Form, F_core64229_Read, F_core71678, F_core71678_ChangePermission, F_core71678_Create, F_core71678_Delete, F_core71678_Read, F_core71678_Update, F_core76318, F_core76318_Create, F_core76318_Delete, F_core76318_Update, F_core83092, F_core83092_ReadUser, F_core83092_Save, F_core83092_ViewMenuPermissions, type I_core38677_User, type I_core60524_AQModule, type I_core71678_Read, type I_core83092_RolePermission, PieChart_DiscountUsedPercentage, PieChart_VoucherUsedPercentage, useS_authenticate, useS_core60524, useS_core83092, utils_core83092_mergePage };
|
@@ -61,12 +61,12 @@ import {
|
|
61
61
|
F_core83092_ViewMenuPermissions,
|
62
62
|
PieChart_DiscountUsedPercentage,
|
63
63
|
PieChart_VoucherUsedPercentage,
|
64
|
-
|
64
|
+
useS_authenticate,
|
65
65
|
useS_core60524,
|
66
66
|
useS_core83092,
|
67
67
|
utils_core83092_mergePage
|
68
|
-
} from "../chunk-
|
69
|
-
import "../chunk-
|
68
|
+
} from "../chunk-X5EVS5EU.mjs";
|
69
|
+
import "../chunk-KI5V7QJP.mjs";
|
70
70
|
import "../chunk-Y3YGC5IH.mjs";
|
71
71
|
import "../chunk-CJDXLINF.mjs";
|
72
72
|
import "../chunk-7ZCOFATU.mjs";
|
@@ -134,7 +134,7 @@ export {
|
|
134
134
|
F_core83092_ViewMenuPermissions,
|
135
135
|
PieChart_DiscountUsedPercentage,
|
136
136
|
PieChart_VoucherUsedPercentage,
|
137
|
-
|
137
|
+
useS_authenticate,
|
138
138
|
useS_core60524,
|
139
139
|
useS_core83092,
|
140
140
|
utils_core83092_mergePage
|
package/dist/utils/index.d.mts
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
export { a as IAQFileDetail, I as IUtils_Excel_ColumnConfig, b as utils_excel_download, u as utils_excel_exportExcel, d as utils_file_docxtemplaterDownload, c as utils_file_fileToAQDocumentType } from '../utils_file-DAglO3jY.mjs';
|
2
2
|
import { DefaultMantineColor } from '@mantine/core';
|
3
|
-
import * as react from 'react';
|
4
3
|
import 'exceljs';
|
5
4
|
|
6
5
|
declare const utils_converter_getLabelByValue: (data: Record<number, string>, value?: number | string) => string;
|
@@ -31,7 +30,7 @@ declare function utils_pdf_download(url: string): Promise<void>;
|
|
31
30
|
declare const utils_time_convertTimeStringToSeconds: (time: string) => number;
|
32
31
|
declare const utils_time_getCurrentTimeString: () => string;
|
33
32
|
|
34
|
-
declare function U0MyValidateEmpty(message?: string): (value: unknown) =>
|
33
|
+
declare function U0MyValidateEmpty(message?: string): (value: unknown) => React.ReactNode;
|
35
34
|
declare function U0MyValidateEmail(value?: string): "Email không đúng định dạng" | null;
|
36
35
|
|
37
36
|
export { U0DateToDDMMYYYString, U0MyValidateEmail, U0MyValidateEmpty, utils_converter_enumToSelectOptions, utils_converter_getKeyByValue, utils_converter_getLabelByValue, utils_date_dateToDDMMYYYString, utils_date_formatToDateTimeStartEnd, utils_notification_show, utils_pdf_download, utils_time_convertTimeStringToSeconds, utils_time_getCurrentTimeString };
|
package/package.json
CHANGED
@@ -1,134 +1,134 @@
|
|
1
|
-
{
|
2
|
-
"name": "aq-fe-framework",
|
3
|
-
"exports": {
|
4
|
-
"./utils": {
|
5
|
-
"import": "./dist/utils/index.mjs",
|
6
|
-
"types": "./dist/utils/index.d.mts"
|
7
|
-
},
|
8
|
-
"./components": {
|
9
|
-
"import": "./dist/components/index.mjs",
|
10
|
-
"types": "./dist/components/index.d.mts"
|
11
|
-
},
|
12
|
-
"./stores": {
|
13
|
-
"import": "./dist/stores/index.mjs",
|
14
|
-
"types": "./dist/stores/index.d.mts"
|
15
|
-
},
|
16
|
-
"./modules-features": {
|
17
|
-
"import": "./dist/modules-features/index.mjs",
|
18
|
-
"types": "./dist/modules-features/index.d.mts"
|
19
|
-
},
|
20
|
-
"./hooks": {
|
21
|
-
"import": "./dist/hooks/index.mjs",
|
22
|
-
"types": "./dist/hooks/index.d.mts"
|
23
|
-
}
|
24
|
-
},
|
25
|
-
"version": "0.1.
|
26
|
-
"private": false,
|
27
|
-
"files": [
|
28
|
-
"dist"
|
29
|
-
],
|
30
|
-
"scripts": {
|
31
|
-
"deploy": "node deploy.js",
|
32
|
-
"dev": "next dev --turbopack -p 3000",
|
33
|
-
"build-next": "next build",
|
34
|
-
"gen": "barrelsby --config barrelsby.json",
|
35
|
-
"build": "tsup --tsconfig tsconfig.lib.json",
|
36
|
-
"start": "next start",
|
37
|
-
"lint": "next lint",
|
38
|
-
"debug": "next dev -p 3003"
|
39
|
-
},
|
40
|
-
"dependencies": {
|
41
|
-
"@fullcalendar/core": "^6.1.15",
|
42
|
-
"@fullcalendar/daygrid": "^6.1.15",
|
43
|
-
"@fullcalendar/react": "^6.1.15",
|
44
|
-
"@mantine/carousel": "^7.15.0",
|
45
|
-
"@mantine/charts": "^7.15.0",
|
46
|
-
"@mantine/code-highlight": "^7.15.0",
|
47
|
-
"@mantine/core": "^7.15.1",
|
48
|
-
"@mantine/dates": "^7.15.1",
|
49
|
-
"@mantine/dropzone": "^7.15.0",
|
50
|
-
"@mantine/form": "^7.15.0",
|
51
|
-
"@mantine/hooks": "^7.15.1",
|
52
|
-
"@mantine/modals": "^7.15.0",
|
53
|
-
"@mantine/notifications": "^7.15.0",
|
54
|
-
"@mantine/nprogress": "^7.15.0",
|
55
|
-
"@mantine/spotlight": "^7.15.0",
|
56
|
-
"@mantine/tiptap": "^7.15.0",
|
57
|
-
"@mantinex/mantine-logo": "^1.1.0",
|
58
|
-
"@schedule-x/event-modal": "^2.12.1",
|
59
|
-
"@schedule-x/events-service": "^2.28.0",
|
60
|
-
"@schedule-x/react": "^2.28.0",
|
61
|
-
"@schedule-x/theme-default": "^2.28.0",
|
62
|
-
"@tabler/icons-react": "^3.26.0",
|
63
|
-
"@tanstack/react-query": "^5.62.8",
|
64
|
-
"@tanstack/react-query-devtools": "^5.69.0",
|
65
|
-
"@tiptap-pro/extension-file-handler": "^2.14.0",
|
66
|
-
"@tiptap/extension-highlight": "^2.9.1",
|
67
|
-
"@tiptap/extension-image": "^2.9.1",
|
68
|
-
"@tiptap/extension-link": "^2.9.1",
|
69
|
-
"@tiptap/extension-subscript": "^2.9.1",
|
70
|
-
"@tiptap/extension-superscript": "^2.9.1",
|
71
|
-
"@tiptap/extension-text-align": "^2.9.1",
|
72
|
-
"@tiptap/extension-underline": "^2.9.1",
|
73
|
-
"@tiptap/pm": "^2.9.1",
|
74
|
-
"@tiptap/react": "^2.9.1",
|
75
|
-
"@tiptap/starter-kit": "^2.9.1",
|
76
|
-
"autoprefixer": "^10.4.20",
|
77
|
-
"axios": "^1.7.7",
|
78
|
-
"clsx": "^2.1.1",
|
79
|
-
"dayjs": "^1.11.13",
|
80
|
-
"docxtemplater": "^3.54.1",
|
81
|
-
"embla-carousel-react": "^7.1.0",
|
82
|
-
"exceljs": "^4.4.0",
|
83
|
-
"export-to-csv": "^1.4.0",
|
84
|
-
"file-saver": "^2.0.5",
|
85
|
-
"framer-motion": "^11.11.11",
|
86
|
-
"fs-extra": "^11.2.0",
|
87
|
-
"json-server": "^1.0.0-beta.3",
|
88
|
-
"ldrs": "^1.0.2",
|
89
|
-
"lodash.debounce": "^4.0.8",
|
90
|
-
"mantine-react-table": "^2.0.0-beta.7",
|
91
|
-
"next": "15.0.3",
|
92
|
-
"pako": "^2.1.0",
|
93
|
-
"pizzip": "^3.1.7",
|
94
|
-
"react": "19.0.0-rc-66855b96-20241106",
|
95
|
-
"react-dom": "19.0.0-rc-66855b96-20241106",
|
96
|
-
"react-to-print": "^3.0.6",
|
97
|
-
"recharts": "^2.13.3",
|
98
|
-
"sass": "^1.82.0",
|
99
|
-
"tailwind-merge": "^2.5.4",
|
100
|
-
"xlsx": "^0.18.5",
|
101
|
-
"zustand": "^5.0.1"
|
102
|
-
},
|
103
|
-
"devDependencies": {
|
104
|
-
"@types/file-saver": "^2.0.7",
|
105
|
-
"@types/node": "^20.17.30",
|
106
|
-
"@types/pako": "^2.0.3",
|
107
|
-
"@types/react": "^18.3.20",
|
108
|
-
"@types/react-dom": "^18",
|
109
|
-
"barrelsby": "^2.8.1",
|
110
|
-
"eslint": "^8",
|
111
|
-
"eslint-config-next": "15.0.3",
|
112
|
-
"postcss": "^8.4.48",
|
113
|
-
"postcss-preset-mantine": "^1.17.0",
|
114
|
-
"postcss-simple-vars": "^7.0.1",
|
115
|
-
"tailwindcss": "^3.4.1",
|
116
|
-
"tsup": "^8.4.0",
|
117
|
-
"typescript": "^5.8.3"
|
118
|
-
},
|
119
|
-
"peerDependencies": {
|
120
|
-
"react": "^17.0.0 || ^18.0.0",
|
121
|
-
"react-dom": "^17.0.0 || ^18.0.0"
|
122
|
-
},
|
123
|
-
"description": "",
|
124
|
-
"repository": {
|
125
|
-
"type": "git",
|
126
|
-
"url": "git+https://github.com/TranQuocThieu22/aq-fe-framework.git"
|
127
|
-
},
|
128
|
-
"author": "Quốc Thiệu",
|
129
|
-
"license": "ISC",
|
130
|
-
"bugs": {
|
131
|
-
"url": "https://github.com/TranQuocThieu22/aq-fe-framework/issues"
|
132
|
-
},
|
133
|
-
"homepage": "https://github.com/TranQuocThieu22/aq-fe-framework#readme"
|
134
|
-
}
|
1
|
+
{
|
2
|
+
"name": "aq-fe-framework",
|
3
|
+
"exports": {
|
4
|
+
"./utils": {
|
5
|
+
"import": "./dist/utils/index.mjs",
|
6
|
+
"types": "./dist/utils/index.d.mts"
|
7
|
+
},
|
8
|
+
"./components": {
|
9
|
+
"import": "./dist/components/index.mjs",
|
10
|
+
"types": "./dist/components/index.d.mts"
|
11
|
+
},
|
12
|
+
"./stores": {
|
13
|
+
"import": "./dist/stores/index.mjs",
|
14
|
+
"types": "./dist/stores/index.d.mts"
|
15
|
+
},
|
16
|
+
"./modules-features": {
|
17
|
+
"import": "./dist/modules-features/index.mjs",
|
18
|
+
"types": "./dist/modules-features/index.d.mts"
|
19
|
+
},
|
20
|
+
"./hooks": {
|
21
|
+
"import": "./dist/hooks/index.mjs",
|
22
|
+
"types": "./dist/hooks/index.d.mts"
|
23
|
+
}
|
24
|
+
},
|
25
|
+
"version": "0.1.137",
|
26
|
+
"private": false,
|
27
|
+
"files": [
|
28
|
+
"dist"
|
29
|
+
],
|
30
|
+
"scripts": {
|
31
|
+
"deploy": "node deploy.js",
|
32
|
+
"dev": "next dev --turbopack -p 3000",
|
33
|
+
"build-next": "next build",
|
34
|
+
"gen": "barrelsby --config barrelsby.json",
|
35
|
+
"build": "tsup --tsconfig tsconfig.lib.json",
|
36
|
+
"start": "next start",
|
37
|
+
"lint": "next lint",
|
38
|
+
"debug": "next dev -p 3003"
|
39
|
+
},
|
40
|
+
"dependencies": {
|
41
|
+
"@fullcalendar/core": "^6.1.15",
|
42
|
+
"@fullcalendar/daygrid": "^6.1.15",
|
43
|
+
"@fullcalendar/react": "^6.1.15",
|
44
|
+
"@mantine/carousel": "^7.15.0",
|
45
|
+
"@mantine/charts": "^7.15.0",
|
46
|
+
"@mantine/code-highlight": "^7.15.0",
|
47
|
+
"@mantine/core": "^7.15.1",
|
48
|
+
"@mantine/dates": "^7.15.1",
|
49
|
+
"@mantine/dropzone": "^7.15.0",
|
50
|
+
"@mantine/form": "^7.15.0",
|
51
|
+
"@mantine/hooks": "^7.15.1",
|
52
|
+
"@mantine/modals": "^7.15.0",
|
53
|
+
"@mantine/notifications": "^7.15.0",
|
54
|
+
"@mantine/nprogress": "^7.15.0",
|
55
|
+
"@mantine/spotlight": "^7.15.0",
|
56
|
+
"@mantine/tiptap": "^7.15.0",
|
57
|
+
"@mantinex/mantine-logo": "^1.1.0",
|
58
|
+
"@schedule-x/event-modal": "^2.12.1",
|
59
|
+
"@schedule-x/events-service": "^2.28.0",
|
60
|
+
"@schedule-x/react": "^2.28.0",
|
61
|
+
"@schedule-x/theme-default": "^2.28.0",
|
62
|
+
"@tabler/icons-react": "^3.26.0",
|
63
|
+
"@tanstack/react-query": "^5.62.8",
|
64
|
+
"@tanstack/react-query-devtools": "^5.69.0",
|
65
|
+
"@tiptap-pro/extension-file-handler": "^2.14.0",
|
66
|
+
"@tiptap/extension-highlight": "^2.9.1",
|
67
|
+
"@tiptap/extension-image": "^2.9.1",
|
68
|
+
"@tiptap/extension-link": "^2.9.1",
|
69
|
+
"@tiptap/extension-subscript": "^2.9.1",
|
70
|
+
"@tiptap/extension-superscript": "^2.9.1",
|
71
|
+
"@tiptap/extension-text-align": "^2.9.1",
|
72
|
+
"@tiptap/extension-underline": "^2.9.1",
|
73
|
+
"@tiptap/pm": "^2.9.1",
|
74
|
+
"@tiptap/react": "^2.9.1",
|
75
|
+
"@tiptap/starter-kit": "^2.9.1",
|
76
|
+
"autoprefixer": "^10.4.20",
|
77
|
+
"axios": "^1.7.7",
|
78
|
+
"clsx": "^2.1.1",
|
79
|
+
"dayjs": "^1.11.13",
|
80
|
+
"docxtemplater": "^3.54.1",
|
81
|
+
"embla-carousel-react": "^7.1.0",
|
82
|
+
"exceljs": "^4.4.0",
|
83
|
+
"export-to-csv": "^1.4.0",
|
84
|
+
"file-saver": "^2.0.5",
|
85
|
+
"framer-motion": "^11.11.11",
|
86
|
+
"fs-extra": "^11.2.0",
|
87
|
+
"json-server": "^1.0.0-beta.3",
|
88
|
+
"ldrs": "^1.0.2",
|
89
|
+
"lodash.debounce": "^4.0.8",
|
90
|
+
"mantine-react-table": "^2.0.0-beta.7",
|
91
|
+
"next": "15.0.3",
|
92
|
+
"pako": "^2.1.0",
|
93
|
+
"pizzip": "^3.1.7",
|
94
|
+
"react": "19.0.0-rc-66855b96-20241106",
|
95
|
+
"react-dom": "19.0.0-rc-66855b96-20241106",
|
96
|
+
"react-to-print": "^3.0.6",
|
97
|
+
"recharts": "^2.13.3",
|
98
|
+
"sass": "^1.82.0",
|
99
|
+
"tailwind-merge": "^2.5.4",
|
100
|
+
"xlsx": "^0.18.5",
|
101
|
+
"zustand": "^5.0.1"
|
102
|
+
},
|
103
|
+
"devDependencies": {
|
104
|
+
"@types/file-saver": "^2.0.7",
|
105
|
+
"@types/node": "^20.17.30",
|
106
|
+
"@types/pako": "^2.0.3",
|
107
|
+
"@types/react": "^18.3.20",
|
108
|
+
"@types/react-dom": "^18",
|
109
|
+
"barrelsby": "^2.8.1",
|
110
|
+
"eslint": "^8",
|
111
|
+
"eslint-config-next": "15.0.3",
|
112
|
+
"postcss": "^8.4.48",
|
113
|
+
"postcss-preset-mantine": "^1.17.0",
|
114
|
+
"postcss-simple-vars": "^7.0.1",
|
115
|
+
"tailwindcss": "^3.4.1",
|
116
|
+
"tsup": "^8.4.0",
|
117
|
+
"typescript": "^5.8.3"
|
118
|
+
},
|
119
|
+
"peerDependencies": {
|
120
|
+
"react": "^17.0.0 || ^18.0.0",
|
121
|
+
"react-dom": "^17.0.0 || ^18.0.0"
|
122
|
+
},
|
123
|
+
"description": "",
|
124
|
+
"repository": {
|
125
|
+
"type": "git",
|
126
|
+
"url": "git+https://github.com/TranQuocThieu22/aq-fe-framework.git"
|
127
|
+
},
|
128
|
+
"author": "Quốc Thiệu",
|
129
|
+
"license": "ISC",
|
130
|
+
"bugs": {
|
131
|
+
"url": "https://github.com/TranQuocThieu22/aq-fe-framework/issues"
|
132
|
+
},
|
133
|
+
"homepage": "https://github.com/TranQuocThieu22/aq-fe-framework#readme"
|
134
|
+
}
|