@veltdev/react 1.0.114 → 1.0.116
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 +5 -16
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +2 -0
- package/cjs/types/components/VeltHighChartComments/VeltHighChartComments.d.ts +1 -0
- package/esm/index.js +5 -16
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +2 -0
- package/esm/types/components/VeltHighChartComments/VeltHighChartComments.d.ts +1 -0
- package/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -37,8 +37,10 @@ export interface IVeltCommentsSidebarProps {
|
|
|
37
37
|
pageMode?: boolean;
|
|
38
38
|
currentLocationSuffix?: boolean;
|
|
39
39
|
variant?: string;
|
|
40
|
+
pageModeComposerVariant?: string;
|
|
40
41
|
dialogVariant?: string;
|
|
41
42
|
shadowDom?: boolean;
|
|
43
|
+
sortData?: 'asc' | 'desc' | 'none';
|
|
42
44
|
filterConfig?: CommentSidebarFilterConfig;
|
|
43
45
|
groupConfig?: CommentSidebarGroupConfig;
|
|
44
46
|
filters?: CommentSidebarFilters;
|
package/index.d.ts
CHANGED
|
@@ -155,8 +155,10 @@ interface IVeltCommentsSidebarProps {
|
|
|
155
155
|
pageMode?: boolean;
|
|
156
156
|
currentLocationSuffix?: boolean;
|
|
157
157
|
variant?: string;
|
|
158
|
+
pageModeComposerVariant?: string;
|
|
158
159
|
dialogVariant?: string;
|
|
159
160
|
shadowDom?: boolean;
|
|
161
|
+
sortData?: 'asc' | 'desc' | 'none';
|
|
160
162
|
filterConfig?: CommentSidebarFilterConfig;
|
|
161
163
|
groupConfig?: CommentSidebarGroupConfig;
|
|
162
164
|
filters?: CommentSidebarFilters;
|
|
@@ -361,6 +363,7 @@ interface IVeltHighChartCommentsProps {
|
|
|
361
363
|
id: string;
|
|
362
364
|
chartComputedData: any;
|
|
363
365
|
dialogMetadataTemplate?: string[];
|
|
366
|
+
Highcharts?: any;
|
|
364
367
|
}
|
|
365
368
|
declare const VeltHighChartComments: React.FC<IVeltHighChartCommentsProps>;
|
|
366
369
|
|