@croquiscom/pds 11.1.2 → 11.2.0

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
+ ## 11.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 650683d: GridView icons 업데이트
8
+
9
+ ## 11.1.3
10
+
11
+ ### Patch Changes
12
+
13
+ - 60bbbb9: CheckBoxGroup / RadioGroup 반응형대응 추가
14
+
3
15
  ## 11.1.2
4
16
 
5
17
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" height="24" width="24">
2
- <rect stroke-linejoin="round" stroke-width="1.5" stroke="#363644" height="7.5" width="7.5" y="2.75" x="2.75"></rect>
3
- <rect stroke-linejoin="round" stroke-width="1.5" stroke="#363644" height="7.5" width="7.5" y="2.75" x="13.75"></rect>
4
- <rect stroke-linejoin="round" stroke-width="1.5" stroke="#363644" height="7.5" width="7.5" y="13.75" x="2.75"></rect>
5
- <rect stroke-linejoin="round" stroke-width="1.5" stroke="#363644" height="7.5" width="7.5" y="13.75" x="13.75"></rect>
2
+ <path fill="#363644" d="M2 11V2H11V11H2ZM3.5 3.5H9.5V9.5H3.5V3.5Z" clip-rule="evenodd" fill-rule="evenodd"></path>
3
+ <path fill="#363644" d="M13 11V2H22V11H13ZM14.5 3.5H20.5V9.5H14.5V3.5Z" clip-rule="evenodd" fill-rule="evenodd"></path>
4
+ <path fill="#363644" d="M2 13V22H11V13H2ZM9.5 14.5H3.5V20.5H9.5V14.5Z" clip-rule="evenodd" fill-rule="evenodd"></path>
5
+ <path fill="#363644" d="M13 22V13H22V22H13ZM14.5 14.5H20.5V20.5H14.5V14.5Z" clip-rule="evenodd" fill-rule="evenodd"></path>
6
6
  </svg>
@@ -3,7 +3,7 @@ import { RadioSizeUnion, DefaultRadioSizeUnion } from './types';
3
3
  export declare const getRadioGroupStyleByProps: ({ radio_item_type, align, spacing, size, }: {
4
4
  radio_item_type?: RadioItemType;
5
5
  align?: AlignType;
6
- spacing?: Number;
6
+ spacing: Number;
7
7
  size?: RadioSizeUnion;
8
8
  }) => import("@emotion/utils").SerializedStyles;
9
9
  export declare const default_radio_size_css: Record<DefaultRadioSizeUnion, Record<string, number>>;