@veltdev/react 1.0.74 → 1.0.76
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 +5 -5
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyHuddleTool/SnippylyHuddleTool.d.ts +1 -1
- package/cjs/types/components/SnippylyUserInviteTool/SnippylyUserInviteTool.d.ts +1 -1
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +5 -5
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyHuddleTool/SnippylyHuddleTool.d.ts +1 -1
- package/esm/types/components/SnippylyUserInviteTool/SnippylyUserInviteTool.d.ts +1 -1
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -179,7 +179,7 @@ interface IVeltHuddleProps {
|
|
|
179
179
|
}
|
|
180
180
|
declare const SnippylyHuddle: React.FC<IVeltHuddleProps>;
|
|
181
181
|
|
|
182
|
-
interface IVeltHuddleToolProps {
|
|
182
|
+
interface IVeltHuddleToolProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
183
183
|
type?: string;
|
|
184
184
|
}
|
|
185
185
|
declare const SnippylyHuddleTool: React.FC<IVeltHuddleToolProps>;
|
|
@@ -258,7 +258,7 @@ interface IVeltArrowToolProps extends React.DetailedHTMLProps<React.HTMLAttribut
|
|
|
258
258
|
}
|
|
259
259
|
declare const SnippylyArrowTool: React.FC<IVeltArrowToolProps>;
|
|
260
260
|
|
|
261
|
-
interface IVeltUserInviteToolProps {
|
|
261
|
+
interface IVeltUserInviteToolProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
262
262
|
type?: string;
|
|
263
263
|
source?: string;
|
|
264
264
|
title?: string;
|