@campxdev/react-blueprint 3.0.0-alpha.4 → 3.0.0-alpha.6
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/cjs/index.js +1 -1
- package/dist/cjs/types/src/components/Assets/ErrorPages/ComingSoon.d.ts +24 -0
- package/dist/cjs/types/src/components/Assets/ErrorPages/InternalServerError.d.ts +20 -0
- package/dist/cjs/types/src/components/Assets/ErrorPages/NoInternetConnection.d.ts +20 -0
- package/dist/cjs/types/src/components/Assets/ErrorPages/NoItemFound.d.ts +28 -0
- package/dist/cjs/types/src/components/Assets/ErrorPages/PageNotFound.d.ts +21 -0
- package/dist/cjs/types/src/components/Assets/ErrorPages/ResourceNotFound.d.ts +21 -0
- package/dist/cjs/types/src/components/Assets/ErrorPages/UnAuthorized.d.ts +31 -0
- package/dist/cjs/types/src/components/Assets/Icons/Icons.d.ts +54 -0
- package/dist/cjs/types/src/components/Charts/BarChart/BarChart.d.ts +38 -0
- package/dist/cjs/types/src/components/Charts/BarChart/HorizontalBarChart.d.ts +93 -0
- package/dist/cjs/types/src/components/Charts/BarChart/VerticalBarChart.d.ts +110 -0
- package/dist/cjs/types/src/components/Charts/LineChart/LineChart.d.ts +89 -0
- package/dist/cjs/types/src/components/Charts/PieChart/PieChart.d.ts +86 -0
- package/dist/cjs/types/src/components/Charts/TreeMap/TreeMap.d.ts +74 -0
- package/dist/cjs/types/src/components/DataDisplay/Accordion/Accordion.d.ts +54 -0
- package/dist/cjs/types/src/components/DataDisplay/ActivityLogView/ActivityLogFilter.d.ts +35 -0
- package/dist/cjs/types/src/components/DataDisplay/ActivityLogView/ActivityLogView.d.ts +78 -0
- package/dist/cjs/types/src/components/DataDisplay/Avatar/Avatar.d.ts +40 -0
- package/dist/cjs/types/src/components/DataDisplay/Chip/Chip.d.ts +28 -0
- package/dist/cjs/types/src/components/DataDisplay/Chips/Chips.d.ts +55 -0
- package/dist/cjs/types/src/components/DataDisplay/DataTable/DataTable.d.ts +95 -0
- package/dist/cjs/types/src/components/DataDisplay/DataTable/components/TablePagination.d.ts +35 -0
- package/dist/cjs/types/src/components/DataDisplay/EmptyIllustration/EmptyIllustration.d.ts +30 -0
- package/dist/cjs/types/src/components/DataDisplay/ReactJoyride/ReactJoyride.d.ts +64 -0
- package/dist/cjs/types/src/components/DataDisplay/Separator/Separator.d.ts +30 -0
- package/dist/cjs/types/src/components/DataDisplay/Skeleton/Skeleton.d.ts +20 -0
- package/dist/cjs/types/src/components/DataDisplay/StatusCard/StatusCard.d.ts +36 -0
- package/dist/cjs/types/src/components/DataDisplay/Timeline/Timeline.d.ts +58 -0
- package/dist/cjs/types/src/components/DataDisplay/Typography/Typography.d.ts +25 -0
- package/dist/cjs/types/src/components/Feedback/Alert/Alert.d.ts +31 -0
- package/dist/cjs/types/src/components/Feedback/Snackbar/Snackbar.d.ts +54 -0
- package/dist/cjs/types/src/components/Feedback/Spinner/Spinner.d.ts +15 -0
- package/dist/cjs/types/src/components/Feedback/Tooltip/Tooltip.d.ts +54 -0
- package/dist/cjs/types/src/components/Input/Button/Button.d.ts +26 -0
- package/dist/cjs/types/src/components/Input/DatePicker/DatePicker.d.ts +43 -1
- package/dist/cjs/types/src/components/Input/DatePicker/components/DatePickerFilter.d.ts +2 -0
- package/dist/cjs/types/src/components/Input/DatePicker/components/DatePickerInput.d.ts +2 -0
- package/dist/cjs/types/src/components/Input/DateTimePicker/DateTimePicker.d.ts +44 -1
- package/dist/cjs/types/src/components/Input/DateTimePicker/components/DateTimePickerFilter.d.ts +2 -0
- package/dist/cjs/types/src/components/Input/DateTimePicker/components/DateTimePickerInput.d.ts +2 -0
- package/dist/cjs/types/src/components/Input/FileUpload/FileUpload.d.ts +41 -0
- package/dist/cjs/types/src/components/Input/FormActions/FormActions.d.ts +37 -0
- package/dist/cjs/types/src/components/Input/FormControlWrapper/FormControlWrapper.d.ts +31 -0
- package/dist/cjs/types/src/components/Input/FormWrapper/FormWrapper.d.ts +20 -0
- package/dist/cjs/types/src/components/Input/HelpButton/HelpButton.d.ts +14 -0
- package/dist/cjs/types/src/components/Input/IconButtons/IconButtons/DeleteButton.d.ts +16 -0
- package/dist/cjs/types/src/components/Input/IconButtons/IconButtons/EditButton.d.ts +16 -0
- package/dist/cjs/types/src/components/Input/IconButtons/IconButtons/RedirectButton.d.ts +16 -0
- package/dist/cjs/types/src/components/Input/IconButtons/IconButtons/ViewButton.d.ts +16 -0
- package/dist/cjs/types/src/components/Input/IconButtons/IconButtons.d.ts +18 -0
- package/dist/cjs/types/src/components/Input/LabelWrapper/LabelWrapper.d.ts +26 -0
- package/dist/cjs/types/src/components/Input/MultiCheckBox/MultiCheckBox.d.ts +34 -0
- package/dist/cjs/types/src/components/Input/MultiSelect/MultiSelect.d.ts +42 -0
- package/dist/cjs/types/src/components/Input/MultiSelect/components/MultiSelectFilter.d.ts +1 -1
- package/dist/cjs/types/src/components/Input/MultiSelect/components/MultiSelectInput.d.ts +1 -1
- package/dist/cjs/types/src/components/Input/OtpInput/OtpInput.d.ts +29 -0
- package/dist/cjs/types/src/components/Input/PasswordField/PasswordField.d.ts +34 -0
- package/dist/cjs/types/src/components/Input/RadioGroup/RadioGroup.d.ts +38 -0
- package/dist/cjs/types/src/components/Input/SearchBar/SearchBar.d.ts +26 -0
- package/dist/cjs/types/src/components/Input/Select/Select.d.ts +34 -1
- package/dist/cjs/types/src/components/Input/SingleCheckBox/SingleCheckBox.d.ts +29 -0
- package/dist/cjs/types/src/components/Input/SingleSelect/SingleSelect.d.ts +42 -0
- package/dist/cjs/types/src/components/Input/SingleSelect/components/SingleFilter.d.ts +1 -1
- package/dist/cjs/types/src/components/Input/SingleSelect/components/SingleInput.d.ts +1 -1
- package/dist/cjs/types/src/components/Input/Switch/Switch.d.ts +23 -0
- package/dist/cjs/types/src/components/Input/Tags/Tags.d.ts +26 -0
- package/dist/cjs/types/src/components/Input/TextField/TextField.d.ts +35 -0
- package/dist/cjs/types/src/components/Input/Textarea/Textarea.d.ts +36 -0
- package/dist/cjs/types/src/components/Layout/AppLayout/AppLayout.d.ts +32 -0
- package/dist/cjs/types/src/components/Layout/AppLayout/components/MenuToggleButton.d.ts +16 -0
- package/dist/cjs/types/src/components/Layout/AppLayout/components/Sidebar/MenuBar.d.ts +26 -0
- package/dist/cjs/types/src/components/Layout/AppLayout/components/Sidebar/MenuItem.d.ts +37 -0
- package/dist/cjs/types/src/components/Layout/AppLayout/components/Sidebar/Sidebar.d.ts +30 -1
- package/dist/cjs/types/src/components/Layout/AppLayout/components/Sidebar/StyledComponents.d.ts +139 -0
- package/dist/cjs/types/src/components/Layout/AppLayout/components/UserProfilePopup.d.ts +34 -0
- package/dist/cjs/types/src/components/Layout/AppLayout/context/SidebarContext.d.ts +48 -0
- package/dist/cjs/types/src/components/Layout/AppLayout/types.d.ts +1 -1
- package/dist/cjs/types/src/components/Layout/PageContent/PageContent.d.ts +19 -0
- package/dist/cjs/types/src/components/Layout/PageHeader/PageHeader.d.ts +46 -0
- package/dist/cjs/types/src/components/Layout/PageHeader/components/SearchBar.d.ts +22 -0
- package/dist/cjs/types/src/components/Layout/UserBox/UserBox.d.ts +40 -0
- package/dist/cjs/types/src/components/Navigation/Breadcrumbs/Breadcrumbs.d.ts +33 -0
- package/dist/cjs/types/src/components/Navigation/Calendar/Calendar.d.ts +63 -0
- package/dist/cjs/types/src/components/Navigation/ConfirmDialog/ConfirmDialog.d.ts +64 -0
- package/dist/cjs/types/src/components/Navigation/Dialog/Dialog.d.ts +55 -0
- package/dist/cjs/types/src/components/Navigation/DialogButton/DialogButton.d.ts +64 -0
- package/dist/cjs/types/src/components/Navigation/DropDownMenu/DropDownMenu.d.ts +73 -0
- package/dist/cjs/types/src/components/Navigation/PreviewFiles/PreviewFiles.d.ts +54 -0
- package/dist/cjs/types/src/components/Navigation/Stepper/Stepper.d.ts +55 -10
- package/dist/cjs/types/src/components/Navigation/TabsContainer/TabsContainer.d.ts +80 -0
- package/dist/cjs/types/src/components/Navigation/UploadDialog/UploadDialog.d.ts +64 -0
- package/dist/cjs/types/src/shadcn-components/Input/Select/Select.d.ts +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/esm/types/src/components/Assets/ErrorPages/ComingSoon.d.ts +24 -0
- package/dist/esm/types/src/components/Assets/ErrorPages/InternalServerError.d.ts +20 -0
- package/dist/esm/types/src/components/Assets/ErrorPages/NoInternetConnection.d.ts +20 -0
- package/dist/esm/types/src/components/Assets/ErrorPages/NoItemFound.d.ts +28 -0
- package/dist/esm/types/src/components/Assets/ErrorPages/PageNotFound.d.ts +21 -0
- package/dist/esm/types/src/components/Assets/ErrorPages/ResourceNotFound.d.ts +21 -0
- package/dist/esm/types/src/components/Assets/ErrorPages/UnAuthorized.d.ts +31 -0
- package/dist/esm/types/src/components/Assets/Icons/Icons.d.ts +54 -0
- package/dist/esm/types/src/components/Charts/BarChart/BarChart.d.ts +38 -0
- package/dist/esm/types/src/components/Charts/BarChart/HorizontalBarChart.d.ts +93 -0
- package/dist/esm/types/src/components/Charts/BarChart/VerticalBarChart.d.ts +110 -0
- package/dist/esm/types/src/components/Charts/LineChart/LineChart.d.ts +89 -0
- package/dist/esm/types/src/components/Charts/PieChart/PieChart.d.ts +86 -0
- package/dist/esm/types/src/components/Charts/TreeMap/TreeMap.d.ts +74 -0
- package/dist/esm/types/src/components/DataDisplay/Accordion/Accordion.d.ts +54 -0
- package/dist/esm/types/src/components/DataDisplay/ActivityLogView/ActivityLogFilter.d.ts +35 -0
- package/dist/esm/types/src/components/DataDisplay/ActivityLogView/ActivityLogView.d.ts +78 -0
- package/dist/esm/types/src/components/DataDisplay/Avatar/Avatar.d.ts +40 -0
- package/dist/esm/types/src/components/DataDisplay/Chip/Chip.d.ts +28 -0
- package/dist/esm/types/src/components/DataDisplay/Chips/Chips.d.ts +55 -0
- package/dist/esm/types/src/components/DataDisplay/DataTable/DataTable.d.ts +95 -0
- package/dist/esm/types/src/components/DataDisplay/DataTable/components/TablePagination.d.ts +35 -0
- package/dist/esm/types/src/components/DataDisplay/EmptyIllustration/EmptyIllustration.d.ts +30 -0
- package/dist/esm/types/src/components/DataDisplay/ReactJoyride/ReactJoyride.d.ts +64 -0
- package/dist/esm/types/src/components/DataDisplay/Separator/Separator.d.ts +30 -0
- package/dist/esm/types/src/components/DataDisplay/Skeleton/Skeleton.d.ts +20 -0
- package/dist/esm/types/src/components/DataDisplay/StatusCard/StatusCard.d.ts +36 -0
- package/dist/esm/types/src/components/DataDisplay/Timeline/Timeline.d.ts +58 -0
- package/dist/esm/types/src/components/DataDisplay/Typography/Typography.d.ts +25 -0
- package/dist/esm/types/src/components/Feedback/Alert/Alert.d.ts +31 -0
- package/dist/esm/types/src/components/Feedback/Snackbar/Snackbar.d.ts +54 -0
- package/dist/esm/types/src/components/Feedback/Spinner/Spinner.d.ts +15 -0
- package/dist/esm/types/src/components/Feedback/Tooltip/Tooltip.d.ts +54 -0
- package/dist/esm/types/src/components/Input/Button/Button.d.ts +26 -0
- package/dist/esm/types/src/components/Input/DatePicker/DatePicker.d.ts +43 -1
- package/dist/esm/types/src/components/Input/DatePicker/components/DatePickerFilter.d.ts +2 -0
- package/dist/esm/types/src/components/Input/DatePicker/components/DatePickerInput.d.ts +2 -0
- package/dist/esm/types/src/components/Input/DateTimePicker/DateTimePicker.d.ts +44 -1
- package/dist/esm/types/src/components/Input/DateTimePicker/components/DateTimePickerFilter.d.ts +2 -0
- package/dist/esm/types/src/components/Input/DateTimePicker/components/DateTimePickerInput.d.ts +2 -0
- package/dist/esm/types/src/components/Input/FileUpload/FileUpload.d.ts +41 -0
- package/dist/esm/types/src/components/Input/FormActions/FormActions.d.ts +37 -0
- package/dist/esm/types/src/components/Input/FormControlWrapper/FormControlWrapper.d.ts +31 -0
- package/dist/esm/types/src/components/Input/FormWrapper/FormWrapper.d.ts +20 -0
- package/dist/esm/types/src/components/Input/HelpButton/HelpButton.d.ts +14 -0
- package/dist/esm/types/src/components/Input/IconButtons/IconButtons/DeleteButton.d.ts +16 -0
- package/dist/esm/types/src/components/Input/IconButtons/IconButtons/EditButton.d.ts +16 -0
- package/dist/esm/types/src/components/Input/IconButtons/IconButtons/RedirectButton.d.ts +16 -0
- package/dist/esm/types/src/components/Input/IconButtons/IconButtons/ViewButton.d.ts +16 -0
- package/dist/esm/types/src/components/Input/IconButtons/IconButtons.d.ts +18 -0
- package/dist/esm/types/src/components/Input/LabelWrapper/LabelWrapper.d.ts +26 -0
- package/dist/esm/types/src/components/Input/MultiCheckBox/MultiCheckBox.d.ts +34 -0
- package/dist/esm/types/src/components/Input/MultiSelect/MultiSelect.d.ts +42 -0
- package/dist/esm/types/src/components/Input/MultiSelect/components/MultiSelectFilter.d.ts +1 -1
- package/dist/esm/types/src/components/Input/MultiSelect/components/MultiSelectInput.d.ts +1 -1
- package/dist/esm/types/src/components/Input/OtpInput/OtpInput.d.ts +29 -0
- package/dist/esm/types/src/components/Input/PasswordField/PasswordField.d.ts +34 -0
- package/dist/esm/types/src/components/Input/RadioGroup/RadioGroup.d.ts +38 -0
- package/dist/esm/types/src/components/Input/SearchBar/SearchBar.d.ts +26 -0
- package/dist/esm/types/src/components/Input/Select/Select.d.ts +34 -1
- package/dist/esm/types/src/components/Input/SingleCheckBox/SingleCheckBox.d.ts +29 -0
- package/dist/esm/types/src/components/Input/SingleSelect/SingleSelect.d.ts +42 -0
- package/dist/esm/types/src/components/Input/SingleSelect/components/SingleFilter.d.ts +1 -1
- package/dist/esm/types/src/components/Input/SingleSelect/components/SingleInput.d.ts +1 -1
- package/dist/esm/types/src/components/Input/Switch/Switch.d.ts +23 -0
- package/dist/esm/types/src/components/Input/Tags/Tags.d.ts +26 -0
- package/dist/esm/types/src/components/Input/TextField/TextField.d.ts +35 -0
- package/dist/esm/types/src/components/Input/Textarea/Textarea.d.ts +36 -0
- package/dist/esm/types/src/components/Layout/AppLayout/AppLayout.d.ts +32 -0
- package/dist/esm/types/src/components/Layout/AppLayout/components/MenuToggleButton.d.ts +16 -0
- package/dist/esm/types/src/components/Layout/AppLayout/components/Sidebar/MenuBar.d.ts +26 -0
- package/dist/esm/types/src/components/Layout/AppLayout/components/Sidebar/MenuItem.d.ts +37 -0
- package/dist/esm/types/src/components/Layout/AppLayout/components/Sidebar/Sidebar.d.ts +30 -1
- package/dist/esm/types/src/components/Layout/AppLayout/components/Sidebar/StyledComponents.d.ts +139 -0
- package/dist/esm/types/src/components/Layout/AppLayout/components/UserProfilePopup.d.ts +34 -0
- package/dist/esm/types/src/components/Layout/AppLayout/context/SidebarContext.d.ts +48 -0
- package/dist/esm/types/src/components/Layout/AppLayout/types.d.ts +1 -1
- package/dist/esm/types/src/components/Layout/PageContent/PageContent.d.ts +19 -0
- package/dist/esm/types/src/components/Layout/PageHeader/PageHeader.d.ts +46 -0
- package/dist/esm/types/src/components/Layout/PageHeader/components/SearchBar.d.ts +22 -0
- package/dist/esm/types/src/components/Layout/UserBox/UserBox.d.ts +40 -0
- package/dist/esm/types/src/components/Navigation/Breadcrumbs/Breadcrumbs.d.ts +33 -0
- package/dist/esm/types/src/components/Navigation/Calendar/Calendar.d.ts +63 -0
- package/dist/esm/types/src/components/Navigation/ConfirmDialog/ConfirmDialog.d.ts +64 -0
- package/dist/esm/types/src/components/Navigation/Dialog/Dialog.d.ts +55 -0
- package/dist/esm/types/src/components/Navigation/DialogButton/DialogButton.d.ts +64 -0
- package/dist/esm/types/src/components/Navigation/DropDownMenu/DropDownMenu.d.ts +73 -0
- package/dist/esm/types/src/components/Navigation/PreviewFiles/PreviewFiles.d.ts +54 -0
- package/dist/esm/types/src/components/Navigation/Stepper/Stepper.d.ts +55 -10
- package/dist/esm/types/src/components/Navigation/TabsContainer/TabsContainer.d.ts +80 -0
- package/dist/esm/types/src/components/Navigation/UploadDialog/UploadDialog.d.ts +64 -0
- package/dist/esm/types/src/shadcn-components/Input/Select/Select.d.ts +2 -2
- package/dist/index.d.ts +2963 -15
- package/dist/styles.css +402 -13
- package/package.json +1 -1
- package/src/components/Assets/ErrorPages/ComingSoon.tsx +24 -0
- package/src/components/Assets/ErrorPages/InternalServerError.tsx +20 -0
- package/src/components/Assets/ErrorPages/NoInternetConnection.tsx +20 -0
- package/src/components/Assets/ErrorPages/NoItemFound.tsx +28 -0
- package/src/components/Assets/ErrorPages/PageNotFound.tsx +21 -0
- package/src/components/Assets/ErrorPages/ResourceNotFound.tsx +21 -0
- package/src/components/Assets/ErrorPages/UnAuthorized.tsx +31 -0
- package/src/components/Assets/Icons/Icons.tsx +55 -1
- package/src/components/Charts/BarChart/BarChart.tsx +38 -0
- package/src/components/Charts/BarChart/HorizontalBarChart.tsx +93 -0
- package/src/components/Charts/BarChart/VerticalBarChart.tsx +110 -0
- package/src/components/Charts/LineChart/LineChart.tsx +89 -0
- package/src/components/Charts/PieChart/PieChart.tsx +86 -0
- package/src/components/Charts/TreeMap/TreeMap.tsx +90 -0
- package/src/components/DataDisplay/Accordion/Accordion.tsx +54 -0
- package/src/components/DataDisplay/ActivityLogView/ActivityLogFilter.tsx +35 -0
- package/src/components/DataDisplay/ActivityLogView/ActivityLogView.tsx +84 -0
- package/src/components/DataDisplay/Avatar/Avatar.tsx +40 -0
- package/src/components/DataDisplay/Chip/Chip.tsx +28 -0
- package/src/components/DataDisplay/Chips/Chips.tsx +56 -0
- package/src/components/DataDisplay/DataTable/DataTable.tsx +95 -0
- package/src/components/DataDisplay/DataTable/components/TablePagination.tsx +35 -0
- package/src/components/DataDisplay/DataTable/components/TableView.tsx +31 -5
- package/src/components/DataDisplay/EmptyIllustration/EmptyIllustration.tsx +31 -0
- package/src/components/DataDisplay/ReactJoyride/ReactJoyride.tsx +64 -0
- package/src/components/DataDisplay/Separator/Separator.tsx +32 -0
- package/src/components/DataDisplay/Skeleton/Skeleton.tsx +20 -0
- package/src/components/DataDisplay/StatusCard/StatusCard.tsx +36 -0
- package/src/components/DataDisplay/Timeline/Timeline.tsx +58 -0
- package/src/components/DataDisplay/Typography/Typography.tsx +25 -0
- package/src/components/Feedback/Alert/Alert.tsx +38 -0
- package/src/components/Feedback/Snackbar/Snackbar.tsx +54 -0
- package/src/components/Feedback/Spinner/Spinner.tsx +15 -0
- package/src/components/Feedback/Tooltip/Tooltip.tsx +71 -3
- package/src/components/Input/Button/Button.tsx +26 -0
- package/src/components/Input/Button/ButtonLoader.css +2 -2
- package/src/components/Input/DatePicker/DatePicker.tsx +50 -188
- package/src/components/Input/DatePicker/components/DatePickerFilter.tsx +178 -0
- package/src/components/Input/DatePicker/components/DatePickerInput.tsx +192 -0
- package/src/components/Input/DateTimePicker/DateTimePicker.tsx +50 -294
- package/src/components/Input/DateTimePicker/components/DateTimePickerFilter.tsx +292 -0
- package/src/components/Input/DateTimePicker/components/DateTimePickerInput.tsx +297 -0
- package/src/components/Input/FileUpload/FileUpload.tsx +41 -0
- package/src/components/Input/FormActions/FormActions.tsx +37 -0
- package/src/components/Input/FormControlWrapper/FormControlWrapper.tsx +31 -0
- package/src/components/Input/FormWrapper/FormWrapper.tsx +20 -0
- package/src/components/Input/HelpButton/HelpButton.tsx +14 -0
- package/src/components/Input/IconButtons/IconButtons/DeleteButton.tsx +16 -0
- package/src/components/Input/IconButtons/IconButtons/EditButton.tsx +16 -0
- package/src/components/Input/IconButtons/IconButtons/RedirectButton.tsx +16 -0
- package/src/components/Input/IconButtons/IconButtons/ViewButton.tsx +16 -0
- package/src/components/Input/IconButtons/IconButtons.tsx +18 -0
- package/src/components/Input/LabelWrapper/LabelWrapper.tsx +26 -0
- package/src/components/Input/MultiCheckBox/MultiCheckBox.tsx +34 -0
- package/src/components/Input/MultiSelect/MultiSelect.tsx +42 -0
- package/src/components/Input/MultiSelect/components/MultiSelectFilter.tsx +7 -3
- package/src/components/Input/MultiSelect/components/MultiSelectInput.tsx +8 -3
- package/src/components/Input/OtpInput/OtpInput.tsx +29 -0
- package/src/components/Input/PasswordField/PasswordField.tsx +34 -0
- package/src/components/Input/RadioGroup/RadioGroup.tsx +38 -0
- package/src/components/Input/SearchBar/SearchBar.tsx +26 -0
- package/src/components/Input/Select/Select.tsx +63 -12
- package/src/components/Input/SingleCheckBox/SingleCheckBox.tsx +29 -0
- package/src/components/Input/SingleSelect/SingleSelect.tsx +42 -0
- package/src/components/Input/SingleSelect/components/SingleFilter.tsx +7 -3
- package/src/components/Input/SingleSelect/components/SingleInput.tsx +8 -3
- package/src/components/Input/Switch/Switch.tsx +23 -0
- package/src/components/Input/Tags/Tags.tsx +26 -0
- package/src/components/Input/TextField/TextField.tsx +35 -0
- package/src/components/Input/Textarea/Textarea.tsx +36 -0
- package/src/components/Layout/AppLayout/AppLayout.tsx +33 -1
- package/src/components/Layout/AppLayout/components/MenuToggleButton.tsx +16 -0
- package/src/components/Layout/AppLayout/components/Sidebar/MenuBar.tsx +26 -0
- package/src/components/Layout/AppLayout/components/Sidebar/MenuItem.tsx +51 -1
- package/src/components/Layout/AppLayout/components/Sidebar/Sidebar.tsx +173 -104
- package/src/components/Layout/AppLayout/components/Sidebar/StyledComponents.tsx +139 -9
- package/src/components/Layout/AppLayout/components/UserProfilePopup.tsx +34 -0
- package/src/components/Layout/AppLayout/context/SidebarContext.tsx +48 -0
- package/src/components/Layout/AppLayout/types.ts +1 -1
- package/src/components/Layout/PageContent/PageContent.tsx +19 -0
- package/src/components/Layout/PageHeader/PageHeader.tsx +46 -0
- package/src/components/Layout/PageHeader/components/SearchBar.tsx +22 -0
- package/src/components/Layout/UserBox/UserBox.tsx +40 -0
- package/src/components/Navigation/Breadcrumbs/Breadcrumbs.tsx +33 -0
- package/src/components/Navigation/Calendar/Calendar.tsx +63 -0
- package/src/components/Navigation/ConfirmDialog/ConfirmDialog.tsx +64 -0
- package/src/components/Navigation/Dialog/Dialog.tsx +55 -0
- package/src/components/Navigation/DialogButton/DialogButton.tsx +70 -1
- package/src/components/Navigation/DropDownMenu/DropDownMenu.tsx +74 -1
- package/src/components/Navigation/PreviewFiles/PreviewFiles.tsx +93 -0
- package/src/components/Navigation/Stepper/Stepper.tsx +56 -10
- package/src/components/Navigation/TabsContainer/TabsContainer.tsx +81 -1
- package/src/components/Navigation/UploadDialog/UploadDialog.tsx +64 -0
- package/src/shadcn-components/DataDisplay/Dialog/Dialog.tsx +2 -2
- package/src/shadcn-components/Input/Popover/Popover.tsx +1 -1
- package/src/shadcn-components/Input/Select/Select.tsx +8 -8
- package/src/shadcn-components/Layout/Sheet/Sheet.tsx +2 -2
- package/src/shadcn-components/Navigation/DropdownMenu/DropdownMenu.tsx +2 -2
- package/src/styles/globals.css +4 -2
- package/src/styles/index.css +5 -0
package/dist/styles.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */
|
|
2
|
-
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap');
|
|
3
2
|
@layer properties;
|
|
4
3
|
@layer theme, base, components, utilities;
|
|
4
|
+
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap');
|
|
5
5
|
@layer theme {
|
|
6
6
|
:root, :host {
|
|
7
7
|
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
--color-pink-400: oklch(71.8% 0.202 349.761);
|
|
47
47
|
--color-pink-700: oklch(52.5% 0.223 3.958);
|
|
48
48
|
--color-pink-950: oklch(28.4% 0.109 3.907);
|
|
49
|
+
--color-gray-50: oklch(98.5% 0.002 247.839);
|
|
49
50
|
--color-gray-200: oklch(92.8% 0.006 264.531);
|
|
50
51
|
--color-gray-300: oklch(87.2% 0.01 258.338);
|
|
51
52
|
--color-gray-500: oklch(55.1% 0.027 264.364);
|
|
@@ -94,6 +95,7 @@
|
|
|
94
95
|
--ease-in: cubic-bezier(0.4, 0, 1, 1);
|
|
95
96
|
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
96
97
|
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
98
|
+
--animate-spin: spin 1s linear infinite;
|
|
97
99
|
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
98
100
|
--aspect-video: 16 / 9;
|
|
99
101
|
--default-transition-duration: 150ms;
|
|
@@ -333,6 +335,9 @@
|
|
|
333
335
|
.relative {
|
|
334
336
|
position: relative;
|
|
335
337
|
}
|
|
338
|
+
.static {
|
|
339
|
+
position: static;
|
|
340
|
+
}
|
|
336
341
|
.inset-0 {
|
|
337
342
|
inset: calc(var(--spacing) * 0);
|
|
338
343
|
}
|
|
@@ -411,9 +416,6 @@
|
|
|
411
416
|
.left-\[50\%\] {
|
|
412
417
|
left: 50%;
|
|
413
418
|
}
|
|
414
|
-
.z-1 {
|
|
415
|
-
z-index: 1;
|
|
416
|
-
}
|
|
417
419
|
.z-50 {
|
|
418
420
|
z-index: 50;
|
|
419
421
|
}
|
|
@@ -423,18 +425,9 @@
|
|
|
423
425
|
.z-\[1000\] {
|
|
424
426
|
z-index: 1000;
|
|
425
427
|
}
|
|
426
|
-
.z-\[1299\] {
|
|
427
|
-
z-index: 1299;
|
|
428
|
-
}
|
|
429
|
-
.z-\[1300\] {
|
|
430
|
-
z-index: 1300;
|
|
431
|
-
}
|
|
432
428
|
.z-\[1500\] {
|
|
433
429
|
z-index: 1500;
|
|
434
430
|
}
|
|
435
|
-
.z-\[2000\] {
|
|
436
|
-
z-index: 2000;
|
|
437
|
-
}
|
|
438
431
|
.z-\[9999\] {
|
|
439
432
|
z-index: 9999;
|
|
440
433
|
}
|
|
@@ -806,6 +799,9 @@
|
|
|
806
799
|
.min-h-\[60px\] {
|
|
807
800
|
min-height: 60px;
|
|
808
801
|
}
|
|
802
|
+
.min-h-screen {
|
|
803
|
+
min-height: 100vh;
|
|
804
|
+
}
|
|
809
805
|
.w-\(--cell-size\) {
|
|
810
806
|
width: var(--cell-size);
|
|
811
807
|
}
|
|
@@ -1061,6 +1057,9 @@
|
|
|
1061
1057
|
.animate-pulse {
|
|
1062
1058
|
animation: var(--animate-pulse);
|
|
1063
1059
|
}
|
|
1060
|
+
.animate-spin {
|
|
1061
|
+
animation: var(--animate-spin);
|
|
1062
|
+
}
|
|
1064
1063
|
.cursor-default {
|
|
1065
1064
|
cursor: default;
|
|
1066
1065
|
}
|
|
@@ -1379,6 +1378,9 @@
|
|
|
1379
1378
|
.border-\(--color-border\) {
|
|
1380
1379
|
border-color: var(--color-border);
|
|
1381
1380
|
}
|
|
1381
|
+
.border-blue-500 {
|
|
1382
|
+
border-color: var(--color-blue-500);
|
|
1383
|
+
}
|
|
1382
1384
|
.border-blue-700 {
|
|
1383
1385
|
border-color: var(--color-blue-700);
|
|
1384
1386
|
}
|
|
@@ -1466,12 +1468,18 @@
|
|
|
1466
1468
|
.bg-foreground {
|
|
1467
1469
|
background-color: var(--foreground);
|
|
1468
1470
|
}
|
|
1471
|
+
.bg-gray-50 {
|
|
1472
|
+
background-color: var(--color-gray-50);
|
|
1473
|
+
}
|
|
1469
1474
|
.bg-gray-200 {
|
|
1470
1475
|
background-color: var(--color-gray-200);
|
|
1471
1476
|
}
|
|
1472
1477
|
.bg-green-50 {
|
|
1473
1478
|
background-color: var(--color-green-50);
|
|
1474
1479
|
}
|
|
1480
|
+
.bg-green-500 {
|
|
1481
|
+
background-color: var(--color-green-500);
|
|
1482
|
+
}
|
|
1475
1483
|
.bg-green-background {
|
|
1476
1484
|
background-color: var(--green-background);
|
|
1477
1485
|
}
|
|
@@ -1541,6 +1549,9 @@
|
|
|
1541
1549
|
.bg-transparent {
|
|
1542
1550
|
background-color: transparent;
|
|
1543
1551
|
}
|
|
1552
|
+
.bg-white {
|
|
1553
|
+
background-color: var(--color-white);
|
|
1554
|
+
}
|
|
1544
1555
|
.bg-yellow-50 {
|
|
1545
1556
|
background-color: var(--color-yellow-50);
|
|
1546
1557
|
}
|
|
@@ -1649,6 +1660,12 @@
|
|
|
1649
1660
|
.py-6 {
|
|
1650
1661
|
padding-block: calc(var(--spacing) * 6);
|
|
1651
1662
|
}
|
|
1663
|
+
.py-8 {
|
|
1664
|
+
padding-block: calc(var(--spacing) * 8);
|
|
1665
|
+
}
|
|
1666
|
+
.py-12 {
|
|
1667
|
+
padding-block: calc(var(--spacing) * 12);
|
|
1668
|
+
}
|
|
1652
1669
|
.py-\[0\.2rem\] {
|
|
1653
1670
|
padding-block: 0.2rem;
|
|
1654
1671
|
}
|
|
@@ -1823,6 +1840,9 @@
|
|
|
1823
1840
|
.break-all {
|
|
1824
1841
|
word-break: break-all;
|
|
1825
1842
|
}
|
|
1843
|
+
.text-ellipsis {
|
|
1844
|
+
text-overflow: ellipsis;
|
|
1845
|
+
}
|
|
1826
1846
|
.whitespace-nowrap {
|
|
1827
1847
|
white-space: nowrap;
|
|
1828
1848
|
}
|
|
@@ -1889,6 +1909,9 @@
|
|
|
1889
1909
|
.text-highlight-yellow {
|
|
1890
1910
|
color: var(--highlight-yellow);
|
|
1891
1911
|
}
|
|
1912
|
+
.text-muted {
|
|
1913
|
+
color: var(--muted);
|
|
1914
|
+
}
|
|
1892
1915
|
.text-muted-foreground {
|
|
1893
1916
|
color: var(--muted-foreground);
|
|
1894
1917
|
}
|
|
@@ -3666,6 +3689,11 @@
|
|
|
3666
3689
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3667
3690
|
}
|
|
3668
3691
|
}
|
|
3692
|
+
.\[\&\>button\]\:hidden {
|
|
3693
|
+
&>button {
|
|
3694
|
+
display: none;
|
|
3695
|
+
}
|
|
3696
|
+
}
|
|
3669
3697
|
.\[\&\>div\]\:\!aspect-auto {
|
|
3670
3698
|
&>div {
|
|
3671
3699
|
aspect-ratio: auto !important;
|
|
@@ -3880,6 +3908,7 @@
|
|
|
3880
3908
|
--yellow-background: oklch(0.82 0.166 94.2 / 0.2);
|
|
3881
3909
|
--default-background: oklch(0.978 0.004 233.756);
|
|
3882
3910
|
--input-background: oklch(0.953 0.002 264);
|
|
3911
|
+
--font-sans: 'Geist', ui-sans-serif, system-ui, sans-serif;
|
|
3883
3912
|
}
|
|
3884
3913
|
.dark {
|
|
3885
3914
|
--background: oklch(0.145 0 0);
|
|
@@ -3928,6 +3957,7 @@
|
|
|
3928
3957
|
--yellow-background: oklch(0.82 0.166 94.2 / 0.2);
|
|
3929
3958
|
--default-background: oklch(0.154 0.013 233.756);
|
|
3930
3959
|
--input-background: oklch(0.215 0.008 264);
|
|
3960
|
+
--font-sans: 'Geist', ui-sans-serif, system-ui, sans-serif;
|
|
3931
3961
|
}
|
|
3932
3962
|
@layer base {
|
|
3933
3963
|
* {
|
|
@@ -3944,6 +3974,7 @@
|
|
|
3944
3974
|
body {
|
|
3945
3975
|
height: 100%;
|
|
3946
3976
|
overflow: auto;
|
|
3977
|
+
-webkit-font-smoothing: antialiased;
|
|
3947
3978
|
background-color: var(--background);
|
|
3948
3979
|
font-family: var(--font-sans);
|
|
3949
3980
|
color: var(--foreground);
|
|
@@ -4045,6 +4076,359 @@
|
|
|
4045
4076
|
transform: scale(0.95);
|
|
4046
4077
|
}
|
|
4047
4078
|
}
|
|
4079
|
+
.react-joyride__tooltip {
|
|
4080
|
+
background-color: #ffffff !important;
|
|
4081
|
+
border-radius: 12px !important;
|
|
4082
|
+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
|
|
4083
|
+
border: 1px solid #f3f4f6 !important;
|
|
4084
|
+
font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif !important;
|
|
4085
|
+
padding-top: 16px !important;
|
|
4086
|
+
}
|
|
4087
|
+
.react-joyride__tooltip div {
|
|
4088
|
+
text-align: left !important;
|
|
4089
|
+
}
|
|
4090
|
+
.react-joyride__tooltip > div:nth-child(1) div:nth-child(2) {
|
|
4091
|
+
padding: 0 !important;
|
|
4092
|
+
font-size: 14px !important;
|
|
4093
|
+
line-height: 1.5 !important;
|
|
4094
|
+
color: #4b5563 !important;
|
|
4095
|
+
}
|
|
4096
|
+
.react-joyride__tooltip button[data-action="skip"] {
|
|
4097
|
+
top: 16px !important;
|
|
4098
|
+
right: 16px !important;
|
|
4099
|
+
}
|
|
4100
|
+
.react-joyride__beacon {
|
|
4101
|
+
background-color: #3b82f6 !important;
|
|
4102
|
+
border: 3px solid #3b82f6 !important;
|
|
4103
|
+
border-radius: 50% !important;
|
|
4104
|
+
box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.2) !important;
|
|
4105
|
+
}
|
|
4106
|
+
.react-joyride__beacon::before {
|
|
4107
|
+
background-color: #3b82f6 !important;
|
|
4108
|
+
animation: joyride-beacon-pulse 1.5s ease-in-out infinite !important;
|
|
4109
|
+
}
|
|
4110
|
+
.react-joyride__tooltip button[data-action="next"]:hover {
|
|
4111
|
+
background-color: #000000 !important;
|
|
4112
|
+
transform: translateY(-1px) !important;
|
|
4113
|
+
}
|
|
4114
|
+
.react-joyride__tooltip button[data-action="back"]:hover {
|
|
4115
|
+
background-color: #f9fafb !important;
|
|
4116
|
+
border-color: #d1d5db !important;
|
|
4117
|
+
}
|
|
4118
|
+
.react-joyride__tooltip button[data-action="skip"]:hover {
|
|
4119
|
+
background-color: #f3f4f6 !important;
|
|
4120
|
+
color: #374151 !important;
|
|
4121
|
+
}
|
|
4122
|
+
.react-joyride__tooltip .react-joyride__tooltip-footer {
|
|
4123
|
+
margin-top: 16px !important;
|
|
4124
|
+
padding-top: 16px !important;
|
|
4125
|
+
border-top: 1px solid #f3f4f6 !important;
|
|
4126
|
+
}
|
|
4127
|
+
.react-joyride__tooltip-arrow {
|
|
4128
|
+
filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1)) !important;
|
|
4129
|
+
}
|
|
4130
|
+
@keyframes joyride-beacon-pulse {
|
|
4131
|
+
0% {
|
|
4132
|
+
transform: scale(1);
|
|
4133
|
+
opacity: 1;
|
|
4134
|
+
}
|
|
4135
|
+
50% {
|
|
4136
|
+
transform: scale(1.2);
|
|
4137
|
+
opacity: 0.7;
|
|
4138
|
+
}
|
|
4139
|
+
100% {
|
|
4140
|
+
transform: scale(1);
|
|
4141
|
+
opacity: 1;
|
|
4142
|
+
}
|
|
4143
|
+
}
|
|
4144
|
+
.buttonLoader {
|
|
4145
|
+
max-height: 40px;
|
|
4146
|
+
padding: 10px 20px;
|
|
4147
|
+
font-size: '14px';
|
|
4148
|
+
aspect-ratio: 2.5;
|
|
4149
|
+
--_g: no-repeat radial-gradient(circle, currentColor 48%, #0000);
|
|
4150
|
+
background: var(--_g), var(--_g), var(--_g), var(--_g);
|
|
4151
|
+
background-size: 15% 40%;
|
|
4152
|
+
animation: l44 1s infinite linear alternate;
|
|
4153
|
+
scale: 0.5;
|
|
4154
|
+
}
|
|
4155
|
+
@keyframes l44 {
|
|
4156
|
+
0%,
|
|
4157
|
+
5% {
|
|
4158
|
+
background-position: calc(0 * 100% / 3) 50%, calc(1 * 100% / 3) 50%,
|
|
4159
|
+
calc(2 * 100% / 3) 50%, calc(3 * 100% / 3) 50%;
|
|
4160
|
+
}
|
|
4161
|
+
12.5% {
|
|
4162
|
+
background-position: calc(0 * 100% / 3) 0, calc(1 * 100% / 3) 50%,
|
|
4163
|
+
calc(2 * 100% / 3) 50%, calc(3 * 100% / 3) 50%;
|
|
4164
|
+
}
|
|
4165
|
+
25% {
|
|
4166
|
+
background-position: calc(0 * 100% / 3) 0, calc(1 * 100% / 3) 0,
|
|
4167
|
+
calc(2 * 100% / 3) 50%, calc(3 * 100% / 3) 50%;
|
|
4168
|
+
}
|
|
4169
|
+
37.5% {
|
|
4170
|
+
background-position: calc(0 * 100% / 3) 100%, calc(1 * 100% / 3) 0,
|
|
4171
|
+
calc(2 * 100% / 3) 0, calc(3 * 100% / 3) 50%;
|
|
4172
|
+
}
|
|
4173
|
+
50% {
|
|
4174
|
+
background-position: calc(0 * 100% / 3) 100%, calc(1 * 100% / 3) 100%,
|
|
4175
|
+
calc(2 * 100% / 3) 0, calc(3 * 100% / 3) 0;
|
|
4176
|
+
}
|
|
4177
|
+
62.5% {
|
|
4178
|
+
background-position: calc(0 * 100% / 3) 50%, calc(1 * 100% / 3) 100%,
|
|
4179
|
+
calc(2 * 100% / 3) 100%, calc(3 * 100% / 3) 0;
|
|
4180
|
+
}
|
|
4181
|
+
75% {
|
|
4182
|
+
background-position: calc(0 * 100% / 3) 50%, calc(1 * 100% / 3) 50%,
|
|
4183
|
+
calc(2 * 100% / 3) 100%, calc(3 * 100% / 3) 100%;
|
|
4184
|
+
}
|
|
4185
|
+
87.5% {
|
|
4186
|
+
background-position: calc(0 * 100% / 3) 50%, calc(1 * 100% / 3) 50%,
|
|
4187
|
+
calc(2 * 100% / 3) 50%, calc(3 * 100% / 3) 100%;
|
|
4188
|
+
}
|
|
4189
|
+
95%,
|
|
4190
|
+
100% {
|
|
4191
|
+
background-position: calc(0 * 100% / 3) 50%, calc(1 * 100% / 3) 50%,
|
|
4192
|
+
calc(2 * 100% / 3) 50%, calc(3 * 100% / 3) 50%;
|
|
4193
|
+
}
|
|
4194
|
+
}
|
|
4195
|
+
.calendar-wrapper .fc {
|
|
4196
|
+
height: 100%;
|
|
4197
|
+
font-family: inherit;
|
|
4198
|
+
font-size: 0.875rem;
|
|
4199
|
+
}
|
|
4200
|
+
.calendar-wrapper .fc-header-toolbar {
|
|
4201
|
+
background-color: var(--background);
|
|
4202
|
+
padding: 1rem;
|
|
4203
|
+
margin: 0 !important;
|
|
4204
|
+
border-bottom: 1px solid var(--border);
|
|
4205
|
+
}
|
|
4206
|
+
.calendar-wrapper .fc-toolbar-chunk {
|
|
4207
|
+
display: flex;
|
|
4208
|
+
align-items: center;
|
|
4209
|
+
gap: 0.5rem;
|
|
4210
|
+
}
|
|
4211
|
+
.calendar-wrapper .fc-button-group {
|
|
4212
|
+
display: inline-flex;
|
|
4213
|
+
}
|
|
4214
|
+
.calendar-wrapper .fc-button {
|
|
4215
|
+
border: 1px solid var(--border);
|
|
4216
|
+
background-color: transparent;
|
|
4217
|
+
color: var(--foreground);
|
|
4218
|
+
font-size: 0.875rem;
|
|
4219
|
+
font-weight: 500;
|
|
4220
|
+
height: auto;
|
|
4221
|
+
padding: 0.25rem 1rem;
|
|
4222
|
+
border-radius: 0.375rem;
|
|
4223
|
+
cursor: pointer;
|
|
4224
|
+
text-transform: capitalize;
|
|
4225
|
+
}
|
|
4226
|
+
.calendar-wrapper .fc-button:hover {
|
|
4227
|
+
background-color: var(--muted);
|
|
4228
|
+
color: var(--primary);
|
|
4229
|
+
border: 1px solid var(--border);
|
|
4230
|
+
}
|
|
4231
|
+
.calendar-wrapper .fc-button:focus {
|
|
4232
|
+
box-shadow: none !important;
|
|
4233
|
+
}
|
|
4234
|
+
.calendar-wrapper .fc-button:disabled {
|
|
4235
|
+
opacity: 0.5;
|
|
4236
|
+
pointer-events: none;
|
|
4237
|
+
}
|
|
4238
|
+
.calendar-wrapper .fc-toolbar-title {
|
|
4239
|
+
color: var(--foreground);
|
|
4240
|
+
font-size: 1.25rem;
|
|
4241
|
+
font-weight: 600;
|
|
4242
|
+
margin: 0;
|
|
4243
|
+
}
|
|
4244
|
+
.calendar-wrapper .fc-col-header {
|
|
4245
|
+
background-color: var(--muted);
|
|
4246
|
+
border-bottom: 1px solid var(--border);
|
|
4247
|
+
}
|
|
4248
|
+
.calendar-wrapper .fc-col-header-cell {
|
|
4249
|
+
padding: 0.5rem;
|
|
4250
|
+
}
|
|
4251
|
+
.calendar-wrapper .fc-col-header-cell-cushion {
|
|
4252
|
+
color: var(--muted-foreground);
|
|
4253
|
+
font-weight: 600;
|
|
4254
|
+
text-decoration: none;
|
|
4255
|
+
font-size: 0.75rem;
|
|
4256
|
+
text-transform: uppercase;
|
|
4257
|
+
letter-spacing: 0.025em;
|
|
4258
|
+
}
|
|
4259
|
+
.calendar-wrapper .fc-daygrid-day {
|
|
4260
|
+
background-color: var(--background);
|
|
4261
|
+
border-color: var(--border);
|
|
4262
|
+
}
|
|
4263
|
+
.calendar-wrapper .fc-day-today {
|
|
4264
|
+
background-color: var(--primary) !important;
|
|
4265
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4266
|
+
background-color: color-mix(
|
|
4267
|
+
in oklch,
|
|
4268
|
+
var(--primary) 5%,
|
|
4269
|
+
transparent
|
|
4270
|
+
) !important;
|
|
4271
|
+
}
|
|
4272
|
+
}
|
|
4273
|
+
.calendar-wrapper .fc-daygrid-day-number {
|
|
4274
|
+
color: var(--foreground);
|
|
4275
|
+
text-decoration: none;
|
|
4276
|
+
padding: 0.25rem 0.5rem;
|
|
4277
|
+
font-size: 0.875rem;
|
|
4278
|
+
transition: all 0.2s;
|
|
4279
|
+
}
|
|
4280
|
+
.calendar-wrapper .fc-daygrid-day-number:hover {
|
|
4281
|
+
background-color: var(--muted);
|
|
4282
|
+
border-radius: 0.25rem;
|
|
4283
|
+
}
|
|
4284
|
+
.calendar-wrapper .fc-daygrid-day-top {
|
|
4285
|
+
display: flex;
|
|
4286
|
+
justify-content: flex-end;
|
|
4287
|
+
padding: 0.25rem;
|
|
4288
|
+
}
|
|
4289
|
+
.calendar-wrapper .fc-event {
|
|
4290
|
+
background-color: var(--primary);
|
|
4291
|
+
border-color: var(--primary);
|
|
4292
|
+
color: var(--primary-foreground);
|
|
4293
|
+
border-radius: 0.25rem;
|
|
4294
|
+
border: none;
|
|
4295
|
+
transition: all 0.2s;
|
|
4296
|
+
cursor: pointer;
|
|
4297
|
+
}
|
|
4298
|
+
.calendar-wrapper .fc-event:hover {
|
|
4299
|
+
background-color: var(--primary);
|
|
4300
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4301
|
+
background-color: color-mix(in oklch, var(--primary) 90%, transparent);
|
|
4302
|
+
}
|
|
4303
|
+
}
|
|
4304
|
+
.calendar-wrapper .fc-event-title,
|
|
4305
|
+
.calendar-wrapper .fc-event-time {
|
|
4306
|
+
padding: 0.125rem 0.25rem;
|
|
4307
|
+
}
|
|
4308
|
+
.calendar-wrapper .fc-timegrid-slot {
|
|
4309
|
+
border-color: var(--border);
|
|
4310
|
+
}
|
|
4311
|
+
.calendar-wrapper .fc-timegrid-col.fc-day-today {
|
|
4312
|
+
background-color: var(--primary);
|
|
4313
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4314
|
+
background-color: color-mix(in oklch, var(--primary) 3%, transparent);
|
|
4315
|
+
}
|
|
4316
|
+
}
|
|
4317
|
+
.calendar-wrapper .fc-timegrid-axis {
|
|
4318
|
+
color: var(--muted-foreground);
|
|
4319
|
+
}
|
|
4320
|
+
.calendar-wrapper .fc-timegrid-slot-label {
|
|
4321
|
+
color: var(--muted-foreground);
|
|
4322
|
+
font-size: 0.75rem;
|
|
4323
|
+
}
|
|
4324
|
+
.calendar-wrapper .fc-list {
|
|
4325
|
+
border-color: var(--border);
|
|
4326
|
+
}
|
|
4327
|
+
.calendar-wrapper .fc-list-day {
|
|
4328
|
+
background-color: var(--muted);
|
|
4329
|
+
}
|
|
4330
|
+
.calendar-wrapper .fc-list-day-cushion {
|
|
4331
|
+
color: var(--foreground);
|
|
4332
|
+
font-weight: 600;
|
|
4333
|
+
}
|
|
4334
|
+
.calendar-wrapper .fc-list-event {
|
|
4335
|
+
border-color: var(--border);
|
|
4336
|
+
transition: all 0.2s;
|
|
4337
|
+
}
|
|
4338
|
+
.calendar-wrapper .fc-list-event:hover {
|
|
4339
|
+
background-color: var(--muted);
|
|
4340
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4341
|
+
background-color: color-mix(in oklch, var(--muted) 50%, transparent);
|
|
4342
|
+
}
|
|
4343
|
+
}
|
|
4344
|
+
.calendar-wrapper .fc-list-event-title {
|
|
4345
|
+
color: var(--foreground);
|
|
4346
|
+
}
|
|
4347
|
+
.calendar-wrapper .fc-list-event-time {
|
|
4348
|
+
color: var(--muted-foreground);
|
|
4349
|
+
}
|
|
4350
|
+
.calendar-wrapper .fc-more-link {
|
|
4351
|
+
color: var(--primary);
|
|
4352
|
+
font-weight: 500;
|
|
4353
|
+
}
|
|
4354
|
+
.calendar-wrapper .fc-more-link:hover {
|
|
4355
|
+
color: var(--primary);
|
|
4356
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4357
|
+
color: color-mix(in oklch, var(--primary) 90%, transparent);
|
|
4358
|
+
}
|
|
4359
|
+
}
|
|
4360
|
+
.calendar-wrapper .fc-popover {
|
|
4361
|
+
background-color: var(--background);
|
|
4362
|
+
border: 1px solid var(--border);
|
|
4363
|
+
border-radius: 0.5rem;
|
|
4364
|
+
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
4365
|
+
}
|
|
4366
|
+
.calendar-wrapper .fc-popover-header {
|
|
4367
|
+
background-color: var(--muted);
|
|
4368
|
+
border-bottom: 1px solid var(--border);
|
|
4369
|
+
padding: 0.5rem 0.75rem;
|
|
4370
|
+
}
|
|
4371
|
+
.calendar-wrapper .fc-popover-title {
|
|
4372
|
+
color: var(--foreground);
|
|
4373
|
+
font-weight: 600;
|
|
4374
|
+
}
|
|
4375
|
+
.calendar-wrapper .fc-popover-close {
|
|
4376
|
+
color: var(--muted-foreground);
|
|
4377
|
+
cursor: pointer;
|
|
4378
|
+
}
|
|
4379
|
+
.calendar-wrapper .fc-popover-close:hover {
|
|
4380
|
+
color: var(--foreground);
|
|
4381
|
+
}
|
|
4382
|
+
.calendar-wrapper .fc-scroller::-webkit-scrollbar {
|
|
4383
|
+
width: 6px;
|
|
4384
|
+
height: 6px;
|
|
4385
|
+
}
|
|
4386
|
+
.calendar-wrapper .fc-scroller::-webkit-scrollbar-track {
|
|
4387
|
+
background-color: var(--muted);
|
|
4388
|
+
border-radius: 3px;
|
|
4389
|
+
}
|
|
4390
|
+
.calendar-wrapper .fc-scroller::-webkit-scrollbar-thumb {
|
|
4391
|
+
background-color: var(--border);
|
|
4392
|
+
border-radius: 3px;
|
|
4393
|
+
}
|
|
4394
|
+
.calendar-wrapper .fc-scroller::-webkit-scrollbar-thumb:hover {
|
|
4395
|
+
background-color: var(--muted-foreground);
|
|
4396
|
+
}
|
|
4397
|
+
.calendar-wrapper .fc-theme-standard td,
|
|
4398
|
+
.calendar-wrapper .fc-theme-standard th {
|
|
4399
|
+
border-color: var(--border);
|
|
4400
|
+
}
|
|
4401
|
+
.calendar-wrapper .fc-theme-standard .fc-scrollgrid {
|
|
4402
|
+
border-color: var(--border);
|
|
4403
|
+
}
|
|
4404
|
+
.calendar-wrapper .fc-timegrid-now-indicator-line {
|
|
4405
|
+
border-color: var(--destructive);
|
|
4406
|
+
}
|
|
4407
|
+
.calendar-wrapper .fc-timegrid-now-indicator-arrow {
|
|
4408
|
+
border-color: var(--destructive);
|
|
4409
|
+
}
|
|
4410
|
+
@media (max-width: 768px) {
|
|
4411
|
+
.calendar-wrapper .fc-header-toolbar {
|
|
4412
|
+
flex-direction: column;
|
|
4413
|
+
gap: 0.5rem;
|
|
4414
|
+
}
|
|
4415
|
+
.calendar-wrapper .fc-toolbar-chunk {
|
|
4416
|
+
width: 100%;
|
|
4417
|
+
justify-content: center;
|
|
4418
|
+
}
|
|
4419
|
+
.calendar-wrapper .fc-button {
|
|
4420
|
+
padding: 0.25rem 0.5rem;
|
|
4421
|
+
font-size: 0.75rem;
|
|
4422
|
+
}
|
|
4423
|
+
}
|
|
4424
|
+
@media (max-width: 640px) {
|
|
4425
|
+
.calendar-wrapper .fc-event {
|
|
4426
|
+
font-size: 0.7rem;
|
|
4427
|
+
}
|
|
4428
|
+
.calendar-wrapper .fc-daygrid-day-number {
|
|
4429
|
+
font-size: 0.75rem;
|
|
4430
|
+
}
|
|
4431
|
+
}
|
|
4048
4432
|
@property --tw-translate-x {
|
|
4049
4433
|
syntax: "*";
|
|
4050
4434
|
inherits: false;
|
|
@@ -4305,6 +4689,11 @@
|
|
|
4305
4689
|
initial-value: "";
|
|
4306
4690
|
inherits: false;
|
|
4307
4691
|
}
|
|
4692
|
+
@keyframes spin {
|
|
4693
|
+
to {
|
|
4694
|
+
transform: rotate(360deg);
|
|
4695
|
+
}
|
|
4696
|
+
}
|
|
4308
4697
|
@keyframes pulse {
|
|
4309
4698
|
50% {
|
|
4310
4699
|
opacity: 0.5;
|
package/package.json
CHANGED
|
@@ -8,6 +8,30 @@ interface NoItemFoundProps {
|
|
|
8
8
|
description: ReactNode;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
+
/**
|
|
12
|
+
* ComingSoon component displays a "Coming Soon" placeholder page.
|
|
13
|
+
*
|
|
14
|
+
* This component renders a centered container with an SVG illustration,
|
|
15
|
+
* a title, and a description message to inform users that a feature or page
|
|
16
|
+
* is not yet available.
|
|
17
|
+
*
|
|
18
|
+
* @component
|
|
19
|
+
* @param {Object} props - The component props
|
|
20
|
+
* @param {string} [props.title='Coming Soon'] - The title text to display. Defaults to "Coming Soon"
|
|
21
|
+
* @param {ReactNode} props.description - The description or message to display below the title
|
|
22
|
+
* @returns {React.ReactElement} A centered layout with SVG, title, and description
|
|
23
|
+
*
|
|
24
|
+
* @example
|
|
25
|
+
* // Basic usage
|
|
26
|
+
* <ComingSoon description="This feature will be available soon!" />
|
|
27
|
+
*
|
|
28
|
+
* @example
|
|
29
|
+
* // With custom title
|
|
30
|
+
* <ComingSoon
|
|
31
|
+
* title="New Dashboard"
|
|
32
|
+
* description="We're working hard to bring you an improved dashboard experience."
|
|
33
|
+
* />
|
|
34
|
+
*/
|
|
11
35
|
export const ComingSoon = ({
|
|
12
36
|
title = 'Coming Soon',
|
|
13
37
|
description,
|
|
@@ -2,6 +2,26 @@ import { Svgs } from '../../../assets/images/svg';
|
|
|
2
2
|
import { Typography } from '../../DataDisplay/Typography/Typography';
|
|
3
3
|
import { Button } from '../../Input/Button/Button';
|
|
4
4
|
|
|
5
|
+
/**
|
|
6
|
+
* InternalServerError component displays a 500 server error page.
|
|
7
|
+
*
|
|
8
|
+
* This component renders a centered error page with an SVG illustration,
|
|
9
|
+
* error message, and a "Try Again" button that triggers the error boundary reset.
|
|
10
|
+
* Typically used within an error boundary to handle unexpected server errors.
|
|
11
|
+
*
|
|
12
|
+
* @component
|
|
13
|
+
* @param {Object} props - The component props
|
|
14
|
+
* @param {Function} props.resetBoundary - Callback function to reset the error boundary and retry the operation
|
|
15
|
+
* @returns {React.ReactElement} A centered error page with icon, message, and retry button
|
|
16
|
+
*
|
|
17
|
+
* @example
|
|
18
|
+
* // Usage within an error boundary
|
|
19
|
+
* <InternalServerError resetBoundary={() => window.location.reload()} />
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
* // Usage with custom reset logic
|
|
23
|
+
* <InternalServerError resetBoundary={handleRetry} />
|
|
24
|
+
*/
|
|
5
25
|
export const InternalServerError = ({ resetBoundary }: any) => {
|
|
6
26
|
return (
|
|
7
27
|
<div className="flex w-full flex-col items-center justify-center">
|
|
@@ -2,6 +2,26 @@ import { Svgs } from '../../../assets/images/svg';
|
|
|
2
2
|
import { Typography } from '../../DataDisplay/Typography/Typography';
|
|
3
3
|
import { Button } from '../../Input/Button/Button';
|
|
4
4
|
|
|
5
|
+
/**
|
|
6
|
+
* NoInterneConnection component displays a "No Internet Connection" error page.
|
|
7
|
+
*
|
|
8
|
+
* This component renders a centered error page with an SVG illustration,
|
|
9
|
+
* a message informing the user of a lost internet connection, and a "Try Again" button.
|
|
10
|
+
* Useful for displaying when the application detects no network connectivity.
|
|
11
|
+
*
|
|
12
|
+
* @component
|
|
13
|
+
* @param {Object} props - The component props
|
|
14
|
+
* @param {Function} props.resetBoundary - Callback function to retry the connection or operation
|
|
15
|
+
* @returns {React.ReactElement} A centered offline error page with icon, message, and retry button
|
|
16
|
+
*
|
|
17
|
+
* @example
|
|
18
|
+
* // Display when network connection is lost
|
|
19
|
+
* <NoInterneConnection resetBoundary={handleRetry} />
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
* // With navigation reset
|
|
23
|
+
* <NoInterneConnection resetBoundary={() => window.location.reload()} />
|
|
24
|
+
*/
|
|
5
25
|
export const NoInterneConnection = ({ resetBoundary }: any) => {
|
|
6
26
|
return (
|
|
7
27
|
<div className="flex w-full flex-col items-center justify-center">
|
|
@@ -10,6 +10,34 @@ interface NoItemFoundProps {
|
|
|
10
10
|
width?: string | number;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
+
/**
|
|
14
|
+
* NoItemFound component displays a "No Items Found" placeholder page.
|
|
15
|
+
*
|
|
16
|
+
* This component renders a centered container with an empty state SVG illustration,
|
|
17
|
+
* a title, and a description. The SVG size can be customized with height and width props.
|
|
18
|
+
* Commonly used to indicate when a list, search results, or data collection is empty.
|
|
19
|
+
*
|
|
20
|
+
* @component
|
|
21
|
+
* @param {Object} props - The component props
|
|
22
|
+
* @param {string} [props.title='No Items Found'] - The title text to display. Defaults to "No Items Found"
|
|
23
|
+
* @param {ReactNode} props.description - The description or message to display below the title
|
|
24
|
+
* @param {string | number} [props.height] - The height of the SVG illustration
|
|
25
|
+
* @param {string | number} [props.width] - The width of the SVG illustration
|
|
26
|
+
* @returns {React.ReactElement} A centered layout with SVG, title, and description
|
|
27
|
+
*
|
|
28
|
+
* @example
|
|
29
|
+
* // Basic usage
|
|
30
|
+
* <NoItemFound description="Try adjusting your search criteria." />
|
|
31
|
+
*
|
|
32
|
+
* @example
|
|
33
|
+
* // With custom title and SVG dimensions
|
|
34
|
+
* <NoItemFound
|
|
35
|
+
* title="No Results"
|
|
36
|
+
* description="Your search didn't return any results."
|
|
37
|
+
* width={200}
|
|
38
|
+
* height={200}
|
|
39
|
+
* />
|
|
40
|
+
*/
|
|
13
41
|
export const NoItemFound = ({
|
|
14
42
|
title = 'No Items Found',
|
|
15
43
|
description,
|
|
@@ -1,6 +1,27 @@
|
|
|
1
1
|
import { Svgs } from '../../../assets/images/svg';
|
|
2
2
|
import { Typography } from '../../DataDisplay/Typography/Typography';
|
|
3
3
|
|
|
4
|
+
/**
|
|
5
|
+
* PageNotFound component displays a 404 "Page Not Found" error page.
|
|
6
|
+
*
|
|
7
|
+
* This component renders a centered error page with an SVG illustration
|
|
8
|
+
* and informative messages to indicate that the requested page does not exist.
|
|
9
|
+
* Typically used as a fallback for invalid or missing routes.
|
|
10
|
+
*
|
|
11
|
+
* @component
|
|
12
|
+
* @returns {React.ReactElement} A centered 404 error page with icon and messages
|
|
13
|
+
*
|
|
14
|
+
* @example
|
|
15
|
+
* // Basic usage in routing
|
|
16
|
+
* <Route path="*" element={<PageNotFound />} />
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* // As a fallback route
|
|
20
|
+
* <Routes>
|
|
21
|
+
* <Route path="/" element={<Home />} />
|
|
22
|
+
* <Route path="*" element={<PageNotFound />} />
|
|
23
|
+
* </Routes>
|
|
24
|
+
*/
|
|
4
25
|
export const PageNotFound = () => {
|
|
5
26
|
return (
|
|
6
27
|
<div className="flex w-full flex-col items-center justify-center">
|