@veltdev/react 4.0.0-beta.24 → 4.0.0-beta.26

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.
Files changed (28) hide show
  1. package/cjs/index.js +84 -32
  2. package/cjs/index.js.map +1 -1
  3. package/cjs/types/components/VeltMediaSourceSettingsWireframe/VeltMediaSourceSettingsWireframe.d.ts +4 -4
  4. package/cjs/types/components/VeltMultiThreadCommentDialogWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe.d.ts +2 -0
  5. package/cjs/types/components/VeltMultiThreadCommentDialogWireframe/VeltMultiThreadCommentDialogWireframe.d.ts +8 -8
  6. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelCloseButtonWireframe/VeltNotificationsPanelCloseButtonWireframe.d.ts +3 -1
  7. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelReadAllButtonWireframe/VeltNotificationsPanelReadAllButtonWireframe.d.ts +3 -1
  8. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelSkeletonWireframe/VeltNotificationsPanelSkeletonWireframe.d.ts +2 -0
  9. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelTitleWireframe/VeltNotificationsPanelTitleWireframe.d.ts +3 -1
  10. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelViewAllButtonWireframe/VeltNotificationsPanelViewAllButtonWireframe.d.ts +2 -0
  11. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelWireframe.d.ts +14 -14
  12. package/cjs/types/components/VeltSubtitlesWireframe/index.d.ts +1 -1
  13. package/cjs/types/constants.d.ts +1 -1
  14. package/esm/index.js +84 -32
  15. package/esm/index.js.map +1 -1
  16. package/esm/types/components/VeltMediaSourceSettingsWireframe/VeltMediaSourceSettingsWireframe.d.ts +4 -4
  17. package/esm/types/components/VeltMultiThreadCommentDialogWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe.d.ts +2 -0
  18. package/esm/types/components/VeltMultiThreadCommentDialogWireframe/VeltMultiThreadCommentDialogWireframe.d.ts +8 -8
  19. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelCloseButtonWireframe/VeltNotificationsPanelCloseButtonWireframe.d.ts +3 -1
  20. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelReadAllButtonWireframe/VeltNotificationsPanelReadAllButtonWireframe.d.ts +3 -1
  21. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelSkeletonWireframe/VeltNotificationsPanelSkeletonWireframe.d.ts +2 -0
  22. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelTitleWireframe/VeltNotificationsPanelTitleWireframe.d.ts +3 -1
  23. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelViewAllButtonWireframe/VeltNotificationsPanelViewAllButtonWireframe.d.ts +2 -0
  24. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelWireframe.d.ts +14 -14
  25. package/esm/types/components/VeltSubtitlesWireframe/index.d.ts +1 -1
  26. package/esm/types/constants.d.ts +1 -1
  27. package/index.d.ts +420 -22
  28. package/package.json +1 -1
@@ -1,12 +1,12 @@
1
1
  import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../constants';
3
- import { IVeltMediaSourceSettingsAudioWireframeProps } from './VeltMediaSourceSettingsAudioWireframe/VeltMediaSourceSettingsAudioWireframe';
4
- import { IVeltMediaSourceSettingsVideoWireframeProps } from './VeltMediaSourceSettingsVideoWireframe/VeltMediaSourceSettingsVideoWireframe';
3
+ import { IVeltMediaSourceSettingsAudioWireframe } from './VeltMediaSourceSettingsAudioWireframe/VeltMediaSourceSettingsAudioWireframe';
4
+ import { IVeltMediaSourceSettingsVideoWireframe } from './VeltMediaSourceSettingsVideoWireframe/VeltMediaSourceSettingsVideoWireframe';
5
5
  export interface IVeltMediaSourceSettingsWireframeProps extends IVeltWireframeCommonProps {
6
6
  }
7
7
  export interface IVeltMediaSourceSettingsWireframe extends React.FC<IVeltMediaSourceSettingsWireframeProps> {
8
- Audio: React.FC<IVeltMediaSourceSettingsAudioWireframeProps>;
9
- Video: React.FC<IVeltMediaSourceSettingsVideoWireframeProps>;
8
+ Audio: IVeltMediaSourceSettingsAudioWireframe;
9
+ Video: IVeltMediaSourceSettingsVideoWireframe;
10
10
  }
11
11
  declare const VeltMediaSourceSettingsWireframe: IVeltMediaSourceSettingsWireframe;
12
12
  export default VeltMediaSourceSettingsWireframe;
@@ -2,5 +2,7 @@ import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../../constants';
3
3
  export interface IVeltMultiThreadCommentDialogEmptyPlaceholderWireframeProps extends IVeltWireframeCommonProps {
4
4
  }
