pds-dev-kit-web 1.4.8 → 1.4.9

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.
@@ -151,7 +151,7 @@ function TextFieldBase(_a) {
151
151
  textAreaRef.current.style.height = textAreaRef.current.scrollHeight + "px";
152
152
  }, []);
153
153
  function deleteValue() {
154
- setValue(name, '');
154
+ setValue(name, '', { shouldDirty: true });
155
155
  }
156
156
  // NOTE: input의 type이 number일때, e나 E의 경우 숫자로 취급되어 입력이 가능하지만, publ의 기획상 막아야하기 때문에 생성한 함수
157
157
  var preventEKeyword = function (e) {
@@ -151,7 +151,7 @@ function TextFieldBase(_a) {
151
151
  textAreaRef.current.style.height = textAreaRef.current.scrollHeight + "px";
152
152
  }, []);
153
153
  function deleteValue() {
154
- setValue(name, '');
154
+ setValue(name, '', { shouldDirty: true });
155
155
  }
156
156
  // NOTE: input의 type이 number일때, e나 E의 경우 숫자로 취급되어 입력이 가능하지만, publ의 기획상 막아야하기 때문에 생성한 함수
157
157
  var preventEKeyword = function (e) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web",
3
- "version": "1.4.8",
3
+ "version": "1.4.9",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
package/release-note.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # PDS-DEV-KIT-WEB Release Notes
2
- ## [v1.4.8]
2
+ ## [v1.4.9]
3
3
 
4
- ### Layout
5
- * WTS_2 생성
4
+ ### Component
5
+ * Common
6
+ * TextFieldBase
7
+ * setValue에 shouldDirty config를 추가