├── .editorconfig ├── .env ├── .eslintrc.json ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierrc.js ├── INSTALL ├── LICENSE ├── README.md ├── README_Make_Template.md ├── declaration.d.ts ├── next-env.d.ts ├── next.config.js ├── next.d.ts ├── package.json ├── public ├── images │ ├── apple-touch-icon.png │ └── favicon.png ├── locales │ ├── ar.json │ ├── en.json │ ├── fr.json │ └── zh.json └── vercel.svg ├── resources ├── doc │ ├── AI.md │ └── AI.pdf ├── guide │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ └── 08.png └── images │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ └── 06.png ├── src ├── @core │ ├── components │ │ ├── auth │ │ │ ├── AclGuard.tsx │ │ │ ├── AuthGuard.tsx │ │ │ └── GuestGuard.tsx │ │ ├── card-snippet │ │ │ ├── index.tsx │ │ │ └── types.ts │ │ ├── card-statistics │ │ │ ├── card-stats-horizontal │ │ │ │ └── index.tsx │ │ │ ├── card-stats-vertical │ │ │ │ └── index.tsx │ │ │ ├── card-stats-with-image │ │ │ │ └── index.tsx │ │ │ └── types.ts │ │ ├── custom-checkbox │ │ │ ├── basic │ │ │ │ └── index.tsx │ │ │ ├── icons │ │ │ │ └── index.tsx │ │ │ ├── image │ │ │ │ └── index.tsx │ │ │ └── types.ts │ │ ├── custom-radio │ │ │ ├── basic │ │ │ │ └── index.tsx │ │ │ ├── icons │ │ │ │ └── index.tsx │ │ │ ├── image │ │ │ │ └── index.tsx │ │ │ └── types.ts │ │ ├── customizer │ │ │ └── index.tsx │ │ ├── icon │ │ │ └── index.tsx │ │ ├── mui │ │ │ ├── avatar │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── badge │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── chip │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ └── timeline-dot │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ ├── option-menu │ │ │ ├── index.tsx │ │ │ └── types.ts │ │ ├── page-header │ │ │ ├── index.tsx │ │ │ └── types.ts │ │ ├── plan-details │ │ │ ├── index.tsx │ │ │ └── types.ts │ │ ├── react-apexcharts │ │ │ └── index.tsx │ │ ├── react-draft-wysiwyg │ │ │ └── index.tsx │ │ ├── repeater │ │ │ ├── index.tsx │ │ │ └── types.ts │ │ ├── scroll-to-top │ │ │ └── index.tsx │ │ ├── sidebar │ │ │ ├── index.tsx │ │ │ └── type.ts │ │ ├── spinner │ │ │ └── index.tsx │ │ └── window-wrapper │ │ │ └── index.tsx │ ├── context │ │ └── settingsContext.tsx │ ├── hooks │ │ ├── useBgColor.tsx │ │ ├── useClipboard.tsx │ │ └── useSettings.ts │ ├── layouts │ │ ├── BlankLayout.tsx │ │ ├── BlankLayoutWithAppBar.tsx │ │ ├── HorizontalLayout.tsx │ │ ├── Layout.tsx │ │ ├── VerticalLayout.tsx │ │ ├── components │ │ │ ├── blank-layout-with-appBar │ │ │ │ └── index.tsx │ │ │ ├── horizontal │ │ │ │ ├── app-bar-content │ │ │ │ │ └── index.tsx │ │ │ │ └── navigation │ │ │ │ │ ├── HorizontalNavGroup.tsx │ │ │ │ │ ├── HorizontalNavItems.tsx │ │ │ │ │ ├── HorizontalNavLink.tsx │ │ │ │ │ └── index.tsx │ │ │ ├── shared-components │ │ │ │ ├── AppDownloadDropdown.tsx │ │ │ │ ├── LanguageDropdown.tsx │ │ │ │ ├── ModeToggler.tsx │ │ │ │ ├── NotificationDropdown.tsx │ │ │ │ ├── ShortcutsDropdown.tsx │ │ │ │ ├── UserDropdown.tsx │ │ │ │ └── footer │ │ │ │ │ ├── FooterContent.tsx │ │ │ │ │ └── index.tsx │ │ │ └── vertical │ │ │ │ ├── appBar │ │ │ │ └── index.tsx │ │ │ │ └── navigation │ │ │ │ ├── Drawer.tsx │ │ │ │ ├── VerticalNavGroup.tsx │ │ │ │ ├── VerticalNavHeader.tsx │ │ │ │ ├── VerticalNavItems.tsx │ │ │ │ ├── VerticalNavLink.tsx │ │ │ │ ├── VerticalNavSectionTitle.tsx │ │ │ │ └── index.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── styles │ │ ├── libs │ │ │ ├── fullcalendar │ │ │ │ └── index.ts │ │ │ ├── keen-slider │ │ │ │ └── index.ts │ │ │ ├── react-apexcharts │ │ │ │ └── index.ts │ │ │ ├── react-cleave │ │ │ │ └── index.ts │ │ │ ├── react-credit-cards │ │ │ │ └── index.ts │ │ │ ├── react-datepicker │ │ │ │ └── index.ts │ │ │ ├── react-draft-wysiwyg │ │ │ │ └── index.ts │ │ │ ├── react-dropzone │ │ │ │ └── index.ts │ │ │ ├── react-hot-toast │ │ │ │ └── index.ts │ │ │ └── recharts │ │ │ │ └── index.ts │ │ └── mui │ │ │ └── stepper.ts │ ├── theme │ │ ├── ThemeComponent.tsx │ │ ├── ThemeOptions.ts │ │ ├── breakpoints │ │ │ └── index.ts │ │ ├── globalStyles.ts │ │ ├── overrides │ │ │ ├── accordion.ts │ │ │ ├── alerts.ts │ │ │ ├── autocomplete.ts │ │ │ ├── avatars.ts │ │ │ ├── backdrop.ts │ │ │ ├── button.ts │ │ │ ├── card.ts │ │ │ ├── chip.ts │ │ │ ├── dataGrid.ts │ │ │ ├── dialog.ts │ │ │ ├── divider.ts │ │ │ ├── index.ts │ │ │ ├── input.ts │ │ │ ├── link.ts │ │ │ ├── list.ts │ │ │ ├── menu.ts │ │ │ ├── pagination.ts │ │ │ ├── paper.ts │ │ │ ├── popover.ts │ │ │ ├── rating.ts │ │ │ ├── select.ts │ │ │ ├── snackbar.ts │ │ │ ├── switches.ts │ │ │ ├── table.ts │ │ │ ├── tabs.ts │ │ │ ├── timeline.ts │ │ │ ├── toggleButton.ts │ │ │ ├── tooltip.ts │ │ │ └── typography.ts │ │ ├── palette │ │ │ └── index.ts │ │ ├── shadows │ │ │ └── index.ts │ │ ├── spacing │ │ │ └── index.ts │ │ ├── types.ts │ │ └── typography │ │ │ └── index.ts │ └── utils │ │ ├── create-emotion-cache.ts │ │ ├── format.ts │ │ ├── get-daterange.ts │ │ ├── get-initials.ts │ │ ├── hex-to-rgba.ts │ │ ├── is-float.ts │ │ ├── rgba-to-hex.ts │ │ └── types.ts ├── configs │ ├── acl.ts │ ├── auth.ts │ ├── functions.ts │ ├── i18n.ts │ └── themeConfig.ts ├── context │ ├── AuthContext.tsx │ ├── FirebaseContext.tsx │ └── types.ts ├── functions │ └── AiPPTX │ │ ├── animation.js │ │ ├── chart.js │ │ ├── cover.js │ │ ├── element.js │ │ ├── geometry.js │ │ ├── ppt2canvas.js │ │ ├── ppt2svg.js │ │ └── sse.ts ├── hooks │ └── useAuth.tsx ├── iconify-bundle │ ├── bundle-icons-react.d.ts │ ├── bundle-icons-react.js │ ├── bundle-icons-react.ts │ ├── icons-bundle-react.js │ ├── svg │ │ └── logo.svg │ └── tsconfig.json ├── layouts │ ├── UserLayout.tsx │ ├── UserThemeOptions.ts │ └── components │ │ ├── Autocomplete.tsx │ │ ├── Direction.tsx │ │ ├── Translations.tsx │ │ ├── UserIcon.tsx │ │ ├── acl │ │ ├── Can.tsx │ │ ├── CanViewNavGroup.tsx │ │ ├── CanViewNavLink.tsx │ │ └── CanViewNavSectionTitle.tsx │ │ ├── horizontal │ │ ├── AppBarContent.tsx │ │ └── ServerSideNavItems.tsx │ │ └── vertical │ │ ├── AppBarContent.tsx │ │ └── ServerSideNavItems.tsx ├── pages │ ├── 401.tsx │ ├── 404.tsx │ ├── 500.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── acl │ │ └── index.tsx │ └── index.tsx ├── store.ts ├── store │ ├── authReducer.d.ts │ ├── authReducer.ts │ └── index.ts └── views │ └── AiPPTX │ ├── AiPPTX.tsx │ ├── Components │ └── StepperCustomDot.tsx │ ├── Config.ts │ ├── OutlineEdit.tsx │ ├── SelectTemplate.tsx │ ├── Setting.tsx │ ├── StepFiveGeneratePpt.tsx │ ├── StepFourSelectTemplate.tsx │ ├── StepOneInputData.tsx │ └── StepTwoThreeGenerateOutline.tsx ├── styles └── globals.css ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps = true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/README.md -------------------------------------------------------------------------------- /README_Make_Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/README_Make_Template.md -------------------------------------------------------------------------------- /declaration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/declaration.d.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/next.config.js -------------------------------------------------------------------------------- /next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/next.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/package.json -------------------------------------------------------------------------------- /public/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/public/images/apple-touch-icon.png -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/locales/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/public/locales/ar.json -------------------------------------------------------------------------------- /public/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/public/locales/en.json -------------------------------------------------------------------------------- /public/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/public/locales/fr.json -------------------------------------------------------------------------------- /public/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/public/locales/zh.json -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /resources/doc/AI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/doc/AI.md -------------------------------------------------------------------------------- /resources/doc/AI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/doc/AI.pdf -------------------------------------------------------------------------------- /resources/guide/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/guide/01.png -------------------------------------------------------------------------------- /resources/guide/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/guide/02.png -------------------------------------------------------------------------------- /resources/guide/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/guide/03.png -------------------------------------------------------------------------------- /resources/guide/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/guide/04.png -------------------------------------------------------------------------------- /resources/guide/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/guide/05.png -------------------------------------------------------------------------------- /resources/guide/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/guide/06.png -------------------------------------------------------------------------------- /resources/guide/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/guide/07.png -------------------------------------------------------------------------------- /resources/guide/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/guide/08.png -------------------------------------------------------------------------------- /resources/images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/images/01.png -------------------------------------------------------------------------------- /resources/images/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/images/02.png -------------------------------------------------------------------------------- /resources/images/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/images/03.png -------------------------------------------------------------------------------- /resources/images/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/images/04.png -------------------------------------------------------------------------------- /resources/images/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/images/05.png -------------------------------------------------------------------------------- /resources/images/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/resources/images/06.png -------------------------------------------------------------------------------- /src/@core/components/auth/AclGuard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/auth/AclGuard.tsx -------------------------------------------------------------------------------- /src/@core/components/auth/AuthGuard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/auth/AuthGuard.tsx -------------------------------------------------------------------------------- /src/@core/components/auth/GuestGuard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/auth/GuestGuard.tsx -------------------------------------------------------------------------------- /src/@core/components/card-snippet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/card-snippet/index.tsx -------------------------------------------------------------------------------- /src/@core/components/card-snippet/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/card-snippet/types.ts -------------------------------------------------------------------------------- /src/@core/components/card-statistics/card-stats-horizontal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/card-statistics/card-stats-horizontal/index.tsx -------------------------------------------------------------------------------- /src/@core/components/card-statistics/card-stats-vertical/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/card-statistics/card-stats-vertical/index.tsx -------------------------------------------------------------------------------- /src/@core/components/card-statistics/card-stats-with-image/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/card-statistics/card-stats-with-image/index.tsx -------------------------------------------------------------------------------- /src/@core/components/card-statistics/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/card-statistics/types.ts -------------------------------------------------------------------------------- /src/@core/components/custom-checkbox/basic/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/custom-checkbox/basic/index.tsx -------------------------------------------------------------------------------- /src/@core/components/custom-checkbox/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/custom-checkbox/icons/index.tsx -------------------------------------------------------------------------------- /src/@core/components/custom-checkbox/image/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/custom-checkbox/image/index.tsx -------------------------------------------------------------------------------- /src/@core/components/custom-checkbox/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/custom-checkbox/types.ts -------------------------------------------------------------------------------- /src/@core/components/custom-radio/basic/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/custom-radio/basic/index.tsx -------------------------------------------------------------------------------- /src/@core/components/custom-radio/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/custom-radio/icons/index.tsx -------------------------------------------------------------------------------- /src/@core/components/custom-radio/image/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/custom-radio/image/index.tsx -------------------------------------------------------------------------------- /src/@core/components/custom-radio/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/custom-radio/types.ts -------------------------------------------------------------------------------- /src/@core/components/customizer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/customizer/index.tsx -------------------------------------------------------------------------------- /src/@core/components/icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/icon/index.tsx -------------------------------------------------------------------------------- /src/@core/components/mui/avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/mui/avatar/index.tsx -------------------------------------------------------------------------------- /src/@core/components/mui/avatar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/mui/avatar/types.ts -------------------------------------------------------------------------------- /src/@core/components/mui/badge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/mui/badge/index.tsx -------------------------------------------------------------------------------- /src/@core/components/mui/badge/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/mui/badge/types.ts -------------------------------------------------------------------------------- /src/@core/components/mui/chip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/mui/chip/index.tsx -------------------------------------------------------------------------------- /src/@core/components/mui/chip/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/mui/chip/types.ts -------------------------------------------------------------------------------- /src/@core/components/mui/timeline-dot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/mui/timeline-dot/index.tsx -------------------------------------------------------------------------------- /src/@core/components/mui/timeline-dot/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/mui/timeline-dot/types.ts -------------------------------------------------------------------------------- /src/@core/components/option-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/option-menu/index.tsx -------------------------------------------------------------------------------- /src/@core/components/option-menu/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/option-menu/types.ts -------------------------------------------------------------------------------- /src/@core/components/page-header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/page-header/index.tsx -------------------------------------------------------------------------------- /src/@core/components/page-header/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/page-header/types.ts -------------------------------------------------------------------------------- /src/@core/components/plan-details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/plan-details/index.tsx -------------------------------------------------------------------------------- /src/@core/components/plan-details/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/plan-details/types.ts -------------------------------------------------------------------------------- /src/@core/components/react-apexcharts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/react-apexcharts/index.tsx -------------------------------------------------------------------------------- /src/@core/components/react-draft-wysiwyg/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/react-draft-wysiwyg/index.tsx -------------------------------------------------------------------------------- /src/@core/components/repeater/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/repeater/index.tsx -------------------------------------------------------------------------------- /src/@core/components/repeater/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/repeater/types.ts -------------------------------------------------------------------------------- /src/@core/components/scroll-to-top/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/scroll-to-top/index.tsx -------------------------------------------------------------------------------- /src/@core/components/sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/sidebar/index.tsx -------------------------------------------------------------------------------- /src/@core/components/sidebar/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/sidebar/type.ts -------------------------------------------------------------------------------- /src/@core/components/spinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/spinner/index.tsx -------------------------------------------------------------------------------- /src/@core/components/window-wrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/components/window-wrapper/index.tsx -------------------------------------------------------------------------------- /src/@core/context/settingsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/context/settingsContext.tsx -------------------------------------------------------------------------------- /src/@core/hooks/useBgColor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/hooks/useBgColor.tsx -------------------------------------------------------------------------------- /src/@core/hooks/useClipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/hooks/useClipboard.tsx -------------------------------------------------------------------------------- /src/@core/hooks/useSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/hooks/useSettings.ts -------------------------------------------------------------------------------- /src/@core/layouts/BlankLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/BlankLayout.tsx -------------------------------------------------------------------------------- /src/@core/layouts/BlankLayoutWithAppBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/BlankLayoutWithAppBar.tsx -------------------------------------------------------------------------------- /src/@core/layouts/HorizontalLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/HorizontalLayout.tsx -------------------------------------------------------------------------------- /src/@core/layouts/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/Layout.tsx -------------------------------------------------------------------------------- /src/@core/layouts/VerticalLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/VerticalLayout.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/blank-layout-with-appBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/blank-layout-with-appBar/index.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/horizontal/app-bar-content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/horizontal/app-bar-content/index.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/horizontal/navigation/HorizontalNavGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/horizontal/navigation/HorizontalNavGroup.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/horizontal/navigation/HorizontalNavItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/horizontal/navigation/HorizontalNavItems.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/horizontal/navigation/HorizontalNavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/horizontal/navigation/HorizontalNavLink.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/horizontal/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/horizontal/navigation/index.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/shared-components/AppDownloadDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/shared-components/AppDownloadDropdown.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/shared-components/LanguageDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/shared-components/LanguageDropdown.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/shared-components/ModeToggler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/shared-components/ModeToggler.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/shared-components/NotificationDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/shared-components/NotificationDropdown.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/shared-components/ShortcutsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/shared-components/ShortcutsDropdown.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/shared-components/UserDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/shared-components/UserDropdown.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/shared-components/footer/FooterContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/shared-components/footer/FooterContent.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/shared-components/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/shared-components/footer/index.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/vertical/appBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/vertical/appBar/index.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/vertical/navigation/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/vertical/navigation/Drawer.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/vertical/navigation/VerticalNavGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/vertical/navigation/VerticalNavGroup.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/vertical/navigation/VerticalNavHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/vertical/navigation/VerticalNavHeader.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/vertical/navigation/VerticalNavItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/vertical/navigation/VerticalNavItems.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/vertical/navigation/VerticalNavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/vertical/navigation/VerticalNavLink.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/vertical/navigation/VerticalNavSectionTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/vertical/navigation/VerticalNavSectionTitle.tsx -------------------------------------------------------------------------------- /src/@core/layouts/components/vertical/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/components/vertical/navigation/index.tsx -------------------------------------------------------------------------------- /src/@core/layouts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/types.ts -------------------------------------------------------------------------------- /src/@core/layouts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/layouts/utils.ts -------------------------------------------------------------------------------- /src/@core/styles/libs/fullcalendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/styles/libs/fullcalendar/index.ts -------------------------------------------------------------------------------- /src/@core/styles/libs/keen-slider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/styles/libs/keen-slider/index.ts -------------------------------------------------------------------------------- /src/@core/styles/libs/react-apexcharts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/styles/libs/react-apexcharts/index.ts -------------------------------------------------------------------------------- /src/@core/styles/libs/react-cleave/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/styles/libs/react-cleave/index.ts -------------------------------------------------------------------------------- /src/@core/styles/libs/react-credit-cards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/styles/libs/react-credit-cards/index.ts -------------------------------------------------------------------------------- /src/@core/styles/libs/react-datepicker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/styles/libs/react-datepicker/index.ts -------------------------------------------------------------------------------- /src/@core/styles/libs/react-draft-wysiwyg/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/styles/libs/react-draft-wysiwyg/index.ts -------------------------------------------------------------------------------- /src/@core/styles/libs/react-dropzone/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/styles/libs/react-dropzone/index.ts -------------------------------------------------------------------------------- /src/@core/styles/libs/react-hot-toast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/styles/libs/react-hot-toast/index.ts -------------------------------------------------------------------------------- /src/@core/styles/libs/recharts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/styles/libs/recharts/index.ts -------------------------------------------------------------------------------- /src/@core/styles/mui/stepper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/styles/mui/stepper.ts -------------------------------------------------------------------------------- /src/@core/theme/ThemeComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/ThemeComponent.tsx -------------------------------------------------------------------------------- /src/@core/theme/ThemeOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/ThemeOptions.ts -------------------------------------------------------------------------------- /src/@core/theme/breakpoints/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/breakpoints/index.ts -------------------------------------------------------------------------------- /src/@core/theme/globalStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/globalStyles.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/accordion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/accordion.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/alerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/alerts.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/autocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/autocomplete.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/avatars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/avatars.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/backdrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/backdrop.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/button.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/card.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/chip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/chip.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/dataGrid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/dataGrid.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/dialog.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/divider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/divider.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/index.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/input.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/link.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/list.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/menu.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/pagination.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/paper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/paper.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/popover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/popover.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/rating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/rating.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/select.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/snackbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/snackbar.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/switches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/switches.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/table.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/tabs.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/timeline.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/toggleButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/toggleButton.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/tooltip.ts -------------------------------------------------------------------------------- /src/@core/theme/overrides/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/overrides/typography.ts -------------------------------------------------------------------------------- /src/@core/theme/palette/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/palette/index.ts -------------------------------------------------------------------------------- /src/@core/theme/shadows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/shadows/index.ts -------------------------------------------------------------------------------- /src/@core/theme/spacing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/spacing/index.ts -------------------------------------------------------------------------------- /src/@core/theme/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/types.ts -------------------------------------------------------------------------------- /src/@core/theme/typography/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/theme/typography/index.ts -------------------------------------------------------------------------------- /src/@core/utils/create-emotion-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/utils/create-emotion-cache.ts -------------------------------------------------------------------------------- /src/@core/utils/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/utils/format.ts -------------------------------------------------------------------------------- /src/@core/utils/get-daterange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/utils/get-daterange.ts -------------------------------------------------------------------------------- /src/@core/utils/get-initials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/utils/get-initials.ts -------------------------------------------------------------------------------- /src/@core/utils/hex-to-rgba.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/utils/hex-to-rgba.ts -------------------------------------------------------------------------------- /src/@core/utils/is-float.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/utils/is-float.ts -------------------------------------------------------------------------------- /src/@core/utils/rgba-to-hex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/utils/rgba-to-hex.ts -------------------------------------------------------------------------------- /src/@core/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/@core/utils/types.ts -------------------------------------------------------------------------------- /src/configs/acl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/configs/acl.ts -------------------------------------------------------------------------------- /src/configs/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/configs/auth.ts -------------------------------------------------------------------------------- /src/configs/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/configs/functions.ts -------------------------------------------------------------------------------- /src/configs/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/configs/i18n.ts -------------------------------------------------------------------------------- /src/configs/themeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/configs/themeConfig.ts -------------------------------------------------------------------------------- /src/context/AuthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/context/AuthContext.tsx -------------------------------------------------------------------------------- /src/context/FirebaseContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/context/FirebaseContext.tsx -------------------------------------------------------------------------------- /src/context/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/context/types.ts -------------------------------------------------------------------------------- /src/functions/AiPPTX/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/functions/AiPPTX/animation.js -------------------------------------------------------------------------------- /src/functions/AiPPTX/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/functions/AiPPTX/chart.js -------------------------------------------------------------------------------- /src/functions/AiPPTX/cover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/functions/AiPPTX/cover.js -------------------------------------------------------------------------------- /src/functions/AiPPTX/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/functions/AiPPTX/element.js -------------------------------------------------------------------------------- /src/functions/AiPPTX/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/functions/AiPPTX/geometry.js -------------------------------------------------------------------------------- /src/functions/AiPPTX/ppt2canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/functions/AiPPTX/ppt2canvas.js -------------------------------------------------------------------------------- /src/functions/AiPPTX/ppt2svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/functions/AiPPTX/ppt2svg.js -------------------------------------------------------------------------------- /src/functions/AiPPTX/sse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/functions/AiPPTX/sse.ts -------------------------------------------------------------------------------- /src/hooks/useAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/hooks/useAuth.tsx -------------------------------------------------------------------------------- /src/iconify-bundle/bundle-icons-react.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /src/iconify-bundle/bundle-icons-react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/iconify-bundle/bundle-icons-react.js -------------------------------------------------------------------------------- /src/iconify-bundle/bundle-icons-react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/iconify-bundle/bundle-icons-react.ts -------------------------------------------------------------------------------- /src/iconify-bundle/icons-bundle-react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/iconify-bundle/icons-bundle-react.js -------------------------------------------------------------------------------- /src/iconify-bundle/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/iconify-bundle/svg/logo.svg -------------------------------------------------------------------------------- /src/iconify-bundle/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/iconify-bundle/tsconfig.json -------------------------------------------------------------------------------- /src/layouts/UserLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/layouts/UserLayout.tsx -------------------------------------------------------------------------------- /src/layouts/UserThemeOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/layouts/UserThemeOptions.ts -------------------------------------------------------------------------------- /src/layouts/components/Autocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/layouts/components/Autocomplete.tsx -------------------------------------------------------------------------------- /src/layouts/components/Direction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/layouts/components/Direction.tsx -------------------------------------------------------------------------------- /src/layouts/components/Translations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/layouts/components/Translations.tsx -------------------------------------------------------------------------------- /src/layouts/components/UserIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/layouts/components/UserIcon.tsx -------------------------------------------------------------------------------- /src/layouts/components/acl/Can.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/layouts/components/acl/Can.tsx -------------------------------------------------------------------------------- /src/layouts/components/acl/CanViewNavGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/layouts/components/acl/CanViewNavGroup.tsx -------------------------------------------------------------------------------- /src/layouts/components/acl/CanViewNavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/layouts/components/acl/CanViewNavLink.tsx -------------------------------------------------------------------------------- /src/layouts/components/acl/CanViewNavSectionTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/layouts/components/acl/CanViewNavSectionTitle.tsx -------------------------------------------------------------------------------- /src/layouts/components/horizontal/AppBarContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/layouts/components/horizontal/AppBarContent.tsx -------------------------------------------------------------------------------- /src/layouts/components/horizontal/ServerSideNavItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/layouts/components/horizontal/ServerSideNavItems.tsx -------------------------------------------------------------------------------- /src/layouts/components/vertical/AppBarContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/layouts/components/vertical/AppBarContent.tsx -------------------------------------------------------------------------------- /src/layouts/components/vertical/ServerSideNavItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/layouts/components/vertical/ServerSideNavItems.tsx -------------------------------------------------------------------------------- /src/pages/401.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/pages/401.tsx -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/500.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/pages/500.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/acl/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/pages/acl/index.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/store.ts -------------------------------------------------------------------------------- /src/store/authReducer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/store/authReducer.d.ts -------------------------------------------------------------------------------- /src/store/authReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/store/authReducer.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/views/AiPPTX/AiPPTX.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/views/AiPPTX/AiPPTX.tsx -------------------------------------------------------------------------------- /src/views/AiPPTX/Components/StepperCustomDot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/views/AiPPTX/Components/StepperCustomDot.tsx -------------------------------------------------------------------------------- /src/views/AiPPTX/Config.ts: -------------------------------------------------------------------------------- 1 | export const BackendApi = "https://fdzz.dandian.net:8443/aipptx/" 2 | -------------------------------------------------------------------------------- /src/views/AiPPTX/OutlineEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/views/AiPPTX/OutlineEdit.tsx -------------------------------------------------------------------------------- /src/views/AiPPTX/SelectTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/views/AiPPTX/SelectTemplate.tsx -------------------------------------------------------------------------------- /src/views/AiPPTX/Setting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/views/AiPPTX/Setting.tsx -------------------------------------------------------------------------------- /src/views/AiPPTX/StepFiveGeneratePpt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/views/AiPPTX/StepFiveGeneratePpt.tsx -------------------------------------------------------------------------------- /src/views/AiPPTX/StepFourSelectTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/views/AiPPTX/StepFourSelectTemplate.tsx -------------------------------------------------------------------------------- /src/views/AiPPTX/StepOneInputData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/views/AiPPTX/StepOneInputData.tsx -------------------------------------------------------------------------------- /src/views/AiPPTX/StepTwoThreeGenerateOutline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/src/views/AiPPTX/StepTwoThreeGenerateOutline.tsx -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartSchoolAI/ai-to-pptx/HEAD/yarn.lock --------------------------------------------------------------------------------