@croquiscom/pds 0.30.0 → 0.30.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 0.30.1
4
+
5
+ ### Patch Changes
6
+
7
+ - c77a19c: Input Button 스토리북 사용예 추가
8
+ - bb88b3c: feat: BottomSheet title, subtitle 타입 ReactNode로 변경
9
+
3
10
  ## 0.30.0
4
11
 
5
12
  ### Minor Changes
@@ -7,8 +7,8 @@ export interface BottomSheetProps {
7
7
  opened?: boolean;
8
8
  /** @default 1010 */
9
9
  zIndex?: number;
10
- title?: string;
11
- subTitle?: string;
10
+ title?: ReactNode;
11
+ subTitle?: ReactNode;
12
12
  content?: ReactNode | BottomSheetContentWithCloseAction;
13
13
  /**
14
14
  * @default true
@@ -14,3 +14,4 @@ export declare const AddonWithWidth: any;
14
14
  export declare const AddonWithFormHelperText: () => JSX.Element[];
15
15
  export declare const Password: () => JSX.Element;
16
16
  export declare const Search: any;
17
+ export declare const WithButton: () => JSX.Element;