@veltdev/react 1.0.149 → 1.0.150
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 +3 -3
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyComments/SnippylyComments.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +3 -3
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyComments/SnippylyComments.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -94,6 +94,7 @@ export interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAt
|
|
|
94
94
|
textCommentToolbarDarkMode?: boolean;
|
|
95
95
|
textCommentToolShadowDom?: boolean;
|
|
96
96
|
textCommentToolbarShadowDom?: boolean;
|
|
97
|
+
composerMode?: 'default' | 'expanded';
|
|
97
98
|
}
|
|
98
99
|
declare const SnippylyComments: React.FC<IVeltCommentsProps>;
|
|
99
100
|
export default SnippylyComments;
|
package/esm/types/constants.d.ts
CHANGED
package/index.d.ts
CHANGED
|
@@ -129,6 +129,7 @@ interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAttribute
|
|
|
129
129
|
textCommentToolbarDarkMode?: boolean;
|
|
130
130
|
textCommentToolShadowDom?: boolean;
|
|
131
131
|
textCommentToolbarShadowDom?: boolean;
|
|
132
|
+
composerMode?: 'default' | 'expanded';
|
|
132
133
|
}
|
|
133
134
|
declare const SnippylyComments: React.FC<IVeltCommentsProps>;
|
|
134
135
|
|