@croquiscom/pds 0.46.0 → 0.46.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 0.46.2
4
+
5
+ ### Patch Changes
6
+
7
+ - df895c1: Pagination boundaryCount 오류 수정
8
+
9
+ ## 0.46.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 419e372: BasicModal fullScreen mode IOS 콘텐츠 영역 스크롤 버그 픽스
14
+
3
15
  ## 0.46.0
4
16
 
5
17
  ### Minor Changes
@@ -72,7 +72,7 @@ export declare const ModalContent: import("@emotion/styled").StyledComponent<{
72
72
  theme?: import("@emotion/react").Theme;
73
73
  as?: React.ElementType<any>;
74
74
  } & ModalContentProps & {
75
- fixed: boolean;
75
+ fullScreen: boolean;
76
76
  layoutHeight: LayoutHeightType;
77
77
  }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
78
78
  export {};
@@ -2,7 +2,7 @@ import { HTMLAttributes } from 'react';
2
2
  export interface PaginationProps extends HTMLAttributes<HTMLUListElement> {
3
3
  disabled?: boolean;
4
4
  /**
5
- * 전체 페이지 갯수, 음수 또는 undefined일 경우 렌더되지 않습니다.
5
+ * 전체 페이지 갯수, 음수일 경우 렌더되지 않습니다.
6
6
  */
7
7
  totalPages: number;
8
8
  currentPage: number;