pds-dev-kit-web 2.2.3 → 2.2.5
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/common/styles/colorSet/PaletteColor_Dark.json +2 -1
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +2 -1
- package/dist/src/common/styles/colorSet/UIColor.json +2 -1
- package/dist/src/common/styles/colorSet/index.d.ts +348 -345
- package/dist/src/common/styles/colorSet/index.js +3 -3
- package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
- package/dist/src/desktop/components/BasicChatListItem/BasicChatListItem.d.ts +4 -2
- package/dist/src/desktop/components/BasicChatListItem/BasicChatListItem.js +46 -15
- package/dist/src/desktop/components/BasicChatListItem/Popup.d.ts +1 -0
- package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.d.ts +3 -1
- package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.js +19 -3
- package/dist/src/desktop/components/ChatBubbleListItem/Popup.d.ts +1 -0
- package/dist/src/mobile/components/BasicChatListItem/BasicChatListItem.d.ts +4 -2
- package/dist/src/mobile/components/BasicChatListItem/BasicChatListItem.js +59 -10
- package/dist/src/mobile/components/BasicChatListItem/Popup.d.ts +1 -0
- package/dist/src/mobile/components/ChatBubbleListItem/ChatBubbleListItem.d.ts +3 -1
- package/dist/src/mobile/components/ChatBubbleListItem/ChatBubbleListItem.js +21 -3
- package/dist/src/mobile/components/ChatBubbleListItem/Popup.d.ts +1 -0
- package/dist/src/mobile/components/ChatList/Body.js +1 -1
- package/dist/src/sub/DynamicLayout/pagesPreviewMock.d.ts +566 -3
- package/dist/src/sub/DynamicLayout/pagesPreviewMock.js +500 -5
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +5 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Divider/Divider.js +4 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Image/Image.js +5 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/RichText/RichText.js +5 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +5 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Twitter/Twitter.js +4 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/Youtube.js +4 -2
- package/package.json +1 -1
- package/release-note.md +12 -5
|
@@ -341,5 +341,6 @@
|
|
|
341
341
|
"sys_sw_sidebar_label_icon_normal_02": "darkblue500",
|
|
342
342
|
"sys_text_black_02": "black/opacity60",
|
|
343
343
|
"sys_sw_sidebar_item_text_disabled": "darkgrey400/opacity70",
|
|
344
|
-
"sys_text_grey_05": "darkgrey400/opacity20"
|
|
344
|
+
"sys_text_grey_05": "darkgrey400/opacity20",
|
|
345
|
+
"sys_text_white_02": "white/opacity50"
|
|
345
346
|
}
|
|
@@ -341,5 +341,6 @@
|
|
|
341
341
|
"sys_sw_sidebar_label_icon_normal_02": "darkblue500",
|
|
342
342
|
"sys_text_black_02": "black/opacity60",
|
|
343
343
|
"sys_sw_sidebar_item_text_disabled": "darkgrey400/opacity70",
|
|
344
|
-
"sys_text_grey_05": "grey400/opacity20"
|
|
344
|
+
"sys_text_grey_05": "grey400/opacity20",
|
|
345
|
+
"sys_text_white_02": "white/opacity50"
|
|
345
346
|
}
|
|
@@ -834,5 +834,6 @@
|
|
|
834
834
|
"ui_cpnt_modalwithtab_sidetab_default": "sys_component_base_white_opacity00",
|
|
835
835
|
"ui_cpnt_modalwithtab_sidetab_hover": "sys_component_base_01",
|
|
836
836
|
"ui_cpnt_modalwithtab_sidetab_pressed": "sys_component_base_04",
|
|
837
|
-
"ui_107": "sys_component_border_white_opacity20"
|
|
837
|
+
"ui_107": "sys_component_border_white_opacity20",
|
|
838
|
+
"ui_cpnt_textlabel_sys_white_02": "sys_text_white_02"
|
|
838
839
|
}
|