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