5
+ export interface IVeltMultiThreadCommentDialogEmptyPlaceholderWireframe extends React.FC<IVeltMultiThreadCommentDialogEmptyPlaceholderWireframeProps> {
6
+ }
5
7
  declare const VeltMultiThreadCommentDialogEmptyPlaceholderWireframe: React.FC<IVeltMultiThreadCommentDialogEmptyPlaceholderWireframeProps>;
6
8
  export default VeltMultiThreadCommentDialogEmptyPlaceholderWireframe;
@@ -1,26 +1,26 @@
1
1
  import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../constants';
3
+ import { IVeltMultiThreadCommentDialogCloseButtonWireframeProps } from './VeltMultiThreadCommentDialogCloseButtonWireframe/VeltMultiThreadCommentDialogCloseButtonWireframe';
3
4
  import { IVeltMultiThreadCommentDialogCommentCountWireframeProps } from './VeltMultiThreadCommentDialogCommentCountWireframe/VeltMultiThreadCommentDialogCommentCountWireframe';
4
5
  import { IVeltMultiThreadCommentDialogComposerContainerWireframeProps } from './VeltMultiThreadCommentDialogComposerContainerWireframe/VeltMultiThreadCommentDialogComposerContainerWireframe';
6
+ import { IVeltMultiThreadCommentDialogEmptyPlaceholderWireframe } from './VeltMultiThreadCommentDialogEmptyPlaceholderWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe';
5
7
  import { IVeltMultiThreadCommentDialogListWireframeProps } from './VeltMultiThreadCommentDialogListWireframe/VeltMultiThreadCommentDialogListWireframe';
6
- import { IVeltMultiThreadCommentDialogEmptyPlaceholderWireframeProps } from './VeltMultiThreadCommentDialogEmptyPlaceholderWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe';
7
- import { IVeltMultiThreadCommentDialogMinimalActionsDropdownWireframeProps } from './VeltMultiThreadCommentDialogMinimalActionsDropdownWireframe/VeltMultiThreadCommentDialogMinimalActionsDropdownWireframe';
8
- import { IVeltMultiThreadCommentDialogMinimalFilterDropdownWireframeProps } from './VeltMultiThreadCommentDialogMinimalFilterDropdownWireframe/VeltMultiThreadCommentDialogMinimalFilterDropdownWireframe';
8
+ import { IVeltMultiThreadCommentDialogMinimalActionsDropdownWireframe } from './VeltMultiThreadCommentDialogMinimalActionsDropdownWireframe/VeltMultiThreadCommentDialogMinimalActionsDropdownWireframe';
9
+ import { IVeltMultiThreadCommentDialogMinimalFilterDropdownWireframe } from './VeltMultiThreadCommentDialogMinimalFilterDropdownWireframe/VeltMultiThreadCommentDialogMinimalFilterDropdownWireframe';
9
10
  import { IVeltMultiThreadCommentDialogNewThreadButtonWireframeProps } from './VeltMultiThreadCommentDialogNewThreadButtonWireframe/VeltMultiThreadCommentDialogNewThreadButtonWireframe';
10
11
  import { IVeltMultiThreadCommentDialogResetFilterButtonWireframeProps } from './VeltMultiThreadCommentDialogResetFilterButtonWireframe/VeltMultiThreadCommentDialogResetFilterButtonWireframe';
11
- import { IVeltMultiThreadCommentDialogCloseButtonWireframeProps } from './VeltMultiThreadCommentDialogCloseButtonWireframe/VeltMultiThreadCommentDialogCloseButtonWireframe';
12
12
  export interface IVeltMultiThreadCommentDialogWireframeProps extends IVeltWireframeCommonProps {
13
13
  }
