pds-dev-kit-web-test 0.0.14 → 0.0.16
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/dist/src/desktop/components/DynamicDesktopNavBar/components/MenuItemNav/MenuItemNav.js +2 -0
- package/dist/src/desktop/components/DynamicDesktopNavBar/components/MenuItemNav/components/PageMenuItemNav.d.ts +12 -0
- package/dist/src/desktop/components/DynamicDesktopNavBar/components/MenuItemNav/components/PageMenuItemNav.js +51 -0
- package/dist/src/desktop/components/DynamicDesktopNavBar/types.d.ts +2 -1
- package/dist/src/sub/DynamicLayout/desktop/components/Section/Section.d.ts +3 -1
- package/dist/src/sub/DynamicLayout/desktop/components/Section/Section.js +6 -3
- package/dist/src/sub/DynamicLayout/desktop/components/common/Carousel.js +36 -5
- package/dist/src/sub/DynamicLayout/desktop/components/common/swiper.style.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/desktop/components/common/swiper.style.js +10 -0
- package/dist/src/sub/DynamicLayout/desktop/sections/ContentsCarouselSection/templates/TemplateA/TemplateA.js +5 -7
- package/dist/src/sub/DynamicLayout/desktop/sections/ContentsCarouselSection/templates/TemplateB/TemplateB.js +6 -10
- package/dist/src/sub/DynamicLayout/desktop/sections/ContentsSection/templates/TemplateA/TemplateA.js +8 -5
- package/dist/src/sub/DynamicLayout/desktop/sections/ContentsSection/templates/TemplateB/TemplateB.js +8 -5
- package/dist/src/sub/DynamicLayout/desktop/sections/InfoBoxSection/templates/TemplateA/TemplateA.js +3 -3
- package/dist/src/sub/DynamicLayout/desktop/sections/IntroSection/templates/TemplateA/TemplateA.js +2 -2
- package/dist/src/sub/DynamicLayout/desktop/sections/IntroSection/templates/TemplateB/TemplateB.js +2 -2
- package/dist/src/sub/DynamicLayout/desktop/sections/IntroSection/templates/TemplateC/TemplateC.js +1 -1
- package/dist/src/sub/DynamicLayout/desktop/sections/IntroSection/templates/TemplateD/TemplateD.js +1 -1
- package/dist/src/sub/DynamicLayout/mobile/components/Section/Section.d.ts +6 -2
- package/dist/src/sub/DynamicLayout/mobile/components/Section/Section.js +12 -6
- package/dist/src/sub/DynamicLayout/mobile/components/common/Carousel.js +2 -2
- package/dist/src/sub/DynamicLayout/mobile/sections/ContentsCarouselSection/templates/TemplateA/TemplateA.js +9 -9
- package/dist/src/sub/DynamicLayout/mobile/sections/ContentsCarouselSection/templates/TemplateB/TemplateB.js +9 -9
- package/dist/src/sub/DynamicLayout/mobile/sections/ContentsSection/templates/TemplateA/TemplateA.js +15 -13
- package/dist/src/sub/DynamicLayout/mobile/sections/ContentsSection/templates/TemplateB/TemplateB.js +8 -11
- package/dist/src/sub/DynamicLayout/mobile/sections/FooterSection/templates/TemplateA/TemplateA.js +3 -6
- package/dist/src/sub/DynamicLayout/mobile/sections/FooterSection/templates/TemplateB/TemplateB.js +3 -6
- package/dist/src/sub/DynamicLayout/mobile/sections/InfoBoxSection/templates/TemplateA/TemplateA.js +7 -10
- package/dist/src/sub/DynamicLayout/mobile/sections/IntroSection/templates/TemplateA/TemplateA.js +14 -3
- package/dist/src/sub/DynamicLayout/mobile/sections/IntroSection/templates/TemplateB/TemplateB.js +14 -3
- package/dist/src/sub/DynamicLayout/mobile/sections/IntroSection/templates/TemplateC/TemplateC.js +1 -1
- package/dist/src/sub/DynamicLayout/mobile/sections/IntroSection/templates/TemplateD/TemplateD.js +1 -1
- package/dist/src/sub/DynamicLayout/types.js +5 -5
- package/package.json +1 -1
- package/release-note.md +16 -7
package/package.json
CHANGED
package/release-note.md
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
# PDS-DEV-KIT-WEB-TEST Release Notes
|
|
2
|
-
## [v0.0.
|
|
2
|
+
## [v0.0.16]
|
|
3
3
|
|
|
4
4
|
* sub
|
|
5
|
-
* DynamicLayout 수정
|
|
6
|
-
*
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
* DynamicLayout 디자인 디테일 수정
|
|
6
|
+
* desktop
|
|
7
|
+
* ContentSheet 타이틀 사이즈 48px 수정
|
|
8
|
+
* Footer -> 위아래 마진값 원래 값으로 돌리기 (64px)
|
|
9
|
+
* 캐러셀 섹션
|
|
10
|
+
* 아이템 제목과 본문 사이 간격 24px -> 12px
|
|
11
|
+
* 아이템 제목 styleTheme : subTitleBold로 적용
|
|
12
|
+
* 인포박스 섹션
|
|
13
|
+
* 아이템 타이틀 customFontSize : 22px로 적용
|
|
14
|
+
* 아이템 본문 styleTheme : body2Regular 적용
|
|
15
|
+
* mobile
|
|
16
|
+
* 인트로, 푸터 섹션 제외 섹션 본문 18px / font-weight : 600으로 수정
|
|
17
|
+
* 섹션 제목과 본문 사이 간격 16px -> 24px
|
|
18
|
+
* 캐러셀, 인포박스 "아이템" 본문 14px -> customFontSize : 15px로 수정
|
|
19
|
+
* 푸터 위아래 마진값 원래 값으로 돌리기
|