@lunit/oui 1.0.0-alpha.9 → 1.0.1-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (130) hide show
  1. package/dist/components/Alert/Alert.js +1 -1
  2. package/dist/components/Alert/Alert.utils.js +1 -1
  3. package/dist/components/Chip/Chip.js +1 -1
  4. package/dist/components/Chip/Chip.utils.js +1 -1
  5. package/dist/components/DatePicker/DatePicker.js +1 -1
  6. package/dist/components/Dialog/Dialog.js +1 -1
  7. package/dist/components/Dropdown/Dropdown.js +1 -1
  8. package/dist/components/Dropdown/DropdownItem.js +1 -1
  9. package/dist/components/Dropdown/IconDropdown.js +1 -1
  10. package/dist/components/List/List.js +1 -1
  11. package/dist/components/List/ListItem.styled.js +1 -1
  12. package/dist/components/Pagination/Pagination.js +65 -0
  13. package/dist/components/Pagination/Pagination.styled.js +64 -0
  14. package/dist/components/Pagination/Pagination.types.js +2 -0
  15. package/dist/components/Pagination/index.js +2 -0
  16. package/dist/components/ProductLabel/ProductLabel.js +1 -1
  17. package/dist/components/TextField/components/Buttons.js +1 -1
  18. package/dist/components/UploadManager/UploadManager.js +1 -1
  19. package/dist/components/index.js +1 -1
  20. package/dist/foundations/index.js +1 -0
  21. package/dist/foundations/palette.js +4 -0
  22. package/dist/foundations/styles.js +7 -0
  23. package/dist/icons/BellNoti/index.js +14 -0
  24. package/dist/icons/CloseLarge/index.js +14 -0
  25. package/dist/icons/CloseSmall/index.js +14 -0
  26. package/dist/{components/Icons → icons}/DownloadPdf/index.js +4 -4
  27. package/dist/icons/Ellipse/index.js +14 -0
  28. package/dist/icons/FilterNoti/index.js +14 -0
  29. package/dist/icons/HideLarge/index.js +14 -0
  30. package/dist/icons/HideSmall/index.js +14 -0
  31. package/dist/{components/Icons → icons}/InformationLarge/index.js +4 -4
  32. package/dist/{components/Icons → icons}/InformationSmall/index.js +4 -4
  33. package/dist/{components/Icons → icons}/Manufacturer/index.js +4 -4
  34. package/dist/icons/Rectangle/index.js +14 -0
  35. package/dist/{components/Icons → icons}/RefreshLeft/index.js +4 -4
  36. package/dist/{components/Icons → icons}/RefreshRight/index.js +4 -4
  37. package/dist/icons/ShowLarge/index.js +14 -0
  38. package/dist/icons/ShowSmall/index.js +14 -0
  39. package/dist/types/components/Pagination/Pagination.d.ts +3 -0
  40. package/dist/types/components/Pagination/Pagination.styled.d.ts +24 -0
  41. package/dist/types/components/Pagination/Pagination.types.d.ts +35 -0
  42. package/dist/types/components/Pagination/index.d.ts +2 -0
  43. package/dist/types/components/index.d.ts +1 -1
  44. package/dist/types/foundations/index.d.ts +1 -0
  45. package/dist/types/foundations/palette.d.ts +8 -1
  46. package/dist/types/foundations/styles.d.ts +2 -0
  47. package/dist/types/{components/Icons → icons}/BellNoti/index.d.ts +2 -2
  48. package/dist/types/{components/Icons → icons}/CloseLarge/index.d.ts +2 -2
  49. package/dist/types/{components/Icons → icons}/CloseSmall/index.d.ts +2 -2
  50. package/dist/types/{components/Icons → icons}/DownloadPdf/index.d.ts +2 -2
  51. package/dist/types/{components/Icons → icons}/Ellipse/index.d.ts +2 -2
  52. package/dist/types/{components/Icons → icons}/FilterNoti/index.d.ts +2 -2
  53. package/dist/types/{components/Icons → icons}/HideLarge/index.d.ts +2 -2
  54. package/dist/types/{components/Icons → icons}/HideSmall/index.d.ts +2 -2
  55. package/dist/types/{components/Icons → icons}/InformationLarge/index.d.ts +2 -2
  56. package/dist/types/{components/Icons → icons}/InformationSmall/index.d.ts +2 -2
  57. package/dist/types/{components/Icons → icons}/Manufacturer/index.d.ts +2 -2
  58. package/dist/types/{components/Icons → icons}/Rectangle/index.d.ts +2 -2
  59. package/dist/types/{components/Icons → icons}/RefreshLeft/index.d.ts +2 -2
  60. package/dist/types/{components/Icons → icons}/RefreshRight/index.d.ts +2 -2
  61. package/dist/types/{components/Icons → icons}/ShowLarge/index.d.ts +2 -2
  62. package/dist/types/{components/Icons → icons}/ShowSmall/index.d.ts +2 -2
  63. package/package.json +1 -1
  64. package/src/components/Alert/Alert.tsx +1 -1
  65. package/src/components/Alert/Alert.utils.tsx +1 -1
  66. package/src/components/Chip/Chip.tsx +1 -1
  67. package/src/components/Chip/Chip.utils.tsx +1 -1
  68. package/src/components/DatePicker/DatePicker.tsx +1 -1
  69. package/src/components/Dialog/Dialog.tsx +1 -1
  70. package/src/components/Dropdown/Dropdown.tsx +1 -1
  71. package/src/components/Dropdown/DropdownItem.tsx +1 -1
  72. package/src/components/Dropdown/IconDropdown.tsx +1 -1
  73. package/src/components/List/List.tsx +1 -1
  74. package/src/components/List/ListItem.styled.tsx +1 -1
  75. package/src/components/Pagination/Pagination.styled.tsx +71 -0
  76. package/src/components/Pagination/Pagination.tsx +182 -0
  77. package/src/components/Pagination/Pagination.types.ts +39 -0
  78. package/src/components/Pagination/index.ts +2 -0
  79. package/src/components/ProductLabel/ProductLabel.tsx +1 -1
  80. package/src/components/TextField/components/Buttons.tsx +1 -1
  81. package/src/components/UploadManager/UploadManager.tsx +1 -1
  82. package/src/components/index.ts +1 -1
  83. package/src/foundations/index.ts +1 -0
  84. package/src/foundations/palette.ts +12 -1
  85. package/src/foundations/styles.ts +9 -0
  86. package/src/icons/BellNoti/index.tsx +28 -0
  87. package/src/icons/CloseLarge/index.tsx +28 -0
  88. package/src/icons/CloseSmall/index.tsx +28 -0
  89. package/src/icons/DownloadPdf/index.tsx +28 -0
  90. package/src/icons/Ellipse/index.tsx +28 -0
  91. package/src/icons/FilterNoti/index.tsx +28 -0
  92. package/src/icons/HideLarge/index.tsx +28 -0
  93. package/src/icons/HideSmall/index.tsx +28 -0
  94. package/src/icons/InformationLarge/index.tsx +28 -0
  95. package/src/icons/InformationSmall/index.tsx +28 -0
  96. package/src/icons/Manufacturer/index.tsx +28 -0
  97. package/src/icons/Rectangle/index.tsx +28 -0
  98. package/src/icons/RefreshLeft/index.tsx +28 -0
  99. package/src/icons/RefreshRight/index.tsx +28 -0
  100. package/src/icons/ShowLarge/index.tsx +28 -0
  101. package/src/icons/ShowSmall/index.tsx +28 -0
  102. package/dist/components/Icons/BellNoti/index.js +0 -14
  103. package/dist/components/Icons/CloseLarge/index.js +0 -14
  104. package/dist/components/Icons/CloseSmall/index.js +0 -14
  105. package/dist/components/Icons/Ellipse/index.js +0 -14
  106. package/dist/components/Icons/FilterNoti/index.js +0 -14
  107. package/dist/components/Icons/HideLarge/index.js +0 -14
  108. package/dist/components/Icons/HideSmall/index.js +0 -14
  109. package/dist/components/Icons/Rectangle/index.js +0 -14
  110. package/dist/components/Icons/ShowLarge/index.js +0 -14
  111. package/dist/components/Icons/ShowSmall/index.js +0 -14
  112. package/src/components/Icons/BellNoti/index.tsx +0 -22
  113. package/src/components/Icons/CloseLarge/index.tsx +0 -22
  114. package/src/components/Icons/CloseSmall/index.tsx +0 -22
  115. package/src/components/Icons/DownloadPdf/index.tsx +0 -22
  116. package/src/components/Icons/Ellipse/index.tsx +0 -22
  117. package/src/components/Icons/FilterNoti/index.tsx +0 -22
  118. package/src/components/Icons/HideLarge/index.tsx +0 -22
  119. package/src/components/Icons/HideSmall/index.tsx +0 -22
  120. package/src/components/Icons/InformationLarge/index.tsx +0 -22
  121. package/src/components/Icons/InformationSmall/index.tsx +0 -22
  122. package/src/components/Icons/Manufacturer/index.tsx +0 -22
  123. package/src/components/Icons/Rectangle/index.tsx +0 -22
  124. package/src/components/Icons/RefreshLeft/index.tsx +0 -22
  125. package/src/components/Icons/RefreshRight/index.tsx +0 -22
  126. package/src/components/Icons/ShowLarge/index.tsx +0 -22
  127. package/src/components/Icons/ShowSmall/index.tsx +0 -22
  128. /package/dist/{components/Icons → icons}/index.js +0 -0
  129. /package/dist/types/{components/Icons → icons}/index.d.ts +0 -0
  130. /package/src/{components/Icons → icons}/index.ts +0 -0
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcBellNotiOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const BellNoti = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- BellNoti.displayName = 'BellNoti';
20
- BellNoti.variants = variants;
21
-
22
- export default BellNoti;
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcCloseLargeOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const CloseLarge = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- CloseLarge.displayName = 'CloseLarge';
20
- CloseLarge.variants = variants;
21
-
22
- export default CloseLarge;
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcCloseSmallOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const CloseSmall = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- CloseSmall.displayName = 'CloseSmall';
20
- CloseSmall.variants = variants;
21
-
22
- export default CloseSmall;
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcDownloadPdfOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const DownloadPdf = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- DownloadPdf.displayName = 'DownloadPdf';
20
- DownloadPdf.variants = variants;
21
-
22
- export default DownloadPdf;
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcEllipseOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const Ellipse = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- Ellipse.displayName = 'Ellipse';
20
- Ellipse.variants = variants;
21
-
22
- export default Ellipse;
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcFilterNotiOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const FilterNoti = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- FilterNoti.displayName = 'FilterNoti';
20
- FilterNoti.variants = variants;
21
-
22
- export default FilterNoti;
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcHideLargeOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const HideLarge = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- HideLarge.displayName = 'HideLarge';
20
- HideLarge.variants = variants;
21
-
22
- export default HideLarge;
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcHideSmallOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const HideSmall = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- HideSmall.displayName = 'HideSmall';
20
- HideSmall.variants = variants;
21
-
22
- export default HideSmall;
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcInformationLargeOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const InformationLarge = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- InformationLarge.displayName = 'InformationLarge';
20
- InformationLarge.variants = variants;
21
-
22
- export default InformationLarge;
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcInformationSmallOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const InformationSmall = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- InformationSmall.displayName = 'InformationSmall';
20
- InformationSmall.variants = variants;
21
-
22
- export default InformationSmall;
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcManufacturerOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const Manufacturer = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- Manufacturer.displayName = 'Manufacturer';
20
- Manufacturer.variants = variants;
21
-
22
- export default Manufacturer;
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcRectangleOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const Rectangle = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- Rectangle.displayName = 'Rectangle';
20
- Rectangle.variants = variants;
21
-
22
- export default Rectangle;
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcRefreshLeftOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const RefreshLeft = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- RefreshLeft.displayName = 'RefreshLeft';
20
- RefreshLeft.variants = variants;
21
-
22
- export default RefreshLeft;
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcRefreshRightOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const RefreshRight = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- RefreshRight.displayName = 'RefreshRight';
20
- RefreshRight.variants = variants;
21
-
22
- export default RefreshRight;
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcShowLargeOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const ShowLarge = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- ShowLarge.displayName = 'ShowLarge';
20
- ShowLarge.variants = variants;
21
-
22
- export default ShowLarge;
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
3
-
4
- import { IcShowSmallOutlined20Px as outlined } from '../../../assets';
5
-
6
- const variants = ['outlined', ] as const;
7
- type Variant = typeof variants[number];
8
- type IconProps = SvgIconProps & {
9
- variant?: Variant;
10
- };
11
- const ShowSmall = ({variant = 'outlined', ...rest}: IconProps) => {
12
- if (variant === 'outlined') {
13
- return <SvgIcon {...rest} component={ outlined } inheritViewBox />;
14
- }
15
-
16
- return null;
17
- };
18
-
19
- ShowSmall.displayName = 'ShowSmall';
20
- ShowSmall.variants = variants;
21
-
22
- export default ShowSmall;
File without changes
File without changes