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
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
var react_1 = require("@chakra-ui/react");
|
|
18
|
+
var palette_1 = __importDefault(require("./palette"));
|
|
19
|
+
var common_1 = __importDefault(require("../common"));
|
|
20
|
+
var fonts_1 = __importDefault(require("../fonts"));
|
|
21
|
+
var componentStyles_1 = require("../componentStyles");
|
|
22
|
+
var skyline = __assign(__assign({ colors: palette_1.default }, fonts_1.default), common_1.default);
|
|
23
|
+
exports.default = (0, react_1.extendTheme)(__assign(__assign({}, skyline), { components: componentStyles_1.componentStyles }));
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
declare const common: {
|
|
2
|
+
lineHeights: {
|
|
3
|
+
normal: string;
|
|
4
|
+
none: number;
|
|
5
|
+
shorter: number;
|
|
6
|
+
short: number;
|
|
7
|
+
base: number;
|
|
8
|
+
tall: number;
|
|
9
|
+
taller: string;
|
|
10
|
+
"3": string;
|
|
11
|
+
"4": string;
|
|
12
|
+
"5": string;
|
|
13
|
+
"6": string;
|
|
14
|
+
"7": string;
|
|
15
|
+
"8": string;
|
|
16
|
+
"9": string;
|
|
17
|
+
"10": string;
|
|
18
|
+
};
|
|
19
|
+
letterSpacings: {
|
|
20
|
+
tighter: string;
|
|
21
|
+
tight: string;
|
|
22
|
+
normal: string;
|
|
23
|
+
wide: string;
|
|
24
|
+
wider: string;
|
|
25
|
+
widest: string;
|
|
26
|
+
};
|
|
27
|
+
space: {
|
|
28
|
+
px: string;
|
|
29
|
+
0: string;
|
|
30
|
+
1: string;
|
|
31
|
+
2: string;
|
|
32
|
+
3: string;
|
|
33
|
+
4: string;
|
|
34
|
+
5: string;
|
|
35
|
+
6: string;
|
|
36
|
+
7: string;
|
|
37
|
+
8: string;
|
|
38
|
+
9: string;
|
|
39
|
+
10: string;
|
|
40
|
+
12: string;
|
|
41
|
+
14: string;
|
|
42
|
+
16: string;
|
|
43
|
+
20: string;
|
|
44
|
+
24: string;
|
|
45
|
+
28: string;
|
|
46
|
+
32: string;
|
|
47
|
+
36: string;
|
|
48
|
+
40: string;
|
|
49
|
+
44: string;
|
|
50
|
+
48: string;
|
|
51
|
+
52: string;
|
|
52
|
+
56: string;
|
|
53
|
+
60: string;
|
|
54
|
+
64: string;
|
|
55
|
+
72: string;
|
|
56
|
+
80: string;
|
|
57
|
+
96: string;
|
|
58
|
+
};
|
|
59
|
+
sizes: {
|
|
60
|
+
full: string;
|
|
61
|
+
screenW: string;
|
|
62
|
+
screenH: string;
|
|
63
|
+
max: string;
|
|
64
|
+
min: string;
|
|
65
|
+
'3xs': string;
|
|
66
|
+
'2xs': string;
|
|
67
|
+
xs: string;
|
|
68
|
+
sm: string;
|
|
69
|
+
md: string;
|
|
70
|
+
lg: string;
|
|
71
|
+
xl: string;
|
|
72
|
+
'2xl': string;
|
|
73
|
+
'3xl': string;
|
|
74
|
+
'4xl': string;
|
|
75
|
+
'5xl': string;
|
|
76
|
+
'6xl': string;
|
|
77
|
+
'7xl': string;
|
|
78
|
+
'8xl': string;
|
|
79
|
+
container: {
|
|
80
|
+
sm: string;
|
|
81
|
+
md: string;
|
|
82
|
+
lg: string;
|
|
83
|
+
xl: string;
|
|
84
|
+
};
|
|
85
|
+
px: string;
|
|
86
|
+
0: string;
|
|
87
|
+
1: string;
|
|
88
|
+
2: string;
|
|
89
|
+
3: string;
|
|
90
|
+
4: string;
|
|
91
|
+
5: string;
|
|
92
|
+
6: string;
|
|
93
|
+
7: string;
|
|
94
|
+
8: string;
|
|
95
|
+
9: string;
|
|
96
|
+
10: string;
|
|
97
|
+
12: string;
|
|
98
|
+
14: string;
|
|
99
|
+
16: string;
|
|
100
|
+
20: string;
|
|
101
|
+
24: string;
|
|
102
|
+
28: string;
|
|
103
|
+
32: string;
|
|
104
|
+
36: string;
|
|
105
|
+
40: string;
|
|
106
|
+
44: string;
|
|
107
|
+
48: string;
|
|
108
|
+
52: string;
|
|
109
|
+
56: string;
|
|
110
|
+
60: string;
|
|
111
|
+
64: string;
|
|
112
|
+
72: string;
|
|
113
|
+
80: string;
|
|
114
|
+
96: string;
|
|
115
|
+
};
|
|
116
|
+
breakpoints: {
|
|
117
|
+
sm: string;
|
|
118
|
+
md: string;
|
|
119
|
+
lg: string;
|
|
120
|
+
xl: string;
|
|
121
|
+
"2xl": string;
|
|
122
|
+
};
|
|
123
|
+
shadows: {
|
|
124
|
+
xs: string;
|
|
125
|
+
sm: string;
|
|
126
|
+
base: string;
|
|
127
|
+
md: string;
|
|
128
|
+
lg: string;
|
|
129
|
+
xl: string;
|
|
130
|
+
"2xl": string;
|
|
131
|
+
outline: string;
|
|
132
|
+
inner: string;
|
|
133
|
+
none: string;
|
|
134
|
+
darkLg: string;
|
|
135
|
+
};
|
|
136
|
+
radii: {
|
|
137
|
+
none: string;
|
|
138
|
+
sm: string;
|
|
139
|
+
base: string;
|
|
140
|
+
md: string;
|
|
141
|
+
lg: string;
|
|
142
|
+
xl: string;
|
|
143
|
+
"2xl": string;
|
|
144
|
+
"3xl": string;
|
|
145
|
+
full: string;
|
|
146
|
+
};
|
|
147
|
+
zIndices: {
|
|
148
|
+
hide: number;
|
|
149
|
+
auto: string;
|
|
150
|
+
base: number;
|
|
151
|
+
docked: number;
|
|
152
|
+
dropdown: number;
|
|
153
|
+
sticky: number;
|
|
154
|
+
banner: number;
|
|
155
|
+
overlay: number;
|
|
156
|
+
modal: number;
|
|
157
|
+
popover: number;
|
|
158
|
+
skipLink: number;
|
|
159
|
+
toast: number;
|
|
160
|
+
tooltip: number;
|
|
161
|
+
};
|
|
162
|
+
config: {
|
|
163
|
+
cssVarPrefix: string;
|
|
164
|
+
};
|
|
165
|
+
};
|
|
166
|
+
export default common;
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
var space_1 = __importDefault(require("./space"));
|
|
18
|
+
var common = {
|
|
19
|
+
lineHeights: {
|
|
20
|
+
normal: "normal",
|
|
21
|
+
none: 1,
|
|
22
|
+
shorter: 1.25,
|
|
23
|
+
short: 1.375,
|
|
24
|
+
base: 1.5,
|
|
25
|
+
tall: 1.625,
|
|
26
|
+
taller: "2",
|
|
27
|
+
"3": ".75rem",
|
|
28
|
+
"4": "1rem",
|
|
29
|
+
"5": "1.25rem",
|
|
30
|
+
"6": "1.5rem",
|
|
31
|
+
"7": "1.75rem",
|
|
32
|
+
"8": "2rem",
|
|
33
|
+
"9": "2.25rem",
|
|
34
|
+
"10": "2.5rem",
|
|
35
|
+
},
|
|
36
|
+
letterSpacings: {
|
|
37
|
+
tighter: "-0.05em",
|
|
38
|
+
tight: "-0.025em",
|
|
39
|
+
normal: "0",
|
|
40
|
+
wide: "0.025em",
|
|
41
|
+
wider: "0.05em",
|
|
42
|
+
widest: "0.1em",
|
|
43
|
+
},
|
|
44
|
+
space: space_1.default,
|
|
45
|
+
sizes: __assign(__assign({}, space_1.default), { full: "100%", screenW: "100vw", screenH: "100vh", max: 'max-content', min: 'min-content', '3xs': '14rem', '2xs': '16rem', xs: '20rem', sm: '24rem', md: '28rem', lg: '32rem', xl: '36rem', '2xl': '42rem', '3xl': '48rem', '4xl': '56rem', '5xl': '64rem', '6xl': '72rem', '7xl': '80rem', '8xl': '90rem', container: {
|
|
46
|
+
sm: '640px',
|
|
47
|
+
md: '768px',
|
|
48
|
+
lg: '1024px',
|
|
49
|
+
xl: '1280px',
|
|
50
|
+
} }),
|
|
51
|
+
breakpoints: {
|
|
52
|
+
sm: "30em",
|
|
53
|
+
md: "48em",
|
|
54
|
+
lg: "62em",
|
|
55
|
+
xl: "80em",
|
|
56
|
+
"2xl": "96em",
|
|
57
|
+
},
|
|
58
|
+
shadows: {
|
|
59
|
+
xs: "0 0 0 1px rgba(0, 0, 0, 0.05)",
|
|
60
|
+
sm: "0 1px 2px 0 rgba(0, 0, 0, 0.05)",
|
|
61
|
+
base: "0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)",
|
|
62
|
+
md: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",
|
|
63
|
+
lg: "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",
|
|
64
|
+
xl: "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)",
|
|
65
|
+
"2xl": "0 25px 50px -12px rgba(0, 0, 0, 0.25)",
|
|
66
|
+
outline: "0 0 0 3px rgba(66, 153, 225, 0.6)",
|
|
67
|
+
inner: "inset 0 2px 4px 0 rgba(0, 0, 0, 0.06)",
|
|
68
|
+
none: "none",
|
|
69
|
+
darkLg: "0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.5)",
|
|
70
|
+
},
|
|
71
|
+
radii: {
|
|
72
|
+
none: "0",
|
|
73
|
+
sm: "0.125rem",
|
|
74
|
+
base: "0.25rem",
|
|
75
|
+
md: "0.375rem",
|
|
76
|
+
lg: "0.5rem",
|
|
77
|
+
xl: "0.75rem",
|
|
78
|
+
"2xl": "1rem",
|
|
79
|
+
"3xl": "1.5rem",
|
|
80
|
+
full: "9999px",
|
|
81
|
+
},
|
|
82
|
+
zIndices: {
|
|
83
|
+
hide: -1,
|
|
84
|
+
auto: "auto",
|
|
85
|
+
base: 0,
|
|
86
|
+
docked: 10,
|
|
87
|
+
dropdown: 1000,
|
|
88
|
+
sticky: 1100,
|
|
89
|
+
banner: 1200,
|
|
90
|
+
overlay: 1300,
|
|
91
|
+
modal: 1400,
|
|
92
|
+
popover: 1500,
|
|
93
|
+
skipLink: 1600,
|
|
94
|
+
toast: 1700,
|
|
95
|
+
tooltip: 1800,
|
|
96
|
+
},
|
|
97
|
+
config: {
|
|
98
|
+
cssVarPrefix: 'ck',
|
|
99
|
+
}
|
|
100
|
+
};
|
|
101
|
+
exports.default = common;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const componentStyles: {
|
|
2
|
+
Checkbox: import("@chakra-ui/theme").ComponentStyleConfig;
|
|
3
|
+
Input: import("@chakra-ui/theme").ComponentStyleConfig;
|
|
4
|
+
Button: import("@chakra-ui/theme").ComponentStyleConfig;
|
|
5
|
+
Select: import("@chakra-ui/theme").ComponentStyleConfig;
|
|
6
|
+
Tag: import("@chakra-ui/theme").ComponentStyleConfig;
|
|
7
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.componentStyles = void 0;
|
|
4
|
+
var Button_styles_1 = require("../Components/Button/Button.styles");
|
|
5
|
+
var Checkbox_styles_1 = require("../Components/Checkbox/Checkbox.styles");
|
|
6
|
+
var TextInput_styles_1 = require("../Components/Input/TextInput.styles");
|
|
7
|
+
var Select_styles_1 = require("../Components/Select/Select.styles");
|
|
8
|
+
var Tag_styles_1 = require("../Components/Tag/Tag.styles");
|
|
9
|
+
exports.componentStyles = {
|
|
10
|
+
Checkbox: Checkbox_styles_1.Checkbox,
|
|
11
|
+
Input: TextInput_styles_1.Input,
|
|
12
|
+
Button: Button_styles_1.Button,
|
|
13
|
+
Select: Select_styles_1.Select,
|
|
14
|
+
Tag: Tag_styles_1.Tag,
|
|
15
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const fonts: {
|
|
2
|
+
fonts: {
|
|
3
|
+
body: string;
|
|
4
|
+
heading: string;
|
|
5
|
+
mono: string;
|
|
6
|
+
};
|
|
7
|
+
fontSizes: {
|
|
8
|
+
xs: string;
|
|
9
|
+
sm: string;
|
|
10
|
+
md: string;
|
|
11
|
+
lg: string;
|
|
12
|
+
xl: string;
|
|
13
|
+
"2xl": string;
|
|
14
|
+
"3xl": string;
|
|
15
|
+
"4xl": string;
|
|
16
|
+
"5xl": string;
|
|
17
|
+
"6xl": string;
|
|
18
|
+
"7xl": string;
|
|
19
|
+
"8xl": string;
|
|
20
|
+
"9xl": string;
|
|
21
|
+
};
|
|
22
|
+
fontWeights: {
|
|
23
|
+
hairline: number;
|
|
24
|
+
thin: number;
|
|
25
|
+
light: number;
|
|
26
|
+
normal: number;
|
|
27
|
+
medium: number;
|
|
28
|
+
semibold: number;
|
|
29
|
+
bold: number;
|
|
30
|
+
extrabold: number;
|
|
31
|
+
black: number;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export default fonts;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Supports weights 100-900
|
|
3
|
+
// import "@fontsource-variable/inter";
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
var fonts = {
|
|
6
|
+
fonts: {
|
|
7
|
+
body: "Inter Variable, sans-serif",
|
|
8
|
+
heading: "Inter Variable, sans-serif",
|
|
9
|
+
mono: "Inter Variable, sans-serif",
|
|
10
|
+
// body: "Ubuntu Sans, serif",
|
|
11
|
+
// heading: "Ubuntu Sans, serif",
|
|
12
|
+
// mono: "Ubuntu Sans, monospace",
|
|
13
|
+
},
|
|
14
|
+
fontSizes: {
|
|
15
|
+
xs: "0.75rem",
|
|
16
|
+
sm: "0.875rem",
|
|
17
|
+
md: "1rem",
|
|
18
|
+
lg: "1.125rem",
|
|
19
|
+
xl: "1.25rem",
|
|
20
|
+
"2xl": "1.5rem",
|
|
21
|
+
"3xl": "1.875rem",
|
|
22
|
+
"4xl": "2.25rem",
|
|
23
|
+
"5xl": "3rem",
|
|
24
|
+
"6xl": "3.75rem",
|
|
25
|
+
"7xl": "4.5rem",
|
|
26
|
+
"8xl": "6rem",
|
|
27
|
+
"9xl": "8rem",
|
|
28
|
+
},
|
|
29
|
+
fontWeights: {
|
|
30
|
+
hairline: 100,
|
|
31
|
+
thin: 200,
|
|
32
|
+
light: 300,
|
|
33
|
+
normal: 400,
|
|
34
|
+
medium: 500,
|
|
35
|
+
semibold: 600,
|
|
36
|
+
bold: 700,
|
|
37
|
+
extrabold: 800,
|
|
38
|
+
black: 900,
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
exports.default = fonts;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import lavender from "./Default/theme";
|
|
2
|
+
import meadow from "./Meadow/theme";
|
|
3
|
+
import radiant from "./Radiant/theme";
|
|
4
|
+
import skyline from "./Skyline/theme";
|
|
5
|
+
export { skyline, meadow, radiant, lavender };
|
|
6
|
+
export declare const ThemesList: {
|
|
7
|
+
skyline: Record<string, any>;
|
|
8
|
+
meadow: Record<string, any>;
|
|
9
|
+
radiant: Record<string, any>;
|
|
10
|
+
lavender: Record<string, any>;
|
|
11
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ThemesList = exports.lavender = exports.radiant = exports.meadow = exports.skyline = void 0;
|
|
7
|
+
var theme_1 = __importDefault(require("./Default/theme"));
|
|
8
|
+
exports.lavender = theme_1.default;
|
|
9
|
+
var theme_2 = __importDefault(require("./Meadow/theme"));
|
|
10
|
+
exports.meadow = theme_2.default;
|
|
11
|
+
var theme_3 = __importDefault(require("./Radiant/theme"));
|
|
12
|
+
exports.radiant = theme_3.default;
|
|
13
|
+
var theme_4 = __importDefault(require("./Skyline/theme"));
|
|
14
|
+
exports.skyline = theme_4.default;
|
|
15
|
+
exports.ThemesList = {
|
|
16
|
+
skyline: theme_4.default,
|
|
17
|
+
meadow: theme_2.default,
|
|
18
|
+
radiant: theme_3.default,
|
|
19
|
+
lavender: theme_1.default,
|
|
20
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
declare const space: {
|
|
2
|
+
px: string;
|
|
3
|
+
0: string;
|
|
4
|
+
1: string;
|
|
5
|
+
2: string;
|
|
6
|
+
3: string;
|
|
7
|
+
4: string;
|
|
8
|
+
5: string;
|
|
9
|
+
6: string;
|
|
10
|
+
7: string;
|
|
11
|
+
8: string;
|
|
12
|
+
9: string;
|
|
13
|
+
10: string;
|
|
14
|
+
12: string;
|
|
15
|
+
14: string;
|
|
16
|
+
16: string;
|
|
17
|
+
20: string;
|
|
18
|
+
24: string;
|
|
19
|
+
28: string;
|
|
20
|
+
32: string;
|
|
21
|
+
36: string;
|
|
22
|
+
40: string;
|
|
23
|
+
44: string;
|
|
24
|
+
48: string;
|
|
25
|
+
52: string;
|
|
26
|
+
56: string;
|
|
27
|
+
60: string;
|
|
28
|
+
64: string;
|
|
29
|
+
72: string;
|
|
30
|
+
80: string;
|
|
31
|
+
96: string;
|
|
32
|
+
};
|
|
33
|
+
export default space;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
var space = {
|
|
4
|
+
px: "1px",
|
|
5
|
+
0: "0",
|
|
6
|
+
1: "0.25rem",
|
|
7
|
+
2: "0.5rem",
|
|
8
|
+
3: "0.75rem",
|
|
9
|
+
4: "1rem",
|
|
10
|
+
5: "1.25rem",
|
|
11
|
+
6: "1.5rem",
|
|
12
|
+
7: "1.75rem",
|
|
13
|
+
8: "2rem",
|
|
14
|
+
9: "2.25rem",
|
|
15
|
+
10: "2.5rem",
|
|
16
|
+
12: "3rem",
|
|
17
|
+
14: "3.5rem",
|
|
18
|
+
16: "4rem",
|
|
19
|
+
20: "5rem",
|
|
20
|
+
24: "6rem",
|
|
21
|
+
28: "7rem",
|
|
22
|
+
32: "8rem",
|
|
23
|
+
36: "9rem",
|
|
24
|
+
40: "10rem",
|
|
25
|
+
44: "11rem",
|
|
26
|
+
48: "12rem",
|
|
27
|
+
52: "13rem",
|
|
28
|
+
56: "14rem",
|
|
29
|
+
60: "15rem",
|
|
30
|
+
64: "16rem",
|
|
31
|
+
72: "18rem",
|
|
32
|
+
80: "20rem",
|
|
33
|
+
96: "24rem", // 384px
|
|
34
|
+
};
|
|
35
|
+
exports.default = space;
|