pds-dev-kit-web 2.2.37 → 2.2.38
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/ChatBubbleListItem/ChatBubble.d.ts +1 -1
- package/dist/src/desktop/components/ChatBubbleListItem/ChatBubble.js +2 -1
- package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.d.ts +1 -1
- package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.js +2 -1
- package/dist/src/mobile/components/ChatBubbleListItem/ChatBubble.d.ts +1 -1
- package/dist/src/mobile/components/ChatBubbleListItem/ChatBubble.js +2 -1
- package/dist/src/mobile/components/ChatBubbleListItem/ChatBubbleListItem.d.ts +1 -1
- package/dist/src/mobile/components/ChatBubbleListItem/ChatBubbleListItem.js +2 -1
- package/package.json +1 -1
- package/release-note.md +3 -3
- package/webhook/node_modules/esrecurse/.babelrc +0 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export type ChatBubbleProps = {
|
|
3
|
-
colorTheme?: 'grey' | 'brand_primary' | 'translucent_white' | 'translucent_black';
|
|
3
|
+
colorTheme?: 'grey' | 'brand_primary' | 'translucent_white' | 'translucent_black' | 'transparent';
|
|
4
4
|
tailType?: 'none' | 'left_top' | 'right_top';
|
|
5
5
|
children?: React.ReactNode;
|
|
6
6
|
};
|
|
@@ -44,7 +44,8 @@ var backgroundColorTheme = {
|
|
|
44
44
|
grey: 'ui_cpnt_list_chatbubble_base_grey',
|
|
45
45
|
brand_primary: 'ui_cpnt_list_chatbubble_base_brand_primary',
|
|
46
46
|
translucent_white: 'ui_cpnt_list_chatbubble_base_translucent_white',
|
|
47
|
-
translucent_black: 'ui_cpnt_list_chatbubble_base_translucent_black'
|
|
47
|
+
translucent_black: 'ui_cpnt_list_chatbubble_base_translucent_black',
|
|
48
|
+
transparent: 'ui_cpnt_list_chatbubble_base_transparent'
|
|
48
49
|
};
|
|
49
50
|
function ChatBubble(_a) {
|
|
50
51
|
var _b = _a.colorTheme, colorTheme = _b === void 0 ? 'grey' : _b, _c = _a.tailType, tailType = _c === void 0 ? 'left_top' : _c, children = _a.children;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import type { PDSTextType, PDSValueOption } from '../../../common';
|
|
3
|
-
type ColorThemeType = 'grey' | 'brand_primary' | 'translucent_white' | 'translucent_black';
|
|
3
|
+
type ColorThemeType = 'grey' | 'brand_primary' | 'translucent_white' | 'translucent_black' | 'transparent';
|
|
4
4
|
export type ChatBubbleListItemProps = {
|
|
5
5
|
titleText?: PDSTextType;
|
|
6
6
|
imageSrc?: string;
|
|
@@ -64,7 +64,8 @@ var profileImageBorderColorTheme = {
|
|
|
64
64
|
grey: 'ui_avatar_border',
|
|
65
65
|
brand_primary: 'ui_avatar_border_brandprimary',
|
|
66
66
|
translucent_white: 'ui_avatar_border_translucent_white',
|
|
67
|
-
translucent_black: 'ui_avatar_border_translucent_black'
|
|
67
|
+
translucent_black: 'ui_avatar_border_translucent_black',
|
|
68
|
+
transparent: 'ui_cpnt_list_chatbubble_base_transparent'
|
|
68
69
|
};
|
|
69
70
|
function ChatBubbleListItem(_a) {
|
|
70
71
|
var titleText = _a.titleText, imageSrc = _a.imageSrc, _b = _a.hoverMode, hoverMode = _b === void 0 ? 'use' : _b, styleTheme = _a.styleTheme, _c = _a.colorTheme, colorTheme = _c === void 0 ? 'grey' : _c, _d = _a.timeMode, timeMode = _d === void 0 ? 'use' : _d, timeText = _a.timeText, _e = _a.countMode, countMode = _e === void 0 ? 'none' : _e, countText = _a.countText, contextMenuOptionArray = _a.contextMenuOptionArray, _f = _a.contextMenuState, contextMenuState = _f === void 0 ? 'normal' : _f, children = _a.children, onClickContextMenuItem = _a.onClickContextMenuItem;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export type ChatBubbleProps = {
|
|
3
|
-
colorTheme?: 'grey' | 'brand_primary' | 'translucent_white' | 'translucent_black';
|
|
3
|
+
colorTheme?: 'grey' | 'brand_primary' | 'translucent_white' | 'translucent_black' | 'transparent';
|
|
4
4
|
tailType?: 'none' | 'left_top' | 'right_top';
|
|
5
5
|
children?: React.ReactNode;
|
|
6
6
|
};
|
|
@@ -44,7 +44,8 @@ var backgroundColorTheme = {
|
|
|
44
44
|
grey: 'ui_cpnt_list_chatbubble_base_grey',
|
|
45
45
|
brand_primary: 'ui_cpnt_list_chatbubble_base_brand_primary',
|
|
46
46
|
translucent_white: 'ui_cpnt_list_chatbubble_base_translucent_white',
|
|
47
|
-
translucent_black: 'ui_cpnt_list_chatbubble_base_translucent_black'
|
|
47
|
+
translucent_black: 'ui_cpnt_list_chatbubble_base_translucent_black',
|
|
48
|
+
transparent: 'ui_cpnt_list_chatbubble_base_transparent'
|
|
48
49
|
};
|
|
49
50
|
function ChatBubble(_a) {
|
|
50
51
|
var _b = _a.colorTheme, colorTheme = _b === void 0 ? 'grey' : _b, _c = _a.tailType, tailType = _c === void 0 ? 'left_top' : _c, children = _a.children;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import type { PDSTextType, PDSValueOption } from '../../../common';
|
|
3
|
-
type ColorThemeType = 'grey' | 'brand_primary' | 'translucent_white' | 'translucent_black';
|
|
3
|
+
type ColorThemeType = 'grey' | 'brand_primary' | 'translucent_white' | 'translucent_black' | 'transparent';
|
|
4
4
|
export type ChatBubbleListItemProps = {
|
|
5
5
|
titleText?: PDSTextType;
|
|
6
6
|
imageSrc?: string;
|
|
@@ -64,7 +64,8 @@ var profileImageBorderColorTheme = {
|
|
|
64
64
|
grey: 'ui_avatar_border',
|
|
65
65
|
brand_primary: 'ui_avatar_border_brandprimary',
|
|
66
66
|
translucent_white: 'ui_avatar_border_translucent_white',
|
|
67
|
-
translucent_black: 'ui_avatar_border_translucent_black'
|
|
67
|
+
translucent_black: 'ui_avatar_border_translucent_black',
|
|
68
|
+
transparent: 'ui_cpnt_list_chatbubble_base_transparent'
|
|
68
69
|
};
|
|
69
70
|
function ChatBubbleListItem(_a) {
|
|
70
71
|
var titleText = _a.titleText, imageSrc = _a.imageSrc, _b = _a.hoverMode, hoverMode = _b === void 0 ? 'use' : _b, styleTheme = _a.styleTheme, _c = _a.colorTheme, colorTheme = _c === void 0 ? 'grey' : _c, _d = _a.timeMode, timeMode = _d === void 0 ? 'use' : _d, timeText = _a.timeText, _e = _a.countMode, countMode = _e === void 0 ? 'none' : _e, countText = _a.countText, contextMenuOptionArray = _a.contextMenuOptionArray, _f = _a.contextMenuState, contextMenuState = _f === void 0 ? 'normal' : _f, children = _a.children, onClickContextMenuItem = _a.onClickContextMenuItem;
|
package/package.json
CHANGED
package/release-note.md
CHANGED