@lunit/oui 1.0.0-alpha.8 → 1.0.1-alpha.1
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/assets/ic-bell-noti-outlined-20px.js +4 -0
- package/dist/assets/ic-close-large-outlined-20px.js +4 -0
- package/dist/assets/ic-close-small-outlined-20px.js +4 -0
- package/dist/assets/ic-download-pdf-outlined-20px.js +4 -0
- package/dist/assets/ic-ellipse-outlined-20px.js +4 -0
- package/dist/assets/ic-filter-noti-outlined-20px.js +4 -0
- package/dist/assets/ic-hide-large-outlined-20px.js +4 -0
- package/dist/assets/ic-hide-small-outlined-20px.js +4 -0
- package/dist/assets/ic-information-large-outlined-20px.js +4 -0
- package/dist/assets/ic-information-small-outlined-20px.js +4 -0
- package/dist/assets/ic-manufacturer-outlined-20px.js +4 -0
- package/dist/assets/ic-rectangle-outlined-20px.js +4 -0
- package/dist/assets/ic-refresh-left-outlined-20px.js +4 -0
- package/dist/assets/ic-refresh-right-outlined-20px.js +4 -0
- package/dist/assets/ic-show-large-outlined-20px.js +4 -0
- package/dist/assets/ic-show-small-outlined-20px.js +4 -0
- package/dist/assets/index.js +17 -0
- package/dist/components/Alert/Alert.js +15 -0
- package/dist/components/Alert/Alert.styled.js +42 -0
- package/dist/components/Alert/Alert.types.js +2 -0
- package/dist/components/Alert/Alert.utils.js +40 -0
- package/dist/components/Alert/index.js +3 -0
- package/dist/components/BaseTextField/BaseTextField.styled.js +97 -0
- package/dist/components/BaseTextField/BaseTextField.types.js +3 -0
- package/dist/components/BaseTextField/BaseTextField.utils.js +10 -0
- package/dist/components/Button/BaseButton.js +15 -0
- package/dist/components/Button/Button.js +43 -0
- package/dist/components/Button/Button.types.js +2 -0
- package/dist/components/Button/Button.utils.js +11 -0
- package/dist/components/Button/index.js +4 -0
- package/dist/components/Button/styleds/BaseButton.styled.js +52 -0
- package/dist/components/Button/styleds/ContainedButton.styled.js +112 -0
- package/dist/components/Button/styleds/GhostButton.styled.js +128 -0
- package/dist/components/Button/styleds/IconButton.styled.js +23 -0
- package/dist/components/Button/styleds/OutlinedButton.styled.js +136 -0
- package/dist/components/Card/Card.js +7 -0
- package/dist/components/Card/Card.styled.js +14 -0
- package/dist/components/Card/Card.types.js +2 -0
- package/dist/components/Card/index.js +3 -0
- package/dist/components/Checkbox/Checkbox.js +11 -0
- package/dist/components/Checkbox/Checkbox.styled.js +25 -0
- package/dist/components/Checkbox/Checkbox.types.js +2 -0
- package/dist/components/Checkbox/Checkbox.utils.js +22 -0
- package/dist/components/Checkbox/index.js +3 -0
- package/dist/components/Chip/Chip.js +26 -0
- package/dist/components/Chip/Chip.styled.js +106 -0
- package/dist/components/Chip/Chip.types.js +2 -0
- package/dist/components/Chip/Chip.utils.js +49 -0
- package/dist/components/Chip/index.js +3 -0
- package/dist/components/DataTable/DataTable.js +12 -0
- package/dist/components/DataTable/DataTable.styled.js +65 -0
- package/dist/components/DataTable/index.js +2 -0
- package/dist/components/DatePicker/DatePicker.js +162 -0
- package/dist/components/DatePicker/DatePicker.styled.js +17 -0
- package/dist/components/DatePicker/DatePicker.types.js +2 -0
- package/dist/components/DatePicker/index.js +3 -0
- package/dist/components/Dialog/Dialog.js +21 -0
- package/dist/components/Dialog/Dialog.styled.js +60 -0
- package/dist/components/Dialog/Dialog.types.js +2 -0
- package/dist/components/Dialog/index.js +3 -0
- package/dist/components/Divider/Divider.js +7 -0
- package/dist/components/Divider/Divider.styled.js +22 -0
- package/dist/components/Divider/Divider.types.js +2 -0
- package/dist/components/Divider/index.js +3 -0
- package/dist/components/Dropdown/Dropdown.js +55 -0
- package/dist/components/Dropdown/Dropdown.styled.js +103 -0
- package/dist/components/Dropdown/Dropdown.types.js +2 -0
- package/dist/components/Dropdown/Dropdown.utils.js +12 -0
- package/dist/components/Dropdown/DropdownItem.js +9 -0
- package/dist/components/Dropdown/DropdownItem.styled.js +57 -0
- package/dist/components/Dropdown/DropdownItem.types.js +2 -0
- package/dist/components/Dropdown/DropdownItem.utils.js +10 -0
- package/dist/components/Dropdown/DropdownSubtitle.js +7 -0
- package/dist/components/Dropdown/DropdownSubtitle.styled.js +12 -0
- package/dist/components/Dropdown/DropdownSubtitle.types.js +2 -0
- package/dist/components/Dropdown/IconDropdown.js +35 -0
- package/dist/components/Dropdown/IconDropdown.styled.js +72 -0
- package/dist/components/Dropdown/IconDropdown.types.js +2 -0
- package/dist/components/Dropdown/index.js +6 -0
- package/dist/components/FileDnDZone/FileDnDZone.js +13 -0
- package/dist/components/FileDnDZone/FileDnDZone.styled.js +39 -0
- package/dist/components/FileDnDZone/FileDnDZone.types.js +2 -0
- package/dist/components/FileDnDZone/FileDnDZone.utils.js +3 -0
- package/dist/components/FileDnDZone/index.js +3 -0
- package/dist/components/List/List.js +23 -0
- package/dist/components/List/List.styled.js +29 -0
- package/dist/components/List/List.types.js +2 -0
- package/dist/components/List/List.utils.js +12 -0
- package/dist/components/List/ListItem.js +25 -0
- package/dist/components/List/ListItem.styled.js +45 -0
- package/dist/components/List/ListItem.types.js +2 -0
- package/dist/components/List/ListItemCaption.js +10 -0
- package/dist/components/List/ListItemCaption.styled.js +7 -0
- package/dist/components/List/ListItemCaption.types.js +2 -0
- package/dist/components/List/index.js +4 -0
- package/dist/components/LoadingIndicator/LoadingIndicator.js +11 -0
- package/dist/components/LoadingIndicator/LoadingIndicator.styled.js +37 -0
- package/dist/components/LoadingIndicator/LoadingIndicator.types.js +2 -0
- package/dist/components/LoadingIndicator/assets/DnaLoadingAnimation.json +769 -0
- package/dist/components/LoadingIndicator/assets/DotLoadingAnimation.json +426 -0
- package/dist/components/LoadingIndicator/index.js +3 -0
- package/dist/components/Menu/Menu.js +13 -0
- package/dist/components/Menu/Menu.styled.js +31 -0
- package/dist/components/Menu/Menu.types.js +2 -0
- package/dist/components/Menu/MenuItem.js +20 -0
- package/dist/components/Menu/MenuItem.styled.js +48 -0
- package/dist/components/Menu/MenuItem.types.js +2 -0
- package/dist/components/Menu/index.js +3 -0
- package/dist/components/MuiCssBaseline.js +67 -0
- package/dist/components/MuiInputBase.js +24 -0
- package/dist/components/MuiOutlinedInput.js +56 -0
- package/dist/components/MuiTextField.js +16 -0
- package/dist/components/Pagination/Pagination.js +65 -0
- package/dist/components/Pagination/Pagination.styled.js +64 -0
- package/dist/components/Pagination/Pagination.types.js +2 -0
- package/dist/components/Pagination/index.js +2 -0
- package/dist/components/ProductLabel/ProductLabel.js +16 -0
- package/dist/components/ProductLabel/ProductLabel.styled.js +53 -0
- package/dist/components/ProductLabel/ProductLabel.types.js +2 -0
- package/dist/components/ProductLabel/index.js +3 -0
- package/dist/components/Progress/CircularProgress.js +7 -0
- package/dist/components/Progress/CircularProgress.styled.js +8 -0
- package/dist/components/Progress/CircularProgress.types.js +2 -0
- package/dist/components/Progress/LinearProgress.js +7 -0
- package/dist/components/Progress/LinearProgress.styled.js +13 -0
- package/dist/components/Progress/LinearProgress.types.js +2 -0
- package/dist/components/Progress/index.js +4 -0
- package/dist/components/Radio/Radio.js +10 -0
- package/dist/components/Radio/Radio.styled.js +32 -0
- package/dist/components/Radio/Radio.types.js +2 -0
- package/dist/components/Radio/RadioGroup.js +8 -0
- package/dist/components/Radio/RadioGroup.styled.js +6 -0
- package/dist/components/Radio/RadioGroup.types.js +2 -0
- package/dist/components/Radio/index.js +4 -0
- package/dist/components/Stepper/Stepper.js +7 -0
- package/dist/components/Stepper/Stepper.styled.js +33 -0
- package/dist/components/Stepper/Stepper.types.js +2 -0
- package/dist/components/Stepper/index.js +3 -0
- package/dist/components/TabbedPanel/TabbedPanel.js +18 -0
- package/dist/components/TabbedPanel/TabbedPanel.styled.js +116 -0
- package/dist/components/TabbedPanel/TabbedPanel.types.js +2 -0
- package/dist/components/TabbedPanel/TabbedPanel.utils.js +18 -0
- package/dist/components/TabbedPanel/index.js +3 -0
- package/dist/components/TextField/TextArea.js +10 -0
- package/dist/components/TextField/TextArea.styled.js +31 -0
- package/dist/components/TextField/TextArea.types.js +3 -0
- package/dist/components/TextField/TextInput.js +13 -0
- package/dist/components/TextField/TextInput.styled.js +103 -0
- package/dist/components/TextField/TextInput.types.js +2 -0
- package/dist/components/TextField/TextInput.utils.js +6 -0
- package/dist/components/TextField/components/Buttons.js +11 -0
- package/dist/components/TextField/components/NormalTextInput.js +39 -0
- package/dist/components/TextField/components/PasswordInput.js +22 -0
- package/dist/components/TextField/index.js +4 -0
- package/dist/components/Tooltip/Tooltip.js +21 -0
- package/dist/components/Tooltip/Tooltip.styled.js +24 -0
- package/dist/components/Tooltip/Tooltip.types.js +2 -0
- package/dist/components/Tooltip/Tooltip.utils.js +30 -0
- package/dist/components/Tooltip/index.js +3 -0
- package/dist/components/UploadManager/UploadManager.js +85 -0
- package/dist/components/UploadManager/UploadManager.styled.js +38 -0
- package/dist/components/UploadManager/UploadManager.types.js +2 -0
- package/dist/components/UploadManager/index.js +3 -0
- package/dist/components/index.js +24 -0
- package/dist/foundations/index.js +5 -0
- package/dist/foundations/palette.js +213 -0
- package/dist/foundations/spacing.js +3 -0
- package/dist/foundations/styles.js +7 -0
- package/dist/foundations/typography.js +288 -0
- package/dist/icons/BellNoti/index.js +14 -0
- package/dist/icons/CloseLarge/index.js +14 -0
- package/dist/icons/CloseSmall/index.js +14 -0
- package/dist/icons/DownloadPdf/index.js +14 -0
- package/dist/icons/Ellipse/index.js +14 -0
- package/dist/icons/FilterNoti/index.js +14 -0
- package/dist/icons/HideLarge/index.js +14 -0
- package/dist/icons/HideSmall/index.js +14 -0
- package/dist/icons/InformationLarge/index.js +14 -0
- package/dist/icons/InformationSmall/index.js +14 -0
- package/dist/icons/Manufacturer/index.js +14 -0
- package/dist/icons/Rectangle/index.js +14 -0
- package/dist/icons/RefreshLeft/index.js +14 -0
- package/dist/icons/RefreshRight/index.js +14 -0
- package/dist/icons/ShowLarge/index.js +14 -0
- package/dist/icons/ShowSmall/index.js +14 -0
- package/dist/icons/index.js +180 -0
- package/dist/index.js +4 -0
- package/dist/reportWebVitals.js +13 -0
- package/dist/setupTests.js +6 -0
- package/dist/systems/drawer.js +6 -0
- package/dist/systems/index.js +7 -0
- package/dist/theme.js +21 -0
- package/dist/types/assets/ic-bell-noti-outlined-20px.d.ts +3 -0
- package/dist/types/assets/ic-close-large-outlined-20px.d.ts +3 -0
- package/dist/types/assets/ic-close-small-outlined-20px.d.ts +3 -0
- package/dist/types/assets/ic-download-pdf-outlined-20px.d.ts +3 -0
- package/dist/types/assets/ic-ellipse-outlined-20px.d.ts +3 -0
- package/dist/types/assets/ic-filter-noti-outlined-20px.d.ts +3 -0
- package/dist/types/assets/ic-hide-large-outlined-20px.d.ts +3 -0
- package/dist/types/assets/ic-hide-small-outlined-20px.d.ts +3 -0
- package/dist/types/assets/ic-information-large-outlined-20px.d.ts +3 -0
- package/dist/types/assets/ic-information-small-outlined-20px.d.ts +3 -0
- package/dist/types/assets/ic-manufacturer-outlined-20px.d.ts +3 -0
- package/dist/types/assets/ic-rectangle-outlined-20px.d.ts +3 -0
- package/dist/types/assets/ic-refresh-left-outlined-20px.d.ts +3 -0
- package/dist/types/assets/ic-refresh-right-outlined-20px.d.ts +3 -0
- package/dist/types/assets/ic-show-large-outlined-20px.d.ts +3 -0
- package/dist/types/assets/ic-show-small-outlined-20px.d.ts +3 -0
- package/dist/types/assets/index.d.ts +16 -0
- package/dist/types/components/Alert/Alert.d.ts +4 -0
- package/dist/types/components/Alert/Alert.styled.d.ts +3 -0
- package/dist/types/components/Alert/Alert.types.d.ts +4 -0
- package/dist/types/components/Alert/Alert.utils.d.ts +4 -0
- package/dist/types/components/Alert/index.d.ts +4 -0
- package/dist/types/components/BaseTextField/BaseTextField.styled.d.ts +61 -0
- package/dist/types/components/BaseTextField/BaseTextField.types.d.ts +17 -0
- package/dist/types/components/BaseTextField/BaseTextField.utils.d.ts +2 -0
- package/dist/types/components/Button/BaseButton.d.ts +3 -0
- package/dist/types/components/Button/Button.d.ts +3 -0
- package/dist/types/components/Button/Button.types.d.ts +24 -0
- package/dist/types/components/Button/Button.utils.d.ts +8 -0
- package/dist/types/components/Button/index.d.ts +5 -0
- package/dist/types/components/Button/styleds/BaseButton.styled.d.ts +859 -0
- package/dist/types/components/Button/styleds/ContainedButton.styled.d.ts +894 -0
- package/dist/types/components/Button/styleds/GhostButton.styled.d.ts +888 -0
- package/dist/types/components/Button/styleds/IconButton.styled.d.ts +21 -0
- package/dist/types/components/Button/styleds/OutlinedButton.styled.d.ts +895 -0
- package/dist/types/components/Card/Card.d.ts +3 -0
- package/dist/types/components/Card/Card.styled.d.ts +3 -0
- package/dist/types/components/Card/Card.types.d.ts +8 -0
- package/dist/types/components/Card/index.d.ts +4 -0
- package/dist/types/components/Checkbox/Checkbox.d.ts +4 -0
- package/dist/types/components/Checkbox/Checkbox.styled.d.ts +10 -0
- package/dist/types/components/Checkbox/Checkbox.types.d.ts +15 -0
- package/dist/types/components/Checkbox/Checkbox.utils.d.ts +3 -0
- package/dist/types/components/Checkbox/index.d.ts +4 -0
- package/dist/types/components/Chip/Chip.d.ts +3 -0
- package/dist/types/components/Chip/Chip.styled.d.ts +6 -0
- package/dist/types/components/Chip/Chip.types.d.ts +6 -0
- package/dist/types/components/Chip/Chip.utils.d.ts +2 -0
- package/dist/types/components/Chip/index.d.ts +3 -0
- package/dist/types/components/DataTable/DataTable.d.ts +3 -0
- package/dist/types/components/DataTable/DataTable.styled.d.ts +3 -0
- package/dist/types/components/DataTable/index.d.ts +1 -0
- package/dist/types/components/DatePicker/DatePicker.d.ts +3 -0
- package/dist/types/components/DatePicker/DatePicker.styled.d.ts +3 -0
- package/dist/types/components/DatePicker/DatePicker.types.d.ts +6 -0
- package/dist/types/components/DatePicker/index.d.ts +3 -0
- package/dist/types/components/Dialog/Dialog.d.ts +3 -0
- package/dist/types/components/Dialog/Dialog.styled.d.ts +24 -0
- package/dist/types/components/Dialog/Dialog.types.d.ts +19 -0
- package/dist/types/components/Dialog/index.d.ts +4 -0
- package/dist/types/components/Divider/Divider.d.ts +3 -0
- package/dist/types/components/Divider/Divider.styled.d.ts +6 -0
- package/dist/types/components/Divider/Divider.types.d.ts +5 -0
- package/dist/types/components/Divider/index.d.ts +4 -0
- package/dist/types/components/Dropdown/Dropdown.d.ts +3 -0
- package/dist/types/components/Dropdown/Dropdown.styled.d.ts +12 -0
- package/dist/types/components/Dropdown/Dropdown.types.d.ts +20 -0
- package/dist/types/components/Dropdown/Dropdown.utils.d.ts +3 -0
- package/dist/types/components/Dropdown/DropdownItem.d.ts +3 -0
- package/dist/types/components/Dropdown/DropdownItem.styled.d.ts +10 -0
- package/dist/types/components/Dropdown/DropdownItem.types.d.ts +12 -0
- package/dist/types/components/Dropdown/DropdownItem.utils.d.ts +3 -0
- package/dist/types/components/Dropdown/DropdownSubtitle.d.ts +3 -0
- package/dist/types/components/Dropdown/DropdownSubtitle.styled.d.ts +5 -0
- package/dist/types/components/Dropdown/DropdownSubtitle.types.d.ts +5 -0
- package/dist/types/components/Dropdown/IconDropdown.d.ts +3 -0
- package/dist/types/components/Dropdown/IconDropdown.styled.d.ts +6 -0
- package/dist/types/components/Dropdown/IconDropdown.types.d.ts +19 -0
- package/dist/types/components/Dropdown/index.d.ts +9 -0
- package/dist/types/components/FileDnDZone/FileDnDZone.d.ts +3 -0
- package/dist/types/components/FileDnDZone/FileDnDZone.styled.d.ts +14 -0
- package/dist/types/components/FileDnDZone/FileDnDZone.types.d.ts +12 -0
- package/dist/types/components/FileDnDZone/FileDnDZone.utils.d.ts +2 -0
- package/dist/types/components/FileDnDZone/index.d.ts +4 -0
- package/dist/types/components/List/List.d.ts +5 -0
- package/dist/types/components/List/List.styled.d.ts +8 -0
- package/dist/types/components/List/List.types.d.ts +19 -0
- package/dist/types/components/List/List.utils.d.ts +3 -0
- package/dist/types/components/List/ListItem.d.ts +3 -0
- package/dist/types/components/List/ListItem.styled.d.ts +35 -0
- package/dist/types/components/List/ListItem.types.d.ts +23 -0
- package/dist/types/components/List/ListItemCaption.d.ts +4 -0
- package/dist/types/components/List/ListItemCaption.styled.d.ts +4 -0
- package/dist/types/components/List/ListItemCaption.types.d.ts +1 -0
- package/dist/types/components/List/index.d.ts +6 -0
- package/dist/types/components/LoadingIndicator/LoadingIndicator.d.ts +3 -0
- package/dist/types/components/LoadingIndicator/LoadingIndicator.styled.d.ts +13 -0
- package/dist/types/components/LoadingIndicator/LoadingIndicator.types.d.ts +6 -0
- package/dist/types/components/LoadingIndicator/index.d.ts +4 -0
- package/dist/types/components/Menu/Menu.d.ts +5 -0
- package/dist/types/components/Menu/Menu.styled.d.ts +6 -0
- package/dist/types/components/Menu/Menu.types.d.ts +15 -0
- package/dist/types/components/Menu/MenuItem.d.ts +3 -0
- package/dist/types/components/Menu/MenuItem.styled.d.ts +9 -0
- package/dist/types/components/Menu/MenuItem.types.d.ts +13 -0
- package/dist/types/components/Menu/index.d.ts +4 -0
- package/dist/types/components/MuiCssBaseline.d.ts +4 -0
- package/dist/types/components/MuiInputBase.d.ts +4 -0
- package/dist/types/components/MuiOutlinedInput.d.ts +4 -0
- package/dist/types/components/MuiTextField.d.ts +5 -0
- package/dist/types/components/Pagination/Pagination.d.ts +3 -0
- package/dist/types/components/Pagination/Pagination.styled.d.ts +24 -0
- package/dist/types/components/Pagination/Pagination.types.d.ts +35 -0
- package/dist/types/components/Pagination/index.d.ts +2 -0
- package/dist/types/components/ProductLabel/ProductLabel.d.ts +3 -0
- package/dist/types/components/ProductLabel/ProductLabel.styled.d.ts +22 -0
- package/dist/types/components/ProductLabel/ProductLabel.types.d.ts +10 -0
- package/dist/types/components/ProductLabel/index.d.ts +4 -0
- package/dist/types/components/Progress/CircularProgress.d.ts +3 -0
- package/dist/types/components/Progress/CircularProgress.styled.d.ts +3 -0
- package/dist/types/components/Progress/CircularProgress.types.d.ts +5 -0
- package/dist/types/components/Progress/LinearProgress.d.ts +3 -0
- package/dist/types/components/Progress/LinearProgress.styled.d.ts +3 -0
- package/dist/types/components/Progress/LinearProgress.types.d.ts +6 -0
- package/dist/types/components/Progress/index.d.ts +3 -0
- package/dist/types/components/Radio/Radio.d.ts +4 -0
- package/dist/types/components/Radio/Radio.styled.d.ts +7 -0
- package/dist/types/components/Radio/Radio.types.d.ts +14 -0
- package/dist/types/components/Radio/RadioGroup.d.ts +4 -0
- package/dist/types/components/Radio/RadioGroup.styled.d.ts +1 -0
- package/dist/types/components/Radio/RadioGroup.types.d.ts +9 -0
- package/dist/types/components/Radio/index.d.ts +5 -0
- package/dist/types/components/Stepper/Stepper.d.ts +3 -0
- package/dist/types/components/Stepper/Stepper.styled.d.ts +12 -0
- package/dist/types/components/Stepper/Stepper.types.d.ts +11 -0
- package/dist/types/components/Stepper/index.d.ts +4 -0
- package/dist/types/components/TabbedPanel/TabbedPanel.d.ts +3 -0
- package/dist/types/components/TabbedPanel/TabbedPanel.styled.d.ts +11 -0
- package/dist/types/components/TabbedPanel/TabbedPanel.types.d.ts +31 -0
- package/dist/types/components/TabbedPanel/TabbedPanel.utils.d.ts +13 -0
- package/dist/types/components/TabbedPanel/index.d.ts +4 -0
- package/dist/types/components/TextField/TextArea.d.ts +4 -0
- package/dist/types/components/TextField/TextArea.styled.d.ts +5 -0
- package/dist/types/components/TextField/TextArea.types.d.ts +19 -0
- package/dist/types/components/TextField/TextInput.d.ts +4 -0
- package/dist/types/components/TextField/TextInput.styled.d.ts +11 -0
- package/dist/types/components/TextField/TextInput.types.d.ts +26 -0
- package/dist/types/components/TextField/TextInput.utils.d.ts +3 -0
- package/dist/types/components/TextField/components/Buttons.d.ts +8 -0
- package/dist/types/components/TextField/components/NormalTextInput.d.ts +4 -0
- package/dist/types/components/TextField/components/PasswordInput.d.ts +4 -0
- package/dist/types/components/TextField/index.d.ts +6 -0
- package/dist/types/components/Tooltip/Tooltip.d.ts +4 -0
- package/dist/types/components/Tooltip/Tooltip.styled.d.ts +3 -0
- package/dist/types/components/Tooltip/Tooltip.types.d.ts +16 -0
- package/dist/types/components/Tooltip/Tooltip.utils.d.ts +4 -0
- package/dist/types/components/Tooltip/index.d.ts +4 -0
- package/dist/types/components/UploadManager/UploadManager.d.ts +6 -0
- package/dist/types/components/UploadManager/UploadManager.styled.d.ts +13 -0
- package/dist/types/components/UploadManager/UploadManager.types.d.ts +14 -0
- package/dist/types/components/UploadManager/index.d.ts +4 -0
- package/dist/types/components/index.d.ts +23 -0
- package/dist/types/foundations/index.d.ts +4 -0
- package/dist/types/foundations/palette.d.ts +79 -0
- package/dist/types/foundations/spacing.d.ts +3 -0
- package/dist/types/foundations/styles.d.ts +2 -0
- package/dist/types/foundations/typography.d.ts +152 -0
- package/dist/types/icons/BellNoti/index.d.ts +12 -0
- package/dist/types/icons/CloseLarge/index.d.ts +12 -0
- package/dist/types/icons/CloseSmall/index.d.ts +12 -0
- package/dist/types/icons/DownloadPdf/index.d.ts +12 -0
- package/dist/types/icons/Ellipse/index.d.ts +12 -0
- package/dist/types/icons/FilterNoti/index.d.ts +12 -0
- package/dist/types/icons/HideLarge/index.d.ts +12 -0
- package/dist/types/icons/HideSmall/index.d.ts +12 -0
- package/dist/types/icons/InformationLarge/index.d.ts +12 -0
- package/dist/types/icons/InformationSmall/index.d.ts +12 -0
- package/dist/types/icons/Manufacturer/index.d.ts +12 -0
- package/dist/types/icons/Rectangle/index.d.ts +12 -0
- package/dist/types/icons/RefreshLeft/index.d.ts +12 -0
- package/dist/types/icons/RefreshRight/index.d.ts +12 -0
- package/dist/types/icons/ShowLarge/index.d.ts +12 -0
- package/dist/types/icons/ShowSmall/index.d.ts +12 -0
- package/dist/types/icons/index.d.ts +179 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/reportWebVitals.d.ts +3 -0
- package/dist/types/setupTests.d.ts +1 -0
- package/dist/types/systems/drawer.d.ts +22 -0
- package/dist/types/systems/index.d.ts +6 -0
- package/dist/types/theme.d.ts +2 -0
- package/package.json +1 -1
- package/src/components/Alert/Alert.tsx +1 -1
- package/src/components/Alert/Alert.utils.tsx +1 -1
- package/src/components/Chip/Chip.tsx +1 -1
- package/src/components/Chip/Chip.utils.tsx +1 -1
- package/src/components/DatePicker/DatePicker.tsx +1 -1
- package/src/components/Dialog/Dialog.tsx +1 -1
- package/src/components/Dropdown/Dropdown.tsx +1 -1
- package/src/components/Dropdown/DropdownItem.tsx +1 -1
- package/src/components/Dropdown/IconDropdown.tsx +1 -1
- package/src/components/List/List.tsx +1 -1
- package/src/components/List/ListItem.styled.tsx +1 -1
- package/src/components/Pagination/Pagination.styled.tsx +71 -0
- package/src/components/Pagination/Pagination.tsx +182 -0
- package/src/components/Pagination/Pagination.types.ts +39 -0
- package/src/components/Pagination/index.ts +2 -0
- package/src/components/ProductLabel/ProductLabel.tsx +1 -1
- package/src/components/TextField/components/Buttons.tsx +1 -1
- package/src/components/UploadManager/UploadManager.tsx +1 -1
- package/src/components/index.ts +1 -1
- package/src/foundations/index.ts +1 -0
- package/src/foundations/palette.ts +12 -1
- package/src/foundations/styles.ts +9 -0
- package/src/icons/BellNoti/index.tsx +28 -0
- package/src/icons/CloseLarge/index.tsx +28 -0
- package/src/icons/CloseSmall/index.tsx +28 -0
- package/src/icons/DownloadPdf/index.tsx +28 -0
- package/src/icons/Ellipse/index.tsx +28 -0
- package/src/icons/FilterNoti/index.tsx +28 -0
- package/src/icons/HideLarge/index.tsx +28 -0
- package/src/icons/HideSmall/index.tsx +28 -0
- package/src/icons/InformationLarge/index.tsx +28 -0
- package/src/icons/InformationSmall/index.tsx +28 -0
- package/src/icons/Manufacturer/index.tsx +28 -0
- package/src/icons/Rectangle/index.tsx +28 -0
- package/src/icons/RefreshLeft/index.tsx +28 -0
- package/src/icons/RefreshRight/index.tsx +28 -0
- package/src/icons/ShowLarge/index.tsx +28 -0
- package/src/icons/ShowSmall/index.tsx +28 -0
- package/src/components/Icons/BellNoti/index.tsx +0 -22
- package/src/components/Icons/CloseLarge/index.tsx +0 -22
- package/src/components/Icons/CloseSmall/index.tsx +0 -22
- package/src/components/Icons/DownloadPdf/index.tsx +0 -22
- package/src/components/Icons/Ellipse/index.tsx +0 -22
- package/src/components/Icons/FilterNoti/index.tsx +0 -22
- package/src/components/Icons/HideLarge/index.tsx +0 -22
- package/src/components/Icons/HideSmall/index.tsx +0 -22
- package/src/components/Icons/InformationLarge/index.tsx +0 -22
- package/src/components/Icons/InformationSmall/index.tsx +0 -22
- package/src/components/Icons/Manufacturer/index.tsx +0 -22
- package/src/components/Icons/Rectangle/index.tsx +0 -22
- package/src/components/Icons/RefreshLeft/index.tsx +0 -22
- package/src/components/Icons/RefreshRight/index.tsx +0 -22
- package/src/components/Icons/ShowLarge/index.tsx +0 -22
- package/src/components/Icons/ShowSmall/index.tsx +0 -22
- /package/src/{components/Icons → icons}/index.ts +0 -0
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
const palette = {
|
|
2
|
+
brand: {
|
|
3
|
+
primary: '#3BC9DB',
|
|
4
|
+
secondary: '#96EDFF',
|
|
5
|
+
},
|
|
6
|
+
text: {
|
|
7
|
+
primary: '#FFFFFF',
|
|
8
|
+
secondary: '#AFAFB1',
|
|
9
|
+
disabled: '#A8A8A8',
|
|
10
|
+
},
|
|
11
|
+
background: {},
|
|
12
|
+
common: {},
|
|
13
|
+
lunitTeal: {
|
|
14
|
+
5: '#EAFAFF',
|
|
15
|
+
10: '#96EDFF',
|
|
16
|
+
20: '#30DFFC',
|
|
17
|
+
30: '#3BC9DB',
|
|
18
|
+
40: '#00C9EA',
|
|
19
|
+
50: '#0ABEE5',
|
|
20
|
+
60: '#00B3DB',
|
|
21
|
+
70: '#048AB4',
|
|
22
|
+
80: '#05495F',
|
|
23
|
+
90: '#002930',
|
|
24
|
+
},
|
|
25
|
+
neutralGrey: {
|
|
26
|
+
0: '#FFFFFF',
|
|
27
|
+
5: '#FAFAFB',
|
|
28
|
+
10: '#FAFAFA',
|
|
29
|
+
15: '#F1F1F4',
|
|
30
|
+
20: '#DFDFE2',
|
|
31
|
+
25: '#D4D4D6',
|
|
32
|
+
30: '#C6C6C8',
|
|
33
|
+
35: '#C4C4C4',
|
|
34
|
+
40: '#AFAFB1',
|
|
35
|
+
45: '#99999B',
|
|
36
|
+
50: '#7F7F81',
|
|
37
|
+
55: '#737377',
|
|
38
|
+
60: '#747477',
|
|
39
|
+
65: '#626264',
|
|
40
|
+
70: '#4E4E50',
|
|
41
|
+
75: '#3E3E40',
|
|
42
|
+
80: '#363B3E',
|
|
43
|
+
85: '#333336',
|
|
44
|
+
90: '#2D2D2F',
|
|
45
|
+
95: '#1F1F21',
|
|
46
|
+
96: '#1E1E1E',
|
|
47
|
+
97: '#111113',
|
|
48
|
+
100: '#000000',
|
|
49
|
+
},
|
|
50
|
+
yellow: {
|
|
51
|
+
5: '#FAF089',
|
|
52
|
+
10: '#FFE500',
|
|
53
|
+
20: '#FFE600',
|
|
54
|
+
},
|
|
55
|
+
orange: {
|
|
56
|
+
5: '#FFD9BE',
|
|
57
|
+
10: '#FFB784',
|
|
58
|
+
20: '#FF9B54',
|
|
59
|
+
},
|
|
60
|
+
magenta: {
|
|
61
|
+
5: '#F9D1D1',
|
|
62
|
+
10: '#FFC9C9',
|
|
63
|
+
20: '#FAB2D3',
|
|
64
|
+
30: '#FFA4B6',
|
|
65
|
+
40: '#FF8787',
|
|
66
|
+
50: '#FF8389',
|
|
67
|
+
60: '#FB7791',
|
|
68
|
+
70: '#F765A3',
|
|
69
|
+
80: '#FF50A0',
|
|
70
|
+
90: '#E41976',
|
|
71
|
+
100: '#B20052',
|
|
72
|
+
},
|
|
73
|
+
red: {
|
|
74
|
+
5: '#FA4D56',
|
|
75
|
+
10: '#FE353F',
|
|
76
|
+
20: '#FF0000',
|
|
77
|
+
30: '#E63B28',
|
|
78
|
+
40: '#DA1E28',
|
|
79
|
+
50: '#A60D0D',
|
|
80
|
+
},
|
|
81
|
+
blue: {
|
|
82
|
+
5: '#A5D8FF',
|
|
83
|
+
10: '#A6C0D6',
|
|
84
|
+
15: '#4DABF7',
|
|
85
|
+
20: '#78A9FF',
|
|
86
|
+
25: '#748FFC',
|
|
87
|
+
30: '#587EFC',
|
|
88
|
+
35: '#1971D7',
|
|
89
|
+
40: '#3A5DD9',
|
|
90
|
+
45: '#4F5DC5',
|
|
91
|
+
50: '#443AFF',
|
|
92
|
+
55: '#165BAA',
|
|
93
|
+
60: '#0055AB',
|
|
94
|
+
65: '#132A9B',
|
|
95
|
+
70: '#034480',
|
|
96
|
+
75: '#0B1354',
|
|
97
|
+
},
|
|
98
|
+
green: {
|
|
99
|
+
10: '#73FF0C',
|
|
100
|
+
20: '#66BB6A',
|
|
101
|
+
30: '#42BE65',
|
|
102
|
+
40: '#24A148',
|
|
103
|
+
50: '#014B58',
|
|
104
|
+
},
|
|
105
|
+
purple: {
|
|
106
|
+
5: '#BAC8FF',
|
|
107
|
+
10: '#B0C0F4',
|
|
108
|
+
15: '#D0BFFF',
|
|
109
|
+
20: '#C378DB',
|
|
110
|
+
30: '#9775FA',
|
|
111
|
+
40: '#9E6BF0',
|
|
112
|
+
50: '#A155B9',
|
|
113
|
+
60: '#8D2FAB',
|
|
114
|
+
70: '#7E41DA',
|
|
115
|
+
80: '#3612A1',
|
|
116
|
+
},
|
|
117
|
+
pdl1Tps: {
|
|
118
|
+
Cutoff1: '#5091FF',
|
|
119
|
+
Cutoff49: '#0CA678',
|
|
120
|
+
Cutoff50: '#F76707',
|
|
121
|
+
PositiveTc: '#AD1EFF',
|
|
122
|
+
NegativeTc: '#1EFCFF',
|
|
123
|
+
},
|
|
124
|
+
pdl1Cps: {
|
|
125
|
+
Cutoff1: '#5091FF',
|
|
126
|
+
Cutoff10: '#F76707',
|
|
127
|
+
Ca: '#0CA678',
|
|
128
|
+
Cis: '#5B8DEF',
|
|
129
|
+
Pch: '#FF8989',
|
|
130
|
+
PcL: '#D6C896',
|
|
131
|
+
PositiveTc: '#AD1EFF',
|
|
132
|
+
NegativeTc: '#1EFCFF',
|
|
133
|
+
PositiveIc: '#FFEE59',
|
|
134
|
+
NegativeIc: '#FF5403',
|
|
135
|
+
},
|
|
136
|
+
io: {
|
|
137
|
+
BmrkCutoff1: '#5091FF',
|
|
138
|
+
BmrkCutoff20: '#EE5140',
|
|
139
|
+
Inflamed: '#C65F6E',
|
|
140
|
+
ImmuneEx: '#91C4A3',
|
|
141
|
+
ImmuneDsrt: '#143DDE',
|
|
142
|
+
Ca: '#0CA678',
|
|
143
|
+
Cs: '#91C4A3',
|
|
144
|
+
Lc: '#FFF950',
|
|
145
|
+
Tc: '#F76707',
|
|
146
|
+
},
|
|
147
|
+
tumorPurity: {
|
|
148
|
+
DensityBar: '#EE5140',
|
|
149
|
+
Ca: '#0CA678',
|
|
150
|
+
Tc: '#F76707',
|
|
151
|
+
Ntc: '#FFF950',
|
|
152
|
+
},
|
|
153
|
+
her2: {
|
|
154
|
+
Ca: '#0CA678',
|
|
155
|
+
Cis: '#5B8DEF',
|
|
156
|
+
Her2_Negative: '#4B93F9',
|
|
157
|
+
Her2_1_Positive: '#79FD4B',
|
|
158
|
+
Her2_2_Positive: '#F8E71C',
|
|
159
|
+
Her2_3_Positive: '#EF0B0B',
|
|
160
|
+
},
|
|
161
|
+
erpr: {
|
|
162
|
+
Ca: '#0CA678',
|
|
163
|
+
Cis: '#5B8DEF',
|
|
164
|
+
Erpr_Negative: '#4B93F9',
|
|
165
|
+
Erpr_1_Positive: '#79FD4B',
|
|
166
|
+
Erpr_2_Positive: '#F8E71C',
|
|
167
|
+
Erpr_3_Positive: '#EF0B0B',
|
|
168
|
+
Cutoff0: '#75F0DA',
|
|
169
|
+
Cutoff1: '#FD6D0D',
|
|
170
|
+
Cutoff10: '#9E5EFF',
|
|
171
|
+
},
|
|
172
|
+
others: {
|
|
173
|
+
RowHover: 'rgba(134, 148, 177, 0.08)',
|
|
174
|
+
DatePickerHover: 'rgba(114, 146, 253, 0.3)',
|
|
175
|
+
Teal50Op20: 'rgba(0, 201, 234, 0.2)',
|
|
176
|
+
Teal50Op18: 'rgba(0, 201, 234, 0.18)',
|
|
177
|
+
Grn20Op32: 'rgba(102, 187, 106, 0.32)',
|
|
178
|
+
Grn30OP32: 'rgba(66, 190, 101, 0.32)',
|
|
179
|
+
},
|
|
180
|
+
alert: {
|
|
181
|
+
InfoBG: 'rgba(55, 81, 167, 0.92)',
|
|
182
|
+
SuccessBG: 'rgba(0, 137, 159, 0.92)',
|
|
183
|
+
ErrorBG: 'rgba(116, 25, 15, 0.9)',
|
|
184
|
+
WarningBG: 'rgba(209, 188, 0, 0.7)',
|
|
185
|
+
},
|
|
186
|
+
analysisStatus: {
|
|
187
|
+
Uploaded: '#99B8D1',
|
|
188
|
+
Analyzing: '#AA99EC',
|
|
189
|
+
Analyzed: '#8DCEC3',
|
|
190
|
+
FailedEnabled: '#CA1414',
|
|
191
|
+
FailedHover: '#FF8787',
|
|
192
|
+
FailedSelected: '#A60D0D',
|
|
193
|
+
Ready: '#00D1FF',
|
|
194
|
+
ReadyHover: '#38E3FF',
|
|
195
|
+
ReadySelected: '#006379',
|
|
196
|
+
Inferred: '#3E63DD',
|
|
197
|
+
InferredHover: '#46BCFF',
|
|
198
|
+
InferredSelected: '#273E89',
|
|
199
|
+
Invalid: '#838389',
|
|
200
|
+
InvalidHover: '#A7A7A7',
|
|
201
|
+
InvalidSelected: '#6E6E74',
|
|
202
|
+
},
|
|
203
|
+
scope1: '#7292FD',
|
|
204
|
+
scope2: '#587EFC',
|
|
205
|
+
scope3: '#B0C0F4',
|
|
206
|
+
scope4: '#3A5DD9',
|
|
207
|
+
info: { main: '#748FFC' },
|
|
208
|
+
success: { main: '#00C9EA' },
|
|
209
|
+
error: { main: '#FA4D56' },
|
|
210
|
+
warning: { main: '#FFE600' },
|
|
211
|
+
};
|
|
212
|
+
export default palette;
|
|
213
|
+
//# sourceMappingURL=palette.js.map
|
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
const typographyOptions = {
|
|
2
|
+
fontFamily: [
|
|
3
|
+
'Pretendard',
|
|
4
|
+
'-apple-system',
|
|
5
|
+
'BlinkMacSystemFont',
|
|
6
|
+
'"Segoe UI"',
|
|
7
|
+
'Roboto',
|
|
8
|
+
'"Helvetica Neue"',
|
|
9
|
+
'Arial',
|
|
10
|
+
'sans-serif',
|
|
11
|
+
'"Apple Color Emoji"',
|
|
12
|
+
'"Segoe UI Emoji"',
|
|
13
|
+
'"Segoe UI Symbol"',
|
|
14
|
+
].join(','),
|
|
15
|
+
h1: {
|
|
16
|
+
fontWeight: 600,
|
|
17
|
+
fontSize: '52px',
|
|
18
|
+
lineHeight: '68px',
|
|
19
|
+
},
|
|
20
|
+
h2: {
|
|
21
|
+
fontWeight: 700,
|
|
22
|
+
fontSize: '38px',
|
|
23
|
+
lineHeight: '48px',
|
|
24
|
+
},
|
|
25
|
+
h3: {
|
|
26
|
+
fontWeight: 500,
|
|
27
|
+
fontSize: '38px',
|
|
28
|
+
lineHeight: '48px',
|
|
29
|
+
},
|
|
30
|
+
h4: {
|
|
31
|
+
fontWeight: 600,
|
|
32
|
+
fontSize: '30px',
|
|
33
|
+
lineHeight: '48px',
|
|
34
|
+
},
|
|
35
|
+
h5: {
|
|
36
|
+
fontWeight: 400,
|
|
37
|
+
fontSize: '30px',
|
|
38
|
+
lineHeight: '48px',
|
|
39
|
+
},
|
|
40
|
+
h6: {
|
|
41
|
+
fontWeight: 700,
|
|
42
|
+
fontSize: '28px',
|
|
43
|
+
lineHeight: 'auto',
|
|
44
|
+
},
|
|
45
|
+
h7: {
|
|
46
|
+
fontWeight: 600,
|
|
47
|
+
fontSize: '24px',
|
|
48
|
+
lineHeight: '36px',
|
|
49
|
+
},
|
|
50
|
+
h8: {
|
|
51
|
+
fontWeight: 600,
|
|
52
|
+
fontSize: '20px',
|
|
53
|
+
lineHeight: '28px',
|
|
54
|
+
},
|
|
55
|
+
h9: {
|
|
56
|
+
fontWeight: 600,
|
|
57
|
+
fontSize: '16px',
|
|
58
|
+
lineHeight: '24px',
|
|
59
|
+
},
|
|
60
|
+
subtitle1: {
|
|
61
|
+
fontSize: 20,
|
|
62
|
+
fontWeight: 600,
|
|
63
|
+
lineHeight: '28px',
|
|
64
|
+
},
|
|
65
|
+
subtitle2: {
|
|
66
|
+
fontSize: 18,
|
|
67
|
+
fontWeight: 600,
|
|
68
|
+
lineHeight: '24px',
|
|
69
|
+
},
|
|
70
|
+
subtitle3: {
|
|
71
|
+
fontSize: 16,
|
|
72
|
+
fontWeight: 600,
|
|
73
|
+
lineHeight: '24px',
|
|
74
|
+
},
|
|
75
|
+
body_b1: {
|
|
76
|
+
fontWeight: 700,
|
|
77
|
+
fontSize: '14px',
|
|
78
|
+
lineHeight: '20px',
|
|
79
|
+
},
|
|
80
|
+
body_b2: {
|
|
81
|
+
fontWeight: 700,
|
|
82
|
+
fontSize: '14px',
|
|
83
|
+
lineHeight: 'auto',
|
|
84
|
+
},
|
|
85
|
+
body_sb1: {
|
|
86
|
+
fontWeight: 600,
|
|
87
|
+
fontSize: '16px',
|
|
88
|
+
lineHeight: '24px',
|
|
89
|
+
},
|
|
90
|
+
body_sb2: {
|
|
91
|
+
fontWeight: 600,
|
|
92
|
+
fontSize: '16px',
|
|
93
|
+
lineHeight: '20px',
|
|
94
|
+
},
|
|
95
|
+
body_sb3: {
|
|
96
|
+
fontWeight: 700,
|
|
97
|
+
fontSize: '15px',
|
|
98
|
+
lineHeight: '16px',
|
|
99
|
+
},
|
|
100
|
+
body_sb4: {
|
|
101
|
+
fontWeight: 600,
|
|
102
|
+
fontSize: '14px',
|
|
103
|
+
lineHeight: '20px',
|
|
104
|
+
},
|
|
105
|
+
body_sb5: {
|
|
106
|
+
fontWeight: 600,
|
|
107
|
+
fontSize: '12.4px',
|
|
108
|
+
lineHeight: '16px',
|
|
109
|
+
},
|
|
110
|
+
body_m1: {
|
|
111
|
+
fontWeight: 500,
|
|
112
|
+
fontSize: '14px',
|
|
113
|
+
lineHeight: '20px',
|
|
114
|
+
},
|
|
115
|
+
body_m2: {
|
|
116
|
+
fontWeight: 500,
|
|
117
|
+
fontSize: '13px',
|
|
118
|
+
lineHeight: '18px',
|
|
119
|
+
letterSpacing: '0.2px',
|
|
120
|
+
},
|
|
121
|
+
body1: {
|
|
122
|
+
fontWeight: 400,
|
|
123
|
+
fontSize: '16px',
|
|
124
|
+
lineHeight: '24px',
|
|
125
|
+
},
|
|
126
|
+
body2: {
|
|
127
|
+
fontWeight: 400,
|
|
128
|
+
fontSize: '16px',
|
|
129
|
+
lineHeight: 'auto',
|
|
130
|
+
},
|
|
131
|
+
body3: {
|
|
132
|
+
fontWeight: 400,
|
|
133
|
+
fontSize: '15px',
|
|
134
|
+
lineHeight: '24px',
|
|
135
|
+
},
|
|
136
|
+
body4: {
|
|
137
|
+
fontWeight: 400,
|
|
138
|
+
fontSize: '14px',
|
|
139
|
+
lineHeight: '28px',
|
|
140
|
+
},
|
|
141
|
+
body5: {
|
|
142
|
+
fontWeight: 400,
|
|
143
|
+
fontSize: '14px',
|
|
144
|
+
lineHeight: '20px',
|
|
145
|
+
},
|
|
146
|
+
body6: {
|
|
147
|
+
fontWeight: 400,
|
|
148
|
+
fontSize: '13px',
|
|
149
|
+
lineHeight: '18px',
|
|
150
|
+
},
|
|
151
|
+
body7: {
|
|
152
|
+
fontWeight: 400,
|
|
153
|
+
fontSize: '12.4px',
|
|
154
|
+
lineHeight: '16px',
|
|
155
|
+
},
|
|
156
|
+
body8: {
|
|
157
|
+
fontWeight: 400,
|
|
158
|
+
fontSize: '12px',
|
|
159
|
+
lineHeight: '16px',
|
|
160
|
+
},
|
|
161
|
+
small_body_b1: {
|
|
162
|
+
fontWeight: 700,
|
|
163
|
+
fontSize: '12px',
|
|
164
|
+
lineHeight: '12px',
|
|
165
|
+
},
|
|
166
|
+
small_body_b2: {
|
|
167
|
+
fontWeight: 700,
|
|
168
|
+
fontSize: '12px',
|
|
169
|
+
lineHeight: '16px',
|
|
170
|
+
},
|
|
171
|
+
small_body_b3: {
|
|
172
|
+
fontWeight: 700,
|
|
173
|
+
fontSize: '10px',
|
|
174
|
+
lineHeight: 'auto',
|
|
175
|
+
},
|
|
176
|
+
small_body_b4: {
|
|
177
|
+
fontWeight: 700,
|
|
178
|
+
fontSize: '10px',
|
|
179
|
+
lineHeight: '12px',
|
|
180
|
+
},
|
|
181
|
+
small_body_b5: {
|
|
182
|
+
fontWeight: 700,
|
|
183
|
+
fontSize: '8px',
|
|
184
|
+
lineHeight: 'auto',
|
|
185
|
+
},
|
|
186
|
+
small_body_sb1: {
|
|
187
|
+
fontWeight: 600,
|
|
188
|
+
fontSize: '12px',
|
|
189
|
+
lineHeight: '16px',
|
|
190
|
+
},
|
|
191
|
+
small_body_m1: {
|
|
192
|
+
fontWeight: 500,
|
|
193
|
+
fontSize: '13px',
|
|
194
|
+
lineHeight: '20px',
|
|
195
|
+
},
|
|
196
|
+
small_body_m2: {
|
|
197
|
+
fontWeight: 500,
|
|
198
|
+
fontSize: '12px',
|
|
199
|
+
lineHeight: '20px',
|
|
200
|
+
},
|
|
201
|
+
small_body_m3: {
|
|
202
|
+
fontWeight: 500,
|
|
203
|
+
fontSize: '10px',
|
|
204
|
+
lineHeight: 'auto',
|
|
205
|
+
},
|
|
206
|
+
small_body_m4: {
|
|
207
|
+
fontWeight: 500,
|
|
208
|
+
fontSize: '10px',
|
|
209
|
+
lineHeight: '16px',
|
|
210
|
+
},
|
|
211
|
+
small_body_m5: {
|
|
212
|
+
fontWeight: 500,
|
|
213
|
+
fontSize: '8px',
|
|
214
|
+
lineHeight: 'auto',
|
|
215
|
+
},
|
|
216
|
+
small_body_m6: {
|
|
217
|
+
fontWeight: 500,
|
|
218
|
+
fontSize: '8px',
|
|
219
|
+
lineHeight: '12px',
|
|
220
|
+
},
|
|
221
|
+
small_body_m7: {
|
|
222
|
+
fontWeight: 500,
|
|
223
|
+
fontSize: '7px',
|
|
224
|
+
lineHeight: 'auto',
|
|
225
|
+
},
|
|
226
|
+
small_body1: {
|
|
227
|
+
fontWeight: 400,
|
|
228
|
+
fontSize: '13px',
|
|
229
|
+
lineHeight: '24px',
|
|
230
|
+
},
|
|
231
|
+
small_body2: {
|
|
232
|
+
fontWeight: 400,
|
|
233
|
+
fontSize: '12px',
|
|
234
|
+
lineHeight: '20px',
|
|
235
|
+
},
|
|
236
|
+
small_body3: {
|
|
237
|
+
fontWeight: 400,
|
|
238
|
+
fontSize: '10px',
|
|
239
|
+
lineHeight: 'auto',
|
|
240
|
+
},
|
|
241
|
+
small_body4: {
|
|
242
|
+
fontWeight: 400,
|
|
243
|
+
fontSize: '10px',
|
|
244
|
+
lineHeight: '14px',
|
|
245
|
+
},
|
|
246
|
+
small_body5: {
|
|
247
|
+
fontWeight: 400,
|
|
248
|
+
fontSize: '8px',
|
|
249
|
+
lineHeight: 'auto',
|
|
250
|
+
},
|
|
251
|
+
small_body_l1: {
|
|
252
|
+
fontWeight: 300,
|
|
253
|
+
fontSize: '10px',
|
|
254
|
+
lineHeight: '20px',
|
|
255
|
+
},
|
|
256
|
+
small_body_l2: {
|
|
257
|
+
fontWeight: 300,
|
|
258
|
+
fontSize: '7px',
|
|
259
|
+
lineHeight: 'auto',
|
|
260
|
+
},
|
|
261
|
+
overline: {
|
|
262
|
+
fontWeight: 500,
|
|
263
|
+
fontSize: '14px',
|
|
264
|
+
lineHeight: '20px',
|
|
265
|
+
letterSpacing: '1px',
|
|
266
|
+
textTransform: 'uppercase',
|
|
267
|
+
},
|
|
268
|
+
button1: {
|
|
269
|
+
fontWeight: 600,
|
|
270
|
+
fontSize: '16px',
|
|
271
|
+
lineHeight: '22px',
|
|
272
|
+
textTransform: 'capitalize',
|
|
273
|
+
},
|
|
274
|
+
button2: {
|
|
275
|
+
fontWeight: 600,
|
|
276
|
+
fontSize: '14px',
|
|
277
|
+
lineHeight: '20px',
|
|
278
|
+
letterSpacing: '0.2px',
|
|
279
|
+
textTransform: 'capitalize',
|
|
280
|
+
},
|
|
281
|
+
caption: {
|
|
282
|
+
fontWeight: 500,
|
|
283
|
+
fontSize: '12px',
|
|
284
|
+
lineHeight: '16px',
|
|
285
|
+
},
|
|
286
|
+
};
|
|
287
|
+
export default typographyOptions;
|
|
288
|
+
//# sourceMappingURL=typography.js.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
import { IcBellNotiOutlined20Px as outlined } from '../../assets';
|
|
4
|
+
const variants = ['outlined'];
|
|
5
|
+
const BellNoti = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return (_jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true }));
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
BellNoti.displayName = 'BellNoti';
|
|
12
|
+
BellNoti.variants = variants;
|
|
13
|
+
export default BellNoti;
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
import { IcCloseLargeOutlined20Px as outlined } from '../../assets';
|
|
4
|
+
const variants = ['outlined'];
|
|
5
|
+
const CloseLarge = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return (_jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true }));
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
CloseLarge.displayName = 'CloseLarge';
|
|
12
|
+
CloseLarge.variants = variants;
|
|
13
|
+
export default CloseLarge;
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
import { IcCloseSmallOutlined20Px as outlined } from '../../assets';
|
|
4
|
+
const variants = ['outlined'];
|
|
5
|
+
const CloseSmall = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return (_jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true }));
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
CloseSmall.displayName = 'CloseSmall';
|
|
12
|
+
CloseSmall.variants = variants;
|
|
13
|
+
export default CloseSmall;
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
import { IcDownloadPdfOutlined20Px as outlined } from '../../assets';
|
|
4
|
+
const variants = ['outlined'];
|
|
5
|
+
const DownloadPdf = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return (_jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true }));
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
DownloadPdf.displayName = 'DownloadPdf';
|
|
12
|
+
DownloadPdf.variants = variants;
|
|
13
|
+
export default DownloadPdf;
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
import { IcEllipseOutlined20Px as outlined } from '../../assets';
|
|
4
|
+
const variants = ['outlined'];
|
|
5
|
+
const Ellipse = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return (_jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true }));
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
Ellipse.displayName = 'Ellipse';
|
|
12
|
+
Ellipse.variants = variants;
|
|
13
|
+
export default Ellipse;
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
import { IcFilterNotiOutlined20Px as outlined } from '../../assets';
|
|
4
|
+
const variants = ['outlined'];
|
|
5
|
+
const FilterNoti = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return (_jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true }));
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
FilterNoti.displayName = 'FilterNoti';
|
|
12
|
+
FilterNoti.variants = variants;
|
|
13
|
+
export default FilterNoti;
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
import { IcHideLargeOutlined20Px as outlined } from '../../assets';
|
|
4
|
+
const variants = ['outlined'];
|
|
5
|
+
const HideLarge = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return (_jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true }));
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
HideLarge.displayName = 'HideLarge';
|
|
12
|
+
HideLarge.variants = variants;
|
|
13
|
+
export default HideLarge;
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
import { IcHideSmallOutlined20Px as outlined } from '../../assets';
|
|
4
|
+
const variants = ['outlined'];
|
|
5
|
+
const HideSmall = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return (_jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true }));
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
HideSmall.displayName = 'HideSmall';
|
|
12
|
+
HideSmall.variants = variants;
|
|
13
|
+
export default HideSmall;
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
import { IcInformationLargeOutlined20Px as outlined } from '../../assets';
|
|
4
|
+
const variants = ['outlined'];
|
|
5
|
+
const InformationLarge = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return (_jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true }));
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
InformationLarge.displayName = 'InformationLarge';
|
|
12
|
+
InformationLarge.variants = variants;
|
|
13
|
+
export default InformationLarge;
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
import { IcInformationSmallOutlined20Px as outlined } from '../../assets';
|
|
4
|
+
const variants = ['outlined'];
|
|
5
|
+
const InformationSmall = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return (_jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true }));
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
InformationSmall.displayName = 'InformationSmall';
|
|
12
|
+
InformationSmall.variants = variants;
|
|
13
|
+
export default InformationSmall;
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
import { IcManufacturerOutlined20Px as outlined } from '../../assets';
|
|
4
|
+
const variants = ['outlined'];
|
|
5
|
+
const Manufacturer = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return (_jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true }));
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
Manufacturer.displayName = 'Manufacturer';
|
|
12
|
+
Manufacturer.variants = variants;
|
|
13
|
+
export default Manufacturer;
|
|
14
|
+
//# sourceMappingURL=index.js.map
|