pds-dev-kit-web 2.2.237 → 2.2.238

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.
@@ -84,7 +84,7 @@ function AdminList(_a) {
84
84
  checkboxMethods.reset();
85
85
  selectAllMethods.setValue(headerRowCheckboxName, false);
86
86
  if (maintainIds === null || maintainIds === void 0 ? void 0 : maintainIds.length) {
87
- setIsBulkActionBarOpen(true);
87
+ react_1.default.isValidElement(bulkActionBar) && setIsBulkActionBarOpen(true);
88
88
  maintainIds.forEach(function (id) { return checkboxMethods.setValue(id.toString(), true); });
89
89
  }
90
90
  else {
@@ -97,7 +97,7 @@ function AdminList(_a) {
97
97
  checkboxMethods.setValue(selectedIds[0].toString(), true);
98
98
  return;
99
99
  }
100
- setIsBulkActionBarOpen(true);
100
+ react_1.default.isValidElement(bulkActionBar) && setIsBulkActionBarOpen(true);
101
101
  selectedIds.forEach(function (val) { return checkboxMethods.setValue(val.toString(), true); });
102
102
  // NOTE Children에 포함된 요소의 id와 선택되어 있는 id를 비교해 전체 체크박스의 상태를 변경합니다.
103
103
  var hasAllIds = childrenPropIds === null || childrenPropIds === void 0 ? void 0 : childrenPropIds.every(function (id) { return selectedIds.includes(id) || (maintainIds === null || maintainIds === void 0 ? void 0 : maintainIds.includes(id)); });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web",
3
- "version": "2.2.237",
3
+ "version": "2.2.238",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
package/release-note.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PDS-DEV-KIT-WEB Release Notes
2
- ## [v2.2.237]
2
+ ## [v2.2.238]
3
3
  ## daily|https://design.storybook.publ.biz/
4
4
 
5
5
  ### 업데이트 사항
6
- * [Fix][PDS-1364] ic_gift fill 타입 아이콘 변경
6
+ * [PDS-1365] BulkActionBar 노출 조건 수정