pds-dev-kit-web 2.2.29 → 2.2.30

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.
@@ -132,6 +132,9 @@ function Dropdown(_a) {
132
132
  };
133
133
  var handleClickOption = function (option) {
134
134
  setIsFocused(false);
135
+ if (option.state === 'disabled') {
136
+ return;
137
+ }
135
138
  if (value === undefined) {
136
139
  setSelectedValue(option);
137
140
  }
@@ -132,6 +132,9 @@ function Dropdown(_a) {
132
132
  };
133
133
  var handleClickOption = function (option) {
134
134
  setIsFocused(false);
135
+ if (option.state === 'disabled') {
136
+ return;
137
+ }
135
138
  if (value === undefined) {
136
139
  setSelectedValue(option);
137
140
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web",
3
- "version": "2.2.29",
3
+ "version": "2.2.30",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
package/release-note.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # PDS-DEV-KIT-WEB Release Notes
2
- ## [v2.2.29]
2
+ ## [v2.2.30]
3
3
  ## urgent|https://design.storybook.publ.biz/
4
4
 
5
- ### sub
6
- * DynamicLayout
7
- * scrollIntoThisSection 스크롤은 렌더 200ms 뒤에 작동하도록 처리
5
+ ### Component
6
+ * Dropdown
7
+ * disabled상태인 ContextMenuItem이 선택되지 않도록 클릭시 조건을 추가