pixelize-design-library 2.1.12 → 2.1.13
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/App.d.ts +4 -0
- package/dist/App.js +128 -0
- package/dist/Assets/defaultLogo.d.ts +3 -0
- package/dist/Assets/defaultLogo.js +15 -0
- package/dist/Assets/defaultLogo.tsx +31 -0
- package/dist/Components/Accordion/Accordion.d.ts +4 -0
- package/dist/Components/Accordion/Accordion.js +40 -0
- package/dist/Components/Accordion/AccordionProps.d.ts +17 -0
- package/dist/Components/Accordion/AccordionProps.js +2 -0
- package/dist/Components/AlertDialog/AlertDialog.d.ts +4 -0
- package/dist/Components/AlertDialog/AlertDialog.js +20 -0
- package/dist/Components/AlertDialog/AlertDialogProps.d.ts +20 -0
- package/dist/Components/AlertDialog/AlertDialogProps.js +2 -0
- package/dist/Components/Apexcharts/ApexBarChart/ApexBarChart.d.ts +3 -0
- package/dist/Components/Apexcharts/ApexBarChart/ApexBarChart.js +64 -0
- package/dist/Components/Apexcharts/ApexBarChart/ApexBarChart.stories.d.ts +1 -0
- package/dist/Components/Apexcharts/ApexBarChart/ApexBarChart.stories.js +6 -0
- package/dist/Components/Apexcharts/ApexBarChart/ApexBarChartProps.d.ts +19 -0
- package/dist/Components/Apexcharts/ApexBarChart/ApexBarChartProps.js +2 -0
- package/dist/Components/Apexcharts/ApexPieChart/ApexPieChart.d.ts +3 -0
- package/dist/Components/Apexcharts/ApexPieChart/ApexPieChart.js +29 -0
- package/dist/Components/Apexcharts/ApexPieChart/ApexPieChart.stories.d.ts +1 -0
- package/dist/Components/Apexcharts/ApexPieChart/ApexPieChart.stories.js +6 -0
- package/dist/Components/Apexcharts/ApexPieChart/ApexPieChartProps.d.ts +41 -0
- package/dist/Components/Apexcharts/ApexPieChart/ApexPieChartProps.js +2 -0
- package/dist/Components/Breadcrumbs/Breadcrumbs.d.ts +3 -0
- package/dist/Components/Breadcrumbs/Breadcrumbs.js +17 -0
- package/dist/Components/Breadcrumbs/Breadcrumbs.stories.d.ts +1 -0
- package/dist/Components/Breadcrumbs/Breadcrumbs.stories.js +6 -0
- package/dist/Components/Breadcrumbs/BreadcrumbsProps.d.ts +11 -0
- package/dist/Components/Breadcrumbs/BreadcrumbsProps.js +2 -0
- package/dist/Components/Button/Button.d.ts +5 -0
- package/dist/Components/Button/Button.js +32 -0
- package/dist/Components/Button/Button.stories.d.ts +1 -0
- package/dist/Components/Button/Button.stories.js +6 -0
- package/dist/Components/Button/Button.styles.d.ts +2 -0
- package/dist/Components/Button/Button.styles.js +112 -0
- package/dist/Components/Button/ButtonProps.d.ts +13 -0
- package/dist/Components/Button/ButtonProps.js +2 -0
- package/dist/Components/ButtonGroupIcon/ButtonGoupIconProps.d.ts +33 -0
- package/dist/Components/ButtonGroupIcon/ButtonGoupIconProps.js +2 -0
- package/dist/Components/ButtonGroupIcon/ButtonGroupIcon.d.ts +5 -0
- package/dist/Components/ButtonGroupIcon/ButtonGroupIcon.js +86 -0
- package/dist/Components/ButtonGroupIcon/ButtonGroupIcon.stories.d.ts +1 -0
- package/dist/Components/ButtonGroupIcon/ButtonGroupIcon.stories.js +6 -0
- package/dist/Components/Buttons/Buttons.d.ts +4 -0
- package/dist/Components/Buttons/Buttons.js +11 -0
- package/dist/Components/Buttons/ButtonsProps.d.ts +6 -0
- package/dist/Components/Buttons/ButtonsProps.js +2 -0
- package/dist/Components/Card/Card.d.ts +3 -0
- package/dist/Components/Card/Card.js +12 -0
- package/dist/Components/Card/CardProps.d.ts +14 -0
- package/dist/Components/Card/CardProps.js +2 -0
- package/dist/Components/Checkbox/Checkbox.d.ts +3 -0
- package/dist/Components/Checkbox/Checkbox.js +20 -0
- package/dist/Components/Checkbox/Checkbox.stories.d.ts +1 -0
- package/dist/Components/Checkbox/Checkbox.stories.js +7 -0
- package/dist/Components/Checkbox/Checkbox.styles.d.ts +2 -0
- package/dist/Components/Checkbox/Checkbox.styles.js +54 -0
- package/dist/Components/Checkbox/CheckboxProps.d.ts +15 -0
- package/dist/Components/Checkbox/CheckboxProps.js +2 -0
- package/dist/Components/Common/ErrorComponent.d.ts +6 -0
- package/dist/Components/Common/ErrorComponent.js +16 -0
- package/dist/Components/Common/ErrorMessage.d.ts +5 -0
- package/dist/Components/Common/ErrorMessage.js +17 -0
- package/dist/Components/Common/FormLabel.d.ts +8 -0
- package/dist/Components/Common/FormLabel.js +22 -0
- package/dist/Components/Common/HelperText.d.ts +5 -0
- package/dist/Components/Common/HelperText.js +14 -0
- package/dist/Components/Common/Label.d.ts +7 -0
- package/dist/Components/Common/Label.js +13 -0
- package/dist/Components/ContactForm/ContactForm.d.ts +4 -0
- package/dist/Components/ContactForm/ContactForm.js +215 -0
- package/dist/Components/ContactForm/ContactFormProps.d.ts +9 -0
- package/dist/Components/ContactForm/ContactFormProps.js +2 -0
- package/dist/Components/DatePicker/DatePicker.d.ts +3 -0
- package/dist/Components/DatePicker/DatePicker.js +235 -0
- package/dist/Components/DatePicker/DatePickerProps.d.ts +42 -0
- package/dist/Components/DatePicker/DatePickerProps.js +2 -0
- package/dist/Components/DatePicker/TimePicker.d.ts +4 -0
- package/dist/Components/DatePicker/TimePicker.js +101 -0
- package/dist/Components/Divider/Divider.d.ts +3 -0
- package/dist/Components/Divider/Divider.js +14 -0
- package/dist/Components/Drawer/Drawer.d.ts +12 -0
- package/dist/Components/Drawer/Drawer.js +40 -0
- package/dist/Components/Drawer/DrawerProps.d.ts +8 -0
- package/dist/Components/Drawer/DrawerProps.js +2 -0
- package/dist/Components/Dropdown/DropDown.d.ts +4 -0
- package/dist/Components/Dropdown/DropDown.js +97 -0
- package/dist/Components/Dropdown/DropdownProps.d.ts +26 -0
- package/dist/Components/Dropdown/DropdownProps.js +2 -0
- package/dist/Components/Editor/Editor.d.ts +3 -0
- package/dist/Components/Editor/Editor.js +12 -0
- package/dist/Components/Editor/EditorProps.d.ts +5 -0
- package/dist/Components/Editor/EditorProps.js +2 -0
- package/dist/Components/EmailCards/VerifyEmailOtp/VerifyEmailOtp.d.ts +3 -0
- package/dist/Components/EmailCards/VerifyEmailOtp/VerifyEmailOtp.js +44 -0
- package/dist/Components/EmailCards/VerifyEmailOtp/VerifyEmailOtpProps.d.ts +13 -0
- package/dist/Components/EmailCards/VerifyEmailOtp/VerifyEmailOtpProps.js +2 -0
- package/dist/Components/FileUpload/FileUpload.d.ts +4 -0
- package/dist/Components/FileUpload/FileUpload.js +156 -0
- package/dist/Components/FileUpload/FileUploadProps.d.ts +11 -0
- package/dist/Components/FileUpload/FileUploadProps.js +2 -0
- package/dist/Components/FileUpload/constants.d.ts +3 -0
- package/dist/Components/FileUpload/constants.js +28 -0
- package/dist/Components/Form/FormWrapper.d.ts +7 -0
- package/dist/Components/Form/FormWrapper.js +19 -0
- package/dist/Components/Header/Header.d.ts +4 -0
- package/dist/Components/Header/Header.js +57 -0
- package/dist/Components/Header/HeaderActions.d.ts +23 -0
- package/dist/Components/Header/HeaderActions.js +37 -0
- package/dist/Components/Header/HeaderProps.d.ts +44 -0
- package/dist/Components/Header/HeaderProps.js +2 -0
- package/dist/Components/Header/components/desktopMenu.d.ts +4 -0
- package/dist/Components/Header/components/desktopMenu.js +33 -0
- package/dist/Components/Header/components/mobileMenu.d.ts +4 -0
- package/dist/Components/Header/components/mobileMenu.js +32 -0
- package/dist/Components/Input/Input/Input.d.ts +4 -0
- package/dist/Components/Input/Input/Input.js +45 -0
- package/dist/Components/Input/Input/InputProps.d.ts +17 -0
- package/dist/Components/Input/Input/InputProps.js +2 -0
- package/dist/Components/Input/TextInput.d.ts +4 -0
- package/dist/Components/Input/TextInput.js +68 -0
- package/dist/Components/Input/TextInput.stories.d.ts +1 -0
- package/dist/Components/Input/TextInput.stories.js +8 -0
- package/dist/Components/Input/TextInput.styles.d.ts +2 -0
- package/dist/Components/Input/TextInput.styles.js +84 -0
- package/dist/Components/Input/TextInputProps.d.ts +24 -0
- package/dist/Components/Input/TextInputProps.js +2 -0
- package/dist/Components/InputTextArea/InputTextArea.d.ts +3 -0
- package/dist/Components/InputTextArea/InputTextArea.js +16 -0
- package/dist/Components/InputTextArea/InputTextArea.stories.d.ts +1 -0
- package/dist/Components/InputTextArea/InputTextArea.stories.js +7 -0
- package/dist/Components/InputTextArea/InputTextAreaProps.d.ts +10 -0
- package/dist/Components/InputTextArea/InputTextAreaProps.js +2 -0
- package/dist/Components/KanbanBoard/AccountCard.d.ts +9 -0
- package/dist/Components/KanbanBoard/AccountCard.js +74 -0
- package/dist/Components/KanbanBoard/AccountRow.d.ts +6 -0
- package/dist/Components/KanbanBoard/AccountRow.js +20 -0
- package/dist/Components/KanbanBoard/KanbanActions/KanbanActions.d.ts +9 -0
- package/dist/Components/KanbanBoard/KanbanActions/KanbanActions.js +26 -0
- package/dist/Components/KanbanBoard/KanbanBoard.d.ts +4 -0
- package/dist/Components/KanbanBoard/KanbanBoard.js +120 -0
- package/dist/Components/KanbanBoard/KanbanBoardProps.d.ts +27 -0
- package/dist/Components/KanbanBoard/KanbanBoardProps.js +2 -0
- package/dist/Components/Loading/Loading.d.ts +3 -0
- package/dist/Components/Loading/Loading.js +36 -0
- package/dist/Components/Loading/Loading.stories.d.ts +1 -0
- package/dist/Components/Loading/Loading.stories.js +7 -0
- package/dist/Components/Loading/LoadingProps.d.ts +5 -0
- package/dist/Components/Loading/LoadingProps.js +2 -0
- package/dist/Components/Modal/Modal.d.ts +12 -0
- package/dist/Components/Modal/Modal.js +50 -0
- package/dist/Components/Modal/Modal.stories.d.ts +1 -0
- package/dist/Components/Modal/Modal.stories.js +7 -0
- package/dist/Components/Modal/ModalProps.d.ts +11 -0
- package/dist/Components/Modal/ModalProps.js +2 -0
- package/dist/Components/MultiSelect/MultiSelect.d.ts +3 -0
- package/dist/Components/MultiSelect/MultiSelect.js +115 -0
- package/dist/Components/MultiSelect/MultiSelectProps.d.ts +20 -0
- package/dist/Components/MultiSelect/MultiSelectProps.js +2 -0
- package/dist/Components/NavigationBar/NavBar.stories.d.ts +1 -0
- package/dist/Components/NavigationBar/NavBar.stories.js +3 -0
- package/dist/Components/NavigationBar/NavigationBar.d.ts +3 -0
- package/dist/Components/NavigationBar/NavigationBar.js +50 -0
- package/dist/Components/NavigationBar/NavigationBarProps.d.ts +19 -0
- package/dist/Components/NavigationBar/NavigationBarProps.js +2 -0
- package/dist/Components/NoteTextArea/NoteTextArea.d.ts +3 -0
- package/dist/Components/NoteTextArea/NoteTextArea.js +274 -0
- package/dist/Components/NoteTextArea/NoteTextAreaProps.d.ts +16 -0
- package/dist/Components/NoteTextArea/NoteTextAreaProps.js +2 -0
- package/dist/Components/NumberInput/NumberInput.d.ts +3 -0
- package/dist/Components/NumberInput/NumberInput.js +16 -0
- package/dist/Components/NumberInput/NumberInput.stories.d.ts +1 -0
- package/dist/Components/NumberInput/NumberInput.stories.js +5 -0
- package/dist/Components/NumberInput/NumberInputProps.d.ts +12 -0
- package/dist/Components/NumberInput/NumberInputProps.js +2 -0
- package/dist/Components/PinInput/PinInput.d.ts +3 -0
- package/dist/Components/PinInput/PinInput.js +15 -0
- package/dist/Components/PinInput/PinInput.stories.d.ts +1 -0
- package/dist/Components/PinInput/PinInput.stories.js +6 -0
- package/dist/Components/PinInput/PinInputProps.d.ts +9 -0
- package/dist/Components/PinInput/PinInputProps.js +2 -0
- package/dist/Components/PinInputs/PinInputs.d.ts +4 -0
- package/dist/Components/PinInputs/PinInputs.js +71 -0
- package/dist/Components/PinInputs/PinInputsProps.d.ts +9 -0
- package/dist/Components/PinInputs/PinInputsProps.js +2 -0
- package/dist/Components/ProductCard/ProductCard.d.ts +4 -0
- package/dist/Components/ProductCard/ProductCard.js +51 -0
- package/dist/Components/ProductCard/ProductCardProps.d.ts +26 -0
- package/dist/Components/ProductCard/ProductCardProps.js +2 -0
- package/dist/Components/ProductCard/ProductLabel.d.ts +6 -0
- package/dist/Components/ProductCard/ProductLabel.js +14 -0
- package/dist/Components/ProductCard/ProductPrice.d.ts +7 -0
- package/dist/Components/ProductCard/ProductPrice.js +88 -0
- package/dist/Components/ProductCard/ProductReview.d.ts +7 -0
- package/dist/Components/ProductCard/ProductReview.js +23 -0
- package/dist/Components/ProductCard/ProductTags.d.ts +7 -0
- package/dist/Components/ProductCard/ProductTags.js +30 -0
- package/dist/Components/ProfileCard/ProfileCard.d.ts +12 -0
- package/dist/Components/ProfileCard/ProfileCard.js +57 -0
- package/dist/Components/ProfileCard/ProfileCard.stories.d.ts +1 -0
- package/dist/Components/ProfileCard/ProfileCard.stories.js +6 -0
- package/dist/Components/ProfileCard/ProfileCardProps.d.ts +16 -0
- package/dist/Components/ProfileCard/ProfileCardProps.js +2 -0
- package/dist/Components/ProfilePhotoViewer/ProfilePhotoViewer.d.ts +3 -0
- package/dist/Components/ProfilePhotoViewer/ProfilePhotoViewer.js +94 -0
- package/dist/Components/ProfilePhotoViewer/ProfilePhotoViewer.stories.d.ts +1 -0
- package/dist/Components/ProfilePhotoViewer/ProfilePhotoViewer.stories.js +6 -0
- package/dist/Components/ProfilePhotoViewer/ProfilePhotoViewerProps.d.ts +19 -0
- package/dist/Components/ProfilePhotoViewer/ProfilePhotoViewerProps.js +2 -0
- package/dist/Components/ProgressBar/ProgressBar.d.ts +3 -0
- package/dist/Components/ProgressBar/ProgressBar.js +12 -0
- package/dist/Components/ProgressBar/ProgressBar.stories.d.ts +1 -0
- package/dist/Components/ProgressBar/ProgressBar.stories.js +7 -0
- package/dist/Components/ProgressBar/ProgressBarProps.d.ts +6 -0
- package/dist/Components/ProgressBar/ProgressBarProps.js +2 -0
- package/dist/Components/RadioButton/RadioButton.d.ts +5 -0
- package/dist/Components/RadioButton/RadioButton.js +31 -0
- package/dist/Components/RadioButton/RadioButton.stories.d.ts +1 -0
- package/dist/Components/RadioButton/RadioButton.stories.js +7 -0
- package/dist/Components/RadioButton/RadioButtonProps.d.ts +11 -0
- package/dist/Components/RadioButton/RadioButtonProps.js +2 -0
- package/dist/Components/Reorder/Reorder.d.ts +4 -0
- package/dist/Components/Reorder/Reorder.js +50 -0
- package/dist/Components/Reorder/ReorderProps.d.ts +10 -0
- package/dist/Components/Reorder/ReorderProps.js +2 -0
- package/dist/Components/Search/Search.d.ts +3 -0
- package/dist/Components/Search/Search.js +66 -0
- package/dist/Components/Search/SearchProps.d.ts +8 -0
- package/dist/Components/Search/SearchProps.js +2 -0
- package/dist/Components/SearchSelect/SearchSelect.d.ts +4 -0
- package/dist/Components/SearchSelect/SearchSelect.js +237 -0
- package/dist/Components/SearchSelect/SearchSelectProps.d.ts +60 -0
- package/dist/Components/SearchSelect/SearchSelectProps.js +2 -0
- package/dist/Components/SearchSelect/SelectTruncatedLabel.d.ts +6 -0
- package/dist/Components/SearchSelect/SelectTruncatedLabel.js +45 -0
- package/dist/Components/Select/Select.d.ts +3 -0
- package/dist/Components/Select/Select.js +54 -0
- package/dist/Components/Select/Select.stories.d.ts +1 -0
- package/dist/Components/Select/Select.stories.js +8 -0
- package/dist/Components/Select/Select.styles.d.ts +2 -0
- package/dist/Components/Select/Select.styles.js +98 -0
- package/dist/Components/Select/SelectProps.d.ts +20 -0
- package/dist/Components/Select/SelectProps.js +2 -0
- package/dist/Components/SelectSearch/SelectSearch.d.ts +3 -0
- package/dist/Components/SelectSearch/SelectSearch.js +239 -0
- package/dist/Components/SelectSearch/SelectSearchProps.d.ts +42 -0
- package/dist/Components/SelectSearch/SelectSearchProps.js +2 -0
- package/dist/Components/SideBar/SideBar.d.ts +3 -0
- package/dist/Components/SideBar/SideBar.js +55 -0
- package/dist/Components/SideBar/SideBarProps.d.ts +29 -0
- package/dist/Components/SideBar/SideBarProps.js +2 -0
- package/dist/Components/SideBar/Sidebar.stories.d.ts +1 -0
- package/dist/Components/SideBar/Sidebar.stories.js +7 -0
- package/dist/Components/SideBar/components/MenuItemBox.d.ts +11 -0
- package/dist/Components/SideBar/components/MenuItemBox.js +116 -0
- package/dist/Components/SideBar/components/MenuItems.d.ts +4 -0
- package/dist/Components/SideBar/components/MenuItems.js +13 -0
- package/dist/Components/SideBar/components/MenuPopoverContent.d.ts +9 -0
- package/dist/Components/SideBar/components/MenuPopoverContent.js +37 -0
- package/dist/Components/SideBar/components/TextTruncation.d.ts +8 -0
- package/dist/Components/SideBar/components/TextTruncation.js +77 -0
- package/dist/Components/Skeletons/Skeleton.stories.d.ts +1 -0
- package/dist/Components/Skeletons/Skeleton.stories.js +7 -0
- package/dist/Components/Skeletons/SkeletonProps.d.ts +4 -0
- package/dist/Components/Skeletons/SkeletonProps.js +2 -0
- package/dist/Components/Skeletons/Skeletons.d.ts +3 -0
- package/dist/Components/Skeletons/Skeletons.js +15 -0
- package/dist/Components/Switch/Switch.d.ts +3 -0
- package/dist/Components/Switch/Switch.js +39 -0
- package/dist/Components/Switch/SwitchProps.d.ts +9 -0
- package/dist/Components/Switch/SwitchProps.js +2 -0
- package/dist/Components/Table/Components/HeaderActions.d.ts +7 -0
- package/dist/Components/Table/Components/HeaderActions.js +45 -0
- package/dist/Components/Table/Components/Pagination.d.ts +14 -0
- package/dist/Components/Table/Components/Pagination.js +32 -0
- package/dist/Components/Table/Components/TableActions.d.ts +3 -0
- package/dist/Components/Table/Components/TableActions.js +28 -0
- package/dist/Components/Table/Components/TableBody.d.ts +4 -0
- package/dist/Components/Table/Components/TableBody.js +140 -0
- package/dist/Components/Table/Components/TableFilters.d.ts +4 -0
- package/dist/Components/Table/Components/TableFilters.js +59 -0
- package/dist/Components/Table/Components/TableHeader.d.ts +4 -0
- package/dist/Components/Table/Components/TableHeader.js +147 -0
- package/dist/Components/Table/Components/TableLoading.d.ts +7 -0
- package/dist/Components/Table/Components/TableLoading.js +41 -0
- package/dist/Components/Table/Components/TableSearch.d.ts +6 -0
- package/dist/Components/Table/Components/TableSearch.js +60 -0
- package/dist/Components/Table/Components/useDebounce.d.ts +2 -0
- package/dist/Components/Table/Components/useDebounce.js +28 -0
- package/dist/Components/Table/Components/useTable.d.ts +46 -0
- package/dist/Components/Table/Components/useTable.js +168 -0
- package/dist/Components/Table/Table.d.ts +3 -0
- package/dist/Components/Table/Table.js +129 -0
- package/dist/Components/Table/Table.stories.d.ts +1 -0
- package/dist/Components/Table/Table.stories.js +9 -0
- package/dist/Components/Table/TableProps.d.ts +112 -0
- package/dist/Components/Table/TableProps.js +2 -0
- package/dist/Components/Table/TableSettings/ManageColumns.d.ts +10 -0
- package/dist/Components/Table/TableSettings/ManageColumns.js +107 -0
- package/dist/Components/Table/TableSettings/TableSettings.d.ts +7 -0
- package/dist/Components/Table/TableSettings/TableSettings.js +73 -0
- package/dist/Components/Table/TableToDo.d.ts +2 -0
- package/dist/Components/Table/TableToDo.js +291 -0
- package/dist/Components/Tag/Tag.d.ts +12 -0
- package/dist/Components/Tag/Tag.js +21 -0
- package/dist/Components/Tag/Tag.styles.d.ts +2 -0
- package/dist/Components/Tag/Tag.styles.js +63 -0
- package/dist/Components/Timeline/Timeline.d.ts +4 -0
- package/dist/Components/Timeline/Timeline.js +166 -0
- package/dist/Components/Timeline/TimelineProps.d.ts +20 -0
- package/dist/Components/Timeline/TimelineProps.js +2 -0
- package/dist/Components/Toaster/Toaster.d.ts +4 -0
- package/dist/Components/Toaster/Toaster.js +86 -0
- package/dist/Components/Toaster/Toaster.stories.d.ts +1 -0
- package/dist/Components/Toaster/Toaster.stories.js +8 -0
- package/dist/Components/Toaster/ToasterProps.d.ts +12 -0
- package/dist/Components/Toaster/ToasterProps.js +2 -0
- package/dist/Components/Toggle/TableToggle.d.ts +4 -0
- package/dist/Components/Toggle/TableToggle.js +60 -0
- package/dist/Components/Toggle/TableToggleProps.d.ts +5 -0
- package/dist/Components/Toggle/TableToggleProps.js +2 -0
- package/dist/Components/ToolTip/ToolTip.d.ts +3 -0
- package/dist/Components/ToolTip/ToolTip.js +12 -0
- package/dist/Components/ToolTip/ToolTip.stories.d.ts +1 -0
- package/dist/Components/ToolTip/ToolTip.stories.js +7 -0
- package/dist/Components/ToolTip/ToolTipProps.d.ts +7 -0
- package/dist/Components/ToolTip/ToolTipProps.js +2 -0
- package/dist/Components/Trail/EditableCell.d.ts +11 -0
- package/dist/Components/Trail/EditableCell.js +71 -0
- package/dist/Components/Trail/SelectAllCheckbox.d.ts +8 -0
- package/dist/Components/Trail/SelectAllCheckbox.js +13 -0
- package/dist/Components/Trail/TrailWorks.d.ts +3 -0
- package/dist/Components/Trail/TrailWorks.js +262 -0
- package/dist/Components/Trail/data.d.ts +15 -0
- package/dist/Components/Trail/data.js +29 -0
- package/dist/Constants/Sidebar.d.ts +38 -0
- package/dist/Constants/Sidebar.js +42 -0
- package/dist/Hooks/usePreferences.d.ts +24 -0
- package/dist/Hooks/usePreferences.js +73 -0
- package/dist/Layout.d.ts +3 -0
- package/dist/Layout.js +254 -0
- package/dist/Pages/TInput.d.ts +3 -0
- package/dist/Pages/TInput.js +46 -0
- package/dist/Pages/accordion.d.ts +3 -0
- package/dist/Pages/accordion.js +42 -0
- package/dist/Pages/alertdialog.d.ts +3 -0
- package/dist/Pages/alertdialog.js +44 -0
- package/dist/Pages/button.d.ts +3 -0
- package/dist/Pages/button.js +29 -0
- package/dist/Pages/card.d.ts +3 -0
- package/dist/Pages/card.js +48 -0
- package/dist/Pages/chart.d.ts +3 -0
- package/dist/Pages/chart.js +28 -0
- package/dist/Pages/checkbox.d.ts +3 -0
- package/dist/Pages/checkbox.js +12 -0
- package/dist/Pages/contactForm.d.ts +3 -0
- package/dist/Pages/contactForm.js +16 -0
- package/dist/Pages/datePick.d.ts +3 -0
- package/dist/Pages/datePick.js +70 -0
- package/dist/Pages/drawer.d.ts +3 -0
- package/dist/Pages/drawer.js +48 -0
- package/dist/Pages/dropdown.d.ts +3 -0
- package/dist/Pages/dropdown.js +24 -0
- package/dist/Pages/editor.d.ts +3 -0
- package/dist/Pages/editor.js +14 -0
- package/dist/Pages/fileUpload.d.ts +2 -0
- package/dist/Pages/fileUpload.js +65 -0
- package/dist/Pages/input.d.ts +3 -0
- package/dist/Pages/input.js +42 -0
- package/dist/Pages/kanbanboard.d.ts +3 -0
- package/dist/Pages/kanbanboard.js +115 -0
- package/dist/Pages/modal.d.ts +3 -0
- package/dist/Pages/modal.js +55 -0
- package/dist/Pages/multiSelect.d.ts +3 -0
- package/dist/Pages/multiSelect.js +45 -0
- package/dist/Pages/noteArea.d.ts +3 -0
- package/dist/Pages/noteArea.js +49 -0
- package/dist/Pages/numberInput.d.ts +3 -0
- package/dist/Pages/numberInput.js +39 -0
- package/dist/Pages/photoViewer.d.ts +3 -0
- package/dist/Pages/photoViewer.js +12 -0
- package/dist/Pages/pinInputs.d.ts +3 -0
- package/dist/Pages/pinInputs.js +12 -0
- package/dist/Pages/productCaard.d.ts +3 -0
- package/dist/Pages/productCaard.js +32 -0
- package/dist/Pages/progressbar.d.ts +3 -0
- package/dist/Pages/progressbar.js +12 -0
- package/dist/Pages/radioButton.d.ts +3 -0
- package/dist/Pages/radioButton.js +44 -0
- package/dist/Pages/search.d.ts +3 -0
- package/dist/Pages/search.js +44 -0
- package/dist/Pages/searchSelect.d.ts +3 -0
- package/dist/Pages/searchSelect.js +151 -0
- package/dist/Pages/select.d.ts +3 -0
- package/dist/Pages/select.js +43 -0
- package/dist/Pages/selectSearch.d.ts +3 -0
- package/dist/Pages/selectSearch.js +93 -0
- package/dist/Pages/skeleton.d.ts +3 -0
- package/dist/Pages/skeleton.js +22 -0
- package/dist/Pages/switch.d.ts +3 -0
- package/dist/Pages/switch.js +40 -0
- package/dist/Pages/table.d.ts +2 -0
- package/dist/Pages/table.js +144 -0
- package/dist/Pages/textArea.d.ts +3 -0
- package/dist/Pages/textArea.js +12 -0
- package/dist/Pages/timeline.d.ts +3 -0
- package/dist/Pages/timeline.js +74 -0
- package/dist/Pages/tooltip.d.ts +3 -0
- package/dist/Pages/tooltip.js +12 -0
- package/dist/Pages/toster.d.ts +3 -0
- package/dist/Pages/toster.js +63 -0
- package/dist/Pages/verifyEmail.d.ts +3 -0
- package/dist/Pages/verifyEmail.js +18 -0
- package/dist/Theme/Dark/theme.d.ts +2 -0
- package/dist/Theme/Dark/theme.js +283 -0
- package/dist/Theme/Default/palette.d.ts +370 -0
- package/dist/Theme/Default/palette.js +372 -0
- package/dist/Theme/Default/theme.d.ts +2 -0
- package/dist/Theme/Default/theme.js +23 -0
- package/dist/Theme/Meadow/palette.d.ts +368 -0
- package/dist/Theme/Meadow/palette.js +356 -0
- package/dist/Theme/Meadow/theme.d.ts +2 -0
- package/dist/Theme/Meadow/theme.js +23 -0
- package/dist/Theme/Radiant/palette.d.ts +368 -0
- package/dist/Theme/Radiant/palette.js +356 -0
- package/dist/Theme/Radiant/theme.d.ts +2 -0
- package/dist/Theme/Radiant/theme.js +23 -0
- package/dist/Theme/Skyline/palette.d.ts +368 -0
- package/dist/Theme/Skyline/palette.js +356 -0
- package/dist/Theme/Skyline/theme.d.ts +2 -0
- package/dist/Theme/Skyline/theme.js +23 -0
- package/dist/Theme/common.d.ts +166 -0
- package/dist/Theme/common.js +101 -0
- package/dist/Theme/componentStyles.d.ts +7 -0
- package/dist/Theme/componentStyles.js +15 -0
- package/dist/Theme/fonts.d.ts +34 -0
- package/dist/Theme/fonts.js +41 -0
- package/dist/Theme/index.d.ts +11 -0
- package/dist/Theme/index.js +20 -0
- package/dist/Theme/space.d.ts +33 -0
- package/dist/Theme/space.js +35 -0
- package/dist/Theme/theme.d.ts +2 -0
- package/dist/Theme/theme.js +9 -0
- package/dist/Theme/themeProps.d.ts +475 -0
- package/dist/Theme/themeProps.js +3 -0
- package/dist/Theme/useCustomTheme.d.ts +2 -0
- package/dist/Theme/useCustomTheme.js +8 -0
- package/dist/Utils/table.d.ts +36 -0
- package/dist/Utils/table.js +168 -0
- package/dist/bootstrap.d.ts +1 -0
- package/dist/bootstrap.js +14 -0
- package/dist/global.css +225 -0
- package/dist/index.css +3 -0
- package/dist/index.d.ts +54 -0
- package/dist/index.js +146 -262
- package/dist/withTheme.d.ts +3 -0
- package/dist/withTheme.js +28 -0
- package/package.json +14 -23
- package/dist/node_modules/date-fns/_lib/addLeadingZeros.js +0 -1
- package/dist/node_modules/date-fns/_lib/defaultLocale.js +0 -1
- package/dist/node_modules/date-fns/_lib/defaultOptions.js +0 -1
- package/dist/node_modules/date-fns/_lib/format/formatters.js +0 -1
- package/dist/node_modules/date-fns/_lib/format/lightFormatters.js +0 -1
- package/dist/node_modules/date-fns/_lib/format/longFormatters.js +0 -1
- package/dist/node_modules/date-fns/_lib/getRoundingMethod.js +0 -1
- package/dist/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +0 -1
- package/dist/node_modules/date-fns/_lib/protectedTokens.js +0 -1
- package/dist/node_modules/date-fns/add.js +0 -1
- package/dist/node_modules/date-fns/addBusinessDays.js +0 -1
- package/dist/node_modules/date-fns/addDays.js +0 -1
- package/dist/node_modules/date-fns/addHours.js +0 -1
- package/dist/node_modules/date-fns/addISOWeekYears.js +0 -1
- package/dist/node_modules/date-fns/addMilliseconds.js +0 -1
- package/dist/node_modules/date-fns/addMinutes.js +0 -1
- package/dist/node_modules/date-fns/addMonths.js +0 -1
- package/dist/node_modules/date-fns/addQuarters.js +0 -1
- package/dist/node_modules/date-fns/addSeconds.js +0 -1
- package/dist/node_modules/date-fns/addWeeks.js +0 -1
- package/dist/node_modules/date-fns/addYears.js +0 -1
- package/dist/node_modules/date-fns/areIntervalsOverlapping.js +0 -1
- package/dist/node_modules/date-fns/clamp.js +0 -1
- package/dist/node_modules/date-fns/closestIndexTo.js +0 -1
- package/dist/node_modules/date-fns/closestTo.js +0 -1
- package/dist/node_modules/date-fns/compareAsc.js +0 -1
- package/dist/node_modules/date-fns/compareDesc.js +0 -1
- package/dist/node_modules/date-fns/constants.js +0 -1
- package/dist/node_modules/date-fns/constructFrom.js +0 -1
- package/dist/node_modules/date-fns/constructNow.js +0 -1
- package/dist/node_modules/date-fns/daysToWeeks.js +0 -1
- package/dist/node_modules/date-fns/differenceInBusinessDays.js +0 -1
- package/dist/node_modules/date-fns/differenceInCalendarDays.js +0 -1
- package/dist/node_modules/date-fns/differenceInCalendarISOWeekYears.js +0 -1
- package/dist/node_modules/date-fns/differenceInCalendarISOWeeks.js +0 -1
- package/dist/node_modules/date-fns/differenceInCalendarMonths.js +0 -1
- package/dist/node_modules/date-fns/differenceInCalendarQuarters.js +0 -1
- package/dist/node_modules/date-fns/differenceInCalendarWeeks.js +0 -1
- package/dist/node_modules/date-fns/differenceInCalendarYears.js +0 -1
- package/dist/node_modules/date-fns/differenceInDays.js +0 -1
- package/dist/node_modules/date-fns/differenceInHours.js +0 -1
- package/dist/node_modules/date-fns/differenceInISOWeekYears.js +0 -1
- package/dist/node_modules/date-fns/differenceInMilliseconds.js +0 -1
- package/dist/node_modules/date-fns/differenceInMinutes.js +0 -1
- package/dist/node_modules/date-fns/differenceInMonths.js +0 -1
- package/dist/node_modules/date-fns/differenceInQuarters.js +0 -1
- package/dist/node_modules/date-fns/differenceInSeconds.js +0 -1
- package/dist/node_modules/date-fns/differenceInWeeks.js +0 -1
- package/dist/node_modules/date-fns/differenceInYears.js +0 -1
- package/dist/node_modules/date-fns/eachDayOfInterval.js +0 -1
- package/dist/node_modules/date-fns/eachHourOfInterval.js +0 -1
- package/dist/node_modules/date-fns/eachMinuteOfInterval.js +0 -1
- package/dist/node_modules/date-fns/eachMonthOfInterval.js +0 -1
- package/dist/node_modules/date-fns/eachQuarterOfInterval.js +0 -1
- package/dist/node_modules/date-fns/eachWeekOfInterval.js +0 -1
- package/dist/node_modules/date-fns/eachWeekendOfInterval.js +0 -1
- package/dist/node_modules/date-fns/eachWeekendOfMonth.js +0 -1
- package/dist/node_modules/date-fns/eachWeekendOfYear.js +0 -1
- package/dist/node_modules/date-fns/eachYearOfInterval.js +0 -1
- package/dist/node_modules/date-fns/endOfDay.js +0 -1
- package/dist/node_modules/date-fns/endOfDecade.js +0 -1
- package/dist/node_modules/date-fns/endOfHour.js +0 -1
- package/dist/node_modules/date-fns/endOfISOWeek.js +0 -1
- package/dist/node_modules/date-fns/endOfISOWeekYear.js +0 -1
- package/dist/node_modules/date-fns/endOfMinute.js +0 -1
- package/dist/node_modules/date-fns/endOfMonth.js +0 -1
- package/dist/node_modules/date-fns/endOfQuarter.js +0 -1
- package/dist/node_modules/date-fns/endOfSecond.js +0 -1
- package/dist/node_modules/date-fns/endOfToday.js +0 -1
- package/dist/node_modules/date-fns/endOfTomorrow.js +0 -1
- package/dist/node_modules/date-fns/endOfWeek.js +0 -1
- package/dist/node_modules/date-fns/endOfYear.js +0 -1
- package/dist/node_modules/date-fns/endOfYesterday.js +0 -1
- package/dist/node_modules/date-fns/format.js +0 -1
- package/dist/node_modules/date-fns/formatDistance.js +0 -1
- package/dist/node_modules/date-fns/formatDistanceStrict.js +0 -1
- package/dist/node_modules/date-fns/formatDistanceToNow.js +0 -1
- package/dist/node_modules/date-fns/formatDistanceToNowStrict.js +0 -1
- package/dist/node_modules/date-fns/formatDuration.js +0 -1
- package/dist/node_modules/date-fns/formatISO.js +0 -1
- package/dist/node_modules/date-fns/formatISO9075.js +0 -1
- package/dist/node_modules/date-fns/formatISODuration.js +0 -1
- package/dist/node_modules/date-fns/formatRFC3339.js +0 -1
- package/dist/node_modules/date-fns/formatRFC7231.js +0 -1
- package/dist/node_modules/date-fns/formatRelative.js +0 -1
- package/dist/node_modules/date-fns/fromUnixTime.js +0 -1
- package/dist/node_modules/date-fns/getDate.js +0 -1
- package/dist/node_modules/date-fns/getDay.js +0 -1
- package/dist/node_modules/date-fns/getDayOfYear.js +0 -1
- package/dist/node_modules/date-fns/getDaysInMonth.js +0 -1
- package/dist/node_modules/date-fns/getDaysInYear.js +0 -1
- package/dist/node_modules/date-fns/getDecade.js +0 -1
- package/dist/node_modules/date-fns/getDefaultOptions.js +0 -1
- package/dist/node_modules/date-fns/getHours.js +0 -1
- package/dist/node_modules/date-fns/getISODay.js +0 -1
- package/dist/node_modules/date-fns/getISOWeek.js +0 -1
- package/dist/node_modules/date-fns/getISOWeekYear.js +0 -1
- package/dist/node_modules/date-fns/getISOWeeksInYear.js +0 -1
- package/dist/node_modules/date-fns/getMilliseconds.js +0 -1
- package/dist/node_modules/date-fns/getMinutes.js +0 -1
- package/dist/node_modules/date-fns/getMonth.js +0 -1
- package/dist/node_modules/date-fns/getOverlappingDaysInIntervals.js +0 -1
- package/dist/node_modules/date-fns/getQuarter.js +0 -1
- package/dist/node_modules/date-fns/getSeconds.js +0 -1
- package/dist/node_modules/date-fns/getTime.js +0 -1
- package/dist/node_modules/date-fns/getUnixTime.js +0 -1
- package/dist/node_modules/date-fns/getWeek.js +0 -1
- package/dist/node_modules/date-fns/getWeekOfMonth.js +0 -1
- package/dist/node_modules/date-fns/getWeekYear.js +0 -1
- package/dist/node_modules/date-fns/getWeeksInMonth.js +0 -1
- package/dist/node_modules/date-fns/getYear.js +0 -1
- package/dist/node_modules/date-fns/hoursToMilliseconds.js +0 -1
- package/dist/node_modules/date-fns/hoursToMinutes.js +0 -1
- package/dist/node_modules/date-fns/hoursToSeconds.js +0 -1
- package/dist/node_modules/date-fns/index.js +0 -1
- package/dist/node_modules/date-fns/interval.js +0 -1
- package/dist/node_modules/date-fns/intervalToDuration.js +0 -1
- package/dist/node_modules/date-fns/intlFormat.js +0 -1
- package/dist/node_modules/date-fns/intlFormatDistance.js +0 -1
- package/dist/node_modules/date-fns/isAfter.js +0 -1
- package/dist/node_modules/date-fns/isBefore.js +0 -1
- package/dist/node_modules/date-fns/isDate.js +0 -1
- package/dist/node_modules/date-fns/isEqual.js +0 -1
- package/dist/node_modules/date-fns/isExists.js +0 -1
- package/dist/node_modules/date-fns/isFirstDayOfMonth.js +0 -1
- package/dist/node_modules/date-fns/isFriday.js +0 -1
- package/dist/node_modules/date-fns/isFuture.js +0 -1
- package/dist/node_modules/date-fns/isLastDayOfMonth.js +0 -1
- package/dist/node_modules/date-fns/isLeapYear.js +0 -1
- package/dist/node_modules/date-fns/isMatch.js +0 -1
- package/dist/node_modules/date-fns/isMonday.js +0 -1
- package/dist/node_modules/date-fns/isPast.js +0 -1
- package/dist/node_modules/date-fns/isSameDay.js +0 -1
- package/dist/node_modules/date-fns/isSameHour.js +0 -1
- package/dist/node_modules/date-fns/isSameISOWeek.js +0 -1
- package/dist/node_modules/date-fns/isSameISOWeekYear.js +0 -1
- package/dist/node_modules/date-fns/isSameMinute.js +0 -1
- package/dist/node_modules/date-fns/isSameMonth.js +0 -1
- package/dist/node_modules/date-fns/isSameQuarter.js +0 -1
- package/dist/node_modules/date-fns/isSameSecond.js +0 -1
- package/dist/node_modules/date-fns/isSameWeek.js +0 -1
- package/dist/node_modules/date-fns/isSameYear.js +0 -1
- package/dist/node_modules/date-fns/isSaturday.js +0 -1
- package/dist/node_modules/date-fns/isSunday.js +0 -1
- package/dist/node_modules/date-fns/isThisHour.js +0 -1
- package/dist/node_modules/date-fns/isThisISOWeek.js +0 -1
- package/dist/node_modules/date-fns/isThisMinute.js +0 -1
- package/dist/node_modules/date-fns/isThisMonth.js +0 -1
- package/dist/node_modules/date-fns/isThisQuarter.js +0 -1
- package/dist/node_modules/date-fns/isThisSecond.js +0 -1
- package/dist/node_modules/date-fns/isThisWeek.js +0 -1
- package/dist/node_modules/date-fns/isThisYear.js +0 -1
- package/dist/node_modules/date-fns/isThursday.js +0 -1
- package/dist/node_modules/date-fns/isToday.js +0 -1
- package/dist/node_modules/date-fns/isTomorrow.js +0 -1
- package/dist/node_modules/date-fns/isTuesday.js +0 -1
- package/dist/node_modules/date-fns/isValid.js +0 -1
- package/dist/node_modules/date-fns/isWednesday.js +0 -1
- package/dist/node_modules/date-fns/isWeekend.js +0 -1
- package/dist/node_modules/date-fns/isWithinInterval.js +0 -1
- package/dist/node_modules/date-fns/isYesterday.js +0 -1
- package/dist/node_modules/date-fns/lastDayOfDecade.js +0 -1
- package/dist/node_modules/date-fns/lastDayOfISOWeek.js +0 -1
- package/dist/node_modules/date-fns/lastDayOfISOWeekYear.js +0 -1
- package/dist/node_modules/date-fns/lastDayOfMonth.js +0 -1
- package/dist/node_modules/date-fns/lastDayOfQuarter.js +0 -1
- package/dist/node_modules/date-fns/lastDayOfWeek.js +0 -1
- package/dist/node_modules/date-fns/lastDayOfYear.js +0 -1
- package/dist/node_modules/date-fns/lightFormat.js +0 -1
- package/dist/node_modules/date-fns/locale/_lib/buildFormatLongFn.js +0 -1
- package/dist/node_modules/date-fns/locale/_lib/buildLocalizeFn.js +0 -1
- package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.js +0 -1
- package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +0 -1
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatDistance.js +0 -1
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatLong.js +0 -1
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatRelative.js +0 -1
- package/dist/node_modules/date-fns/locale/en-US/_lib/localize.js +0 -1
- package/dist/node_modules/date-fns/locale/en-US/_lib/match.js +0 -1
- package/dist/node_modules/date-fns/locale/en-US.js +0 -1
- package/dist/node_modules/date-fns/max.js +0 -1
- package/dist/node_modules/date-fns/milliseconds.js +0 -1
- package/dist/node_modules/date-fns/millisecondsToHours.js +0 -1
- package/dist/node_modules/date-fns/millisecondsToMinutes.js +0 -1
- package/dist/node_modules/date-fns/millisecondsToSeconds.js +0 -1
- package/dist/node_modules/date-fns/min.js +0 -1
- package/dist/node_modules/date-fns/minutesToHours.js +0 -1
- package/dist/node_modules/date-fns/minutesToMilliseconds.js +0 -1
- package/dist/node_modules/date-fns/minutesToSeconds.js +0 -1
- package/dist/node_modules/date-fns/monthsToQuarters.js +0 -1
- package/dist/node_modules/date-fns/monthsToYears.js +0 -1
- package/dist/node_modules/date-fns/nextDay.js +0 -1
- package/dist/node_modules/date-fns/nextFriday.js +0 -1
- package/dist/node_modules/date-fns/nextMonday.js +0 -1
- package/dist/node_modules/date-fns/nextSaturday.js +0 -1
- package/dist/node_modules/date-fns/nextSunday.js +0 -1
- package/dist/node_modules/date-fns/nextThursday.js +0 -1
- package/dist/node_modules/date-fns/nextTuesday.js +0 -1
- package/dist/node_modules/date-fns/nextWednesday.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/Parser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/Setter.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/constants.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/AMPMMidnightParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/AMPMParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/DateParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/DayOfYearParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/DayParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/DayPeriodParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/EraParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/ExtendedYearParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/FractionOfSecondParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/Hour0To11Parser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/Hour0to23Parser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/Hour1To24Parser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/Hour1to12Parser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/ISODayParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneWithZParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/ISOWeekParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/ISOWeekYearParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/LocalDayParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/LocalWeekParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/LocalWeekYearParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/MinuteParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/MonthParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/QuarterParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/SecondParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/StandAloneLocalDayParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/StandAloneMonthParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/StandAloneQuarterParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/TimestampMillisecondsParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/TimestampSecondsParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers/YearParser.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/parsers.js +0 -1
- package/dist/node_modules/date-fns/parse/_lib/utils.js +0 -1
- package/dist/node_modules/date-fns/parse.js +0 -1
- package/dist/node_modules/date-fns/parseISO.js +0 -1
- package/dist/node_modules/date-fns/parseJSON.js +0 -1
- package/dist/node_modules/date-fns/previousDay.js +0 -1
- package/dist/node_modules/date-fns/previousFriday.js +0 -1
- package/dist/node_modules/date-fns/previousMonday.js +0 -1
- package/dist/node_modules/date-fns/previousSaturday.js +0 -1
- package/dist/node_modules/date-fns/previousSunday.js +0 -1
- package/dist/node_modules/date-fns/previousThursday.js +0 -1
- package/dist/node_modules/date-fns/previousTuesday.js +0 -1
- package/dist/node_modules/date-fns/previousWednesday.js +0 -1
- package/dist/node_modules/date-fns/quartersToMonths.js +0 -1
- package/dist/node_modules/date-fns/quartersToYears.js +0 -1
- package/dist/node_modules/date-fns/roundToNearestHours.js +0 -1
- package/dist/node_modules/date-fns/roundToNearestMinutes.js +0 -1
- package/dist/node_modules/date-fns/secondsToHours.js +0 -1
- package/dist/node_modules/date-fns/secondsToMilliseconds.js +0 -1
- package/dist/node_modules/date-fns/secondsToMinutes.js +0 -1
- package/dist/node_modules/date-fns/set.js +0 -1
- package/dist/node_modules/date-fns/setDate.js +0 -1
- package/dist/node_modules/date-fns/setDay.js +0 -1
- package/dist/node_modules/date-fns/setDayOfYear.js +0 -1
- package/dist/node_modules/date-fns/setDefaultOptions.js +0 -1
- package/dist/node_modules/date-fns/setHours.js +0 -1
- package/dist/node_modules/date-fns/setISODay.js +0 -1
- package/dist/node_modules/date-fns/setISOWeek.js +0 -1
- package/dist/node_modules/date-fns/setISOWeekYear.js +0 -1
- package/dist/node_modules/date-fns/setMilliseconds.js +0 -1
- package/dist/node_modules/date-fns/setMinutes.js +0 -1
- package/dist/node_modules/date-fns/setMonth.js +0 -1
- package/dist/node_modules/date-fns/setQuarter.js +0 -1
- package/dist/node_modules/date-fns/setSeconds.js +0 -1
- package/dist/node_modules/date-fns/setWeek.js +0 -1
- package/dist/node_modules/date-fns/setWeekYear.js +0 -1
- package/dist/node_modules/date-fns/setYear.js +0 -1
- package/dist/node_modules/date-fns/startOfDay.js +0 -1
- package/dist/node_modules/date-fns/startOfDecade.js +0 -1
- package/dist/node_modules/date-fns/startOfHour.js +0 -1
- package/dist/node_modules/date-fns/startOfISOWeek.js +0 -1
- package/dist/node_modules/date-fns/startOfISOWeekYear.js +0 -1
- package/dist/node_modules/date-fns/startOfMinute.js +0 -1
- package/dist/node_modules/date-fns/startOfMonth.js +0 -1
- package/dist/node_modules/date-fns/startOfQuarter.js +0 -1
- package/dist/node_modules/date-fns/startOfSecond.js +0 -1
- package/dist/node_modules/date-fns/startOfToday.js +0 -1
- package/dist/node_modules/date-fns/startOfTomorrow.js +0 -1
- package/dist/node_modules/date-fns/startOfWeek.js +0 -1
- package/dist/node_modules/date-fns/startOfWeekYear.js +0 -1
- package/dist/node_modules/date-fns/startOfYear.js +0 -1
- package/dist/node_modules/date-fns/startOfYesterday.js +0 -1
- package/dist/node_modules/date-fns/sub.js +0 -1
- package/dist/node_modules/date-fns/subBusinessDays.js +0 -1
- package/dist/node_modules/date-fns/subDays.js +0 -1
- package/dist/node_modules/date-fns/subHours.js +0 -1
- package/dist/node_modules/date-fns/subISOWeekYears.js +0 -1
- package/dist/node_modules/date-fns/subMilliseconds.js +0 -1
- package/dist/node_modules/date-fns/subMinutes.js +0 -1
- package/dist/node_modules/date-fns/subMonths.js +0 -1
- package/dist/node_modules/date-fns/subQuarters.js +0 -1
- package/dist/node_modules/date-fns/subSeconds.js +0 -1
- package/dist/node_modules/date-fns/subWeeks.js +0 -1
- package/dist/node_modules/date-fns/subYears.js +0 -1
- package/dist/node_modules/date-fns/toDate.js +0 -1
- package/dist/node_modules/date-fns/transpose.js +0 -1
- package/dist/node_modules/date-fns/weeksToDays.js +0 -1
- package/dist/node_modules/date-fns/yearsToDays.js +0 -1
- package/dist/node_modules/date-fns/yearsToMonths.js +0 -1
- package/dist/node_modules/date-fns/yearsToQuarters.js +0 -1
- package/dist/src/Assets/defaultLogo.js +0 -1
- package/dist/src/Components/Accordion/Accordion.js +0 -1
- package/dist/src/Components/AlertDialog/AlertDialog.js +0 -1
- package/dist/src/Components/Apexcharts/ApexBarChart/ApexBarChart.js +0 -1
- package/dist/src/Components/Apexcharts/ApexPieChart/ApexPieChart.js +0 -1
- package/dist/src/Components/Breadcrumbs/Breadcrumbs.js +0 -1
- package/dist/src/Components/Button/Button.js +0 -1
- package/dist/src/Components/Button/Button.styles.js +0 -1
- package/dist/src/Components/ButtonGroupIcon/ButtonGroupIcon.js +0 -1
- package/dist/src/Components/Card/Card.js +0 -1
- package/dist/src/Components/Checkbox/Checkbox.js +0 -1
- package/dist/src/Components/Checkbox/Checkbox.styles.js +0 -1
- package/dist/src/Components/Common/ErrorMessage.js +0 -1
- package/dist/src/Components/Common/FormLabel.js +0 -1
- package/dist/src/Components/Common/HelperText.js +0 -1
- package/dist/src/Components/ContactForm/ContactForm.js +0 -1
- package/dist/src/Components/DatePicker/DatePicker.js +0 -1
- package/dist/src/Components/DatePicker/TimePicker.js +0 -1
- package/dist/src/Components/Divider/Divider.js +0 -1
- package/dist/src/Components/Drawer/Drawer.js +0 -1
- package/dist/src/Components/Dropdown/DropDown.js +0 -1
- package/dist/src/Components/Editor/Editor.js +0 -1
- package/dist/src/Components/EmailCards/VerifyEmailOtp/VerifyEmailOtp.js +0 -1
- package/dist/src/Components/FileUpload/FileUpload.js +0 -1
- package/dist/src/Components/FileUpload/constants.js +0 -1
- package/dist/src/Components/Form/FormWrapper.js +0 -1
- package/dist/src/Components/Header/Header.js +0 -1
- package/dist/src/Components/Header/HeaderActions.js +0 -1
- package/dist/src/Components/Header/components/desktopMenu.js +0 -1
- package/dist/src/Components/Header/components/mobileMenu.js +0 -1
- package/dist/src/Components/Input/TextInput.js +0 -1
- package/dist/src/Components/Input/TextInput.styles.js +0 -1
- package/dist/src/Components/InputTextArea/InputTextArea.js +0 -1
- package/dist/src/Components/KanbanBoard/AccountCard.js +0 -1
- package/dist/src/Components/KanbanBoard/AccountRow.js +0 -1
- package/dist/src/Components/KanbanBoard/KanbanBoard.js +0 -1
- package/dist/src/Components/Loading/Loading.js +0 -13
- package/dist/src/Components/Modal/Modal.js +0 -1
- package/dist/src/Components/MultiSelect/MultiSelect.js +0 -1
- package/dist/src/Components/NavigationBar/NavigationBar.js +0 -1
- package/dist/src/Components/NoteTextArea/NoteTextArea.js +0 -75
- package/dist/src/Components/NumberInput/NumberInput.js +0 -1
- package/dist/src/Components/PinInput/PinInput.js +0 -1
- package/dist/src/Components/ProductCard/ProductCard.js +0 -1
- package/dist/src/Components/ProductCard/ProductLabel.js +0 -1
- package/dist/src/Components/ProductCard/ProductPrice.js +0 -1
- package/dist/src/Components/ProductCard/ProductReview.js +0 -1
- package/dist/src/Components/ProductCard/ProductTags.js +0 -1
- package/dist/src/Components/ProfileCard/ProfileCard.js +0 -1
- package/dist/src/Components/ProfilePhotoViewer/ProfilePhotoViewer.js +0 -1
- package/dist/src/Components/ProgressBar/ProgressBar.js +0 -1
- package/dist/src/Components/RadioButton/RadioButton.js +0 -1
- package/dist/src/Components/Reorder/Reorder.js +0 -1
- package/dist/src/Components/Search/Search.js +0 -27
- package/dist/src/Components/SearchSelect/SearchSelect.js +0 -1
- package/dist/src/Components/SearchSelect/SelectTruncatedLabel.js +0 -1
- package/dist/src/Components/Select/Select.js +0 -1
- package/dist/src/Components/Select/Select.styles.js +0 -1
- package/dist/src/Components/SelectSearch/SelectSearch.js +0 -1
- package/dist/src/Components/SideBar/SideBar.js +0 -1
- package/dist/src/Components/SideBar/components/MenuItemBox.js +0 -1
- package/dist/src/Components/SideBar/components/MenuItems.js +0 -1
- package/dist/src/Components/SideBar/components/MenuPopoverContent.js +0 -1
- package/dist/src/Components/SideBar/components/TextTruncation.js +0 -1
- package/dist/src/Components/Skeletons/Skeletons.js +0 -1
- package/dist/src/Components/Switch/Switch.js +0 -49
- package/dist/src/Components/Table/Components/HeaderActions.js +0 -1
- package/dist/src/Components/Table/Components/Pagination.js +0 -1
- package/dist/src/Components/Table/Components/TableActions.js +0 -1
- package/dist/src/Components/Table/Components/TableBody.js +0 -1
- package/dist/src/Components/Table/Components/TableFilters.js +0 -1
- package/dist/src/Components/Table/Components/TableHeader.js +0 -1
- package/dist/src/Components/Table/Components/TableLoading.js +0 -1
- package/dist/src/Components/Table/Components/TableSearch.js +0 -1
- package/dist/src/Components/Table/Components/useTable.js +0 -1
- package/dist/src/Components/Table/Table.js +0 -1
- package/dist/src/Components/Table/TableSettings/ManageColumns.js +0 -1
- package/dist/src/Components/Table/TableSettings/TableSettings.js +0 -1
- package/dist/src/Components/Tag/Tag.js +0 -1
- package/dist/src/Components/Tag/Tag.styles.js +0 -1
- package/dist/src/Components/Timeline/Timeline.js +0 -102
- package/dist/src/Components/Toaster/Toaster.js +0 -1
- package/dist/src/Components/Toggle/TableToggle.js +0 -1
- package/dist/src/Components/ToolTip/ToolTip.js +0 -1
- package/dist/src/Constants/Sidebar.js +0 -1
- package/dist/src/Hooks/usePreferences.js +0 -1
- package/dist/src/Theme/Default/palette.js +0 -1
- package/dist/src/Theme/Default/theme.js +0 -1
- package/dist/src/Theme/Meadow/palette.js +0 -1
- package/dist/src/Theme/Meadow/theme.js +0 -1
- package/dist/src/Theme/Radiant/palette.js +0 -1
- package/dist/src/Theme/Radiant/theme.js +0 -1
- package/dist/src/Theme/Skyline/palette.js +0 -1
- package/dist/src/Theme/Skyline/theme.js +0 -1
- package/dist/src/Theme/common.js +0 -1
- package/dist/src/Theme/componentStyles.js +0 -1
- package/dist/src/Theme/fonts.js +0 -1
- package/dist/src/Theme/index.js +0 -1
- package/dist/src/Theme/space.js +0 -1
- package/dist/src/Theme/useCustomTheme.js +0 -1
- package/dist/src/Utils/table.js +0 -1
- package/dist/src/index.js +0 -1
- package/dist/src/withTheme.js +0 -1
package/dist/global.css
ADDED
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--color-primary-50: #ecddfb;
|
|
3
|
+
--color-primary-100: #d6b7f6;
|
|
4
|
+
--color-primary-200: #be8ef0;
|
|
5
|
+
--color-primary-300: #aa6ae9;
|
|
6
|
+
--color-primary-400: #944cde;
|
|
7
|
+
--color-primary-500: #9A4FE5;
|
|
8
|
+
--color-primary-600: #8b48d8;
|
|
9
|
+
--color-primary-700: #7a3ccc;
|
|
10
|
+
--color-primary-800: #6933b2;
|
|
11
|
+
--color-primary-900: #59299a;
|
|
12
|
+
|
|
13
|
+
--color-primary-opacity-8: rgba(154, 82, 226, 0.08);
|
|
14
|
+
--color-primary-opacity-16: rgba(154, 82, 226, 0.16);
|
|
15
|
+
--color-primary-opacity-24: rgba(154, 82, 226, 0.24);
|
|
16
|
+
--color-primary-opacity-28: rgba(154, 82, 226, 0.28);
|
|
17
|
+
--color-primary-opacity-32: rgba(154, 82, 226, 0.32);
|
|
18
|
+
--color-primary-opacity-40: rgba(154, 82, 226, 0.40);
|
|
19
|
+
|
|
20
|
+
--color-success-50: #e9fdf1;
|
|
21
|
+
--color-success-100: #c8f7d8;
|
|
22
|
+
--color-success-200: #a5f1bd;
|
|
23
|
+
--color-success-300: #84e7a2;
|
|
24
|
+
--color-success-400: #60d987;
|
|
25
|
+
--color-success-500: #23B85C;
|
|
26
|
+
--color-success-600: #1dbb51;
|
|
27
|
+
--color-success-700: #189946;
|
|
28
|
+
--color-success-800: #14753a;
|
|
29
|
+
--color-success-900: #0f5b2f;
|
|
30
|
+
|
|
31
|
+
--color-error-50: #fff5f2;
|
|
32
|
+
--color-error-100: #fee8e1;
|
|
33
|
+
--color-error-200: #fdd0c8;
|
|
34
|
+
--color-error-300: #fca9a0;
|
|
35
|
+
--color-error-400: #f9897c;
|
|
36
|
+
--color-error-500: #F2463A;
|
|
37
|
+
--color-error-600: #c32e23;
|
|
38
|
+
--color-error-700: #a6261d;
|
|
39
|
+
--color-error-800: #8a1f18;
|
|
40
|
+
--color-error-900: #701812;
|
|
41
|
+
|
|
42
|
+
--color-warning-50: #fffaf5;
|
|
43
|
+
--color-warning-100: #fff0e0;
|
|
44
|
+
--color-warning-200: #fedcc0;
|
|
45
|
+
--color-warning-300: #fec59e;
|
|
46
|
+
--color-warning-400: #fdaf7c;
|
|
47
|
+
--color-warning-500: #FB8F3D;
|
|
48
|
+
--color-warning-600: #db6d1e;
|
|
49
|
+
--color-warning-700: #b75d18;
|
|
50
|
+
--color-warning-800: #924c13;
|
|
51
|
+
--color-warning-900: #6e3b0e;
|
|
52
|
+
|
|
53
|
+
--color-info-50: #f1fcfe;
|
|
54
|
+
--color-info-100: #dcf6fb;
|
|
55
|
+
--color-info-200: #c0ecf7;
|
|
56
|
+
--color-info-300: #9eddef;
|
|
57
|
+
--color-info-400: #7fd0e6;
|
|
58
|
+
--color-info-500: #5FC4DE;
|
|
59
|
+
--color-info-600: #4bb8d6;
|
|
60
|
+
--color-info-700: #3aaacb;
|
|
61
|
+
--color-info-800: #2a9dc0;
|
|
62
|
+
--color-info-900: #1b8fb5;
|
|
63
|
+
|
|
64
|
+
--color-gray-50: #f7fafc;
|
|
65
|
+
--color-gray-100: #edf2f7;
|
|
66
|
+
--color-gray-200: #e2e8f0;
|
|
67
|
+
--color-gray-300: #cbd5e0;
|
|
68
|
+
--color-gray-400: #a0aec0;
|
|
69
|
+
--color-gray-500: #718096;
|
|
70
|
+
--color-gray-600: #4a5568;
|
|
71
|
+
--color-gray-700: #2d3748;
|
|
72
|
+
--color-gray-800: #1a202c;
|
|
73
|
+
--color-gray-900: #171923;
|
|
74
|
+
|
|
75
|
+
--color-red-50: #fff5f5;
|
|
76
|
+
--color-red-100: #fed7d7;
|
|
77
|
+
--color-red-200: #feb2b2;
|
|
78
|
+
--color-red-300: #fc8181;
|
|
79
|
+
--color-red-400: #f56565;
|
|
80
|
+
--color-red-500: #e53e3e;
|
|
81
|
+
--color-red-600: #c53030;
|
|
82
|
+
--color-red-700: #9b2c2c;
|
|
83
|
+
--color-red-800: #822727;
|
|
84
|
+
--color-red-900: #63171b;
|
|
85
|
+
|
|
86
|
+
--color-orange-50: #fffaf0;
|
|
87
|
+
--color-orange-100: #feebc8;
|
|
88
|
+
--color-orange-200: #fbd38d;
|
|
89
|
+
--color-orange-300: #f6ad55;
|
|
90
|
+
--color-orange-400: #ed8936;
|
|
91
|
+
--color-orange-500: #dd6b20;
|
|
92
|
+
--color-orange-600: #c05621;
|
|
93
|
+
--color-orange-700: #9c4221;
|
|
94
|
+
--color-orange-800: #7b341e;
|
|
95
|
+
--color-orange-900: #652b19;
|
|
96
|
+
|
|
97
|
+
--color-yellow-50: #fffff0;
|
|
98
|
+
--color-yellow-100: #fefcbf;
|
|
99
|
+
--color-yellow-200: #faf089;
|
|
100
|
+
--color-yellow-300: #f6e05e;
|
|
101
|
+
--color-yellow-400: #ecc94b;
|
|
102
|
+
--color-yellow-500: #d69e2e;
|
|
103
|
+
--color-yellow-600: #b7791f;
|
|
104
|
+
--color-yellow-700: #975a16;
|
|
105
|
+
--color-yellow-800: #744210;
|
|
106
|
+
--color-yellow-900: #5f370e;
|
|
107
|
+
|
|
108
|
+
--color-green-50: #f0fff4;
|
|
109
|
+
--color-green-100: #c6f6d5;
|
|
110
|
+
--color-green-200: #9ae6b4;
|
|
111
|
+
--color-green-300: #68d391;
|
|
112
|
+
--color-green-400: #48bb78;
|
|
113
|
+
--color-green-500: #38a169;
|
|
114
|
+
--color-green-600: #2f855a;
|
|
115
|
+
--color-green-700: #276749;
|
|
116
|
+
--color-green-800: #22543d;
|
|
117
|
+
--color-green-900: #1c4532;
|
|
118
|
+
|
|
119
|
+
--color-teal-50: #e6fffa;
|
|
120
|
+
--color-teal-100: #b2f5ea;
|
|
121
|
+
--color-teal-200: #81e6d9;
|
|
122
|
+
--color-teal-300: #4fd1c5;
|
|
123
|
+
--color-teal-400: #38b2ac;
|
|
124
|
+
--color-teal-500: #319795;
|
|
125
|
+
--color-teal-600: #2c7a7b;
|
|
126
|
+
--color-teal-700: #285e61;
|
|
127
|
+
--color-teal-800: #234e52;
|
|
128
|
+
--color-teal-900: #1d4044;
|
|
129
|
+
|
|
130
|
+
--color-blue-50: #ebf8ff;
|
|
131
|
+
--color-blue-100: #bee3f8;
|
|
132
|
+
--color-blue-200: #90cdf4;
|
|
133
|
+
--color-blue-300: #63b3ed;
|
|
134
|
+
--color-blue-400: #4299e1;
|
|
135
|
+
--color-blue-500: #3182ce;
|
|
136
|
+
--color-blue-600: #2b6cb0;
|
|
137
|
+
--color-blue-700: #2c5282;
|
|
138
|
+
--color-blue-800: #2a4365;
|
|
139
|
+
--color-blue-900: #1a365d;
|
|
140
|
+
|
|
141
|
+
--color-cyan-50: #edfdfd;
|
|
142
|
+
--color-cyan-100: #c4f1f9;
|
|
143
|
+
--color-cyan-200: #9decf9;
|
|
144
|
+
--color-cyan-300: #76e4f7;
|
|
145
|
+
--color-cyan-400: #0bc5ea;
|
|
146
|
+
--color-cyan-500: #00b5d8;
|
|
147
|
+
--color-cyan-600: #00a3c4;
|
|
148
|
+
--color-cyan-700: #0987a0;
|
|
149
|
+
--color-cyan-800: #086f83;
|
|
150
|
+
--color-cyan-900: #065666;
|
|
151
|
+
|
|
152
|
+
--color-purple-50: #faf5ff;
|
|
153
|
+
--color-purple-100: #e9d8fd;
|
|
154
|
+
--color-purple-200: #d6bcfa;
|
|
155
|
+
--color-purple-300: #b794f4;
|
|
156
|
+
--color-purple-400: #9f7aea;
|
|
157
|
+
--color-purple-500: #805ad5;
|
|
158
|
+
--color-purple-600: #6b46c1;
|
|
159
|
+
--color-purple-700: #553c9a;
|
|
160
|
+
--color-purple-800: #44337a;
|
|
161
|
+
--color-purple-900: #322659;
|
|
162
|
+
|
|
163
|
+
--color-pink-50: #fff5f7;
|
|
164
|
+
--color-pink-100: #fed7e2;
|
|
165
|
+
--color-pink-200: #fbb6ce;
|
|
166
|
+
--color-pink-300: #f687b3;
|
|
167
|
+
--color-pink-400: #ed64a6;
|
|
168
|
+
--color-pink-500: #d53f8c;
|
|
169
|
+
--color-pink-600: #b83280;
|
|
170
|
+
--color-pink-700: #97266d;
|
|
171
|
+
--color-pink-800: #702459;
|
|
172
|
+
--color-pink-900: #521b41;
|
|
173
|
+
|
|
174
|
+
--color-bg-main: #f8f9fa;
|
|
175
|
+
--color-bg-secondary: #f1f1f1;
|
|
176
|
+
--color-bg-tertiary: #ececec;
|
|
177
|
+
--color-bg-quaternary: #e2e6ea;
|
|
178
|
+
--color-bg-light: #fafafa;
|
|
179
|
+
--color-bg-medium: #eaeaea;
|
|
180
|
+
--color-bg-accent: #e5e5e5;
|
|
181
|
+
--color-bg-subtle: #f5f6f7;
|
|
182
|
+
--color-bg-muted: #dfe3e6;
|
|
183
|
+
--color-bg-neutral: #ebedef;
|
|
184
|
+
--color-bg-base: #FBFBFB;
|
|
185
|
+
--color-bg-table-header: #F6F6F6;
|
|
186
|
+
|
|
187
|
+
--color-text-heading: #161B25;
|
|
188
|
+
--color-text-body: #555A64;
|
|
189
|
+
--color-text-subtle: #434853;
|
|
190
|
+
--color-text-input: #717680;
|
|
191
|
+
|
|
192
|
+
--color-heading-opacity-4: #161B250A;
|
|
193
|
+
--color-heading-opacity-8: #161B2512;
|
|
194
|
+
|
|
195
|
+
--color-border-default: #D6D8DB;
|
|
196
|
+
--color-border-light: #E8E8E8;
|
|
197
|
+
--color-border-dark: #adb5bd;
|
|
198
|
+
--color-border-input: #6c757d;
|
|
199
|
+
--color-border-error: #dc3545;
|
|
200
|
+
--color-border-success: #28a745;
|
|
201
|
+
--color-border-warning: #ffc107;
|
|
202
|
+
--color-border-info: #17a2b8;
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
/* --color-dropshadow-default: #9A52E247; */
|
|
207
|
+
|
|
208
|
+
--color-transparent: rgba(0, 0, 0, 0);
|
|
209
|
+
--color-black: #000000;
|
|
210
|
+
--color-white: #ffffff;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
[data-theme="theme2"] {
|
|
214
|
+
--color-primary-500: #3182ce;
|
|
215
|
+
/* blue */
|
|
216
|
+
--color-success-500: #38a169;
|
|
217
|
+
--color-error-500: #e53e3e;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
[data-theme="theme3"] {
|
|
221
|
+
--color-primary-500: #00b5d8;
|
|
222
|
+
/* cyan */
|
|
223
|
+
--color-success-500: #319795;
|
|
224
|
+
--color-error-500: #d53f8c;
|
|
225
|
+
}
|
package/dist/index.css
ADDED
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import Accordian from "./Components/Accordion/Accordion";
|
|
2
|
+
import AlertDialog from "./Components/AlertDialog/AlertDialog";
|
|
3
|
+
import ApexBarChart from "./Components/Apexcharts/ApexBarChart/ApexBarChart";
|
|
4
|
+
import ApexPieChart from "./Components/Apexcharts/ApexPieChart/ApexPieChart";
|
|
5
|
+
import Breadcrumbs from "./Components/Breadcrumbs/Breadcrumbs";
|
|
6
|
+
import Button from "./Components/Button/Button";
|
|
7
|
+
import ButtonGroupIcon from "./Components/ButtonGroupIcon/ButtonGroupIcon";
|
|
8
|
+
import Card from "./Components/Card/Card";
|
|
9
|
+
import Checkbox from "./Components/Checkbox/Checkbox";
|
|
10
|
+
import ContactForm from "./Components/ContactForm/ContactForm";
|
|
11
|
+
import DatePicker from "./Components/DatePicker/DatePicker";
|
|
12
|
+
import Drawer, { DrawerHeader, DrawerBody, DrawerFooter } from "./Components/Drawer/Drawer";
|
|
13
|
+
import Dropdown from "./Components/Dropdown/DropDown";
|
|
14
|
+
import Editor from "./Components/Editor/Editor";
|
|
15
|
+
import FileUpload from "./Components/FileUpload/FileUpload";
|
|
16
|
+
import FormWrapper from "./Components/Form/FormWrapper";
|
|
17
|
+
import Header from "./Components/Header/Header";
|
|
18
|
+
import HeaderActions from "./Components/Header/HeaderActions";
|
|
19
|
+
import InputTextArea from "./Components/InputTextArea/InputTextArea";
|
|
20
|
+
import KanbanBoard from "./Components/KanbanBoard/KanbanBoard";
|
|
21
|
+
import Loading from "./Components/Loading/Loading";
|
|
22
|
+
import Modal, { ModalHeader, ModalBody, ModalFooter } from "./Components/Modal/Modal";
|
|
23
|
+
import MultiSelect from "./Components/MultiSelect/MultiSelect";
|
|
24
|
+
import NavigationBar from "./Components/NavigationBar/NavigationBar";
|
|
25
|
+
import NoteTextArea from "./Components/NoteTextArea/NoteTextArea";
|
|
26
|
+
import NumberInput from "./Components/NumberInput/NumberInput";
|
|
27
|
+
import PinInput from "./Components/PinInput/PinInput";
|
|
28
|
+
import ProfileCard, { ProfileCardHeader, ProfileCardBody, ProfileCardFooter } from "./Components/ProfileCard/ProfileCard";
|
|
29
|
+
import ProfilePhotoViewer from "./Components/ProfilePhotoViewer/ProfilePhotoViewer";
|
|
30
|
+
import ProgressBar from "./Components/ProgressBar/ProgressBar";
|
|
31
|
+
import { RadioButton, RadioButtonGroup } from "./Components/RadioButton/RadioButton";
|
|
32
|
+
import Reorder from "./Components/Reorder/Reorder";
|
|
33
|
+
import Search from "./Components/Search/Search";
|
|
34
|
+
import Select from "./Components/Select/Select";
|
|
35
|
+
import SearchSelect from "./Components/SearchSelect/SearchSelect";
|
|
36
|
+
import SelectSearch from "./Components/SelectSearch/SelectSearch";
|
|
37
|
+
import SideBar from "./Components/SideBar/SideBar";
|
|
38
|
+
import Skeletons from "./Components/Skeletons/Skeletons";
|
|
39
|
+
import Switch from "./Components/Switch/Switch";
|
|
40
|
+
import Table from "./Components/Table/Table";
|
|
41
|
+
import Tag from "./Components/Tag/Tag";
|
|
42
|
+
import TextInput from "./Components/Input/TextInput";
|
|
43
|
+
import Timeline from "./Components/Timeline/Timeline";
|
|
44
|
+
import Toaster, { useToaster } from "./Components/Toaster/Toaster";
|
|
45
|
+
import ToolTip from "./Components/ToolTip/ToolTip";
|
|
46
|
+
import VerifyEmailOtp from "./Components/EmailCards/VerifyEmailOtp/VerifyEmailOtp";
|
|
47
|
+
import TableToggle from "./Components/Toggle/TableToggle";
|
|
48
|
+
import withTheme from "./withTheme";
|
|
49
|
+
import { useCustomTheme } from "./Theme/useCustomTheme";
|
|
50
|
+
import { ThemesList } from "./Theme";
|
|
51
|
+
import { debounce } from "./Utils/table";
|
|
52
|
+
import ProductCard from "./Components/ProductCard/ProductCard";
|
|
53
|
+
export { Accordian, AlertDialog, ApexBarChart, ApexPieChart, Breadcrumbs, Button, ButtonGroupIcon, Card, Checkbox, ContactForm, DatePicker, Drawer, DrawerHeader, DrawerBody, DrawerFooter, Dropdown, Editor, FileUpload, FormWrapper, Header, HeaderActions, InputTextArea, KanbanBoard, Loading, Modal, ModalHeader, ModalBody, ModalFooter, NavigationBar, NoteTextArea, MultiSelect, NumberInput, PinInput, ProductCard, ProfileCard, ProfileCardHeader, ProfileCardBody, ProfileCardFooter, ProfilePhotoViewer, ProgressBar, RadioButton, RadioButtonGroup, Reorder, Search, Select, SearchSelect, SelectSearch, SideBar, Skeletons, Switch, Table, TableToggle, Tag, TextInput, Timeline, Toaster, ToolTip, useToaster, VerifyEmailOtp, useCustomTheme, ThemesList, debounce, };
|
|
54
|
+
export default withTheme;
|