@veltdev/react 1.0.146 → 1.0.148

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 (23) hide show
  1. package/cjs/index.js +1 -1
  2. package/cjs/index.js.map +1 -1
  3. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionCommentCountWireframe/VeltInlineCommentsSectionCommentCountWireframe.d.ts +6 -0
  4. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionCommentCountWireframe/index.d.ts +1 -0
  5. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerWireframe/VeltInlineCommentsSectionComposerWireframe.d.ts +6 -0
  6. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerWireframe/index.d.ts +1 -0
  7. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionListWireframe/VeltInlineCommentsSectionListWireframe.d.ts +6 -0
  8. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionListWireframe/index.d.ts +1 -0
  9. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionWireframe.d.ts +14 -0
  10. package/cjs/types/components/VeltInlineCommentsSectionWireframe/index.d.ts +1 -0
  11. package/cjs/types/constants.d.ts +1 -1
  12. package/esm/index.js +1 -1
  13. package/esm/index.js.map +1 -1
  14. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionCommentCountWireframe/VeltInlineCommentsSectionCommentCountWireframe.d.ts +6 -0
  15. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionCommentCountWireframe/index.d.ts +1 -0
  16. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerWireframe/VeltInlineCommentsSectionComposerWireframe.d.ts +6 -0
  17. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerWireframe/index.d.ts +1 -0
  18. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionListWireframe/VeltInlineCommentsSectionListWireframe.d.ts +6 -0
  19. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionListWireframe/index.d.ts +1 -0
  20. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionWireframe.d.ts +14 -0
  21. package/esm/types/components/VeltInlineCommentsSectionWireframe/index.d.ts +1 -0
  22. package/esm/types/constants.d.ts +1 -1
  23. package/package.json +1 -1
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltInlineCommentsSectionCommentCountWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltInlineCommentsSectionCommentCountWireframe: React.FC<IVeltInlineCommentsSectionCommentCountWireframeProps>;
6
+ export default VeltInlineCommentsSectionCommentCountWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltInlineCommentsSectionCommentCountWireframe";
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltInlineCommentsSectionComposerWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltInlineCommentsSectionComposerWireframe: React.FC<IVeltInlineCommentsSectionComposerWireframeProps>;
6
+ export default VeltInlineCommentsSectionComposerWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltInlineCommentsSectionComposerWireframe";
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltInlineCommentsSectionListWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltInlineCommentsSectionListWireframe: React.FC<IVeltInlineCommentsSectionListWireframeProps>;
6
+ export default VeltInlineCommentsSectionListWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltInlineCommentsSectionListWireframe";
@@ -0,0 +1,14 @@
1
+ import React from 'react';
2
+ import { IVeltInlineCommentsSectionCommentCountWireframeProps } from './VeltInlineCommentsSectionCommentCountWireframe/VeltInlineCommentsSectionCommentCountWireframe';
3
+ import { IVeltInlineCommentsSectionComposerWireframeProps } from './VeltInlineCommentsSectionComposerWireframe/VeltInlineCommentsSectionComposerWireframe';
4
+ import { IVeltInlineCommentsSectionListWireframeProps } from './VeltInlineCommentsSectionListWireframe/VeltInlineCommentsSectionListWireframe';
5
+ export interface IVeltInlineCommentsSectionWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
6
+ variant?: string;
7
+ }
8
+ export interface IVeltInlineCommentsSectionWireframe extends React.FC<IVeltInlineCommentsSectionWireframeProps> {
9
+ CommentCount: React.FC<IVeltInlineCommentsSectionCommentCountWireframeProps>;
10
+ Composer: React.FC<IVeltInlineCommentsSectionComposerWireframeProps>;
11
+ List: React.FC<IVeltInlineCommentsSectionListWireframeProps>;
12
+ }
13
+ declare const VeltInlineCommentsSectionWireframe: IVeltInlineCommentsSectionWireframe;
14
+ export default VeltInlineCommentsSectionWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltInlineCommentsSectionWireframe";
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "1.0.163";
1
+ export declare const VELT_SDK_VERSION = "1.0.165";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
package/esm/index.js CHANGED
@@ -132,7 +132,7 @@ var loadVelt = function (callback, version, staging, develop, proxyDomain) {
132
132
  }
133
133
  };
134
134
 
135
- var VELT_SDK_VERSION = '1.0.163';
135
+ var VELT_SDK_VERSION = '1.0.165';
136
136
  var VELT_SDK_INIT_EVENT = 'onVeltInit';
137
137
  var VELT_TAB_ID = 'veltTabId';
138
138