@croquiscom/pds 0.38.0 → 0.38.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.38.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 584a215: Pagination middleRange 예외 처리 추가
8
+ - c3ba920: fix: FormField의 label props type을 ReactNode로 변경
9
+
3
10
  ## 0.38.0
4
11
 
5
12
  ### Minor Changes
@@ -3,7 +3,7 @@ import { HelpTextProps } from '../text';
3
3
  import { CSSValueWithLength } from '../../styles';
4
4
  export interface FormFieldProps {
5
5
  className?: string;
6
- label?: string;
6
+ label?: ReactNode;
7
7
  rightAddon?: ReactNode;
8
8
  required?: boolean;
9
9
  helper?: HelpTextProps;