@croquiscom/pds 8.34.0 → 8.34.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
+ ## 8.34.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 3020f8f: BottomSheet 포커스 링이 보이는 현상 수정
8
+
9
+ ## 8.34.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 7f73851: Modal contentProps div prop 받을 수 있도록 수정
14
+
3
15
  ## 8.34.0
4
16
 
5
17
  ### Minor Changes
@@ -1,11 +1,11 @@
1
- import React, { ReactNode } from 'react';
1
+ import React, { ReactNode, HTMLAttributes } from 'react';
2
2
  import { ButtonProps } from '../button';
3
3
  import { CSSValueWithLength, SpaceProps } from '../../styles';
4
4
  import { ModalOverlayBaseProps, ModalBaseCancelReason } from './ModalOverlay';
5
5
  import { ModalActionButtonType } from './ModalActionButton';
6
6
  export type ModalButtonProps = Omit<ButtonProps, 'onClick'>;
7
7
  export type ModalCancelReason = ModalBaseCancelReason;
8
- export interface ModalContentProps extends SpaceProps {
8
+ export interface ModalContentProps extends SpaceProps, HTMLAttributes<HTMLDivElement> {
9
9
  maxHeight?: CSSValueWithLength;
10
10
  scrollable?: boolean;
11
11
  }
@@ -21,3 +21,4 @@ export declare const CustomMaxHeight: Story;
21
21
  export declare const Scrollable: Story;
22
22
  export declare const AutoFocusButton: Story;
23
23
  export declare const NestingFloatingElements: Story;
24
+ export declare const FitContent: Story;