@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,8 @@
|
|
|
1
|
+
declare function ClearButton({ onClick }: {
|
|
2
|
+
onClick?: () => void;
|
|
3
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function ShowHidePasswordButton({ onClick, isHidden, }: {
|
|
5
|
+
onClick?: (event: any) => void;
|
|
6
|
+
isHidden: boolean;
|
|
7
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export { ClearButton, ShowHidePasswordButton };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import TextInput from './TextInput';
|
|
2
|
+
import type { TextInputProps } from './TextInput.types';
|
|
3
|
+
import TextArea from './TextArea';
|
|
4
|
+
import type { TextAreaProps } from './TextArea.types';
|
|
5
|
+
export { TextInput, TextArea };
|
|
6
|
+
export type { TextInputProps, TextAreaProps };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import type { TooltipClasses, TooltipProps as MuiTooltipProps } from '@mui/material';
|
|
3
|
+
export type Position = Pick<TooltipProps, 'placement'>;
|
|
4
|
+
export type TooltipSizes = 'small' | 'large';
|
|
5
|
+
export type TooltipSize = {
|
|
6
|
+
width: number;
|
|
7
|
+
height: number;
|
|
8
|
+
};
|
|
9
|
+
export type TooltipPlacement = TooltipClasses['tooltipPlacementBottom'] | TooltipClasses['tooltipPlacementLeft'] | TooltipClasses['tooltipPlacementRight'] | TooltipClasses['tooltipPlacementTop'];
|
|
10
|
+
export type ArrowSizeBySize = Record<TooltipSizes, TooltipSize>;
|
|
11
|
+
export type TooltipPlacementToSize = Record<TooltipPlacement, ArrowSizeBySize>;
|
|
12
|
+
export interface TooltipProps extends MuiTooltipProps {
|
|
13
|
+
icon?: ReactNode;
|
|
14
|
+
size?: TooltipSizes;
|
|
15
|
+
noPadding?: boolean;
|
|
16
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { TooltipPlacement, TooltipSize, TooltipSizes } from './Tooltip.types';
|
|
2
|
+
export declare const resizeArrowBySize: (tooltipType: TooltipSizes, tooltipPlacement: TooltipPlacement) => TooltipSize;
|
|
3
|
+
export declare const setMarginByPlacement: (tooltipPlacement: TooltipPlacement, margin: TooltipSize) => string | undefined;
|
|
4
|
+
export declare const setPaddingBySize: (tooltipSize: TooltipSizes) => string;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { UploadManagerProps } from './UploadManager.types';
|
|
2
|
+
/**
|
|
3
|
+
* Component used to display a list of files
|
|
4
|
+
*/
|
|
5
|
+
declare const UploadManager: ({ title, subTitle, files, onClose, onCancel, onRetry, }: UploadManagerProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default UploadManager;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const StyledPaper: import("@emotion/styled").StyledComponent<import("@mui/material").PaperOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
3
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
4
|
+
}, "style" | "square" | "classes" | "className" | "children" | "sx" | "variant" | "elevation"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
5
|
+
declare const StyledToolbar: import("@emotion/styled").StyledComponent<import("@mui/material").ToolbarOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
6
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
7
|
+
}, "style" | "classes" | "className" | "children" | "sx" | "variant" | "disableGutters"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
8
|
+
declare const StyledToolbarButtonContainer: import("@emotion/styled").StyledComponent<import("@mui/material").ToolbarOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
9
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
10
|
+
}, "style" | "classes" | "className" | "children" | "sx" | "variant" | "disableGutters"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
11
|
+
declare const StyledCollapse: import("@emotion/styled").StyledComponent<import("@mui/material").CollapseProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
12
|
+
declare const StyledUploadFile: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
13
|
+
export { StyledPaper, StyledToolbar, StyledToolbarButtonContainer, StyledCollapse, StyledUploadFile, };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { UppyFile } from '@uppy/core';
|
|
2
|
+
export interface UploadFileProps {
|
|
3
|
+
file: UppyFile;
|
|
4
|
+
onCancel?: (id: string) => void;
|
|
5
|
+
onRetry?: (id: string) => void;
|
|
6
|
+
}
|
|
7
|
+
export interface UploadManagerProps {
|
|
8
|
+
title: string;
|
|
9
|
+
subTitle?: string;
|
|
10
|
+
files: UppyFile[];
|
|
11
|
+
onClose?: () => void;
|
|
12
|
+
onCancel?: (id: string) => void;
|
|
13
|
+
onRetry?: (id: string) => void;
|
|
14
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export * from './Alert';
|
|
2
|
+
export * from './Button';
|
|
3
|
+
export * from './Card';
|
|
4
|
+
export * from './Checkbox';
|
|
5
|
+
export * from './Chip';
|
|
6
|
+
export * from './DataTable';
|
|
7
|
+
export * from './DatePicker';
|
|
8
|
+
export * from './Dialog';
|
|
9
|
+
export * from './Divider';
|
|
10
|
+
export * from './Dropdown';
|
|
11
|
+
export * from './FileDnDZone';
|
|
12
|
+
export * from './List';
|
|
13
|
+
export * from './LoadingIndicator';
|
|
14
|
+
export * from './Menu';
|
|
15
|
+
export * from './Pagination';
|
|
16
|
+
export * from './ProductLabel';
|
|
17
|
+
export * from './Progress';
|
|
18
|
+
export * from './Radio';
|
|
19
|
+
export * from './Stepper';
|
|
20
|
+
export * from './TabbedPanel';
|
|
21
|
+
export * from './TextField';
|
|
22
|
+
export * from './Tooltip';
|
|
23
|
+
export * from './UploadManager';
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { PaletteOptions } from '@mui/material';
|
|
3
|
+
type PaletteOptionItem<T extends PropertyKey> = Record<T, React.CSSProperties['color']>;
|
|
4
|
+
type LunitTealKey = '5' | '10' | '20' | '30' | '40' | '50' | '60' | '70' | '80' | '90';
|
|
5
|
+
type NeutralColorKey = '0' | '5' | '10' | '15' | '20' | '25' | '30' | '35' | '40' | '45' | '50' | '55' | '60' | '65' | '70' | '75' | '80' | '85' | '90' | '95' | '96' | '97' | '100';
|
|
6
|
+
type YellowKey = '5' | '10' | '20';
|
|
7
|
+
type OrangeKey = '5' | '10' | '20';
|
|
8
|
+
type MagentaKey = '5' | '10' | '20' | '30' | '40' | '50' | '60' | '70' | '80' | '90' | '100';
|
|
9
|
+
type RedKey = '5' | '10' | '20' | '30' | '40' | '50';
|
|
10
|
+
type BlueKey = '5' | '10' | '15' | '20' | '25' | '30' | '35' | '40' | '45' | '50' | '55' | '60' | '65' | '70' | '75';
|
|
11
|
+
type GreenKey = '10' | '20' | '30' | '40' | '50';
|
|
12
|
+
type PurpleKey = '5' | '10' | '15' | '20' | '30' | '40' | '50' | '60' | '70' | '80';
|
|
13
|
+
export type LunitTeal = PaletteOptionItem<LunitTealKey>;
|
|
14
|
+
export type NeutralColor = PaletteOptionItem<NeutralColorKey>;
|
|
15
|
+
export type Yellow = PaletteOptionItem<YellowKey>;
|
|
16
|
+
export type Orange = PaletteOptionItem<OrangeKey>;
|
|
17
|
+
export type Magenta = PaletteOptionItem<MagentaKey>;
|
|
18
|
+
export type Red = PaletteOptionItem<RedKey>;
|
|
19
|
+
export type Blue = PaletteOptionItem<BlueKey>;
|
|
20
|
+
export type Green = PaletteOptionItem<GreenKey>;
|
|
21
|
+
export type Purple = PaletteOptionItem<PurpleKey>;
|
|
22
|
+
type TPSKey = 'Cutoff1' | 'Cutoff49' | 'Cutoff50' | 'PositiveTc' | 'NegativeTc';
|
|
23
|
+
type CPSKey = 'Cutoff1' | 'Cutoff10' | 'Ca' | 'Cis' | 'Pch' | 'PcL' | 'PositiveTc' | 'NegativeTc' | 'PositiveIc' | 'NegativeIc';
|
|
24
|
+
type IOKey = 'BmrkCutoff1' | 'BmrkCutoff20' | 'Inflamed' | 'ImmuneEx' | 'ImmuneDsrt' | 'Ca' | 'Cs' | 'Lc' | 'Tc';
|
|
25
|
+
type TumorPurityKey = 'DensityBar' | 'Ca' | 'Tc' | 'Ntc';
|
|
26
|
+
type HER2Key = 'Ca' | 'Cis' | 'Her2_Negative' | 'Her2_1_Positive' | 'Her2_2_Positive' | 'Her2_3_Positive';
|
|
27
|
+
type ERPRKey = 'Ca' | 'Cis' | 'Erpr_Negative' | 'Erpr_1_Positive' | 'Erpr_2_Positive' | 'Erpr_3_Positive' | 'Cutoff0' | 'Cutoff1' | 'Cutoff10';
|
|
28
|
+
export type TPS = PaletteOptionItem<TPSKey>;
|
|
29
|
+
export type CPS = PaletteOptionItem<CPSKey>;
|
|
30
|
+
export type IO = PaletteOptionItem<IOKey>;
|
|
31
|
+
export type TumorPurity = PaletteOptionItem<TumorPurityKey>;
|
|
32
|
+
export type HER2 = PaletteOptionItem<HER2Key>;
|
|
33
|
+
export type ERPR = PaletteOptionItem<ERPRKey>;
|
|
34
|
+
type OthersKey = 'RowHover' | 'DatePickerHover' | 'Teal50Op20' | 'Teal50Op18' | 'Grn20Op32' | 'Grn30OP32';
|
|
35
|
+
export type Others = PaletteOptionItem<OthersKey>;
|
|
36
|
+
type AlertKey = 'InfoBG' | 'SuccessBG' | 'ErrorBG' | 'WarningBG';
|
|
37
|
+
export type Alert = PaletteOptionItem<AlertKey>;
|
|
38
|
+
type AnalysisStatusKey = 'Uploaded' | 'Ready' | 'ReadyHover' | 'ReadySelected' | 'Inferred' | 'InferredHover' | 'InferredSelected' | 'Analyzing' | 'Analyzed' | 'FailedEnabled' | 'FailedHover' | 'FailedSelected' | 'Ready' | 'ReadyHover' | 'ReadySelected' | 'Inferred' | 'InferredHover' | 'InferredSelected' | 'Invalid' | 'InvalidHover' | 'InvalidSelected';
|
|
39
|
+
export type AnalysisStatus = PaletteOptionItem<AnalysisStatusKey>;
|
|
40
|
+
export interface LunitPalette {
|
|
41
|
+
brand: {
|
|
42
|
+
primary: React.CSSProperties['color'];
|
|
43
|
+
secondary: React.CSSProperties['color'];
|
|
44
|
+
};
|
|
45
|
+
scope1: React.CSSProperties['color'];
|
|
46
|
+
scope2: React.CSSProperties['color'];
|
|
47
|
+
scope3: React.CSSProperties['color'];
|
|
48
|
+
scope4: React.CSSProperties['color'];
|
|
49
|
+
lunitTeal: LunitTeal;
|
|
50
|
+
neutralGrey: NeutralColor;
|
|
51
|
+
yellow: Yellow;
|
|
52
|
+
orange: Orange;
|
|
53
|
+
magenta: Magenta;
|
|
54
|
+
red: Red;
|
|
55
|
+
blue: Blue;
|
|
56
|
+
green: Green;
|
|
57
|
+
purple: Purple;
|
|
58
|
+
pdl1Tps: TPS;
|
|
59
|
+
pdl1Cps: CPS;
|
|
60
|
+
io: IO;
|
|
61
|
+
tumorPurity: TumorPurity;
|
|
62
|
+
her2: HER2;
|
|
63
|
+
erpr: ERPR;
|
|
64
|
+
others: Others;
|
|
65
|
+
alert: Alert;
|
|
66
|
+
/**
|
|
67
|
+
* @todo The dot, text colors for Analysis Status have not yet been determined.
|
|
68
|
+
* We will be updated once they are decided in the all-in-one plan. (hjkwon)
|
|
69
|
+
*/
|
|
70
|
+
analysisStatus: AnalysisStatus;
|
|
71
|
+
}
|
|
72
|
+
declare module '@mui/material/styles' {
|
|
73
|
+
interface Palette extends LunitPalette {
|
|
74
|
+
}
|
|
75
|
+
interface PaletteOptions extends LunitPalette {
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
declare const palette: PaletteOptions;
|
|
79
|
+
export default palette;
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TypographyOptions } from '@mui/material/styles/createTypography';
|
|
3
|
+
declare module '@mui/material/styles' {
|
|
4
|
+
interface TypographyVariants {
|
|
5
|
+
h7: React.CSSProperties;
|
|
6
|
+
h8: React.CSSProperties;
|
|
7
|
+
h9: React.CSSProperties;
|
|
8
|
+
h10: React.CSSProperties;
|
|
9
|
+
subtitle3: React.CSSProperties;
|
|
10
|
+
body_b1: React.CSSProperties;
|
|
11
|
+
body_b2: React.CSSProperties;
|
|
12
|
+
body_sb1: React.CSSProperties;
|
|
13
|
+
body_sb2: React.CSSProperties;
|
|
14
|
+
body_sb3: React.CSSProperties;
|
|
15
|
+
body_sb4: React.CSSProperties;
|
|
16
|
+
body_sb5: React.CSSProperties;
|
|
17
|
+
body_m1: React.CSSProperties;
|
|
18
|
+
body_m2: React.CSSProperties;
|
|
19
|
+
body1: React.CSSProperties;
|
|
20
|
+
body2: React.CSSProperties;
|
|
21
|
+
body3: React.CSSProperties;
|
|
22
|
+
body4: React.CSSProperties;
|
|
23
|
+
body5: React.CSSProperties;
|
|
24
|
+
body6: React.CSSProperties;
|
|
25
|
+
body7: React.CSSProperties;
|
|
26
|
+
body8: React.CSSProperties;
|
|
27
|
+
small_body_b1: React.CSSProperties;
|
|
28
|
+
small_body_b2: React.CSSProperties;
|
|
29
|
+
small_body_b3: React.CSSProperties;
|
|
30
|
+
small_body_b4: React.CSSProperties;
|
|
31
|
+
small_body_b5: React.CSSProperties;
|
|
32
|
+
small_body_sb1: React.CSSProperties;
|
|
33
|
+
small_body_m1: React.CSSProperties;
|
|
34
|
+
small_body_m2: React.CSSProperties;
|
|
35
|
+
small_body_m3: React.CSSProperties;
|
|
36
|
+
small_body_m4: React.CSSProperties;
|
|
37
|
+
small_body_m5: React.CSSProperties;
|
|
38
|
+
small_body_m6: React.CSSProperties;
|
|
39
|
+
small_body_m7: React.CSSProperties;
|
|
40
|
+
small_body1: React.CSSProperties;
|
|
41
|
+
small_body2: React.CSSProperties;
|
|
42
|
+
small_body3: React.CSSProperties;
|
|
43
|
+
small_body4: React.CSSProperties;
|
|
44
|
+
small_body5: React.CSSProperties;
|
|
45
|
+
small_body_l1: React.CSSProperties;
|
|
46
|
+
small_body_l2: React.CSSProperties;
|
|
47
|
+
overline: React.CSSProperties;
|
|
48
|
+
button1: React.CSSProperties;
|
|
49
|
+
button2: React.CSSProperties;
|
|
50
|
+
caption: React.CSSProperties;
|
|
51
|
+
}
|
|
52
|
+
interface TypographyVariantsOptions {
|
|
53
|
+
h7?: React.CSSProperties;
|
|
54
|
+
h8?: React.CSSProperties;
|
|
55
|
+
h9?: React.CSSProperties;
|
|
56
|
+
h10?: React.CSSProperties;
|
|
57
|
+
subtitle3?: React.CSSProperties;
|
|
58
|
+
body_b1?: React.CSSProperties;
|
|
59
|
+
body_b2?: React.CSSProperties;
|
|
60
|
+
body_sb1?: React.CSSProperties;
|
|
61
|
+
body_sb2?: React.CSSProperties;
|
|
62
|
+
body_sb3?: React.CSSProperties;
|
|
63
|
+
body_sb4?: React.CSSProperties;
|
|
64
|
+
body_sb5?: React.CSSProperties;
|
|
65
|
+
body_m1?: React.CSSProperties;
|
|
66
|
+
body_m2?: React.CSSProperties;
|
|
67
|
+
body1?: React.CSSProperties;
|
|
68
|
+
body2?: React.CSSProperties;
|
|
69
|
+
body3?: React.CSSProperties;
|
|
70
|
+
body4?: React.CSSProperties;
|
|
71
|
+
body5?: React.CSSProperties;
|
|
72
|
+
body6?: React.CSSProperties;
|
|
73
|
+
body7?: React.CSSProperties;
|
|
74
|
+
body8?: React.CSSProperties;
|
|
75
|
+
small_body_b1?: React.CSSProperties;
|
|
76
|
+
small_body_b2?: React.CSSProperties;
|
|
77
|
+
small_body_b3?: React.CSSProperties;
|
|
78
|
+
small_body_b4?: React.CSSProperties;
|
|
79
|
+
small_body_b5?: React.CSSProperties;
|
|
80
|
+
small_body_sb1?: React.CSSProperties;
|
|
81
|
+
small_body_m1?: React.CSSProperties;
|
|
82
|
+
small_body_m2?: React.CSSProperties;
|
|
83
|
+
small_body_m3?: React.CSSProperties;
|
|
84
|
+
small_body_m4?: React.CSSProperties;
|
|
85
|
+
small_body_m5?: React.CSSProperties;
|
|
86
|
+
small_body_m6?: React.CSSProperties;
|
|
87
|
+
small_body_m7?: React.CSSProperties;
|
|
88
|
+
small_body1?: React.CSSProperties;
|
|
89
|
+
small_body2?: React.CSSProperties;
|
|
90
|
+
small_body3?: React.CSSProperties;
|
|
91
|
+
small_body4?: React.CSSProperties;
|
|
92
|
+
small_body5?: React.CSSProperties;
|
|
93
|
+
small_body_l1?: React.CSSProperties;
|
|
94
|
+
small_body_l2?: React.CSSProperties;
|
|
95
|
+
overline?: React.CSSProperties;
|
|
96
|
+
button1?: React.CSSProperties;
|
|
97
|
+
button2?: React.CSSProperties;
|
|
98
|
+
caption?: React.CSSProperties;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
declare module '@mui/material/Typography' {
|
|
102
|
+
interface TypographyPropsVariantOverrides {
|
|
103
|
+
h7: true;
|
|
104
|
+
h8: true;
|
|
105
|
+
h9: true;
|
|
106
|
+
h10: true;
|
|
107
|
+
subtitle3: true;
|
|
108
|
+
body_b1: true;
|
|
109
|
+
body_b2: true;
|
|
110
|
+
body_sb1: true;
|
|
111
|
+
body_sb2: true;
|
|
112
|
+
body_sb3: true;
|
|
113
|
+
body_sb4: true;
|
|
114
|
+
body_sb5: true;
|
|
115
|
+
body_m1: true;
|
|
116
|
+
body_m2: true;
|
|
117
|
+
body1: true;
|
|
118
|
+
body2: true;
|
|
119
|
+
body3: true;
|
|
120
|
+
body4: true;
|
|
121
|
+
body5: true;
|
|
122
|
+
body6: true;
|
|
123
|
+
body7: true;
|
|
124
|
+
body8: true;
|
|
125
|
+
small_body_b1: true;
|
|
126
|
+
small_body_b2: true;
|
|
127
|
+
small_body_b3: true;
|
|
128
|
+
small_body_b4: true;
|
|
129
|
+
small_body_b5: true;
|
|
130
|
+
small_body_sb1: true;
|
|
131
|
+
small_body_m1: true;
|
|
132
|
+
small_body_m2: true;
|
|
133
|
+
small_body_m3: true;
|
|
134
|
+
small_body_m4: true;
|
|
135
|
+
small_body_m5: true;
|
|
136
|
+
small_body_m6: true;
|
|
137
|
+
small_body_m7: true;
|
|
138
|
+
small_body1: true;
|
|
139
|
+
small_body2: true;
|
|
140
|
+
small_body3: true;
|
|
141
|
+
small_body4: true;
|
|
142
|
+
small_body5: true;
|
|
143
|
+
small_body_l1: true;
|
|
144
|
+
small_body_l2: true;
|
|
145
|
+
overline: true;
|
|
146
|
+
button1: true;
|
|
147
|
+
button2: true;
|
|
148
|
+
caption: true;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
declare const typographyOptions: TypographyOptions;
|
|
152
|
+
export default typographyOptions;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const BellNoti: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default BellNoti;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const CloseLarge: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default CloseLarge;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const CloseSmall: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default CloseSmall;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const DownloadPdf: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default DownloadPdf;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const Ellipse: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default Ellipse;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const FilterNoti: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default FilterNoti;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const HideLarge: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default HideLarge;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const HideSmall: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default HideSmall;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const InformationLarge: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default InformationLarge;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const InformationSmall: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default InformationSmall;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const Manufacturer: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default Manufacturer;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const Rectangle: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default Rectangle;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const RefreshLeft: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default RefreshLeft;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const RefreshRight: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default RefreshRight;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const ShowLarge: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default ShowLarge;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
declare const variants: readonly ["outlined"];
|
|
3
|
+
type Variant = (typeof variants)[number];
|
|
4
|
+
type IconProps = SvgIconProps & {
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
};
|
|
7
|
+
declare const ShowSmall: {
|
|
8
|
+
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
variants: readonly ["outlined"];
|
|
11
|
+
};
|
|
12
|
+
export default ShowSmall;
|