14
14
  export interface IVeltMultiThreadCommentDialogWireframe extends React.FC<IVeltMultiThreadCommentDialogWireframeProps> {
15
15
  CommentCount: React.FC<IVeltMultiThreadCommentDialogCommentCountWireframeProps>;
16
16
  ComposerContainer: React.FC<IVeltMultiThreadCommentDialogComposerContainerWireframeProps>;
17
17
  List: React.FC<IVeltMultiThreadCommentDialogListWireframeProps>;
18
- EmptyPlaceholder: React.FC<IVeltMultiThreadCommentDialogEmptyPlaceholderWireframeProps>;
19
- MinimalActionsDropdown: React.FC<IVeltMultiThreadCommentDialogMinimalActionsDropdownWireframeProps>;
20
- MinimalFilterDropdown: React.FC<IVeltMultiThreadCommentDialogMinimalFilterDropdownWireframeProps>;
18
+ CloseButton: React.FC<IVeltMultiThreadCommentDialogCloseButtonWireframeProps>;
19
+ MinimalFilterDropdown: IVeltMultiThreadCommentDialogMinimalFilterDropdownWireframe;
20
+ EmptyPlaceholder: IVeltMultiThreadCommentDialogEmptyPlaceholderWireframe;
21
21
  NewThreadButton: React.FC<IVeltMultiThreadCommentDialogNewThreadButtonWireframeProps>;
22
+ MinimalActionsDropdown: IVeltMultiThreadCommentDialogMinimalActionsDropdownWireframe;
22
23
  ResetFilterButton: React.FC<IVeltMultiThreadCommentDialogResetFilterButtonWireframeProps>;
23
- CloseButton: React.FC<IVeltMultiThreadCommentDialogCloseButtonWireframeProps>;
24
24
  }
25
25
  declare const VeltMultiThreadCommentDialogWireframe: IVeltMultiThreadCommentDialogWireframe;
26
26
  export default VeltMultiThreadCommentDialogWireframe;
@@ -2,5 +2,7 @@ import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../../constants';
3
3
  export interface IVeltNotificationsPanelCloseButtonWireframeProps extends IVeltWireframeCommonProps {
4
4
  }
5
- declare const VeltNotificationsPanelCloseButtonWireframe: React.FC<IVeltNotificationsPanelCloseButtonWireframeProps>;
5
+ export interface IVeltNotificationsPanelCloseButtonWireframe extends React.FC<IVeltNotificationsPanelCloseButtonWireframeProps> {
6
+ }
7
+ declare const VeltNotificationsPanelCloseButtonWireframe: IVeltNotificationsPanelCloseButtonWireframe;
6
8
  export default VeltNotificationsPanelCloseButtonWireframe;
@@ -2,5 +2,7 @@ import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../../constants';
3
3
  export interface IVeltNotificationsPanelReadAllButtonWireframeProps extends IVeltWireframeCommonProps {
4
4
  }
5
- declare const VeltNotificationsPanelReadAllButtonWireframe: React.FC<IVeltNotificationsPanelReadAllButtonWireframeProps>;
5
+ export interface IVeltNotificationsPanelReadAllButtonWireframe extends React.FC<IVeltNotificationsPanelReadAllButtonWireframeProps> {
6
+ }
7
+ declare const VeltNotificationsPanelReadAllButtonWireframe: IVeltNotificationsPanelReadAllButtonWireframe;
6
8
  export default VeltNotificationsPanelReadAllButtonWireframe;
@@ -2,5 +2,7 @@ import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../../constants';
3
3
  export interface IVeltNotificationsPanelSkeletonWireframeProps extends IVeltWireframeCommonProps {
4
4
  }
5
+ export interface IVeltNotificationsPanelSkeletonWireframe extends React.FC<IVeltNotificationsPanelSkeletonWireframeProps> {
6
+ }
5
7
  declare const VeltNotificationsPanelSkeletonWireframe: React.FC<IVeltNotificationsPanelSkeletonWireframeProps>;
6
8
  export default VeltNotificationsPanelSkeletonWireframe;
@@ -2,5 +2,7 @@ import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../../constants';
3
3
  export interface IVeltNotificationsPanelTitleWireframeProps extends IVeltWireframeCommonProps {
4
4
  }
5
- declare const VeltNotificationsPanelTitleWireframe: React.FC<IVeltNotificationsPanelTitleWireframeProps>;
5
+ export interface IVeltNotificationsPanelTitleWireframe extends React.FC<IVeltNotificationsPanelTitleWireframeProps> {
6
+ }
7
+ declare const VeltNotificationsPanelTitleWireframe: IVeltNotificationsPanelTitleWireframe;
6
8
  export default VeltNotificationsPanelTitleWireframe;
@@ -2,5 +2,7 @@ import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../../constants';
3
3
  export interface IVeltNotificationsPanelViewAllButtonWireframeProps extends IVeltWireframeCommonProps {
4
4
  }
5
+ export interface IVeltNotificationsPanelViewAllButtonWireframe extends React.FC<IVeltNotificationsPanelViewAllButtonWireframeProps> {
6
+ }
5
7
  declare const VeltNotificationsPanelViewAllButtonWireframe: React.FC<IVeltNotificationsPanelViewAllButtonWireframeProps>;
6
8
  export default VeltNotificationsPanelViewAllButtonWireframe;
@@ -1,22 +1,22 @@
1
1
  import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../constants';
