@uniai-fe/uds-primitives 0.3.32 → 0.3.33

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniai-fe/uds-primitives",
3
- "version": "0.3.32",
3
+ "version": "0.3.33",
4
4
  "description": "UNIAI Design System; Primitives Components Package",
5
5
  "type": "module",
6
6
  "private": false,
@@ -74,7 +74,7 @@ export function SelectDefault<OptionData = unknown>({
74
74
  disabled,
75
75
  readOnly,
76
76
  buttonType,
77
- items,
77
+ items = [],
78
78
  onSelectOption,
79
79
  onSelectChange,
80
80
  dropdownOptions,
@@ -54,7 +54,7 @@ export function SelectMultipleTrigger<OptionData = unknown>({
54
54
  disabled,
55
55
  readOnly,
56
56
  tags,
57
- items,
57
+ items = [],
58
58
  onSelectOption,
59
59
  onSelectChange,
60
60
  dropdownOptions: dropdown,
@@ -242,7 +242,7 @@ export interface SelectDropdownConfigProps<
242
242
  /**
243
243
  * dropdown item 리스트
244
244
  */
245
- items: SelectDropdownOption<OptionData, DataOptionality>[];
245
+ items?: SelectDropdownOption<OptionData, DataOptionality>[];
246
246
  /**
247
247
  * option 선택 액션 콜백
248
248
  */