@veltdev/react 1.0.163 → 1.0.164
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 +9 -9
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltCommentPlayerTimeline/VeltCommentPlayerTimeline.d.ts +1 -0
- package/cjs/types/components/VeltNotificationsPanel/VeltNotificationsPanel.d.ts +1 -0
- package/cjs/types/components/VeltNotificationsTool/VeltNotificationsTool.d.ts +2 -0
- package/cjs/types/components/VeltVideoPlayer/VeltVideoPlayer.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +9 -9
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltCommentPlayerTimeline/VeltCommentPlayerTimeline.d.ts +1 -0
- package/esm/types/components/VeltNotificationsPanel/VeltNotificationsPanel.d.ts +1 -0
- package/esm/types/components/VeltNotificationsTool/VeltNotificationsTool.d.ts +2 -0
- package/esm/types/components/VeltVideoPlayer/VeltVideoPlayer.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +5 -0
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
export interface IVeltCommentPlayerTimelineProps {
|
|
3
3
|
totalMediaLength?: number;
|
|
4
4
|
onCommentClick?: Function;
|
|
5
|
+
shadowDom?: boolean;
|
|
5
6
|
}
|
|
6
7
|
declare const VeltCommentPlayerTimeline: React.FC<IVeltCommentPlayerTimelineProps>;
|
|
7
8
|
export default VeltCommentPlayerTimeline;
|
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
export interface IVeltNotificationsPanelProps {
|
|
3
3
|
darkMode?: boolean;
|
|
4
4
|
onNotificationClick?: Function;
|
|
5
|
+
shadowDom?: boolean;
|
|
5
6
|
}
|
|
6
7
|
declare const VeltNotificationsPanel: React.FC<IVeltNotificationsPanelProps>;
|
|
7
8
|
export default VeltNotificationsPanel;
|
|
@@ -2,6 +2,8 @@ import React from 'react';
|
|
|
2
2
|
export interface IVeltNotificationsToolProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
3
|
darkMode?: boolean;
|
|
4
4
|
onNotificationClick?: Function;
|
|
5
|
+
shadowDom?: boolean;
|
|
6
|
+
panelShadowDom?: boolean;
|
|
5
7
|
}
|
|
6
8
|
declare const VeltNotificationsTool: React.FC<IVeltNotificationsToolProps>;
|
|
7
9
|
export default VeltNotificationsTool;
|
package/esm/types/constants.d.ts
CHANGED
package/index.d.ts
CHANGED
|
@@ -331,6 +331,7 @@ declare const SnippylyUserRequestTool: React.FC<IVeltUserRequestToolProps>;
|
|
|
331
331
|
interface IVeltCommentPlayerTimelineProps {
|
|
332
332
|
totalMediaLength?: number;
|
|
333
333
|
onCommentClick?: Function;
|
|
334
|
+
shadowDom?: boolean;
|
|
334
335
|
}
|
|
335
336
|
declare const VeltCommentPlayerTimeline: React.FC<IVeltCommentPlayerTimelineProps>;
|
|
336
337
|
|
|
@@ -339,6 +340,7 @@ interface IVeltVideoPlayerProps {
|
|
|
339
340
|
darkMode?: boolean;
|
|
340
341
|
sync?: boolean;
|
|
341
342
|
commentTool?: boolean;
|
|
343
|
+
shadowDom?: boolean;
|
|
342
344
|
}
|
|
343
345
|
declare const VeltVideoPlayer: React.FC<IVeltVideoPlayerProps>;
|
|
344
346
|
|
|
@@ -356,12 +358,15 @@ declare const VeltCommentThread: React.FC<IVeltCommentThreadProps>;
|
|
|
356
358
|
interface IVeltNotificationsToolProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
357
359
|
darkMode?: boolean;
|
|
358
360
|
onNotificationClick?: Function;
|
|
361
|
+
shadowDom?: boolean;
|
|
362
|
+
panelShadowDom?: boolean;
|
|
359
363
|
}
|
|
360
364
|
declare const VeltNotificationsTool: React.FC<IVeltNotificationsToolProps>;
|
|
361
365
|
|
|
362
366
|
interface IVeltNotificationsPanelProps {
|
|
363
367
|
darkMode?: boolean;
|
|
364
368
|
onNotificationClick?: Function;
|
|
369
|
+
shadowDom?: boolean;
|
|
365
370
|
}
|
|
366
371
|
declare const VeltNotificationsPanel: React.FC<IVeltNotificationsPanelProps>;
|
|
367
372
|
|