@lunit/oui 1.0.0-alpha.8 → 1.0.0-alpha.9
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/Icons/BellNoti/index.js +14 -0
- package/dist/components/Icons/CloseLarge/index.js +14 -0
- package/dist/components/Icons/CloseSmall/index.js +14 -0
- package/dist/components/Icons/DownloadPdf/index.js +14 -0
- package/dist/components/Icons/Ellipse/index.js +14 -0
- package/dist/components/Icons/FilterNoti/index.js +14 -0
- package/dist/components/Icons/HideLarge/index.js +14 -0
- package/dist/components/Icons/HideSmall/index.js +14 -0
- package/dist/components/Icons/InformationLarge/index.js +14 -0
- package/dist/components/Icons/InformationSmall/index.js +14 -0
- package/dist/components/Icons/Manufacturer/index.js +14 -0
- package/dist/components/Icons/Rectangle/index.js +14 -0
- package/dist/components/Icons/RefreshLeft/index.js +14 -0
- package/dist/components/Icons/RefreshRight/index.js +14 -0
- package/dist/components/Icons/ShowLarge/index.js +14 -0
- package/dist/components/Icons/ShowSmall/index.js +14 -0
- package/dist/components/Icons/index.js +180 -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/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 +4 -0
- package/dist/foundations/palette.js +209 -0
- package/dist/foundations/spacing.js +3 -0
- package/dist/foundations/typography.js +288 -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/Icons/BellNoti/index.d.ts +12 -0
- package/dist/types/components/Icons/CloseLarge/index.d.ts +12 -0
- package/dist/types/components/Icons/CloseSmall/index.d.ts +12 -0
- package/dist/types/components/Icons/DownloadPdf/index.d.ts +12 -0
- package/dist/types/components/Icons/Ellipse/index.d.ts +12 -0
- package/dist/types/components/Icons/FilterNoti/index.d.ts +12 -0
- package/dist/types/components/Icons/HideLarge/index.d.ts +12 -0
- package/dist/types/components/Icons/HideSmall/index.d.ts +12 -0
- package/dist/types/components/Icons/InformationLarge/index.d.ts +12 -0
- package/dist/types/components/Icons/InformationSmall/index.d.ts +12 -0
- package/dist/types/components/Icons/Manufacturer/index.d.ts +12 -0
- package/dist/types/components/Icons/Rectangle/index.d.ts +12 -0
- package/dist/types/components/Icons/RefreshLeft/index.d.ts +12 -0
- package/dist/types/components/Icons/RefreshRight/index.d.ts +12 -0
- package/dist/types/components/Icons/ShowLarge/index.d.ts +12 -0
- package/dist/types/components/Icons/ShowSmall/index.d.ts +12 -0
- package/dist/types/components/Icons/index.d.ts +179 -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/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 +3 -0
- package/dist/types/foundations/palette.d.ts +72 -0
- package/dist/types/foundations/spacing.d.ts +3 -0
- package/dist/types/foundations/typography.d.ts +152 -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
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { Select, styled } from '@mui/material';
|
|
2
|
+
const baseIconDropdownStyle = (theme) => {
|
|
3
|
+
return {
|
|
4
|
+
fontFamily: 'Pretendard,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"',
|
|
5
|
+
fontSize: '14px',
|
|
6
|
+
fontWeight: '400',
|
|
7
|
+
background: theme.palette.neutralGrey[85],
|
|
8
|
+
width: '52px',
|
|
9
|
+
borderRadius: '8px',
|
|
10
|
+
border: '1px solid transparent',
|
|
11
|
+
padding: '0 2px 0 0',
|
|
12
|
+
height: '36px',
|
|
13
|
+
color: theme.palette.neutralGrey[5],
|
|
14
|
+
'& fieldset': {
|
|
15
|
+
border: 'none',
|
|
16
|
+
},
|
|
17
|
+
'&.Mui-focused': {
|
|
18
|
+
border: `1px solid transparent !important`,
|
|
19
|
+
},
|
|
20
|
+
'&.Mui-disabled': {
|
|
21
|
+
opacity: '0.4',
|
|
22
|
+
},
|
|
23
|
+
'.MuiSvgIcon-root ': {
|
|
24
|
+
cursor: 'pointer',
|
|
25
|
+
color: theme.palette.neutralGrey[5],
|
|
26
|
+
'&.Mui-disabled': {
|
|
27
|
+
color: theme.palette.neutralGrey[45],
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
'.MuiSelect-select': {
|
|
31
|
+
display: 'flex',
|
|
32
|
+
padding: '0 0 0 8px !important',
|
|
33
|
+
width: 'fit-content',
|
|
34
|
+
},
|
|
35
|
+
'&:hover': {
|
|
36
|
+
backgroundColor: theme.palette.neutralGrey[70],
|
|
37
|
+
opacity: 0.8,
|
|
38
|
+
border: `1px solid transparent`,
|
|
39
|
+
'&.Mui-disabled': {
|
|
40
|
+
border: '1px solid transparent',
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
const toggledIconDropdownStyle = (theme) => {
|
|
46
|
+
return {
|
|
47
|
+
backgroundColor: theme.palette.neutralGrey[70],
|
|
48
|
+
border: `1px solid transparent`,
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
const BaseIconDropdown = styled(Select, {
|
|
52
|
+
shouldForwardProp: (prop) => !['small', 'isToggled'].includes(prop.toString()),
|
|
53
|
+
})(({ theme, isToggled }) => {
|
|
54
|
+
let style = baseIconDropdownStyle(theme);
|
|
55
|
+
if (isToggled) {
|
|
56
|
+
style = {
|
|
57
|
+
...style,
|
|
58
|
+
...toggledIconDropdownStyle(theme),
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
return style;
|
|
62
|
+
});
|
|
63
|
+
const DropdownContainer = styled('div')(() => {
|
|
64
|
+
return {
|
|
65
|
+
position: 'relative',
|
|
66
|
+
display: 'flex',
|
|
67
|
+
flexDirection: 'column',
|
|
68
|
+
minWidth: '32px',
|
|
69
|
+
};
|
|
70
|
+
});
|
|
71
|
+
export { BaseIconDropdown, DropdownContainer };
|
|
72
|
+
//# sourceMappingURL=IconDropdown.styled.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import Dropdown from './Dropdown';
|
|
2
|
+
import DropdownItem from './DropdownItem';
|
|
3
|
+
import DropdownSubtitle from './DropdownSubtitle';
|
|
4
|
+
import IconDropdown from './IconDropdown';
|
|
5
|
+
export { Dropdown, DropdownItem, DropdownSubtitle, IconDropdown, };
|
|
6
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { Typography } from '@mui/material';
|
|
3
|
+
import { BaseFileDnDZone, DnDSection, DnDMainBox, FileDnDZoneContainer, } from './FileDnDZone.styled';
|
|
4
|
+
import theme from '../../theme';
|
|
5
|
+
import { DEFAULT_FILE_FORMATS } from './FileDnDZone.utils';
|
|
6
|
+
const FileDnDZone = ({ slidesUploaded, maxSlideLimit = 500, acceptedFileFormats = DEFAULT_FILE_FORMATS, disabled, WrapperProps, OuterBoxProps, InnerBoxProps, SectionBoxProps, }) => {
|
|
7
|
+
const disabledSX = {
|
|
8
|
+
opacity: 0.4,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx(FileDnDZoneContainer, { sx: disabled ? disabledSX : {}, ...WrapperProps, children: _jsxs(BaseFileDnDZone, { ...OuterBoxProps, children: [_jsx(Typography, { variant: "h7", sx: { color: theme.palette.neutralGrey[25] }, children: "Drag and drop your slide files here" }), _jsxs(DnDMainBox, { ...InnerBoxProps, children: [_jsxs(DnDSection, { ...SectionBoxProps, children: [_jsx(Typography, { variant: "body_sb1", sx: { color: theme.palette.neutralGrey[45] }, children: "Supported file formats" }), _jsx(Typography, { variant: "body_sb1", sx: { color: theme.palette.neutralGrey[25], padding: '0 18px', textAlign: 'center' }, children: acceptedFileFormats })] }), _jsxs(DnDSection, { ...SectionBoxProps, children: [_jsx(Typography, { variant: "body_sb1", sx: { color: theme.palette.neutralGrey[45] }, children: "Allowed number of slides" }), _jsx(Typography, { variant: "body_sb1", sx: { color: theme.palette.neutralGrey[25] }, children: `You have uploaded ${slidesUploaded.toLocaleString()} slides on Lunit SCOPE.` }), _jsx(Typography, { variant: "body_sb1", sx: { color: theme.palette.neutralGrey[25] }, children: `The number of slides cannot exceed ${maxSlideLimit.toLocaleString()}.` })] })] })] }) }));
|
|
11
|
+
};
|
|
12
|
+
export default FileDnDZone;
|
|
13
|
+
//# sourceMappingURL=FileDnDZone.js.map
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Box, styled } from '@mui/material';
|
|
2
|
+
const commonStyle = {
|
|
3
|
+
display: 'flex',
|
|
4
|
+
flexDirection: 'column',
|
|
5
|
+
alignItems: 'center',
|
|
6
|
+
justifyContent: 'center',
|
|
7
|
+
};
|
|
8
|
+
const FileDnDZoneContainer = styled(Box)(() => {
|
|
9
|
+
return {
|
|
10
|
+
position: 'relative',
|
|
11
|
+
height: '100%',
|
|
12
|
+
width: '100%',
|
|
13
|
+
};
|
|
14
|
+
});
|
|
15
|
+
const BaseFileDnDZone = styled(Box)(() => {
|
|
16
|
+
return {
|
|
17
|
+
...commonStyle,
|
|
18
|
+
position: 'absolute',
|
|
19
|
+
left: 'calc(50% - 213px)',
|
|
20
|
+
top: '100px',
|
|
21
|
+
height: '196px',
|
|
22
|
+
width: '426px',
|
|
23
|
+
gap: '16px',
|
|
24
|
+
};
|
|
25
|
+
});
|
|
26
|
+
const DnDSection = styled(Box)(() => {
|
|
27
|
+
return {
|
|
28
|
+
...commonStyle,
|
|
29
|
+
gap: '4px',
|
|
30
|
+
};
|
|
31
|
+
});
|
|
32
|
+
const DnDMainBox = styled(Box)(() => {
|
|
33
|
+
return {
|
|
34
|
+
...commonStyle,
|
|
35
|
+
gap: '24px',
|
|
36
|
+
};
|
|
37
|
+
});
|
|
38
|
+
export { FileDnDZoneContainer, BaseFileDnDZone, DnDSection, DnDMainBox };
|
|
39
|
+
//# sourceMappingURL=FileDnDZone.styled.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
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from "@mui/material/SvgIcon";
|
|
3
|
+
import { IcRectangleOutlined20Px as outlined } from '../../../assets';
|
|
4
|
+
const variants = ['outlined',];
|
|
5
|
+
const Rectangle = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
Rectangle.displayName = 'Rectangle';
|
|
12
|
+
Rectangle.variants = variants;
|
|
13
|
+
export default Rectangle;
|
|
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 { IcRefreshLeftOutlined20Px as outlined } from '../../../assets';
|
|
4
|
+
const variants = ['outlined',];
|
|
5
|
+
const RefreshLeft = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
RefreshLeft.displayName = 'RefreshLeft';
|
|
12
|
+
RefreshLeft.variants = variants;
|
|
13
|
+
export default RefreshLeft;
|
|
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 { IcRefreshRightOutlined20Px as outlined } from '../../../assets';
|
|
4
|
+
const variants = ['outlined',];
|
|
5
|
+
const RefreshRight = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
RefreshRight.displayName = 'RefreshRight';
|
|
12
|
+
RefreshRight.variants = variants;
|
|
13
|
+
export default RefreshRight;
|
|
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 { IcShowLargeOutlined20Px as outlined } from '../../../assets';
|
|
4
|
+
const variants = ['outlined',];
|
|
5
|
+
const ShowLarge = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
ShowLarge.displayName = 'ShowLarge';
|
|
12
|
+
ShowLarge.variants = variants;
|
|
13
|
+
export default ShowLarge;
|
|
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 { IcShowSmallOutlined20Px as outlined } from '../../../assets';
|
|
4
|
+
const variants = ['outlined',];
|
|
5
|
+
const ShowSmall = ({ variant = 'outlined', ...rest }) => {
|
|
6
|
+
if (variant === 'outlined') {
|
|
7
|
+
return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
|
|
8
|
+
}
|
|
9
|
+
return null;
|
|
10
|
+
};
|
|
11
|
+
ShowSmall.displayName = 'ShowSmall';
|
|
12
|
+
ShowSmall.variants = variants;
|
|
13
|
+
export default ShowSmall;
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
export { default as BellNoti } from './BellNoti';
|
|
2
|
+
export { default as CloseLarge } from './CloseLarge';
|
|
3
|
+
export { default as CloseSmall } from './CloseSmall';
|
|
4
|
+
export { default as DownloadPdf } from './DownloadPdf';
|
|
5
|
+
export { default as Ellipse } from './Ellipse';
|
|
6
|
+
export { default as FilterNoti } from './FilterNoti';
|
|
7
|
+
export { default as HideLarge } from './HideLarge';
|
|
8
|
+
export { default as HideSmall } from './HideSmall';
|
|
9
|
+
export { default as InformationLarge } from './InformationLarge';
|
|
10
|
+
export { default as InformationSmall } from './InformationSmall';
|
|
11
|
+
export { default as Manufacturer } from './Manufacturer';
|
|
12
|
+
export { default as Rectangle } from './Rectangle';
|
|
13
|
+
export { default as RefreshLeft } from './RefreshLeft';
|
|
14
|
+
export { default as RefreshRight } from './RefreshRight';
|
|
15
|
+
export { default as ShowLarge } from './ShowLarge';
|
|
16
|
+
export { default as ShowSmall } from './ShowSmall';
|
|
17
|
+
export { Analyze } from '@lunit/design-system-icons';
|
|
18
|
+
export { Annotation } from '@lunit/design-system-icons';
|
|
19
|
+
export { Apps } from '@lunit/design-system-icons';
|
|
20
|
+
export { ArrowDoubleDown } from '@lunit/design-system-icons';
|
|
21
|
+
export { ArrowDoubleLeft } from '@lunit/design-system-icons';
|
|
22
|
+
export { ArrowDoubleRight } from '@lunit/design-system-icons';
|
|
23
|
+
export { ArrowDoubleUp } from '@lunit/design-system-icons';
|
|
24
|
+
export { ArrowDown } from '@lunit/design-system-icons';
|
|
25
|
+
export { ArrowDownSm } from '@lunit/design-system-icons';
|
|
26
|
+
export { ArrowDownXs } from '@lunit/design-system-icons';
|
|
27
|
+
export { ArrowDownward } from '@lunit/design-system-icons';
|
|
28
|
+
export { ArrowExpand } from '@lunit/design-system-icons';
|
|
29
|
+
export { ArrowLeft } from '@lunit/design-system-icons';
|
|
30
|
+
export { ArrowMore } from '@lunit/design-system-icons';
|
|
31
|
+
export { ArrowRight } from '@lunit/design-system-icons';
|
|
32
|
+
export { ArrowUp } from '@lunit/design-system-icons';
|
|
33
|
+
export { ArrowUpSm } from '@lunit/design-system-icons';
|
|
34
|
+
export { ArrowUpXs } from '@lunit/design-system-icons';
|
|
35
|
+
export { ArrowUpward } from '@lunit/design-system-icons';
|
|
36
|
+
export { Avatar16 } from '@lunit/design-system-icons';
|
|
37
|
+
export { Avatar } from '@lunit/design-system-icons';
|
|
38
|
+
export { Avatar28 } from '@lunit/design-system-icons';
|
|
39
|
+
export { Bell } from '@lunit/design-system-icons';
|
|
40
|
+
export { Brightness } from '@lunit/design-system-icons';
|
|
41
|
+
export { BrightnessPreset } from '@lunit/design-system-icons';
|
|
42
|
+
export { Brush } from '@lunit/design-system-icons';
|
|
43
|
+
export { Calendar } from '@lunit/design-system-icons';
|
|
44
|
+
export { Check } from '@lunit/design-system-icons';
|
|
45
|
+
export { Close16 } from '@lunit/design-system-icons';
|
|
46
|
+
export { Close } from '@lunit/design-system-icons';
|
|
47
|
+
export { CloudDownload } from '@lunit/design-system-icons';
|
|
48
|
+
export { CloudUpload } from '@lunit/design-system-icons';
|
|
49
|
+
export { Convert } from '@lunit/design-system-icons';
|
|
50
|
+
export { Crop } from '@lunit/design-system-icons';
|
|
51
|
+
export { Cursor } from '@lunit/design-system-icons';
|
|
52
|
+
export { Dashboard } from '@lunit/design-system-icons';
|
|
53
|
+
export { Delete } from '@lunit/design-system-icons';
|
|
54
|
+
export { Demo } from '@lunit/design-system-icons';
|
|
55
|
+
export { DownloadFolder } from '@lunit/design-system-icons';
|
|
56
|
+
export { DownloadT1 } from '@lunit/design-system-icons';
|
|
57
|
+
export { DownloadT2 } from '@lunit/design-system-icons';
|
|
58
|
+
export { DownloadT3 } from '@lunit/design-system-icons';
|
|
59
|
+
export { DownloadT4 } from '@lunit/design-system-icons';
|
|
60
|
+
export { DrawArrow } from '@lunit/design-system-icons';
|
|
61
|
+
export { DrawLine } from '@lunit/design-system-icons';
|
|
62
|
+
export { Dummy16 } from '@lunit/design-system-icons';
|
|
63
|
+
export { Dummy } from '@lunit/design-system-icons';
|
|
64
|
+
export { Duplicate } from '@lunit/design-system-icons';
|
|
65
|
+
export { Edit } from '@lunit/design-system-icons';
|
|
66
|
+
export { EditTtr } from '@lunit/design-system-icons';
|
|
67
|
+
export { EditType } from '@lunit/design-system-icons';
|
|
68
|
+
export { Eraser } from '@lunit/design-system-icons';
|
|
69
|
+
export { Error16 } from '@lunit/design-system-icons';
|
|
70
|
+
export { Error } from '@lunit/design-system-icons';
|
|
71
|
+
export { Exclude16 } from '@lunit/design-system-icons';
|
|
72
|
+
export { Exclude } from '@lunit/design-system-icons';
|
|
73
|
+
export { Feedback } from '@lunit/design-system-icons';
|
|
74
|
+
export { File } from '@lunit/design-system-icons';
|
|
75
|
+
export { Filter } from '@lunit/design-system-icons';
|
|
76
|
+
export { FlipHorizontal } from '@lunit/design-system-icons';
|
|
77
|
+
export { FlipVertical } from '@lunit/design-system-icons';
|
|
78
|
+
export { FloodFill } from '@lunit/design-system-icons';
|
|
79
|
+
export { Forward } from '@lunit/design-system-icons';
|
|
80
|
+
export { Fullscreen } from '@lunit/design-system-icons';
|
|
81
|
+
export { Hand } from '@lunit/design-system-icons';
|
|
82
|
+
export { Help } from '@lunit/design-system-icons';
|
|
83
|
+
export { Hide16 } from '@lunit/design-system-icons';
|
|
84
|
+
export { Hide } from '@lunit/design-system-icons';
|
|
85
|
+
export { History } from '@lunit/design-system-icons';
|
|
86
|
+
export { Home } from '@lunit/design-system-icons';
|
|
87
|
+
export { Include16 } from '@lunit/design-system-icons';
|
|
88
|
+
export { Include } from '@lunit/design-system-icons';
|
|
89
|
+
export { Information16 } from '@lunit/design-system-icons';
|
|
90
|
+
export { Information } from '@lunit/design-system-icons';
|
|
91
|
+
export { Invert } from '@lunit/design-system-icons';
|
|
92
|
+
export { Label } from '@lunit/design-system-icons';
|
|
93
|
+
export { Language } from '@lunit/design-system-icons';
|
|
94
|
+
export { Layout1x1 } from '@lunit/design-system-icons';
|
|
95
|
+
export { Layout1x2 } from '@lunit/design-system-icons';
|
|
96
|
+
export { Layout1x4 } from '@lunit/design-system-icons';
|
|
97
|
+
export { Layout2x1 } from '@lunit/design-system-icons';
|
|
98
|
+
export { Layout2x2 } from '@lunit/design-system-icons';
|
|
99
|
+
export { Lock } from '@lunit/design-system-icons';
|
|
100
|
+
export { Logo16 } from '@lunit/design-system-icons';
|
|
101
|
+
export { Logo } from '@lunit/design-system-icons';
|
|
102
|
+
export { Logo32 } from '@lunit/design-system-icons';
|
|
103
|
+
export { Logout } from '@lunit/design-system-icons';
|
|
104
|
+
export { LunitLogo } from '@lunit/design-system-icons';
|
|
105
|
+
export { Magnify } from '@lunit/design-system-icons';
|
|
106
|
+
export { Menu as MenuIcon } from '@lunit/design-system-icons';
|
|
107
|
+
export { MenuOpen } from '@lunit/design-system-icons';
|
|
108
|
+
export { Minus } from '@lunit/design-system-icons';
|
|
109
|
+
export { MoreHorizontal } from '@lunit/design-system-icons';
|
|
110
|
+
export { MoreVertical } from '@lunit/design-system-icons';
|
|
111
|
+
export { MoveDown } from '@lunit/design-system-icons';
|
|
112
|
+
export { MoveLeft } from '@lunit/design-system-icons';
|
|
113
|
+
export { MoveRight } from '@lunit/design-system-icons';
|
|
114
|
+
export { MoveUp } from '@lunit/design-system-icons';
|
|
115
|
+
export { Pan } from '@lunit/design-system-icons';
|
|
116
|
+
export { Password } from '@lunit/design-system-icons';
|
|
117
|
+
export { PathologySlides } from '@lunit/design-system-icons';
|
|
118
|
+
export { PauseT1 } from '@lunit/design-system-icons';
|
|
119
|
+
export { PauseT2 } from '@lunit/design-system-icons';
|
|
120
|
+
export { PdfDownload } from '@lunit/design-system-icons';
|
|
121
|
+
export { PdfUpload } from '@lunit/design-system-icons';
|
|
122
|
+
export { Pen } from '@lunit/design-system-icons';
|
|
123
|
+
export { Play } from '@lunit/design-system-icons';
|
|
124
|
+
export { Plus } from '@lunit/design-system-icons';
|
|
125
|
+
export { PolygonSelection } from '@lunit/design-system-icons';
|
|
126
|
+
export { Project } from '@lunit/design-system-icons';
|
|
127
|
+
export { Redo } from '@lunit/design-system-icons';
|
|
128
|
+
export { Refresh } from '@lunit/design-system-icons';
|
|
129
|
+
export { Removable16 } from '@lunit/design-system-icons';
|
|
130
|
+
export { Removable } from '@lunit/design-system-icons';
|
|
131
|
+
export { Reorder } from '@lunit/design-system-icons';
|
|
132
|
+
export { Report } from '@lunit/design-system-icons';
|
|
133
|
+
export { Reset } from '@lunit/design-system-icons';
|
|
134
|
+
export { ResetText } from '@lunit/design-system-icons';
|
|
135
|
+
export { ResetView } from '@lunit/design-system-icons';
|
|
136
|
+
export { Review } from '@lunit/design-system-icons';
|
|
137
|
+
export { Rewind } from '@lunit/design-system-icons';
|
|
138
|
+
export { RotationLeft } from '@lunit/design-system-icons';
|
|
139
|
+
export { RotationRight } from '@lunit/design-system-icons';
|
|
140
|
+
export { RulerT1 } from '@lunit/design-system-icons';
|
|
141
|
+
export { RulerT2 } from '@lunit/design-system-icons';
|
|
142
|
+
export { RulerviewCircle } from '@lunit/design-system-icons';
|
|
143
|
+
export { RulerviewLine } from '@lunit/design-system-icons';
|
|
144
|
+
export { Save } from '@lunit/design-system-icons';
|
|
145
|
+
export { SearchT1 } from '@lunit/design-system-icons';
|
|
146
|
+
export { SearchT2 } from '@lunit/design-system-icons';
|
|
147
|
+
export { SendEmail } from '@lunit/design-system-icons';
|
|
148
|
+
export { Setting } from '@lunit/design-system-icons';
|
|
149
|
+
export { Shortcut } from '@lunit/design-system-icons';
|
|
150
|
+
export { Show16 } from '@lunit/design-system-icons';
|
|
151
|
+
export { Show } from '@lunit/design-system-icons';
|
|
152
|
+
export { Skip } from '@lunit/design-system-icons';
|
|
153
|
+
export { StartT1 } from '@lunit/design-system-icons';
|
|
154
|
+
export { StartT2 } from '@lunit/design-system-icons';
|
|
155
|
+
export { Storage } from '@lunit/design-system-icons';
|
|
156
|
+
export { Success16 } from '@lunit/design-system-icons';
|
|
157
|
+
export { Success } from '@lunit/design-system-icons';
|
|
158
|
+
export { TagT1 } from '@lunit/design-system-icons';
|
|
159
|
+
export { TagT2 } from '@lunit/design-system-icons';
|
|
160
|
+
export { TagT3 } from '@lunit/design-system-icons';
|
|
161
|
+
export { Text } from '@lunit/design-system-icons';
|
|
162
|
+
export { Toggle } from '@lunit/design-system-icons';
|
|
163
|
+
export { Undo } from '@lunit/design-system-icons';
|
|
164
|
+
export { Unlock } from '@lunit/design-system-icons';
|
|
165
|
+
export { UploadFolder } from '@lunit/design-system-icons';
|
|
166
|
+
export { UploadT1 } from '@lunit/design-system-icons';
|
|
167
|
+
export { UploadT2 } from '@lunit/design-system-icons';
|
|
168
|
+
export { UploadT3 } from '@lunit/design-system-icons';
|
|
169
|
+
export { UploadT4 } from '@lunit/design-system-icons';
|
|
170
|
+
export { User } from '@lunit/design-system-icons';
|
|
171
|
+
export { ViewList } from '@lunit/design-system-icons';
|
|
172
|
+
export { ViewModule } from '@lunit/design-system-icons';
|
|
173
|
+
export { ViewfinderT1 } from '@lunit/design-system-icons';
|
|
174
|
+
export { ViewfinderT2 } from '@lunit/design-system-icons';
|
|
175
|
+
export { ViewfinderT3 } from '@lunit/design-system-icons';
|
|
176
|
+
export { Warning16 } from '@lunit/design-system-icons';
|
|
177
|
+
export { Warning } from '@lunit/design-system-icons';
|
|
178
|
+
export { ZoomIn } from '@lunit/design-system-icons';
|
|
179
|
+
export { ZoomOut } from '@lunit/design-system-icons';
|
|
180
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { createContext, useMemo } from 'react';
|
|
3
|
+
import { ArrowDownSm, ArrowUpSm } from '../Icons';
|
|
4
|
+
import { Collapse } from '@mui/material';
|
|
5
|
+
import { MuiList, MuiListSubheader } from './List.styled';
|
|
6
|
+
export const ListContext = createContext({
|
|
7
|
+
size: 'small',
|
|
8
|
+
showCheck: false,
|
|
9
|
+
});
|
|
10
|
+
const List = ({ size = 'small', showCheck = false, subheader, subheaderType = 'bold', open = 'visible', children, onOpen, onClose, ...props }) => {
|
|
11
|
+
const contextValue = useMemo(() => ({ size, showCheck }), [size, showCheck]);
|
|
12
|
+
const collapsible = open !== 'visible';
|
|
13
|
+
const onSubheaderClick = ((event) => {
|
|
14
|
+
if (open === 'visible') {
|
|
15
|
+
return;
|
|
16
|
+
}
|
|
17
|
+
const handler = open ? onClose : onOpen;
|
|
18
|
+
handler?.(event);
|
|
19
|
+
});
|
|
20
|
+
return (_jsx(ListContext.Provider, { value: contextValue, children: _jsx(MuiList, { ...props, subheader: subheader ? (_jsxs(MuiListSubheader, { type: subheaderType, clickable: collapsible, tabIndex: collapsible ? 0 : undefined, onClick: onSubheaderClick, children: [subheader, collapsible && (open ? _jsx(ArrowDownSm, {}) : _jsx(ArrowUpSm, {}))] })) : null, children: collapsible ? (_jsx(Collapse, { in: open, timeout: "auto", unmountOnExit: true, children: children })) : (children) }) }));
|
|
21
|
+
};
|
|
22
|
+
export default List;
|
|
23
|
+
//# sourceMappingURL=List.js.map
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { styled, List, ListSubheader } from '@mui/material';
|
|
2
|
+
export const MuiList = styled(List)(({ theme }) => ({
|
|
3
|
+
padding: theme.spacing(2),
|
|
4
|
+
}));
|
|
5
|
+
export const MuiListSubheader = styled(ListSubheader, {
|
|
6
|
+
shouldForwardProp: (prop) => !['type', 'clickable'].includes(prop.toString()),
|
|
7
|
+
})(({ type, clickable, theme }) => ({
|
|
8
|
+
display: 'flex',
|
|
9
|
+
justifyContent: 'space-between',
|
|
10
|
+
alignItems: 'center',
|
|
11
|
+
height: '36px',
|
|
12
|
+
padding: '0px 8px',
|
|
13
|
+
backgroundColor: 'transparent',
|
|
14
|
+
...(type === 'bold'
|
|
15
|
+
? {
|
|
16
|
+
...theme.typography.body_b1,
|
|
17
|
+
color: theme.palette.neutralGrey[0],
|
|
18
|
+
}
|
|
19
|
+
: {
|
|
20
|
+
...theme.typography.small_body_m1,
|
|
21
|
+
color: theme.palette.neutralGrey[40],
|
|
22
|
+
}),
|
|
23
|
+
...(clickable && { cursor: 'pointer' }),
|
|
24
|
+
svg: {
|
|
25
|
+
width: '20px',
|
|
26
|
+
height: '20px',
|
|
27
|
+
},
|
|
28
|
+
}));
|
|
29
|
+
//# sourceMappingURL=List.styled.js.map
|