@veltdev/react 4.5.2-beta.15 → 4.5.2-beta.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/cjs/index.js +25 -4
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogCommentNumber/VeltCommentDialogCommentNumber.d.ts +8 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogCommentNumber/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
- package/cjs/types/components/VeltCommentPinWireframe/VeltCommentPinNumber/VeltCommentPinIndex.d.ts +8 -0
- package/cjs/types/components/VeltCommentPinWireframe/VeltCommentPinNumber/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentPinWireframe/VeltCommentPinWireframe.d.ts +2 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFullscreenButton/VeltCommentsSidebarFullscreenButton.d.ts +8 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFullscreenButton/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarWireframe.d.ts +2 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +25 -4
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogCommentNumber/VeltCommentDialogCommentNumber.d.ts +8 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogCommentNumber/index.d.ts +1 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
- package/esm/types/components/VeltCommentPinWireframe/VeltCommentPinNumber/VeltCommentPinIndex.d.ts +8 -0
- package/esm/types/components/VeltCommentPinWireframe/VeltCommentPinNumber/index.d.ts +1 -0
- package/esm/types/components/VeltCommentPinWireframe/VeltCommentPinWireframe.d.ts +2 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFullscreenButton/VeltCommentsSidebarFullscreenButton.d.ts +8 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFullscreenButton/index.d.ts +1 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarWireframe.d.ts +2 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +19 -0
- package/package.json +1 -1
|
@@ -45,6 +45,7 @@ export interface IVeltCommentsSidebarProps {
|
|
|
45
45
|
systemFiltersOperator?: 'and' | 'or';
|
|
46
46
|
sidebarButtonCountType?: 'default' | 'filter';
|
|
47
47
|
filterGhostCommentsInSidebar?: boolean;
|
|
48
|
+
fullScreen?: boolean;
|
|
48
49
|
}
|
|
49
50
|
declare const SnippylyCommentsSidebar: React.FC<IVeltCommentsSidebarProps>;
|
|
50
51
|
export default SnippylyCommentsSidebar;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IVeltWireframeCommonProps } from '../../../constants';
|
|
3
|
+
export interface IVeltCommentDialogCommentNumberProps extends IVeltWireframeCommonProps {
|
|
4
|
+
}
|
|
5
|
+
export interface IVeltCommentDialogCommentNumber extends React.FC<IVeltCommentDialogCommentNumberProps> {
|
|
6
|
+
}
|
|
7
|
+
declare const VeltCommentDialogCommentNumber: IVeltCommentDialogCommentNumber;
|
|
8
|
+
export default VeltCommentDialogCommentNumber;
|
package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogCommentNumber/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltCommentDialogCommentNumber";
|
|
@@ -30,6 +30,7 @@ import { IVeltCommentDialogUnresolveButtonProps } from "./VeltCommentDialogUnres
|
|
|
30
30
|
import { IVeltCommentDialogNavigationButtonProps } from "./VeltCommentDialogNavigationButton/VeltCommentDialogNavigationButton";
|
|
31
31
|
import { IVeltCommentDialogReplyAvatars } from "./VeltCommentDialogReplyAvatars/VeltCommentDialogReplyAvatars";
|
|
32
32
|
import { IVeltWireframeCommonProps } from "../../constants";
|
|
33
|
+
import { IVeltCommentDialogCommentNumber } from "./VeltCommentDialogCommentNumber/VeltCommentDialogCommentNumber";
|
|
33
34
|
export interface IVeltCommentDialogWireframeProps extends IVeltWireframeCommonProps {
|
|
34
35
|
}
|
|
35
36
|
declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframeProps> & {
|
|
@@ -40,6 +41,7 @@ declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframePr
|
|
|
40
41
|
Body: React.FC<IVeltCommentDialogBodyProps>;
|
|
41
42
|
CommentCategory: React.FC<IVeltCommentDialogCommentCategoryProps>;
|
|
42
43
|
CommentIndex: React.FC<IVeltCommentDialogCommentIndexProps>;
|
|
44
|
+
CommentNumber: IVeltCommentDialogCommentNumber;
|
|
43
45
|
CommentSuggestionStatus: React.FC<IVeltCommentDialogCommentSuggestionStatusProps>;
|
|
44
46
|
Composer: IVeltCommentDialogComposer;
|
|
45
47
|
CopyLink: React.FC<IVeltCommentDialogCopyLinkProps>;
|
package/cjs/types/components/VeltCommentPinWireframe/VeltCommentPinNumber/VeltCommentPinIndex.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IVeltWireframeCommonProps } from '../../../constants';
|
|
3
|
+
export interface IVeltCommentPinNumberProps extends IVeltWireframeCommonProps {
|
|
4
|
+
}
|
|
5
|
+
export interface IVeltCommentPinNumber extends React.FC<IVeltCommentPinNumberProps> {
|
|
6
|
+
}
|
|
7
|
+
declare const VeltCommentPinNumber: IVeltCommentPinNumber;
|
|
8
|
+
export default VeltCommentPinNumber;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltCommentPinIndex";
|
|
@@ -5,11 +5,13 @@ import { IVeltCommentPinIndexProps } from './VeltCommentPinIndex/VeltCommentPinI
|
|
|
5
5
|
import { IVeltCommentPinTriangleProps } from './VeltCommentPinTriangle/VeltCommentPinTriangle';
|
|
6
6
|
import { IVeltCommentPinUnreadCommentIndicatorProps } from './VeltCommentPinUnreadCommentIndicator/VeltCommentPinUnreadCommentIndicator';
|
|
7
7
|
import { IVeltCommentPinPrivateCommentIndicatorProps } from './VeltCommentPinPrivateCommentIndicator/VeltCommentPinPrivateCommentIndicator';
|
|
8
|
+
import { IVeltCommentPinNumber } from './VeltCommentPinNumber/VeltCommentPinIndex';
|
|
8
9
|
export interface IVeltCommentPinWireframeProps extends IVeltWireframeCommonProps {
|
|
9
10
|
}
|
|
10
11
|
declare const VeltCommentPinWireframe: React.FC<IVeltCommentPinWireframeProps> & {
|
|
11
12
|
GhostCommentIndicator: React.FC<IVeltCommentPinGhostCommentIndicatorProps>;
|
|
12
13
|
Index: React.FC<IVeltCommentPinIndexProps>;
|
|
14
|
+
Number: IVeltCommentPinNumber;
|
|
13
15
|
PrivateCommentIndicator: React.FC<IVeltCommentPinPrivateCommentIndicatorProps>;
|
|
14
16
|
Triangle: React.FC<IVeltCommentPinTriangleProps>;
|
|
15
17
|
UnreadCommentIndicator: React.FC<IVeltCommentPinUnreadCommentIndicatorProps>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IVeltWireframeCommonProps } from '../../../constants';
|
|
3
|
+
export interface IVeltCommentsSidebarFullscreenButtonProps extends IVeltWireframeCommonProps {
|
|
4
|
+
}
|
|
5
|
+
export interface IVeltCommentsSidebarFullscreenButton extends React.FC<IVeltCommentsSidebarFullscreenButtonProps> {
|
|
6
|
+
}
|
|
7
|
+
declare const VeltCommentsSidebarFullscreenButton: IVeltCommentsSidebarFullscreenButton;
|
|
8
|
+
export default VeltCommentsSidebarFullscreenButton;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltCommentsSidebarFullscreenButton";
|
|
@@ -18,6 +18,7 @@ import { IVeltCommentsSidebarStatus } from './VeltCommentsSidebarStatus/VeltComm
|
|
|
18
18
|
import { IVeltCommentsSidebarResetFilterButtonWireframeProps } from './VeltCommentsSidebarResetFilterButtonWireframe/VeltCommentsSidebarResetFilterButtonWireframe';
|
|
19
19
|
import { IVeltCommentsSidebarActionButtonProps } from './VeltCommentsSidebarActionButton/VeltCommentsSidebarActionButton';
|
|
20
20
|
import { IVeltCommentsSidebarFocusedThread } from './VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThread';
|
|
21
|
+
import { IVeltCommentsSidebarFullscreenButton } from './VeltCommentsSidebarFullscreenButton/VeltCommentsSidebarFullscreenButton';
|
|
21
22
|
export interface IVeltCommentsSidebarWireframeProps extends IVeltWireframeCommonProps {
|
|
22
23
|
}
|
|
23
24
|
declare const VeltCommentsSidebarWireframe: React.FC<IVeltCommentsSidebarWireframeProps> & {
|
|
@@ -39,5 +40,6 @@ declare const VeltCommentsSidebarWireframe: React.FC<IVeltCommentsSidebarWirefra
|
|
|
39
40
|
ResetFilterButton: React.FC<IVeltCommentsSidebarResetFilterButtonWireframeProps>;
|
|
40
41
|
ActionButton: React.FC<IVeltCommentsSidebarActionButtonProps>;
|
|
41
42
|
FocusedThread: IVeltCommentsSidebarFocusedThread;
|
|
43
|
+
FullscreenButton: IVeltCommentsSidebarFullscreenButton;
|
|
42
44
|
};
|
|
43
45
|
export default VeltCommentsSidebarWireframe;
|
package/cjs/types/constants.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const VELT_SDK_VERSION = "4.5.2-beta.
|
|
2
|
+
export declare const VELT_SDK_VERSION = "4.5.2-beta.16";
|
|
3
3
|
export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
|
|
4
4
|
export declare const VELT_TAB_ID = "veltTabId";
|
|
5
5
|
export declare const INTEGRITY_MAP: Record<string, string>;
|
package/esm/index.js
CHANGED
|
@@ -137,13 +137,13 @@ var loadVelt = function (callback, version, staging, develop, proxyDomain, integ
|
|
|
137
137
|
}
|
|
138
138
|
};
|
|
139
139
|
|
|
140
|
-
var VELT_SDK_VERSION = '4.5.2-beta.
|
|
140
|
+
var VELT_SDK_VERSION = '4.5.2-beta.16';
|
|
141
141
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
142
142
|
var VELT_TAB_ID = 'veltTabId';
|
|
143
143
|
// integrity map for the Velt SDK
|
|
144
144
|
// Note: generate integrity hashes with: https://www.srihash.org/
|
|
145
145
|
var INTEGRITY_MAP = {
|
|
146
|
-
'4.5.2-beta.
|
|
146
|
+
'4.5.2-beta.16': 'sha384-PKrAjhGo0FMHv7Egcs4rT7Y55tERasToXWKQkZu8hpyzhyeUh7PA0CsUd8sO/4ps',
|
|
147
147
|
};
|
|
148
148
|
|
|
149
149
|
var SnippylyProvider = function (props) {
|
|
@@ -408,7 +408,7 @@ var SnippylyComments = function (props) {
|
|
|
408
408
|
};
|
|
409
409
|
|
|
410
410
|
var SnippylyCommentsSidebar = function (props) {
|
|
411
|
-
var embedMode = props.embedMode; props.floatingMode; var enableUrlNavigation = props.enableUrlNavigation, urlNavigation = props.urlNavigation, queryParamsComments = props.queryParamsComments, pageMode = props.pageMode, currentLocationSuffix = props.currentLocationSuffix, sortData = props.sortData, filterConfig = props.filterConfig, groupConfig = props.groupConfig, filters = props.filters, excludeLocationIds = props.excludeLocationIds, variant = props.variant, pageModeComposerVariant = props.pageModeComposerVariant, dialogVariant = props.dialogVariant, shadowDom = props.shadowDom, searchPlaceholder = props.searchPlaceholder, openSidebar = props.openSidebar, onSidebarOpen = props.onSidebarOpen, onSidebarCommentClick = props.onSidebarCommentClick, onCommentClick = props.onCommentClick, onSidebarClose = props.onSidebarClose, darkMode = props.darkMode, position = props.position, filterPanelLayout = props.filterPanelLayout, customActions = props.customActions, focusedThreadDialogVariant = props.focusedThreadDialogVariant, focusedThreadMode = props.focusedThreadMode, onCommentNavigationButtonClick = props.onCommentNavigationButtonClick, filterOptionLayout = props.filterOptionLayout, filterCount = props.filterCount, fullExpanded = props.fullExpanded, systemFiltersOperator = props.systemFiltersOperator, sidebarButtonCountType = props.sidebarButtonCountType, filterGhostCommentsInSidebar = props.filterGhostCommentsInSidebar;
|
|
411
|
+
var embedMode = props.embedMode; props.floatingMode; var enableUrlNavigation = props.enableUrlNavigation, urlNavigation = props.urlNavigation, queryParamsComments = props.queryParamsComments, pageMode = props.pageMode, currentLocationSuffix = props.currentLocationSuffix, sortData = props.sortData, filterConfig = props.filterConfig, groupConfig = props.groupConfig, filters = props.filters, excludeLocationIds = props.excludeLocationIds, variant = props.variant, pageModeComposerVariant = props.pageModeComposerVariant, dialogVariant = props.dialogVariant, shadowDom = props.shadowDom, searchPlaceholder = props.searchPlaceholder, openSidebar = props.openSidebar, onSidebarOpen = props.onSidebarOpen, onSidebarCommentClick = props.onSidebarCommentClick, onCommentClick = props.onCommentClick, onSidebarClose = props.onSidebarClose, darkMode = props.darkMode, position = props.position, filterPanelLayout = props.filterPanelLayout, customActions = props.customActions, focusedThreadDialogVariant = props.focusedThreadDialogVariant, focusedThreadMode = props.focusedThreadMode, onCommentNavigationButtonClick = props.onCommentNavigationButtonClick, filterOptionLayout = props.filterOptionLayout, filterCount = props.filterCount, fullExpanded = props.fullExpanded, systemFiltersOperator = props.systemFiltersOperator, sidebarButtonCountType = props.sidebarButtonCountType, filterGhostCommentsInSidebar = props.filterGhostCommentsInSidebar, fullScreen = props.fullScreen;
|
|
412
412
|
var ref = useRef();
|
|
413
413
|
var openSidebarRef = useRef(openSidebar);
|
|
414
414
|
var onSidebarOpenRef = useRef(onSidebarOpen);
|
|
@@ -481,7 +481,7 @@ var SnippylyCommentsSidebar = function (props) {
|
|
|
481
481
|
}
|
|
482
482
|
};
|
|
483
483
|
}, []);
|
|
484
|
-
return (React.createElement("velt-comments-sidebar", { ref: ref, position: position, "filter-panel-layout": filterPanelLayout, "focused-thread-mode": [true, false].includes(focusedThreadMode) ? (focusedThreadMode ? 'true' : 'false') : undefined, "focused-thread-dialog-variant": focusedThreadDialogVariant, "custom-actions": [true, false].includes(customActions) ? (customActions ? 'true' : 'false') : undefined, "shadow-dom": [true, false].includes(shadowDom) ? (shadowDom ? 'true' : 'false') : undefined, "embed-mode": [true, false].includes(embedMode) ? (embedMode ? 'true' : 'false') : undefined, "enable-url-navigation": [true, false].includes(enableUrlNavigation) ? (enableUrlNavigation ? 'true' : 'false') : undefined, "url-navigation": [true, false].includes(urlNavigation) ? (urlNavigation ? 'true' : 'false') : undefined, "query-params-comments": [true, false].includes(queryParamsComments) ? (queryParamsComments ? 'true' : 'false') : undefined, "page-mode": [true, false].includes(pageMode) ? (pageMode ? 'true' : 'false') : undefined, "current-location-suffix": [true, false].includes(currentLocationSuffix) ? (currentLocationSuffix ? 'true' : 'false') : undefined, "filter-config": filterConfig ? JSON.stringify(filterConfig) : undefined, "group-config": groupConfig ? JSON.stringify(groupConfig) : undefined, filters: filters ? JSON.stringify(filters) : undefined, "exclude-location-ids": excludeLocationIds ? JSON.stringify(excludeLocationIds) : undefined, variant: variant, "page-mode-composer-variant": pageModeComposerVariant, "dialog-variant": dialogVariant, "sort-data": sortData, "search-placeholder": searchPlaceholder, "dark-mode": [true, false].includes(darkMode) ? (darkMode ? 'true' : 'false') : undefined, "floating-mode": [true, false].includes(embedMode) ? (embedMode ? 'true' : 'false') : undefined, "filter-option-layout": filterOptionLayout, "filter-count": [true, false].includes(filterCount) ? (filterCount ? 'true' : 'false') : undefined, "full-expanded": [true, false].includes(fullExpanded) ? (fullExpanded ? 'true' : 'false') : undefined, "system-filters-operator": systemFiltersOperator, "sidebar-button-count-type": sidebarButtonCountType, "filter-ghost-comments-in-sidebar": [true, false].includes(filterGhostCommentsInSidebar) ? (filterGhostCommentsInSidebar ? 'true' : 'false') : undefined }));
|
|
484
|
+
return (React.createElement("velt-comments-sidebar", { ref: ref, position: position, "filter-panel-layout": filterPanelLayout, "focused-thread-mode": [true, false].includes(focusedThreadMode) ? (focusedThreadMode ? 'true' : 'false') : undefined, "focused-thread-dialog-variant": focusedThreadDialogVariant, "custom-actions": [true, false].includes(customActions) ? (customActions ? 'true' : 'false') : undefined, "shadow-dom": [true, false].includes(shadowDom) ? (shadowDom ? 'true' : 'false') : undefined, "embed-mode": [true, false].includes(embedMode) ? (embedMode ? 'true' : 'false') : undefined, "enable-url-navigation": [true, false].includes(enableUrlNavigation) ? (enableUrlNavigation ? 'true' : 'false') : undefined, "url-navigation": [true, false].includes(urlNavigation) ? (urlNavigation ? 'true' : 'false') : undefined, "query-params-comments": [true, false].includes(queryParamsComments) ? (queryParamsComments ? 'true' : 'false') : undefined, "page-mode": [true, false].includes(pageMode) ? (pageMode ? 'true' : 'false') : undefined, "current-location-suffix": [true, false].includes(currentLocationSuffix) ? (currentLocationSuffix ? 'true' : 'false') : undefined, "filter-config": filterConfig ? JSON.stringify(filterConfig) : undefined, "group-config": groupConfig ? JSON.stringify(groupConfig) : undefined, filters: filters ? JSON.stringify(filters) : undefined, "exclude-location-ids": excludeLocationIds ? JSON.stringify(excludeLocationIds) : undefined, variant: variant, "page-mode-composer-variant": pageModeComposerVariant, "dialog-variant": dialogVariant, "sort-data": sortData, "search-placeholder": searchPlaceholder, "dark-mode": [true, false].includes(darkMode) ? (darkMode ? 'true' : 'false') : undefined, "floating-mode": [true, false].includes(embedMode) ? (embedMode ? 'true' : 'false') : undefined, "filter-option-layout": filterOptionLayout, "filter-count": [true, false].includes(filterCount) ? (filterCount ? 'true' : 'false') : undefined, "full-expanded": [true, false].includes(fullExpanded) ? (fullExpanded ? 'true' : 'false') : undefined, "system-filters-operator": systemFiltersOperator, "sidebar-button-count-type": sidebarButtonCountType, "filter-ghost-comments-in-sidebar": [true, false].includes(filterGhostCommentsInSidebar) ? (filterGhostCommentsInSidebar ? 'true' : 'false') : undefined, "full-screen": [true, false].includes(fullScreen) ? (fullScreen ? 'true' : 'false') : undefined }));
|
|
485
485
|
};
|
|
486
486
|
|
|
487
487
|
var SnippylyCommentTool = function (props) {
|
|
@@ -2494,6 +2494,12 @@ var VeltCommentDialogReplyAvatars = function (props) {
|
|
|
2494
2494
|
VeltCommentDialogReplyAvatars.List = VeltCommentDialogReplyAvatarsList;
|
|
2495
2495
|
VeltCommentDialogReplyAvatars.RemainingCount = VeltCommentDialogReplyAvatarsRemainingCount;
|
|
2496
2496
|
|
|
2497
|
+
var VeltCommentDialogCommentNumber = function (props) {
|
|
2498
|
+
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
2499
|
+
var transformedProps = transformWireframeProps(remainingProps);
|
|
2500
|
+
return (React.createElement("velt-comment-dialog-comment-number-wireframe", __assign({}, transformedProps), children));
|
|
2501
|
+
};
|
|
2502
|
+
|
|
2497
2503
|
var VeltCommentDialogWireframe = function (props) {
|
|
2498
2504
|
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
2499
2505
|
var transformedProps = transformWireframeProps(remainingProps);
|
|
@@ -2506,6 +2512,7 @@ VeltCommentDialogWireframe.AssignMenu = VeltCommentDialogAssignMenu;
|
|
|
2506
2512
|
VeltCommentDialogWireframe.Body = VeltCommentDialogBody;
|
|
2507
2513
|
VeltCommentDialogWireframe.CommentCategory = VeltCommentDialogCommentCategory;
|
|
2508
2514
|
VeltCommentDialogWireframe.CommentIndex = VeltCommentDialogCommentIndex;
|
|
2515
|
+
VeltCommentDialogWireframe.CommentNumber = VeltCommentDialogCommentNumber;
|
|
2509
2516
|
VeltCommentDialogWireframe.CommentSuggestionStatus = VeltCommentDialogCommentSuggestionStatus;
|
|
2510
2517
|
VeltCommentDialogWireframe.Composer = VeltCommentDialogComposer;
|
|
2511
2518
|
VeltCommentDialogWireframe.CopyLink = VeltCommentDialogCopyLink;
|
|
@@ -3179,6 +3186,12 @@ var VeltCommentsSidebarFocusedThread = function (props) {
|
|
|
3179
3186
|
VeltCommentsSidebarFocusedThread.BackButton = VeltCommentsSidebarFocusedThreadBackButton;
|
|
3180
3187
|
VeltCommentsSidebarFocusedThread.DialogContainer = VeltCommentsSidebarFocusedThreadDialogContainer;
|
|
3181
3188
|
|
|
3189
|
+
var VeltCommentsSidebarFullscreenButton = function (props) {
|
|
3190
|
+
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
3191
|
+
var transformedProps = transformWireframeProps(remainingProps);
|
|
3192
|
+
return (React.createElement("velt-comments-sidebar-fullscreen-button-wireframe", __assign({}, transformedProps), children));
|
|
3193
|
+
};
|
|
3194
|
+
|
|
3182
3195
|
var VeltCommentsSidebarWireframe = function (props) {
|
|
3183
3196
|
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
3184
3197
|
var transformedProps = transformWireframeProps(remainingProps);
|
|
@@ -3202,6 +3215,7 @@ VeltCommentsSidebarWireframe.MinimalActionsDropdown = VeltCommentsSidebarMinimal
|
|
|
3202
3215
|
VeltCommentsSidebarWireframe.ResetFilterButton = VeltCommentsSidebarResetFilterButtonWireframe;
|
|
3203
3216
|
VeltCommentsSidebarWireframe.ActionButton = VeltCommentsSidebarActionButton;
|
|
3204
3217
|
VeltCommentsSidebarWireframe.FocusedThread = VeltCommentsSidebarFocusedThread;
|
|
3218
|
+
VeltCommentsSidebarWireframe.FullscreenButton = VeltCommentsSidebarFullscreenButton;
|
|
3205
3219
|
|
|
3206
3220
|
var VeltCommentPinGhostCommentIndicator = function (props) {
|
|
3207
3221
|
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
@@ -3233,6 +3247,12 @@ var VeltCommentPinPrivateCommentIndicator = function (props) {
|
|
|
3233
3247
|
return (React.createElement("velt-comment-pin-private-comment-indicator-wireframe", __assign({}, transformedProps), children));
|
|
3234
3248
|
};
|
|
3235
3249
|
|
|
3250
|
+
var VeltCommentPinNumber = function (props) {
|
|
3251
|
+
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
3252
|
+
var transformedProps = transformWireframeProps(remainingProps);
|
|
3253
|
+
return (React.createElement("velt-comment-pin-number-wireframe", __assign({}, transformedProps), children));
|
|
3254
|
+
};
|
|
3255
|
+
|
|
3236
3256
|
var VeltCommentPinWireframe = function (props) {
|
|
3237
3257
|
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
3238
3258
|
var transformedProps = transformWireframeProps(remainingProps);
|
|
@@ -3243,6 +3263,7 @@ VeltCommentPinWireframe.Index = VeltCommentPinIndex;
|
|
|
3243
3263
|
VeltCommentPinWireframe.PrivateCommentIndicator = VeltCommentPinPrivateCommentIndicator;
|
|
3244
3264
|
VeltCommentPinWireframe.Triangle = VeltCommentPinTriangle;
|
|
3245
3265
|
VeltCommentPinWireframe.UnreadCommentIndicator = VeltCommentPinUnreadCommentIndicator;
|
|
3266
|
+
VeltCommentPinWireframe.Number = VeltCommentPinNumber;
|
|
3246
3267
|
|
|
3247
3268
|
var VeltSidebarButtonCommentsCount = function (props) {
|
|
3248
3269
|
var children = props.children, remainingProps = __rest(props, ["children"]);
|