@croquiscom/pds 4.1.2 → 4.1.3

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
+ ## 4.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 3cc58d1: RadioGroup width 속성 RadioBaseType 제거
8
+ - 6b1d56f: Table No Data의 아이콘과 텍스트 크기 수정
9
+
3
10
  ## 4.1.2
4
11
 
5
12
  ### Patch Changes
@@ -1,7 +1,7 @@
1
1
  import React, { InputHTMLAttributes } from 'react';
2
2
  import { AriaFocusProps } from '../../types/common';
3
3
  import { RadioCategoryType, RadioItemType, RadioWidthType } from './RadioGroup';
4
- interface RadioBaseType extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'size'>, AriaFocusProps {
4
+ interface RadioBaseType extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'size' | 'width'>, AriaFocusProps {
5
5
  }
6
6
  export interface RadioProps extends RadioBaseType, RadioCategoryType<RadioItemType> {
7
7
  /**