@lunit/oui 1.0.1-alpha.10 → 1.0.1-alpha.11
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/components/Alert/Alert.js +1 -1
- package/dist/components/Alert/Alert.utils.js +1 -1
- package/dist/components/Chip/Chip.js +1 -1
- package/dist/components/Chip/Chip.utils.js +1 -1
- package/dist/components/DatePicker/DatePicker.js +1 -1
- package/dist/components/Dialog/Dialog.js +1 -1
- package/dist/components/Dropdown/Dropdown.js +1 -1
- package/dist/components/Dropdown/DropdownItem.js +1 -1
- package/dist/components/Dropdown/IconDropdown.js +1 -1
- package/dist/components/List/List.js +1 -1
- package/dist/components/List/ListItem.styled.js +1 -1
- package/dist/components/Pagination/Pagination.js +1 -1
- package/dist/components/ProductLabel/ProductLabel.js +1 -1
- package/dist/components/TextField/components/Buttons.js +1 -1
- package/dist/components/UploadManager/UploadManager.js +1 -1
- 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 +2 -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 +2 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from 'react';
|
|
3
|
-
import { Close } from '
|
|
3
|
+
import { Close } from '../../icons';
|
|
4
4
|
import BaseAlert from './Alert.styled';
|
|
5
5
|
import { getAccentColor, getIcons } from './Alert.utils';
|
|
6
6
|
import { Button } from '../Button';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import { Success, Error, Information } from '
|
|
2
|
+
import { Success, Error, Information } from '../../icons';
|
|
3
3
|
import theme from '../../theme';
|
|
4
4
|
export const getIcons = (severity) => {
|
|
5
5
|
switch (severity) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import { CloseSmall } from '
|
|
2
|
+
import { CloseSmall } from '../../icons';
|
|
3
3
|
import StyledChip from './Chip.styled';
|
|
4
4
|
import { presetMap } from './Chip.utils';
|
|
5
5
|
function Chip({ preset, label, icon, onDelete, onClick, ...otherProps }) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { useState, useMemo, useEffect } from 'react';
|
|
3
|
-
import { CloseSmall, ArrowLeft, ArrowRight } from '
|
|
3
|
+
import { CloseSmall, ArrowLeft, ArrowRight } from '../../icons';
|
|
4
4
|
import { StyledDatePicker } from './DatePicker.styled';
|
|
5
5
|
import { Button } from '../Button';
|
|
6
6
|
import theme from '../../theme';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { ArrowDown } from '
|
|
2
|
+
import { ArrowDown } from '../../icons';
|
|
3
3
|
import { useState } from 'react';
|
|
4
4
|
import { BaseDropdown, DropdownContainer, DropdownPlaceholder } from './Dropdown.styled';
|
|
5
5
|
import { handlePlaceholder } from './Dropdown.utils';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { Check } from '
|
|
2
|
+
import { Check } from '../../icons';
|
|
3
3
|
import { BaseDropdownItem, KeyboardShortcut } from './DropdownItem.styled';
|
|
4
4
|
import { BUTTON_DROPDOWN_ITEM, shouldPadForEmptyIcon } from './DropdownItem.utils';
|
|
5
5
|
const DropdownItem = ({ checkIcon, customIcon, children, emptyIcon, asButton, value, keyboardShortcut, ...otherProps }) => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { useState } from 'react';
|
|
3
|
-
import { ArrowDownXs } from '
|
|
3
|
+
import { ArrowDownXs } from '../../icons';
|
|
4
4
|
import { BaseIconDropdown } from './IconDropdown.styled';
|
|
5
5
|
import theme from '../../theme';
|
|
6
6
|
const IconDropdown = ({ open, disabled, children, ...otherProps }) => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { createContext, useMemo } from 'react';
|
|
3
|
-
import { ArrowDownSm, ArrowUpSm } from '
|
|
3
|
+
import { ArrowDownSm, ArrowUpSm } from '../../icons';
|
|
4
4
|
import { Collapse } from '@mui/material';
|
|
5
5
|
import { MuiList, MuiListSubheader } from './List.styled';
|
|
6
6
|
export const ListContext = createContext({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { ListItem, ListItemButton, ListItemIcon, ListItemText, styled, typographyClasses, } from '@mui/material';
|
|
3
|
-
import { Check, Dummy } from '
|
|
3
|
+
import { Check, Dummy } from '../../icons';
|
|
4
4
|
import getPadding from './List.utils';
|
|
5
5
|
export const StyledListItem = styled(ListItem)({
|
|
6
6
|
width: '100%',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { useState, useEffect, useMemo } from 'react';
|
|
3
|
-
import { ArrowDown } from '
|
|
3
|
+
import { ArrowDown } from '../../icons';
|
|
4
4
|
import { Divider } from '../Divider';
|
|
5
5
|
import { MenuItem, Menu } from '../Menu';
|
|
6
6
|
import { PaperProps, PaginationBox, SidePageBox, SelectButton, ArrowButton, PAGE_SIZE_LIST, divider, } from './Pagination.styled';
|
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { Box, Typography } from '@mui/material';
|
|
3
3
|
import { LabelContainer, LabelContent, LabelCloseButton } from './ProductLabel.styled';
|
|
4
4
|
import { Divider } from '../Divider';
|
|
5
|
-
import { Close } from '
|
|
5
|
+
import { Close } from '../../icons';
|
|
6
6
|
import { LunitScope } from '@lunit/design-system-logo';
|
|
7
7
|
function ProductLabel({ open, onClose, children, footerStart, footerEnd }) {
|
|
8
8
|
const handleClose = () => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import { CloseSmall, HideSmall, ShowSmall } from '
|
|
2
|
+
import { CloseSmall, HideSmall, ShowSmall } from '../../../icons';
|
|
3
3
|
import { ButtonWrapper } from '../TextInput.styled';
|
|
4
4
|
function ClearButton({ onClick }) {
|
|
5
5
|
return (_jsx(ButtonWrapper, { onClick: onClick, children: _jsx(CloseSmall, { fontSize: "small" }) }));
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Grow, Typography, Box } from '@mui/material';
|
|
3
|
-
import { ArrowUp, Close, Success, Error16, RefreshLeft } from '
|
|
3
|
+
import { ArrowUp, Close, Success, Error16, RefreshLeft } from '../../icons';
|
|
4
4
|
import { useState, Fragment, useMemo } from 'react';
|
|
5
5
|
import { Divider } from '../Divider';
|
|
6
6
|
import { Button } from '../Button';
|
|
@@ -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
|
package/dist/index.js
CHANGED
|
@@ -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;
|
|
@@ -0,0 +1,179 @@
|
|
|
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';
|
package/dist/types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lunit/oui",
|
|
3
|
-
"version": "1.0.1-alpha.
|
|
3
|
+
"version": "1.0.1-alpha.11",
|
|
4
4
|
"validate-branch-name": {
|
|
5
5
|
"pattern": "^(main|develop)|(feature|fix|release|hotfix|qe)/.+$",
|
|
6
6
|
"errorMsg": "The branch name is not correct. Please check the pattern. (ex. feature/add-something)"
|