@veltdev/react 1.0.74 → 1.0.75

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.
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- export interface IVeltHuddleToolProps {
2
+ export interface IVeltHuddleToolProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
3
  type?: string;
4
4
  }
5
5
  declare const SnippylyHuddleTool: React.FC<IVeltHuddleToolProps>;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- export interface IVeltUserInviteToolProps {
2
+ export interface IVeltUserInviteToolProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
3
  type?: string;
4
4
  source?: string;
5
5
  title?: string;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "1.0.74",
3
+ "version": "1.0.75",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",