@veltdev/react 2.0.10 → 2.0.11
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/components/VeltCommentDialogWireframe/VeltCommentDialogComposer/VeltCommentDialogComposerInput/VeltCommentDialogComposerInput.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/components/VeltCommentDialogWireframe/VeltCommentDialogComposer/VeltCommentDialogComposerInput/VeltCommentDialogComposerInput.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -56,6 +56,7 @@ export interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAt
|
|
|
56
56
|
shadowDom?: boolean;
|
|
57
57
|
changeDetectionInCommentMode?: boolean;
|
|
58
58
|
areaComment?: boolean;
|
|
59
|
+
pinCursorImage?: string;
|
|
59
60
|
allowedElementIds?: string[];
|
|
60
61
|
allowedElementClassNames?: string[];
|
|
61
62
|
allowedElementQuerySelectors?: string[];
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export interface IVeltCommentDialogComposerInputProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
3
|
variant?: string;
|
|
4
|
+
placeholder?: string;
|
|
4
5
|
}
|
|
5
6
|
declare const VeltCommentDialogComposerInput: React.FC<IVeltCommentDialogComposerInputProps>;
|
|
6
7
|
export default VeltCommentDialogComposerInput;
|
package/esm/types/constants.d.ts
CHANGED
package/index.d.ts
CHANGED
|
@@ -92,6 +92,7 @@ interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAttribute
|
|
|
92
92
|
shadowDom?: boolean;
|
|
93
93
|
changeDetectionInCommentMode?: boolean;
|
|
94
94
|
areaComment?: boolean;
|
|
95
|
+
pinCursorImage?: string;
|
|
95
96
|
allowedElementIds?: string[];
|
|
96
97
|
allowedElementClassNames?: string[];
|
|
97
98
|
allowedElementQuerySelectors?: string[];
|
|
@@ -598,6 +599,7 @@ interface IVeltCommentDialogComposerAttachments extends React.FC<IVeltCommentDia
|
|
|
598
599
|
|
|
599
600
|
interface IVeltCommentDialogComposerInputProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
600
601
|
variant?: string;
|
|
602
|
+
placeholder?: string;
|
|
601
603
|
}
|
|
602
604
|
|
|
603
605
|
interface IVeltCommentDialogComposerRecordingsProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|