@veltdev/react 1.0.111 → 1.0.112
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 +4 -4
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyComments/SnippylyComments.d.ts +2 -0
- package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
- package/esm/index.js +4 -4
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyComments/SnippylyComments.d.ts +2 -0
- package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
- package/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -48,6 +48,8 @@ export interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAt
|
|
|
48
48
|
recordingSummary?: boolean;
|
|
49
49
|
recordingCountdown?: boolean;
|
|
50
50
|
unreadIndicatorMode?: 'minimal' | 'verbose';
|
|
51
|
+
pinShadowDom?: boolean;
|
|
52
|
+
dialogShadowDom?: boolean;
|
|
51
53
|
allowedElementIds?: string[];
|
|
52
54
|
allowedElementClassNames?: string[];
|
|
53
55
|
allowedElementQuerySelectors?: string[];
|
|
@@ -38,6 +38,7 @@ export interface IVeltCommentsSidebarProps {
|
|
|
38
38
|
currentLocationSuffix?: boolean;
|
|
39
39
|
variant?: string;
|
|
40
40
|
dialogVariant?: string;
|
|
41
|
+
shadowDom?: boolean;
|
|
41
42
|
filterConfig?: CommentSidebarFilterConfig;
|
|
42
43
|
groupConfig?: CommentSidebarGroupConfig;
|
|
43
44
|
filters?: CommentSidebarFilters;
|
package/index.d.ts
CHANGED
|
@@ -81,6 +81,8 @@ interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAttribute
|
|
|
81
81
|
recordingSummary?: boolean;
|
|
82
82
|
recordingCountdown?: boolean;
|
|
83
83
|
unreadIndicatorMode?: 'minimal' | 'verbose';
|
|
84
|
+
pinShadowDom?: boolean;
|
|
85
|
+
dialogShadowDom?: boolean;
|
|
84
86
|
allowedElementIds?: string[];
|
|
85
87
|
allowedElementClassNames?: string[];
|
|
86
88
|
allowedElementQuerySelectors?: string[];
|
|
@@ -153,6 +155,7 @@ interface IVeltCommentsSidebarProps {
|
|
|
153
155
|
currentLocationSuffix?: boolean;
|
|
154
156
|
variant?: string;
|
|
155
157
|
dialogVariant?: string;
|
|
158
|
+
shadowDom?: boolean;
|
|
156
159
|
filterConfig?: CommentSidebarFilterConfig;
|
|
157
160
|
groupConfig?: CommentSidebarGroupConfig;
|
|
158
161
|
filters?: CommentSidebarFilters;
|