@veltdev/react 1.0.146 → 1.0.147
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 +1 -1
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionCommentCountWireframe/VeltInlineCommentsSectionCommentCountWireframe.d.ts +6 -0
- package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionCommentCountWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerWireframe/VeltInlineCommentsSectionComposerWireframe.d.ts +6 -0
- package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionListWireframe/VeltInlineCommentsSectionListWireframe.d.ts +6 -0
- package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionListWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionWireframe.d.ts +14 -0
- package/cjs/types/components/VeltInlineCommentsSectionWireframe/index.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +1 -1
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionCommentCountWireframe/VeltInlineCommentsSectionCommentCountWireframe.d.ts +6 -0
- package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionCommentCountWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerWireframe/VeltInlineCommentsSectionComposerWireframe.d.ts +6 -0
- package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionListWireframe/VeltInlineCommentsSectionListWireframe.d.ts +6 -0
- package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionListWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionWireframe.d.ts +14 -0
- package/esm/types/components/VeltInlineCommentsSectionWireframe/index.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- 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";
|
package/esm/types/constants.d.ts
CHANGED