3
- import { IVeltNotificationsPanelCloseButtonWireframeProps } from './VeltNotificationsPanelCloseButtonWireframe/VeltNotificationsPanelCloseButtonWireframe';
4
- import { IVeltNotificationsPanelContentWireframeProps } from './VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentWireframe';
5
- import { IVeltNotificationsPanelHeaderWireframeProps } from './VeltNotificationsPanelHeaderWireframe/VeltNotificationsPanelHeaderWireframe';
6
- import { IVeltNotificationsPanelReadAllButtonWireframeProps } from './VeltNotificationsPanelReadAllButtonWireframe/VeltNotificationsPanelReadAllButtonWireframe';
7
- import { IVeltNotificationsPanelSkeletonWireframeProps } from './VeltNotificationsPanelSkeletonWireframe/VeltNotificationsPanelSkeletonWireframe';
8
- import { IVeltNotificationsPanelTitleWireframeProps } from './VeltNotificationsPanelTitleWireframe/VeltNotificationsPanelTitleWireframe';
9
- import { IVeltNotificationsPanelViewAllButtonWireframeProps } from './VeltNotificationsPanelViewAllButtonWireframe/VeltNotificationsPanelViewAllButtonWireframe';
3
+ import { IVeltNotificationsPanelContentWireframe } from './VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentWireframe';
4
+ import { IVeltNotificationsPanelHeaderWireframe } from './VeltNotificationsPanelHeaderWireframe/VeltNotificationsPanelHeaderWireframe';
5
+ import { IVeltNotificationsPanelReadAllButtonWireframe } from './VeltNotificationsPanelReadAllButtonWireframe/VeltNotificationsPanelReadAllButtonWireframe';
6
+ import { IVeltNotificationsPanelTitleWireframe } from './VeltNotificationsPanelTitleWireframe/VeltNotificationsPanelTitleWireframe';
7
+ import { IVeltNotificationsPanelViewAllButtonWireframe } from './VeltNotificationsPanelViewAllButtonWireframe/VeltNotificationsPanelViewAllButtonWireframe';
8
+ import { IVeltNotificationsPanelCloseButtonWireframe } from './VeltNotificationsPanelCloseButtonWireframe/VeltNotificationsPanelCloseButtonWireframe';
9
+ import { IVeltNotificationsPanelSkeletonWireframe } from './VeltNotificationsPanelSkeletonWireframe/VeltNotificationsPanelSkeletonWireframe';
10
10
  export interface IVeltNotificationsPanelWireframeProps extends IVeltWireframeCommonProps {
11
11
  }
12
12
  export interface IVeltNotificationsPanelWireframe extends React.FC<IVeltNotificationsPanelWireframeProps> {
13
- CloseButton: React.FC<IVeltNotificationsPanelCloseButtonWireframeProps>;
14
- Content: React.FC<IVeltNotificationsPanelContentWireframeProps>;
15
- Header: React.FC<IVeltNotificationsPanelHeaderWireframeProps>;
16
- ReadAllButton: React.FC<IVeltNotificationsPanelReadAllButtonWireframeProps>;
17
- Skeleton: React.FC<IVeltNotificationsPanelSkeletonWireframeProps>;
18
- Title: React.FC<IVeltNotificationsPanelTitleWireframeProps>;
19
- ViewAllButton: React.FC<IVeltNotificationsPanelViewAllButtonWireframeProps>;
13
+ Content: IVeltNotificationsPanelContentWireframe;
14
+ Header: IVeltNotificationsPanelHeaderWireframe;
15
+ ReadAllButton: IVeltNotificationsPanelReadAllButtonWireframe;
16
+ Title: IVeltNotificationsPanelTitleWireframe;
17
+ ViewAllButton: IVeltNotificationsPanelViewAllButtonWireframe;
18
+ CloseButton: IVeltNotificationsPanelCloseButtonWireframe;
19
+ Skeleton: IVeltNotificationsPanelSkeletonWireframe;
20
20
  }
21
21
  declare const VeltNotificationsPanelWireframe: IVeltNotificationsPanelWireframe;
22
22
  export default VeltNotificationsPanelWireframe;
@@ -1 +1 @@
1
- export { default } from './VeltSubtitlesButtonWireframe';
1
+ export { default } from './VeltSubtitlesWireframe';
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- export declare const VELT_SDK_VERSION = "4.0.0-beta.24";
2
+ export declare const VELT_SDK_VERSION = "4.0.0-beta.26";
3
3
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
4
4
  export declare const VELT_TAB_ID = "veltTabId";
5
5
  export interface IVeltWireframeCommonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {