pds-dev-kit-web 1.9.0 → 1.9.1
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/README.md
CHANGED
|
@@ -66,9 +66,15 @@ function SectionBox(_a) {
|
|
|
66
66
|
setHasNoChild(false);
|
|
67
67
|
}, [isEditing, children]);
|
|
68
68
|
var onMouseEnter = function () {
|
|
69
|
+
if (hasNoChild) {
|
|
70
|
+
return;
|
|
71
|
+
}
|
|
69
72
|
setIsHover(true);
|
|
70
73
|
};
|
|
71
74
|
var onClickSectionBox = function () {
|
|
75
|
+
if (hasNoChild) {
|
|
76
|
+
return;
|
|
77
|
+
}
|
|
72
78
|
setFadeout(true);
|
|
73
79
|
setIsHover(false);
|
|
74
80
|
onClickDelayedAsync();
|
package/package.json
CHANGED
package/release-note.md
CHANGED
|
@@ -1,123 +1,6 @@
|
|
|
1
1
|
# PDS-DEV-KIT-WEB Release Notes
|
|
2
|
-
## [v1.9.
|
|
3
|
-
|
|
4
|
-
* input autofill 되었을때 배경 색상이 변하지 않도록 수정
|
|
5
|
-
### Storybook
|
|
6
|
-
* storybook에서 바로 tone별로 볼 수 있는 기능 toolbar에 추가
|
|
7
|
-
* Icon을 편리하게 볼 수 있도록 뷰 변경 및 클릭 시 아이콘 명 복사 기능 추가
|
|
8
|
-
### Common
|
|
9
|
-
* transition과 animation 관련 style들 추가
|
|
10
|
-
* scrollbar 관련 style들 추가
|
|
11
|
-
### Layout
|
|
12
|
-
* contents container의 배경 색상을 변경할 수 있는 prop 추가
|
|
13
|
-
* overrideContainer1ColorKey
|
|
14
|
-
* overrideContainer2ColorKey
|
|
15
|
-
* WF
|
|
16
|
-
* WFA_1 수정
|
|
17
|
-
* WFA_2 생성
|
|
18
|
-
* WFB_1 수정
|
|
19
|
-
* WFE_1 수정
|
|
20
|
-
* WFE_2 수정
|
|
21
|
-
* WFE_3 생성
|
|
22
|
-
* WFE_4 생성
|
|
23
|
-
* WFL_1 생성
|
|
24
|
-
* WS
|
|
25
|
-
* 스크롤이 있는 유형일 경우 스크롤이 보여지도록 조치
|
|
26
|
-
* WSB_2 생성
|
|
27
|
-
### Component
|
|
28
|
-
* AdminList
|
|
29
|
-
* flexibleHideInfoMode prop 추가
|
|
30
|
-
* AdminListItem
|
|
31
|
-
* transition효과 부여
|
|
32
|
-
* rowSize prop의 'medium' 높이값 120px → 100px로 수정
|
|
33
|
-
* flexibleHideInfoMode prop 추가
|
|
34
|
-
* BodyTextGroup
|
|
35
|
-
* titleStyleTheme prop 추가
|
|
36
|
-
* titleText와 descText 사이 간격 spacing-b로 수정
|
|
37
|
-
* BasicFormGroup
|
|
38
|
-
* titleStyleTheme prop에 leadParaBold 추가
|
|
39
|
-
* titleText와 descText 사이 간격 spacing-b로 수정
|
|
40
|
-
* DesktopAlertDialog
|
|
41
|
-
* animation효과 부여
|
|
42
|
-
* Dropdown
|
|
43
|
-
* transition효과 부여
|
|
44
|
-
* EditApplyTextField
|
|
45
|
-
* transition효과 부여
|
|
46
|
-
* FloatingActionButton
|
|
47
|
-
* hover 및 active시 구조 변경
|
|
48
|
-
* background-image: linear-gradient 사용 → ::before 가상요소 사용
|
|
49
|
-
* transition효과 부여
|
|
50
|
-
* Icon
|
|
51
|
-
* ic_arrow_down fill 타입 모양 변경
|
|
52
|
-
* ic_arrow_up fill 타입 모양 변경
|
|
53
|
-
* ic_cs_bold line 타입 추가
|
|
54
|
-
* ic_cs_face line 타입 추가
|
|
55
|
-
* IconButton
|
|
56
|
-
* hover 및 active시 구조 변경
|
|
57
|
-
* background-image: linear-gradient 사용 → ::before 가상요소 사용
|
|
58
|
-
* transition효과 부여
|
|
59
|
-
* LottieReactionButton
|
|
60
|
-
* hover 및 active시 구조 변경
|
|
61
|
-
* background-image: linear-gradient 사용 → ::before 가상요소 사용
|
|
62
|
-
* transition효과 부여
|
|
63
|
-
* MainButton
|
|
64
|
-
* hover 및 active시 구조 변경
|
|
65
|
-
* background-image: linear-gradient 사용 → ::before 가상요소 사용
|
|
66
|
-
* transition효과 부여
|
|
67
|
-
* colorTheme prop에 'primary1','secondary1' value추가
|
|
68
|
-
* MobileAlertDialog
|
|
69
|
-
* animation효과 부여
|
|
70
|
-
* ReactionButton
|
|
71
|
-
* transition효과 부여
|
|
72
|
-
* Select
|
|
73
|
-
* transition효과 부여
|
|
74
|
-
* TextButton
|
|
75
|
-
* transition효과 부여
|
|
76
|
-
* TextField
|
|
77
|
-
* transition효과 부여
|
|
78
|
-
* TextLabel
|
|
79
|
-
* letterSpacing prop 추가
|
|
80
|
-
* UploadIconButton
|
|
81
|
-
* hover 및 active시 구조 변경
|
|
82
|
-
* background-image: linear-gradient 사용 → ::before 가상요소 사용
|
|
83
|
-
* transition효과 부여
|
|
84
|
-
* UploadMainButton
|
|
85
|
-
* hover 및 active시 구조 변경
|
|
86
|
-
* background-image: linear-gradient 사용 → ::before 가상요소 사용
|
|
87
|
-
* transition효과 부여
|
|
88
|
-
* colorTheme prop에 'primary1','secondary1' value추가
|
|
89
|
-
* UploadTextButton
|
|
90
|
-
* transition효과 부여
|
|
91
|
-
### Panel
|
|
92
|
-
* DesktopBasicModal
|
|
93
|
-
* animation효과 부여
|
|
94
|
-
* size 'rlarge' 스펙 수정
|
|
95
|
-
* max-width : 1400px
|
|
96
|
-
* width : 60vw → 80vw
|
|
97
|
-
* body 부분 스펙 수정
|
|
98
|
-
* max-height : 50vh → 60vh
|
|
99
|
-
* footer 부분 상단 라인 색상 변경
|
|
100
|
-
* scrollVisibleType prop 추가
|
|
101
|
-
* bodyOverflowType prop에 'overlay' value추가
|
|
102
|
-
* bodyOverflowType prop default값 변경
|
|
103
|
-
* 'auto' → 'overlay'
|
|
104
|
-
* DesktopHeadlessModal
|
|
105
|
-
* animation효과 부여
|
|
106
|
-
* scrollVisibleType prop default값 변경
|
|
107
|
-
* 'hidden' → 'visible'
|
|
108
|
-
* scroll 디자인 스펙 변경
|
|
109
|
-
* MobileBasicModal
|
|
110
|
-
* animation효과 부여
|
|
2
|
+
## [v1.9.1]
|
|
3
|
+
|
|
111
4
|
### Sub
|
|
112
5
|
* DynamicLayout 수정
|
|
113
|
-
* Edit
|
|
114
|
-
* 일부 섹션들 100vw → 100%로 수정
|
|
115
|
-
* 특정 섹션으로 스크롤 기능 추가
|
|
116
|
-
* Dynamic-layout 상단 스토리 추가
|
|
117
|
-
* Edit 모드에서 정보가 없는 섹션은 렌더되지 않도록 처리
|
|
118
|
-
* editingSection border 컬러 키 변경
|
|
119
|
-
* editingSectionId가 변경될 때, hover가 꺼지는 애니메이션 추가
|
|
120
|
-
### String
|
|
121
|
-
* 스트링 키 값 23.01.26 16시 30분 기준 싱크
|
|
122
|
-
### Color
|
|
123
|
-
* 컬러 키 값 23.01.30 19시 52분 기준 싱크
|
|
6
|
+
* Edit 모드에서 하위 컴포넌트가 없다면 호버/클릭 시에도 아무 변화가 없도록 수정
|