@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
|
@@ -8,25 +8,105 @@ import {
|
|
|
8
8
|
} from '@/shadcn-components/Navigation/Tabs/Tabs';
|
|
9
9
|
import { useEffect, useState } from 'react';
|
|
10
10
|
|
|
11
|
+
/**
|
|
12
|
+
* Configuration for an individual tab in TabsContainer
|
|
13
|
+
*/
|
|
11
14
|
interface CustomTabProps {
|
|
15
|
+
/** Unique identifier for the tab. Can be string or number */
|
|
12
16
|
key: string | number;
|
|
17
|
+
/** Display label or React element for the tab trigger */
|
|
13
18
|
label: React.ReactNode;
|
|
19
|
+
/** React component or element to render when this tab is active */
|
|
14
20
|
component: React.ReactNode;
|
|
21
|
+
/** Whether to show a highlight indicator (dot) on the tab trigger. Defaults to false */
|
|
15
22
|
highlight?: boolean;
|
|
23
|
+
/** Whether the tab is disabled and cannot be selected. Defaults to false */
|
|
16
24
|
disabled?: boolean;
|
|
25
|
+
/** Optional icon or React element to display before the label */
|
|
17
26
|
icon?: React.ReactNode;
|
|
18
27
|
}
|
|
19
28
|
|
|
29
|
+
/**
|
|
30
|
+
* Props for the TabsContainer component
|
|
31
|
+
*/
|
|
20
32
|
export interface TabsContainerProps {
|
|
33
|
+
/** Array of tab configurations with labels, content, and optional metadata */
|
|
21
34
|
tabs: CustomTabProps[];
|
|
35
|
+
/** Optional callback fired when a tab is selected. Receives the tab key as parameter */
|
|
22
36
|
onTabChange?: (tabKey: string) => void;
|
|
37
|
+
/** Index of the tab to show initially. Defaults to 0 (first tab) */
|
|
23
38
|
currentTabIndex?: number;
|
|
39
|
+
/** Optional CSS class names for the Tabs root element */
|
|
24
40
|
className?: string;
|
|
41
|
+
/** Optional CSS class names for the TabsList container */
|
|
25
42
|
tabsListClassName?: string;
|
|
43
|
+
/** Optional CSS class names for each TabsTrigger element */
|
|
26
44
|
tabsTriggerClassName?: string;
|
|
45
|
+
/** Layout variant - 'fixed' uses viewport height, 'dynamic' uses content height. Defaults to 'fixed' */
|
|
27
46
|
variant?: 'fixed' | 'dynamic';
|
|
28
47
|
}
|
|
29
48
|
|
|
49
|
+
/**
|
|
50
|
+
* TabsContainer component that displays tabbed content with a tab list and content area.
|
|
51
|
+
*
|
|
52
|
+
* This component provides a responsive tab interface with support for icons, highlights,
|
|
53
|
+
* disabled states, and two layout modes (fixed height for viewport or dynamic height for content).
|
|
54
|
+
* It manages tab selection state and provides callbacks for external state management.
|
|
55
|
+
*
|
|
56
|
+
* @component
|
|
57
|
+
* @param {TabsContainerProps} props - The component props
|
|
58
|
+
* @param {CustomTabProps[]} props.tabs - Array of tab configurations
|
|
59
|
+
* @param {(tabKey: string) => void} [props.onTabChange] - Callback when a tab is selected
|
|
60
|
+
* @param {number} [props.currentTabIndex=0] - Initially active tab index
|
|
61
|
+
* @param {string} [props.className] - CSS classes for the Tabs root
|
|
62
|
+
* @param {string} [props.tabsListClassName] - CSS classes for the TabsList
|
|
63
|
+
* @param {string} [props.tabsTriggerClassName] - CSS classes for TabsTrigger elements
|
|
64
|
+
* @param {'fixed' | 'dynamic'} [props.variant='fixed'] - Layout mode for tab content
|
|
65
|
+
*
|
|
66
|
+
* @returns {React.ReactElement} A Tabs component with tab list and content area
|
|
67
|
+
*
|
|
68
|
+
* @example
|
|
69
|
+
* // Basic tabs
|
|
70
|
+
* <TabsContainer
|
|
71
|
+
* tabs={[
|
|
72
|
+
* { key: 'tab1', label: 'Overview', component: <OverviewPanel /> },
|
|
73
|
+
* { key: 'tab2', label: 'Details', component: <DetailsPanel /> },
|
|
74
|
+
* ]}
|
|
75
|
+
* onTabChange={(key) => console.log('Selected:', key)}
|
|
76
|
+
* />
|
|
77
|
+
*
|
|
78
|
+
* @example
|
|
79
|
+
* // Tabs with icons and highlights
|
|
80
|
+
* <TabsContainer
|
|
81
|
+
* tabs={[
|
|
82
|
+
* {
|
|
83
|
+
* key: 'notifications',
|
|
84
|
+
* label: 'Notifications',
|
|
85
|
+
* icon: <BellIcon />,
|
|
86
|
+
* component: <NotificationsList />,
|
|
87
|
+
* highlight: unreadCount > 0
|
|
88
|
+
* },
|
|
89
|
+
* {
|
|
90
|
+
* key: 'settings',
|
|
91
|
+
* label: 'Settings',
|
|
92
|
+
* icon: <SettingsIcon />,
|
|
93
|
+
* component: <SettingsPanel />
|
|
94
|
+
* },
|
|
95
|
+
* ]}
|
|
96
|
+
* variant="dynamic"
|
|
97
|
+
* className="min-h-screen"
|
|
98
|
+
* />
|
|
99
|
+
*
|
|
100
|
+
* @example
|
|
101
|
+
* // Tabs with disabled state
|
|
102
|
+
* <TabsContainer
|
|
103
|
+
* tabs={[
|
|
104
|
+
* { key: 'basic', label: 'Basic Info', component: <BasicForm /> },
|
|
105
|
+
* { key: 'advanced', label: 'Advanced', component: <AdvancedForm />, disabled: !basicComplete },
|
|
106
|
+
* ]}
|
|
107
|
+
* currentTabIndex={0}
|
|
108
|
+
* />
|
|
109
|
+
*/
|
|
30
110
|
export const TabsContainer = ({
|
|
31
111
|
tabs,
|
|
32
112
|
onTabChange,
|
|
@@ -86,7 +166,7 @@ export const TabsContainer = ({
|
|
|
86
166
|
variant === 'fixed'
|
|
87
167
|
? isSmallScreen
|
|
88
168
|
? `calc(100vh - 98px)`
|
|
89
|
-
: `calc(100vh -
|
|
169
|
+
: `calc(100vh - 80px)`
|
|
90
170
|
: 'max-content',
|
|
91
171
|
}}
|
|
92
172
|
>
|
|
@@ -6,17 +6,81 @@ import { PreviewFiles } from '../PreviewFiles/PreviewFiles';
|
|
|
6
6
|
import { LoadingUploadDialogContainer } from './LoadingUploadDialogContainer';
|
|
7
7
|
import { UploadDialogContainer } from './UploadDialogContainer';
|
|
8
8
|
|
|
9
|
+
/**
|
|
10
|
+
* Props for the UploadDialog component
|
|
11
|
+
*/
|
|
9
12
|
export type UploadDialogProps = {
|
|
13
|
+
/** Function that renders the dialog trigger element. Receives open callback to open the dialog */
|
|
10
14
|
anchor: (props: { open: () => void }) => ReactNode;
|
|
15
|
+
/** Optional callback fired when the dialog opens */
|
|
11
16
|
onDialogOpen?: () => void;
|
|
17
|
+
/** Optional callback fired when the dialog closes */
|
|
12
18
|
onDialogClose?: () => void;
|
|
19
|
+
/** Title displayed in the dialog header. Defaults to 'Upload File' */
|
|
13
20
|
title?: string;
|
|
21
|
+
/** Optional URL to a sample file for download */
|
|
14
22
|
sampleFileUrl?: string;
|
|
23
|
+
/** Callback function fired when the Upload Now button is clicked. Receives single File or File[] */
|
|
15
24
|
onUpload: (file: File | File[]) => void;
|
|
25
|
+
/** HTML accept attribute value for the file input (e.g., '.pdf,.doc', 'image/*'). Defaults to all files */
|
|
16
26
|
acceptFileType?: string;
|
|
27
|
+
/** Whether the upload is currently in progress. Defaults to false */
|
|
17
28
|
loading?: boolean;
|
|
18
29
|
};
|
|
19
30
|
|
|
31
|
+
/**
|
|
32
|
+
* UploadDialog component that provides a file upload interface with preview and download sample options.
|
|
33
|
+
*
|
|
34
|
+
* This component manages file selection, displays selected file previews with delete capability,
|
|
35
|
+
* and provides options to download sample files. It supports loading states and file type filtering.
|
|
36
|
+
* The upload is triggered via an anchor element (trigger) that's configurable.
|
|
37
|
+
*
|
|
38
|
+
* @component
|
|
39
|
+
* @param {UploadDialogProps} props - The component props
|
|
40
|
+
* @param {(props: { open: () => void }) => ReactNode} props.anchor - Render function for the trigger element
|
|
41
|
+
* @param {(file: File | File[]) => void} props.onUpload - Callback when upload button is clicked
|
|
42
|
+
* @param {string} [props.title='Upload File'] - Dialog header title
|
|
43
|
+
* @param {string} [props.sampleFileUrl] - URL to download a sample file
|
|
44
|
+
* @param {string} [props.acceptFileType] - File type filter for the input (e.g., '.pdf', 'image/*')
|
|
45
|
+
* @param {boolean} [props.loading=false] - Whether upload is in progress
|
|
46
|
+
* @param {() => void} [props.onDialogOpen] - Callback when dialog opens
|
|
47
|
+
* @param {() => void} [props.onDialogClose] - Callback when dialog closes
|
|
48
|
+
*
|
|
49
|
+
* @returns {React.ReactElement} A fragment with the anchor element and Upload Dialog
|
|
50
|
+
*
|
|
51
|
+
* @example
|
|
52
|
+
* // Basic file upload
|
|
53
|
+
* <UploadDialog
|
|
54
|
+
* anchor={({ open }) => <button onClick={open}>Upload</button>}
|
|
55
|
+
* title="Upload Document"
|
|
56
|
+
* onUpload={(file) => uploadToServer(file)}
|
|
57
|
+
* />
|
|
58
|
+
*
|
|
59
|
+
* @example
|
|
60
|
+
* // Upload with sample file and type restriction
|
|
61
|
+
* <UploadDialog
|
|
62
|
+
* anchor={({ open }) => <IconButton icon={<UploadIcon />} onClick={open} />}
|
|
63
|
+
* title="Upload CSV File"
|
|
64
|
+
* acceptFileType=".csv"
|
|
65
|
+
* sampleFileUrl="https://example.com/sample.csv"
|
|
66
|
+
* onUpload={async (file) => {
|
|
67
|
+
* await uploadFile(file);
|
|
68
|
+
* setUploadComplete(true);
|
|
69
|
+
* }}
|
|
70
|
+
* loading={isUploading}
|
|
71
|
+
* onDialogClose={() => setIsUploading(false)}
|
|
72
|
+
* />
|
|
73
|
+
*
|
|
74
|
+
* @example
|
|
75
|
+
* // Image upload with loading state
|
|
76
|
+
* <UploadDialog
|
|
77
|
+
* anchor={({ open }) => <button onClick={open}>Choose Avatar</button>}
|
|
78
|
+
* title="Select Avatar"
|
|
79
|
+
* acceptFileType="image/*"
|
|
80
|
+
* onUpload={(file) => updateAvatar(file)}
|
|
81
|
+
* loading={uploadInProgress}
|
|
82
|
+
* />
|
|
83
|
+
*/
|
|
20
84
|
export const UploadDialog = ({
|
|
21
85
|
onUpload,
|
|
22
86
|
sampleFileUrl,
|
|
@@ -36,7 +36,7 @@ function DialogOverlay({
|
|
|
36
36
|
<DialogPrimitive.Overlay
|
|
37
37
|
data-slot="dialog-overlay"
|
|
38
38
|
className={cn(
|
|
39
|
-
'fixed inset-0
|
|
39
|
+
'fixed inset-0 bg-black/50 data-[state=open]:animate-[fadeIn_100ms_ease-out] data-[state=closed]:animate-[fadeOut_100ms_ease-in]',
|
|
40
40
|
className,
|
|
41
41
|
)}
|
|
42
42
|
{...props}
|
|
@@ -58,7 +58,7 @@ function DialogContent({
|
|
|
58
58
|
<DialogPrimitive.Content
|
|
59
59
|
data-slot="dialog-content"
|
|
60
60
|
className={cn(
|
|
61
|
-
'bg-background fixed top-[50%] left-[50%]
|
|
61
|
+
'bg-background fixed top-[50%] left-[50%] grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg data-[state=open]:animate-[zoomIn_200ms_ease-out] data-[state=closed]:animate-[zoomOut_200ms_ease-in]',
|
|
62
62
|
className,
|
|
63
63
|
)}
|
|
64
64
|
{...props}
|
|
@@ -28,7 +28,7 @@ function PopoverContent({
|
|
|
28
28
|
align={align}
|
|
29
29
|
sideOffset={sideOffset}
|
|
30
30
|
className={cn(
|
|
31
|
-
'bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2
|
|
31
|
+
'bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 w-72 origin-(--radix-popover-content-transform-origin) rounded-md border p-4 shadow-md outline-hidden',
|
|
32
32
|
className,
|
|
33
33
|
)}
|
|
34
34
|
{...props}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
1
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
3
2
|
import { Check, ChevronDown, ChevronUp } from 'lucide-react';
|
|
3
|
+
import * as React from 'react';
|
|
4
4
|
|
|
5
5
|
import { cn } from '@/lib/utils';
|
|
6
6
|
|
|
@@ -73,7 +73,7 @@ const SelectContent = React.forwardRef<
|
|
|
73
73
|
<SelectPrimitive.Content
|
|
74
74
|
ref={ref}
|
|
75
75
|
className={cn(
|
|
76
|
-
'relative
|
|
76
|
+
'relative max-h-96 min-w-32 overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2',
|
|
77
77
|
position === 'popper' &&
|
|
78
78
|
'data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1',
|
|
79
79
|
className,
|
|
@@ -145,13 +145,13 @@ SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
|
|
|
145
145
|
|
|
146
146
|
export {
|
|
147
147
|
Select,
|
|
148
|
-
SelectGroup,
|
|
149
|
-
SelectValue,
|
|
150
|
-
SelectTrigger,
|
|
151
148
|
SelectContent,
|
|
152
|
-
|
|
149
|
+
SelectGroup,
|
|
153
150
|
SelectItem,
|
|
154
|
-
|
|
155
|
-
SelectScrollUpButton,
|
|
151
|
+
SelectLabel,
|
|
156
152
|
SelectScrollDownButton,
|
|
153
|
+
SelectScrollUpButton,
|
|
154
|
+
SelectSeparator,
|
|
155
|
+
SelectTrigger,
|
|
156
|
+
SelectValue,
|
|
157
157
|
};
|
|
@@ -34,7 +34,7 @@ function SheetOverlay({
|
|
|
34
34
|
<SheetPrimitive.Overlay
|
|
35
35
|
data-slot="sheet-overlay"
|
|
36
36
|
className={cn(
|
|
37
|
-
'data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0
|
|
37
|
+
'data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 bg-black/50',
|
|
38
38
|
className,
|
|
39
39
|
)}
|
|
40
40
|
{...props}
|
|
@@ -56,7 +56,7 @@ function SheetContent({
|
|
|
56
56
|
<SheetPrimitive.Content
|
|
57
57
|
data-slot="sheet-content"
|
|
58
58
|
className={cn(
|
|
59
|
-
'bg-background data-[state=open]:animate-in data-[state=closed]:animate-out fixed
|
|
59
|
+
'bg-background data-[state=open]:animate-in data-[state=closed]:animate-out fixed flex flex-col gap-4 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500',
|
|
60
60
|
side === 'right' &&
|
|
61
61
|
'data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right inset-y-0 right-0 h-full w-3/4 border-l sm:max-w-sm',
|
|
62
62
|
side === 'left' &&
|
|
@@ -40,7 +40,7 @@ function DropdownMenuContent({
|
|
|
40
40
|
data-slot="dropdown-menu-content"
|
|
41
41
|
sideOffset={sideOffset}
|
|
42
42
|
className={cn(
|
|
43
|
-
'bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2
|
|
43
|
+
'bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 max-h-(--radix-dropdown-menu-content-available-height) min-w-[8rem] origin-(--radix-dropdown-menu-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-md border p-1 shadow-md',
|
|
44
44
|
className,
|
|
45
45
|
)}
|
|
46
46
|
{...props}
|
|
@@ -228,7 +228,7 @@ function DropdownMenuSubContent({
|
|
|
228
228
|
<DropdownMenuPrimitive.SubContent
|
|
229
229
|
data-slot="dropdown-menu-sub-content"
|
|
230
230
|
className={cn(
|
|
231
|
-
'bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2
|
|
231
|
+
'bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 min-w-[8rem] origin-(--radix-dropdown-menu-content-transform-origin) overflow-hidden rounded-md border p-1 shadow-lg',
|
|
232
232
|
className,
|
|
233
233
|
)}
|
|
234
234
|
{...props}
|
package/src/styles/globals.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap');
|
|
2
1
|
@import 'tailwindcss';
|
|
2
|
+
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap');
|
|
3
3
|
|
|
4
4
|
@custom-variant dark (&:is(.dark *));
|
|
5
5
|
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
--yellow-background: oklch(0.82 0.166 94.2 / 0.2);
|
|
52
52
|
--default-background: oklch(0.978 0.004 233.756);
|
|
53
53
|
--input-background: oklch(0.953 0.002 264);
|
|
54
|
+
--font-sans: 'Geist', ui-sans-serif, system-ui, sans-serif;
|
|
54
55
|
}
|
|
55
56
|
|
|
56
57
|
.dark {
|
|
@@ -100,6 +101,7 @@
|
|
|
100
101
|
--yellow-background: oklch(0.82 0.166 94.2 / 0.2);
|
|
101
102
|
--default-background: oklch(0.154 0.013 233.756);
|
|
102
103
|
--input-background: oklch(0.215 0.008 264);
|
|
104
|
+
--font-sans: 'Geist', ui-sans-serif, system-ui, sans-serif;
|
|
103
105
|
}
|
|
104
106
|
|
|
105
107
|
@theme inline {
|
|
@@ -153,7 +155,6 @@
|
|
|
153
155
|
--color-yellow-background: var(--yellow-background);
|
|
154
156
|
--color-default-background: var(--default-background);
|
|
155
157
|
--color-input-background: var(--input-background);
|
|
156
|
-
--font-family-sans: 'Geist', ui-sans-serif, system-ui, sans-serif;
|
|
157
158
|
|
|
158
159
|
--animate-accordion-down: accordion-down 0.2s ease-out;
|
|
159
160
|
--animate-accordion-up: accordion-up 0.2s ease-out;
|
|
@@ -171,6 +172,7 @@
|
|
|
171
172
|
body {
|
|
172
173
|
height: 100%;
|
|
173
174
|
overflow: auto;
|
|
175
|
+
-webkit-font-smoothing: antialiased;
|
|
174
176
|
@apply bg-background text-foreground font-sans;
|
|
175
177
|
}
|
|
176
178
|
|
package/src/styles/index.css
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
1
|
/* Main stylesheet entry point for react-blueprint */
|
|
2
2
|
/* This file imports globals.css and will be processed through Tailwind v4 PostCSS plugin */
|
|
3
3
|
@import './globals.css';
|
|
4
|
+
|
|
5
|
+
/* Component-specific styles */
|
|
6
|
+
@import '../components/DataDisplay/ReactJoyride/CustomJoyRideStyles.css';
|
|
7
|
+
@import '../components/Input/Button/ButtonLoader.css';
|
|
8
|
+
@import '../components/Navigation/Calendar/Calendar.css';
|