pixelize-design-library 2.1.20 → 2.1.22
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 +158 -0
- package/dist/Assets/defaultLogo.d.ts +3 -0
- package/dist/Assets/defaultLogo.js +15 -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/{src/Components/AlertDialog/AlertDialogProps.tsx → dist/Components/AlertDialog/AlertDialogProps.d.ts} +2 -9
- 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/{src/Components/Breadcrumbs/BreadcrumbsProps.tsx → dist/Components/Breadcrumbs/BreadcrumbsProps.d.ts} +1 -2
- 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/{src/Components/Buttons/ButtonsProps.ts → dist/Components/Buttons/ButtonsProps.d.ts} +1 -1
- 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/{src/Components/Input/Input/InputProps.tsx → dist/Components/Input/Input/InputProps.d.ts} +1 -2
- 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/{src/Components/Input/TextInput.styles.ts → dist/Components/Input/TextInput.styles.js} +19 -20
- package/{src/Components/Input/TextInputProps.tsx → dist/Components/Input/TextInputProps.d.ts} +2 -21
- 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/{src/Components/InputTextArea/InputTextAreaProps.tsx → dist/Components/InputTextArea/InputTextAreaProps.d.ts} +1 -2
- 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/{src/Components/PinInputs/PinInputsProps.tsx → dist/Components/PinInputs/PinInputsProps.d.ts} +1 -1
- 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/{src/Components/ProductCard/ProductCardProps.tsx → dist/Components/ProductCard/ProductCardProps.d.ts} +14 -15
- 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/{src/Components/ProgressBar/ProgressBarProps.tsx → dist/Components/ProgressBar/ProgressBarProps.d.ts} +5 -6
- 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/Slider/Slider.d.ts +8 -0
- package/dist/Components/Slider/Slider.js +57 -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/{src/Components/Table/TableToDo.tsx → dist/Components/Table/TableToDo.js} +100 -105
- 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/{src/Components/Toaster/ToasterProps.tsx → dist/Components/Toaster/ToasterProps.d.ts} +6 -9
- 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/{src/Components/Toggle/TableToggleProps.ts → dist/Components/Toggle/TableToggleProps.d.ts} +2 -3
- 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/{src/Components/Trail/TrailWorks.tsx → dist/Components/Trail/TrailWorks.js} +65 -108
- 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 +269 -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/{src/Theme/Dark/theme.ts → dist/Theme/Dark/theme.js} +79 -74
- 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/{src/Theme/common.ts → dist/Theme/common.js} +22 -30
- 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/{src/Theme/index.ts → dist/Theme/index.d.ts} +6 -8
- 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/index.d.ts +55 -1468
- package/dist/index.js +148 -263
- package/dist/withTheme.d.ts +3 -0
- package/dist/withTheme.js +28 -0
- package/package.json +10 -24
- package/.github/workflows/build.yml +0 -31
- package/src/Components/Accordion/Accordion.tsx +0 -59
- package/src/Components/Accordion/AccordionProps.tsx +0 -22
- package/src/Components/AlertDialog/AlertDialog.tsx +0 -69
- package/src/Components/Apexcharts/ApexBarChart/ApexBarChart.stories.tsx +0 -42
- package/src/Components/Apexcharts/ApexBarChart/ApexBarChart.tsx +0 -80
- package/src/Components/Apexcharts/ApexBarChart/ApexBarChartProps.tsx +0 -19
- package/src/Components/Apexcharts/ApexPieChart/ApexPieChart.stories.tsx +0 -34
- package/src/Components/Apexcharts/ApexPieChart/ApexPieChart.tsx +0 -42
- package/src/Components/Apexcharts/ApexPieChart/ApexPieChartProps.tsx +0 -42
- package/src/Components/Breadcrumbs/Breadcrumbs.stories.tsx +0 -27
- package/src/Components/Breadcrumbs/Breadcrumbs.tsx +0 -42
- package/src/Components/Button/Button.stories.tsx +0 -33
- package/src/Components/Button/Button.styles.ts +0 -104
- package/src/Components/Button/Button.tsx +0 -49
- package/src/Components/Button/ButtonProps.tsx +0 -25
- package/src/Components/ButtonGroupIcon/ButtonGoupIconProps.tsx +0 -46
- package/src/Components/ButtonGroupIcon/ButtonGroupIcon.stories.tsx +0 -37
- package/src/Components/ButtonGroupIcon/ButtonGroupIcon.tsx +0 -159
- package/src/Components/Buttons/Buttons.tsx +0 -16
- package/src/Components/Card/Card.tsx +0 -35
- package/src/Components/Card/CardProps.tsx +0 -41
- package/src/Components/Checkbox/Checkbox.stories.tsx +0 -46
- package/src/Components/Checkbox/Checkbox.styles.ts +0 -56
- package/src/Components/Checkbox/Checkbox.tsx +0 -68
- package/src/Components/Checkbox/CheckboxProps.tsx +0 -42
- package/src/Components/Common/ErrorComponent.tsx +0 -16
- package/src/Components/Common/ErrorMessage.tsx +0 -22
- package/src/Components/Common/FormLabel.tsx +0 -48
- package/src/Components/Common/HelperText.tsx +0 -14
- package/src/Components/Common/Label.tsx +0 -12
- package/src/Components/ContactForm/ContactForm.tsx +0 -250
- package/src/Components/ContactForm/ContactFormProps.tsx +0 -10
- package/src/Components/DatePicker/DatePicker.tsx +0 -378
- package/src/Components/DatePicker/DatePickerProps.tsx +0 -48
- package/src/Components/DatePicker/TimePicker.tsx +0 -112
- package/src/Components/Divider/Divider.tsx +0 -17
- package/src/Components/Drawer/Drawer.tsx +0 -66
- package/src/Components/Drawer/DrawerProps.tsx +0 -11
- package/src/Components/Dropdown/DropDown.tsx +0 -189
- package/src/Components/Dropdown/DropdownProps.tsx +0 -26
- package/src/Components/Editor/Editor.tsx +0 -23
- package/src/Components/Editor/EditorProps.tsx +0 -8
- package/src/Components/EmailCards/VerifyEmailOtp/VerifyEmailOtp.tsx +0 -78
- package/src/Components/EmailCards/VerifyEmailOtp/VerifyEmailOtpProps.tsx +0 -12
- package/src/Components/FileUpload/FileUpload.tsx +0 -282
- package/src/Components/FileUpload/FileUploadProps.tsx +0 -34
- package/src/Components/FileUpload/constants.ts +0 -30
- package/src/Components/Form/FormWrapper.tsx +0 -47
- package/src/Components/Header/Header.tsx +0 -92
- package/src/Components/Header/HeaderActions.tsx +0 -96
- package/src/Components/Header/HeaderProps.ts +0 -72
- package/src/Components/Header/components/desktopMenu.tsx +0 -116
- package/src/Components/Header/components/mobileMenu.tsx +0 -99
- package/src/Components/Input/Input/Input.tsx +0 -56
- package/src/Components/Input/TextInput.stories.tsx +0 -46
- package/src/Components/Input/TextInput.tsx +0 -112
- package/src/Components/InputTextArea/InputTextArea.stories.tsx +0 -49
- package/src/Components/InputTextArea/InputTextArea.tsx +0 -54
- package/src/Components/KanbanBoard/AccountCard.tsx +0 -121
- package/src/Components/KanbanBoard/AccountRow.tsx +0 -35
- package/src/Components/KanbanBoard/KanbanActions/KanbanActions.tsx +0 -37
- package/src/Components/KanbanBoard/KanbanBoard.tsx +0 -185
- package/src/Components/KanbanBoard/KanbanBoardProps.ts +0 -34
- package/src/Components/Loading/Loading.stories.tsx +0 -26
- package/src/Components/Loading/Loading.tsx +0 -80
- package/src/Components/Loading/LoadingProps.tsx +0 -5
- package/src/Components/Modal/Modal.stories.tsx +0 -107
- package/src/Components/Modal/Modal.tsx +0 -107
- package/src/Components/Modal/ModalProps.tsx +0 -22
- package/src/Components/MultiSelect/MultiSelect.tsx +0 -154
- package/src/Components/MultiSelect/MultiSelectProps.tsx +0 -20
- package/src/Components/NavigationBar/NavBar.stories.tsx +0 -27
- package/src/Components/NavigationBar/NavigationBar.tsx +0 -125
- package/src/Components/NavigationBar/NavigationBarProps.tsx +0 -19
- package/src/Components/NoteTextArea/NoteTextArea.tsx +0 -409
- package/src/Components/NoteTextArea/NoteTextAreaProps.tsx +0 -22
- package/src/Components/NumberInput/NumberInput.stories.tsx +0 -32
- package/src/Components/NumberInput/NumberInput.tsx +0 -63
- package/src/Components/NumberInput/NumberInputProps.tsx +0 -28
- package/src/Components/PinInput/PinInput.stories.tsx +0 -41
- package/src/Components/PinInput/PinInput.tsx +0 -49
- package/src/Components/PinInput/PinInputProps.tsx +0 -33
- package/src/Components/PinInputs/PinInputs.tsx +0 -63
- package/src/Components/ProductCard/ProductCard.tsx +0 -77
- package/src/Components/ProductCard/ProductLabel.tsx +0 -13
- package/src/Components/ProductCard/ProductPrice.tsx +0 -177
- package/src/Components/ProductCard/ProductReview.tsx +0 -37
- package/src/Components/ProductCard/ProductTags.tsx +0 -57
- package/src/Components/ProfileCard/ProfileCard.stories.tsx +0 -31
- package/src/Components/ProfileCard/ProfileCard.tsx +0 -97
- package/src/Components/ProfileCard/ProfileCardProps.tsx +0 -39
- package/src/Components/ProfilePhotoViewer/ProfilePhotoViewer.stories.tsx +0 -26
- package/src/Components/ProfilePhotoViewer/ProfilePhotoViewer.tsx +0 -177
- package/src/Components/ProfilePhotoViewer/ProfilePhotoViewerProps.tsx +0 -18
- package/src/Components/ProgressBar/ProgressBar.stories.tsx +0 -48
- package/src/Components/ProgressBar/ProgressBar.tsx +0 -31
- package/src/Components/RadioButton/RadioButton.stories.tsx +0 -47
- package/src/Components/RadioButton/RadioButton.tsx +0 -78
- package/src/Components/RadioButton/RadioButtonProps.tsx +0 -10
- package/src/Components/Reorder/Reorder.tsx +0 -121
- package/src/Components/Reorder/ReorderProps.tsx +0 -11
- package/src/Components/Search/Search.tsx +0 -80
- package/src/Components/Search/SearchProps.tsx +0 -7
- package/src/Components/SearchSelect/SearchSelect.tsx +0 -525
- package/src/Components/SearchSelect/SearchSelectProps.tsx +0 -60
- package/src/Components/SearchSelect/SelectTruncatedLabel.tsx +0 -31
- package/src/Components/Select/Select.stories.tsx +0 -59
- package/src/Components/Select/Select.styles.ts +0 -97
- package/src/Components/Select/Select.tsx +0 -89
- package/src/Components/Select/SelectProps.tsx +0 -37
- package/src/Components/SelectSearch/SelectSearch.tsx +0 -447
- package/src/Components/SelectSearch/SelectSearchProps.tsx +0 -43
- package/src/Components/SideBar/SideBar.tsx +0 -206
- package/src/Components/SideBar/SideBarProps.tsx +0 -31
- package/src/Components/SideBar/Sidebar.stories.tsx +0 -80
- package/src/Components/SideBar/components/MenuItemBox.tsx +0 -217
- package/src/Components/SideBar/components/MenuItems.tsx +0 -29
- package/src/Components/SideBar/components/MenuPopoverContent.tsx +0 -98
- package/src/Components/SideBar/components/TextTruncation.tsx +0 -76
- package/src/Components/Skeletons/Skeleton.stories.tsx +0 -65
- package/src/Components/Skeletons/SkeletonProps.tsx +0 -23
- package/src/Components/Skeletons/Skeletons.tsx +0 -51
- package/src/Components/Slider/Slider.tsx +0 -121
- package/src/Components/Switch/Switch.tsx +0 -104
- package/src/Components/Switch/SwitchProps.tsx +0 -28
- package/src/Components/Table/Components/HeaderActions.tsx +0 -79
- package/src/Components/Table/Components/Pagination.tsx +0 -101
- package/src/Components/Table/Components/TableActions.tsx +0 -75
- package/src/Components/Table/Components/TableBody.tsx +0 -299
- package/src/Components/Table/Components/TableFilters.tsx +0 -77
- package/src/Components/Table/Components/TableHeader.tsx +0 -314
- package/src/Components/Table/Components/TableLoading.tsx +0 -83
- package/src/Components/Table/Components/TableSearch.tsx +0 -84
- package/src/Components/Table/Components/useDebounce.ts +0 -31
- package/src/Components/Table/Components/useTable.ts +0 -220
- package/src/Components/Table/Table.stories.tsx +0 -48
- package/src/Components/Table/Table.tsx +0 -258
- package/src/Components/Table/TableProps.tsx +0 -163
- package/src/Components/Table/TableSettings/ManageColumns.tsx +0 -148
- package/src/Components/Table/TableSettings/TableSettings.tsx +0 -153
- package/src/Components/Tag/Tag.styles.tsx +0 -56
- package/src/Components/Tag/Tag.tsx +0 -68
- package/src/Components/Timeline/Timeline.tsx +0 -310
- package/src/Components/Timeline/TimelineProps.tsx +0 -22
- package/src/Components/Toaster/Toaster.stories.tsx +0 -60
- package/src/Components/Toaster/Toaster.tsx +0 -99
- package/src/Components/Toggle/TableToggle.tsx +0 -68
- package/src/Components/ToolTip/ToolTip.stories.tsx +0 -38
- package/src/Components/ToolTip/ToolTip.tsx +0 -62
- package/src/Components/ToolTip/ToolTipProps.tsx +0 -46
- package/src/Components/Trail/EditableCell.tsx +0 -116
- package/src/Components/Trail/SelectAllCheckbox.tsx +0 -22
- package/src/Components/Trail/data.ts +0 -42
- package/src/Constants/Sidebar.ts +0 -39
- package/src/Hooks/usePreferences.ts +0 -105
- package/src/Theme/Default/palette.ts +0 -373
- package/src/Theme/Default/theme.ts +0 -16
- package/src/Theme/Meadow/palette.ts +0 -372
- package/src/Theme/Meadow/theme.ts +0 -17
- package/src/Theme/Radiant/palette.ts +0 -372
- package/src/Theme/Radiant/theme.ts +0 -17
- package/src/Theme/Skyline/palette.ts +0 -372
- package/src/Theme/Skyline/theme.ts +0 -17
- package/src/Theme/componentStyles.ts +0 -13
- package/src/Theme/fonts.ts +0 -41
- package/src/Theme/space.ts +0 -34
- package/src/Theme/theme.ts +0 -9
- package/src/Theme/themeProps.ts +0 -477
- package/src/Theme/useCustomTheme.ts +0 -6
- package/src/Utils/table.ts +0 -200
- package/src/index.ts +0 -146
- package/src/types/pixelize-design-library.d.ts +0 -4
- package/src/withTheme.tsx +0 -20
- package/tsconfig.json +0 -23
- /package/{src → dist}/Assets/defaultLogo.tsx +0 -0
- /package/{src → dist}/global.css +0 -0
- /package/{src → dist}/index.css +0 -0
|
@@ -0,0 +1,368 @@
|
|
|
1
|
+
declare const palette: {
|
|
2
|
+
primary: {
|
|
3
|
+
50: string;
|
|
4
|
+
100: string;
|
|
5
|
+
200: string;
|
|
6
|
+
300: string;
|
|
7
|
+
400: string;
|
|
8
|
+
500: string;
|
|
9
|
+
600: string;
|
|
10
|
+
700: string;
|
|
11
|
+
800: string;
|
|
12
|
+
900: string;
|
|
13
|
+
opacity: {
|
|
14
|
+
4: string;
|
|
15
|
+
8: string;
|
|
16
|
+
16: string;
|
|
17
|
+
24: string;
|
|
18
|
+
32: string;
|
|
19
|
+
40: string;
|
|
20
|
+
48: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
secondary: {
|
|
24
|
+
50: string;
|
|
25
|
+
100: string;
|
|
26
|
+
200: string;
|
|
27
|
+
300: string;
|
|
28
|
+
400: string;
|
|
29
|
+
500: string;
|
|
30
|
+
600: string;
|
|
31
|
+
700: string;
|
|
32
|
+
800: string;
|
|
33
|
+
900: string;
|
|
34
|
+
opacity: {
|
|
35
|
+
4: string;
|
|
36
|
+
8: string;
|
|
37
|
+
16: string;
|
|
38
|
+
24: string;
|
|
39
|
+
32: string;
|
|
40
|
+
40: string;
|
|
41
|
+
48: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
tertiary: {
|
|
45
|
+
50: string;
|
|
46
|
+
100: string;
|
|
47
|
+
200: string;
|
|
48
|
+
300: string;
|
|
49
|
+
400: string;
|
|
50
|
+
500: string;
|
|
51
|
+
600: string;
|
|
52
|
+
700: string;
|
|
53
|
+
800: string;
|
|
54
|
+
900: string;
|
|
55
|
+
opacity: {
|
|
56
|
+
4: string;
|
|
57
|
+
8: string;
|
|
58
|
+
16: string;
|
|
59
|
+
24: string;
|
|
60
|
+
32: string;
|
|
61
|
+
40: string;
|
|
62
|
+
48: string;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
transparent: string;
|
|
66
|
+
black: string;
|
|
67
|
+
white: string;
|
|
68
|
+
semantic: {
|
|
69
|
+
success: {
|
|
70
|
+
50: string;
|
|
71
|
+
100: string;
|
|
72
|
+
200: string;
|
|
73
|
+
300: string;
|
|
74
|
+
400: string;
|
|
75
|
+
500: string;
|
|
76
|
+
600: string;
|
|
77
|
+
700: string;
|
|
78
|
+
800: string;
|
|
79
|
+
900: string;
|
|
80
|
+
};
|
|
81
|
+
error: {
|
|
82
|
+
50: string;
|
|
83
|
+
100: string;
|
|
84
|
+
200: string;
|
|
85
|
+
300: string;
|
|
86
|
+
400: string;
|
|
87
|
+
500: string;
|
|
88
|
+
600: string;
|
|
89
|
+
700: string;
|
|
90
|
+
800: string;
|
|
91
|
+
900: string;
|
|
92
|
+
};
|
|
93
|
+
warning: {
|
|
94
|
+
50: string;
|
|
95
|
+
100: string;
|
|
96
|
+
200: string;
|
|
97
|
+
300: string;
|
|
98
|
+
400: string;
|
|
99
|
+
500: string;
|
|
100
|
+
600: string;
|
|
101
|
+
700: string;
|
|
102
|
+
800: string;
|
|
103
|
+
900: string;
|
|
104
|
+
};
|
|
105
|
+
info: {
|
|
106
|
+
50: string;
|
|
107
|
+
100: string;
|
|
108
|
+
200: string;
|
|
109
|
+
300: string;
|
|
110
|
+
400: string;
|
|
111
|
+
500: string;
|
|
112
|
+
600: string;
|
|
113
|
+
700: string;
|
|
114
|
+
800: string;
|
|
115
|
+
900: string;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
gray: {
|
|
119
|
+
50: string;
|
|
120
|
+
100: string;
|
|
121
|
+
200: string;
|
|
122
|
+
300: string;
|
|
123
|
+
400: string;
|
|
124
|
+
500: string;
|
|
125
|
+
600: string;
|
|
126
|
+
700: string;
|
|
127
|
+
800: string;
|
|
128
|
+
900: string;
|
|
129
|
+
};
|
|
130
|
+
red: {
|
|
131
|
+
50: string;
|
|
132
|
+
100: string;
|
|
133
|
+
200: string;
|
|
134
|
+
300: string;
|
|
135
|
+
400: string;
|
|
136
|
+
500: string;
|
|
137
|
+
600: string;
|
|
138
|
+
700: string;
|
|
139
|
+
800: string;
|
|
140
|
+
900: string;
|
|
141
|
+
};
|
|
142
|
+
orange: {
|
|
143
|
+
50: string;
|
|
144
|
+
100: string;
|
|
145
|
+
200: string;
|
|
146
|
+
300: string;
|
|
147
|
+
400: string;
|
|
148
|
+
500: string;
|
|
149
|
+
600: string;
|
|
150
|
+
700: string;
|
|
151
|
+
800: string;
|
|
152
|
+
900: string;
|
|
153
|
+
};
|
|
154
|
+
yellow: {
|
|
155
|
+
50: string;
|
|
156
|
+
100: string;
|
|
157
|
+
200: string;
|
|
158
|
+
300: string;
|
|
159
|
+
400: string;
|
|
160
|
+
500: string;
|
|
161
|
+
600: string;
|
|
162
|
+
700: string;
|
|
163
|
+
800: string;
|
|
164
|
+
900: string;
|
|
165
|
+
};
|
|
166
|
+
green: {
|
|
167
|
+
50: string;
|
|
168
|
+
100: string;
|
|
169
|
+
200: string;
|
|
170
|
+
300: string;
|
|
171
|
+
400: string;
|
|
172
|
+
500: string;
|
|
173
|
+
600: string;
|
|
174
|
+
700: string;
|
|
175
|
+
800: string;
|
|
176
|
+
900: string;
|
|
177
|
+
};
|
|
178
|
+
teal: {
|
|
179
|
+
50: string;
|
|
180
|
+
100: string;
|
|
181
|
+
200: string;
|
|
182
|
+
300: string;
|
|
183
|
+
400: string;
|
|
184
|
+
500: string;
|
|
185
|
+
600: string;
|
|
186
|
+
700: string;
|
|
187
|
+
800: string;
|
|
188
|
+
900: string;
|
|
189
|
+
};
|
|
190
|
+
blue: {
|
|
191
|
+
50: string;
|
|
192
|
+
100: string;
|
|
193
|
+
200: string;
|
|
194
|
+
300: string;
|
|
195
|
+
400: string;
|
|
196
|
+
500: string;
|
|
197
|
+
600: string;
|
|
198
|
+
700: string;
|
|
199
|
+
800: string;
|
|
200
|
+
900: string;
|
|
201
|
+
};
|
|
202
|
+
cyan: {
|
|
203
|
+
50: string;
|
|
204
|
+
100: string;
|
|
205
|
+
200: string;
|
|
206
|
+
300: string;
|
|
207
|
+
400: string;
|
|
208
|
+
500: string;
|
|
209
|
+
600: string;
|
|
210
|
+
700: string;
|
|
211
|
+
800: string;
|
|
212
|
+
900: string;
|
|
213
|
+
};
|
|
214
|
+
purple: {
|
|
215
|
+
50: string;
|
|
216
|
+
100: string;
|
|
217
|
+
200: string;
|
|
218
|
+
300: string;
|
|
219
|
+
400: string;
|
|
220
|
+
500: string;
|
|
221
|
+
600: string;
|
|
222
|
+
700: string;
|
|
223
|
+
800: string;
|
|
224
|
+
900: string;
|
|
225
|
+
};
|
|
226
|
+
pink: {
|
|
227
|
+
50: string;
|
|
228
|
+
100: string;
|
|
229
|
+
200: string;
|
|
230
|
+
300: string;
|
|
231
|
+
400: string;
|
|
232
|
+
500: string;
|
|
233
|
+
600: string;
|
|
234
|
+
700: string;
|
|
235
|
+
800: string;
|
|
236
|
+
900: string;
|
|
237
|
+
};
|
|
238
|
+
background: {
|
|
239
|
+
50: string;
|
|
240
|
+
100: string;
|
|
241
|
+
200: string;
|
|
242
|
+
300: string;
|
|
243
|
+
400: string;
|
|
244
|
+
500: string;
|
|
245
|
+
600: string;
|
|
246
|
+
700: string;
|
|
247
|
+
800: string;
|
|
248
|
+
900: string;
|
|
249
|
+
};
|
|
250
|
+
backgroundColor: {
|
|
251
|
+
main: string;
|
|
252
|
+
secondary: string;
|
|
253
|
+
tertiary: string;
|
|
254
|
+
quaternary: string;
|
|
255
|
+
light: string;
|
|
256
|
+
medium: string;
|
|
257
|
+
accent: string;
|
|
258
|
+
subtle: string;
|
|
259
|
+
muted: string;
|
|
260
|
+
neutral: string;
|
|
261
|
+
};
|
|
262
|
+
text: {
|
|
263
|
+
50: string;
|
|
264
|
+
100: string;
|
|
265
|
+
200: string;
|
|
266
|
+
300: string;
|
|
267
|
+
400: string;
|
|
268
|
+
500: string;
|
|
269
|
+
600: string;
|
|
270
|
+
700: string;
|
|
271
|
+
800: string;
|
|
272
|
+
900: string;
|
|
273
|
+
};
|
|
274
|
+
header: {
|
|
275
|
+
50: string;
|
|
276
|
+
100: string;
|
|
277
|
+
200: string;
|
|
278
|
+
300: string;
|
|
279
|
+
400: string;
|
|
280
|
+
500: string;
|
|
281
|
+
600: string;
|
|
282
|
+
700: string;
|
|
283
|
+
800: string;
|
|
284
|
+
900: string;
|
|
285
|
+
};
|
|
286
|
+
placeholder: {
|
|
287
|
+
50: string;
|
|
288
|
+
100: string;
|
|
289
|
+
200: string;
|
|
290
|
+
300: string;
|
|
291
|
+
400: string;
|
|
292
|
+
500: string;
|
|
293
|
+
600: string;
|
|
294
|
+
700: string;
|
|
295
|
+
800: string;
|
|
296
|
+
900: string;
|
|
297
|
+
};
|
|
298
|
+
boxShadow: {
|
|
299
|
+
primary: string;
|
|
300
|
+
error: string;
|
|
301
|
+
default: string;
|
|
302
|
+
};
|
|
303
|
+
sidebar: {
|
|
304
|
+
background: {
|
|
305
|
+
50: string;
|
|
306
|
+
100: string;
|
|
307
|
+
200: string;
|
|
308
|
+
300: string;
|
|
309
|
+
400: string;
|
|
310
|
+
500: string;
|
|
311
|
+
600: string;
|
|
312
|
+
700: string;
|
|
313
|
+
800: string;
|
|
314
|
+
900: string;
|
|
315
|
+
};
|
|
316
|
+
};
|
|
317
|
+
boxborder: {
|
|
318
|
+
50: string;
|
|
319
|
+
100: string;
|
|
320
|
+
200: string;
|
|
321
|
+
300: string;
|
|
322
|
+
400: string;
|
|
323
|
+
500: string;
|
|
324
|
+
600: string;
|
|
325
|
+
700: string;
|
|
326
|
+
800: string;
|
|
327
|
+
900: string;
|
|
328
|
+
};
|
|
329
|
+
border: {
|
|
330
|
+
50: string;
|
|
331
|
+
100: string;
|
|
332
|
+
200: string;
|
|
333
|
+
300: string;
|
|
334
|
+
400: string;
|
|
335
|
+
500: string;
|
|
336
|
+
600: string;
|
|
337
|
+
700: string;
|
|
338
|
+
800: string;
|
|
339
|
+
900: string;
|
|
340
|
+
};
|
|
341
|
+
table: {
|
|
342
|
+
hover: {
|
|
343
|
+
50: string;
|
|
344
|
+
100: string;
|
|
345
|
+
200: string;
|
|
346
|
+
300: string;
|
|
347
|
+
400: string;
|
|
348
|
+
500: string;
|
|
349
|
+
600: string;
|
|
350
|
+
700: string;
|
|
351
|
+
800: string;
|
|
352
|
+
900: string;
|
|
353
|
+
};
|
|
354
|
+
};
|
|
355
|
+
disabled: {
|
|
356
|
+
50: string;
|
|
357
|
+
100: string;
|
|
358
|
+
200: string;
|
|
359
|
+
300: string;
|
|
360
|
+
400: string;
|
|
361
|
+
500: string;
|
|
362
|
+
600: string;
|
|
363
|
+
700: string;
|
|
364
|
+
800: string;
|
|
365
|
+
900: string;
|
|
366
|
+
};
|
|
367
|
+
};
|
|
368
|
+
export default palette;
|
|
@@ -0,0 +1,356 @@
|
|
|
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 palette_1 = __importDefault(require("../Default/palette"));
|
|
18
|
+
var palette = __assign(__assign({}, palette_1.default), { primary: {
|
|
19
|
+
50: "#e3f2f9",
|
|
20
|
+
100: "#c5e4f3",
|
|
21
|
+
200: "#a2d4ec",
|
|
22
|
+
300: "#7ac1e4",
|
|
23
|
+
400: "#47a9da",
|
|
24
|
+
500: "#0088cc",
|
|
25
|
+
600: "#007ab8",
|
|
26
|
+
700: "#006ba1",
|
|
27
|
+
800: "#005885",
|
|
28
|
+
900: "#003f5e",
|
|
29
|
+
opacity: {
|
|
30
|
+
4: "#9A4FE50a",
|
|
31
|
+
8: "#9A4FE514",
|
|
32
|
+
16: "#9A4FE529",
|
|
33
|
+
24: "#9A4FE53d",
|
|
34
|
+
32: "#9A4FE552",
|
|
35
|
+
40: "#9A4FE566",
|
|
36
|
+
48: "#9A4FE57a",
|
|
37
|
+
}
|
|
38
|
+
}, secondary: {
|
|
39
|
+
50: "#e3f2f9",
|
|
40
|
+
100: "#c5e4f3",
|
|
41
|
+
200: "#a2d4ec",
|
|
42
|
+
300: "#7ac1e4",
|
|
43
|
+
400: "#47a9da",
|
|
44
|
+
500: "#0088cc",
|
|
45
|
+
600: "#007ab8",
|
|
46
|
+
700: "#006ba1",
|
|
47
|
+
800: "#005885",
|
|
48
|
+
900: "#003f5e",
|
|
49
|
+
opacity: {
|
|
50
|
+
4: "#9A4FE50a",
|
|
51
|
+
8: "#9A4FE514",
|
|
52
|
+
16: "#9A4FE529",
|
|
53
|
+
24: "#9A4FE53d",
|
|
54
|
+
32: "#9A4FE552",
|
|
55
|
+
40: "#9A4FE566",
|
|
56
|
+
48: "#9A4FE57a",
|
|
57
|
+
}
|
|
58
|
+
}, tertiary: {
|
|
59
|
+
50: "#e3f2f9",
|
|
60
|
+
100: "#c5e4f3",
|
|
61
|
+
200: "#a2d4ec",
|
|
62
|
+
300: "#7ac1e4",
|
|
63
|
+
400: "#47a9da",
|
|
64
|
+
500: "#0088cc",
|
|
65
|
+
600: "#007ab8",
|
|
66
|
+
700: "#006ba1",
|
|
67
|
+
800: "#005885",
|
|
68
|
+
900: "#003f5e",
|
|
69
|
+
opacity: {
|
|
70
|
+
4: "#9A4FE50a",
|
|
71
|
+
8: "#9A4FE514",
|
|
72
|
+
16: "#9A4FE529",
|
|
73
|
+
24: "#9A4FE53d",
|
|
74
|
+
32: "#9A4FE552",
|
|
75
|
+
40: "#9A4FE566",
|
|
76
|
+
48: "#9A4FE57a",
|
|
77
|
+
}
|
|
78
|
+
}, transparent: "transparent", black: "#000", white: "#fff", semantic: {
|
|
79
|
+
success: {
|
|
80
|
+
50: "#e6f9f0",
|
|
81
|
+
100: "#c0f0d8",
|
|
82
|
+
200: "#8be6bb",
|
|
83
|
+
300: "#5bdb9e",
|
|
84
|
+
400: "#33d181",
|
|
85
|
+
500: "#00b768",
|
|
86
|
+
600: "#00a05a",
|
|
87
|
+
700: "#00854b",
|
|
88
|
+
800: "#006b3c",
|
|
89
|
+
900: "#004c28",
|
|
90
|
+
},
|
|
91
|
+
error: {
|
|
92
|
+
50: "#ffe6e6",
|
|
93
|
+
100: "#fbbcbc",
|
|
94
|
+
200: "#f28f8f",
|
|
95
|
+
300: "#e66060",
|
|
96
|
+
400: "#db3a3a",
|
|
97
|
+
500: "#c21e1e",
|
|
98
|
+
600: "#a01919",
|
|
99
|
+
700: "#7e1313",
|
|
100
|
+
800: "#5c0d0d",
|
|
101
|
+
900: "#3d0909",
|
|
102
|
+
},
|
|
103
|
+
warning: {
|
|
104
|
+
50: "#fff4e6",
|
|
105
|
+
100: "#ffe1b8",
|
|
106
|
+
200: "#ffcc85",
|
|
107
|
+
300: "#ffb653",
|
|
108
|
+
400: "#ffa31a",
|
|
109
|
+
500: "#ff8a00",
|
|
110
|
+
600: "#db7000",
|
|
111
|
+
700: "#b75800",
|
|
112
|
+
800: "#934300",
|
|
113
|
+
900: "#702f00",
|
|
114
|
+
},
|
|
115
|
+
info: {
|
|
116
|
+
50: "#e3f5ff",
|
|
117
|
+
100: "#b8e4ff",
|
|
118
|
+
200: "#85d1ff",
|
|
119
|
+
300: "#52bdff",
|
|
120
|
+
400: "#1fa9ff",
|
|
121
|
+
500: "#008df5",
|
|
122
|
+
600: "#0077db",
|
|
123
|
+
700: "#005cb3",
|
|
124
|
+
800: "#004489",
|
|
125
|
+
900: "#002d5c",
|
|
126
|
+
},
|
|
127
|
+
}, gray: {
|
|
128
|
+
50: "#f7fafc",
|
|
129
|
+
100: "#edf2f7",
|
|
130
|
+
200: "#e2e8f0",
|
|
131
|
+
300: "#cbd5e0",
|
|
132
|
+
400: "#a0aec0",
|
|
133
|
+
500: "#718096",
|
|
134
|
+
600: "#4a5568",
|
|
135
|
+
700: "#2d3748",
|
|
136
|
+
800: "#1a202c",
|
|
137
|
+
900: "#171923",
|
|
138
|
+
}, red: {
|
|
139
|
+
50: "#fff5f5",
|
|
140
|
+
100: "#fed7d7",
|
|
141
|
+
200: "#feb2b2",
|
|
142
|
+
300: "#fc8181",
|
|
143
|
+
400: "#f56565",
|
|
144
|
+
500: "#e53e3e",
|
|
145
|
+
600: "#c53030",
|
|
146
|
+
700: "#9b2c2c",
|
|
147
|
+
800: "#822727",
|
|
148
|
+
900: "#63171b",
|
|
149
|
+
}, orange: {
|
|
150
|
+
50: "#fffaf0",
|
|
151
|
+
100: "#feebc8",
|
|
152
|
+
200: "#fbd38d",
|
|
153
|
+
300: "#f6ad55",
|
|
154
|
+
400: "#ed8936",
|
|
155
|
+
500: "#dd6b20",
|
|
156
|
+
600: "#c05621",
|
|
157
|
+
700: "#9c4221",
|
|
158
|
+
800: "#7b341e",
|
|
159
|
+
900: "#652b19",
|
|
160
|
+
}, yellow: {
|
|
161
|
+
50: "#fffff0",
|
|
162
|
+
100: "#fefcbf",
|
|
163
|
+
200: "#faf089",
|
|
164
|
+
300: "#f6e05e",
|
|
165
|
+
400: "#ecc94b",
|
|
166
|
+
500: "#d69e2e",
|
|
167
|
+
600: "#b7791f",
|
|
168
|
+
700: "#975a16",
|
|
169
|
+
800: "#744210",
|
|
170
|
+
900: "#5f370e",
|
|
171
|
+
}, green: {
|
|
172
|
+
50: "#f0fff4",
|
|
173
|
+
100: "#c6f6d5",
|
|
174
|
+
200: "#9ae6b4",
|
|
175
|
+
300: "#68d391",
|
|
176
|
+
400: "#48bb78",
|
|
177
|
+
500: "#38a169",
|
|
178
|
+
600: "#2f855a",
|
|
179
|
+
700: "#276749",
|
|
180
|
+
800: "#22543d",
|
|
181
|
+
900: "#1c4532",
|
|
182
|
+
}, teal: {
|
|
183
|
+
50: "#e6fffa",
|
|
184
|
+
100: "#b2f5ea",
|
|
185
|
+
200: "#81e6d9",
|
|
186
|
+
300: "#4fd1c5",
|
|
187
|
+
400: "#38b2ac",
|
|
188
|
+
500: "#319795",
|
|
189
|
+
600: "#2c7a7b",
|
|
190
|
+
700: "#285e61",
|
|
191
|
+
800: "#234e52",
|
|
192
|
+
900: "#1d4044",
|
|
193
|
+
}, blue: {
|
|
194
|
+
50: "#ebf8ff",
|
|
195
|
+
100: "#bee3f8",
|
|
196
|
+
200: "#90cdf4",
|
|
197
|
+
300: "#63b3ed",
|
|
198
|
+
400: "#4299e1",
|
|
199
|
+
500: "#3182ce",
|
|
200
|
+
600: "#2b6cb0",
|
|
201
|
+
700: "#2c5282",
|
|
202
|
+
800: "#2a4365",
|
|
203
|
+
900: "#1a365d",
|
|
204
|
+
}, cyan: {
|
|
205
|
+
50: "#edfdfd",
|
|
206
|
+
100: "#c4f1f9",
|
|
207
|
+
200: "#9decf9",
|
|
208
|
+
300: "#76e4f7",
|
|
209
|
+
400: "#0bc5ea",
|
|
210
|
+
500: "#00b5d8",
|
|
211
|
+
600: "#00a3c4",
|
|
212
|
+
700: "#0987a0",
|
|
213
|
+
800: "#086f83",
|
|
214
|
+
900: "#065666",
|
|
215
|
+
}, purple: {
|
|
216
|
+
50: "#faf5ff",
|
|
217
|
+
100: "#e9d8fd",
|
|
218
|
+
200: "#d6bcfa",
|
|
219
|
+
300: "#b794f4",
|
|
220
|
+
400: "#9f7aea",
|
|
221
|
+
500: "#805ad5",
|
|
222
|
+
600: "#6b46c1",
|
|
223
|
+
700: "#553c9a",
|
|
224
|
+
800: "#44337a",
|
|
225
|
+
900: "#322659",
|
|
226
|
+
}, pink: {
|
|
227
|
+
50: "#fff5f7",
|
|
228
|
+
100: "#fed7e2",
|
|
229
|
+
200: "#fbb6ce",
|
|
230
|
+
300: "#f687b3",
|
|
231
|
+
400: "#ed64a6",
|
|
232
|
+
500: "#d53f8c",
|
|
233
|
+
600: "#b83280",
|
|
234
|
+
700: "#97266d",
|
|
235
|
+
800: "#702459",
|
|
236
|
+
900: "#521b41",
|
|
237
|
+
}, background: {
|
|
238
|
+
50: "#ffffff",
|
|
239
|
+
100: "#fefefe",
|
|
240
|
+
200: "#fdfdfd",
|
|
241
|
+
300: "#fcfcfc",
|
|
242
|
+
400: "#fcfcfc",
|
|
243
|
+
500: "#fbfbfb",
|
|
244
|
+
600: "#e4e4e4",
|
|
245
|
+
700: "#b2b2b2",
|
|
246
|
+
800: "#8a8a8a",
|
|
247
|
+
900: "#696969",
|
|
248
|
+
}, backgroundColor: {
|
|
249
|
+
main: "#f8f9fa",
|
|
250
|
+
secondary: "#f1f1f1",
|
|
251
|
+
tertiary: "#ececec",
|
|
252
|
+
quaternary: "#e2e6ea",
|
|
253
|
+
light: "#fafafa",
|
|
254
|
+
medium: "#eaeaea",
|
|
255
|
+
accent: "#e5e5e5",
|
|
256
|
+
subtle: "#f5f6f7",
|
|
257
|
+
muted: "#dfe3e6",
|
|
258
|
+
neutral: "#ebedef", // Neutral grey with a balanced tone
|
|
259
|
+
}, text: {
|
|
260
|
+
50: "#eeeff0",
|
|
261
|
+
100: "#cacccf",
|
|
262
|
+
200: "#b1b3b8",
|
|
263
|
+
300: "#8d9097",
|
|
264
|
+
400: "#777b83",
|
|
265
|
+
500: "#555a64",
|
|
266
|
+
600: "#4d525b",
|
|
267
|
+
700: "#3c4047",
|
|
268
|
+
800: "#2f3237",
|
|
269
|
+
900: "#24262a",
|
|
270
|
+
}, header: {
|
|
271
|
+
50: "#ecedec",
|
|
272
|
+
100: "#c5c6ca",
|
|
273
|
+
200: "#a9abb0",
|
|
274
|
+
300: "#81848c",
|
|
275
|
+
400: "#696b75",
|
|
276
|
+
500: "#434853",
|
|
277
|
+
600: "#3d424c",
|
|
278
|
+
700: "#30333b",
|
|
279
|
+
800: "#25282e",
|
|
280
|
+
900: "#1c1e23",
|
|
281
|
+
}, placeholder: {
|
|
282
|
+
50: "#f1f1f2",
|
|
283
|
+
100: "#d3d5d8",
|
|
284
|
+
200: "#bec0c5",
|
|
285
|
+
300: "#a0a3aa",
|
|
286
|
+
400: "#8d9199",
|
|
287
|
+
500: "#717680",
|
|
288
|
+
600: "#676b74",
|
|
289
|
+
700: "#50545b",
|
|
290
|
+
800: "#3e4146",
|
|
291
|
+
900: "#2f3236",
|
|
292
|
+
}, boxShadow: {
|
|
293
|
+
primary: "#9A52E247",
|
|
294
|
+
error: "#F2463A47",
|
|
295
|
+
default: "",
|
|
296
|
+
}, sidebar: {
|
|
297
|
+
background: {
|
|
298
|
+
50: "#f1f1f2",
|
|
299
|
+
100: "#d3d5d8",
|
|
300
|
+
200: "#bec0c5",
|
|
301
|
+
300: "#a0a3aa",
|
|
302
|
+
400: "#8d9199",
|
|
303
|
+
500: "#161B32",
|
|
304
|
+
600: "#676b74",
|
|
305
|
+
700: "#50545b",
|
|
306
|
+
800: "#3e4146",
|
|
307
|
+
900: "#2f3236",
|
|
308
|
+
}
|
|
309
|
+
}, boxborder: {
|
|
310
|
+
50: "#fbfbfb",
|
|
311
|
+
100: "#f2f3f4",
|
|
312
|
+
200: "#ecedee",
|
|
313
|
+
300: "#e4e5e7",
|
|
314
|
+
400: "#dee0e2",
|
|
315
|
+
500: "#d6d8db",
|
|
316
|
+
600: "#c3c5c7",
|
|
317
|
+
700: "#98999b",
|
|
318
|
+
800: "#767778",
|
|
319
|
+
900: "#5a5b5c",
|
|
320
|
+
}, border: {
|
|
321
|
+
50: "#fdfdfd",
|
|
322
|
+
100: "#f8f8f8",
|
|
323
|
+
200: "#f4f4f4",
|
|
324
|
+
300: "#f0f0f0",
|
|
325
|
+
400: "#ededed",
|
|
326
|
+
500: "#e8e8e8",
|
|
327
|
+
600: "#d3d3d3",
|
|
328
|
+
700: "#a5a5a5",
|
|
329
|
+
800: "#808080",
|
|
330
|
+
900: "#616161",
|
|
331
|
+
}, table: {
|
|
332
|
+
hover: {
|
|
333
|
+
50: "#fefefe",
|
|
334
|
+
100: "#fcfcfc",
|
|
335
|
+
200: "#fbfbfb",
|
|
336
|
+
300: "#f9f9f9",
|
|
337
|
+
400: "#f8f8f8",
|
|
338
|
+
500: "#f6f6f6",
|
|
339
|
+
600: "#e0e0e0",
|
|
340
|
+
700: "#afafaf",
|
|
341
|
+
800: "#878787",
|
|
342
|
+
900: "#676767",
|
|
343
|
+
}
|
|
344
|
+
}, disabled: {
|
|
345
|
+
50: "#fcfcfc",
|
|
346
|
+
100: "#f7f7f7",
|
|
347
|
+
200: "#f3f3f3",
|
|
348
|
+
300: "#ededed",
|
|
349
|
+
400: "#e9e9e9",
|
|
350
|
+
500: "#e4e4e4",
|
|
351
|
+
600: "#cfcfcf",
|
|
352
|
+
700: "#a2a2a2",
|
|
353
|
+
800: "#7d7d7d",
|
|
354
|
+
900: "#606060",
|
|
355
|
+
} });
|
|
356
|
+
exports.default = palette;
|