@veltdev/react 3.0.31 → 3.0.33
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 +7 -1
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarResetFilterButtonWireframe/VeltCommentsSidebarResetFilterButtonWireframe.d.ts +6 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarResetFilterButtonWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarWireframe.d.ts +2 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +7 -1
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarResetFilterButtonWireframe/VeltCommentsSidebarResetFilterButtonWireframe.d.ts +6 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarResetFilterButtonWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarWireframe.d.ts +2 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IVeltCommentsSidebarResetFilterButtonWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
|
+
variant?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const VeltCommentsSidebarResetFilterButtonWireframe: React.FC<IVeltCommentsSidebarResetFilterButtonWireframeProps>;
|
|
6
|
+
export default VeltCommentsSidebarResetFilterButtonWireframe;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltCommentsSidebarResetFilterButtonWireframe";
|
|
@@ -13,6 +13,7 @@ import { IVeltCommentsSidebarPanelProps } from './VeltCommentsSidebarPanel/VeltC
|
|
|
13
13
|
import { IVeltCommentsSidebarSearchProps } from './VeltCommentsSidebarSearch/VeltCommentsSidebarSearch';
|
|
14
14
|
import { IVeltCommentsSidebarSkeletonProps } from './VeltCommentsSidebarSkeleton/VeltCommentsSidebarSkeleton';
|
|
15
15
|
import { IVeltCommentsSidebarStatus } from './VeltCommentsSidebarStatus/VeltCommentsSidebarStatus';
|
|
16
|
+
import { IVeltCommentsSidebarResetFilterButtonWireframeProps } from './VeltCommentsSidebarResetFilterButtonWireframe/VeltCommentsSidebarResetFilterButtonWireframe';
|
|
16
17
|
export interface IVeltCommentsSidebarWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
17
18
|
variant?: string;
|
|
18
19
|
}
|
|
@@ -31,5 +32,6 @@ declare const VeltCommentsSidebarWireframe: React.FC<IVeltCommentsSidebarWirefra
|
|
|
31
32
|
MinimalFilterDropdown: IVeltCommentsSidebarMinimalFilterDropdown;
|
|
32
33
|
LocationFilterDropdown: IVeltCommentsSidebarLocationFilterDropdown;
|
|
33
34
|
MinimalActionsDropdown: IVeltCommentsSidebarMinimalActionsDropdownWireframe;
|
|
35
|
+
ResetFilterButton: React.FC<IVeltCommentsSidebarResetFilterButtonWireframeProps>;
|
|
34
36
|
};
|
|
35
37
|
export default VeltCommentsSidebarWireframe;
|
package/esm/types/constants.d.ts
CHANGED
package/index.d.ts
CHANGED
|
@@ -1732,6 +1732,10 @@ interface IVeltCommentsSidebarStatus extends React.FC<IVeltCommentsSidebarStatus
|
|
|
1732
1732
|
Content: IVeltCommentsSidebarStatusDropdownContentWireframe;
|
|
1733
1733
|
}
|
|
1734
1734
|
|
|
1735
|
+
interface IVeltCommentsSidebarResetFilterButtonWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1736
|
+
variant?: string;
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1735
1739
|
interface IVeltCommentsSidebarWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1736
1740
|
variant?: string;
|
|
1737
1741
|
}
|
|
@@ -1750,6 +1754,7 @@ declare const VeltCommentsSidebarWireframe: React.FC<IVeltCommentsSidebarWirefra
|
|
|
1750
1754
|
MinimalFilterDropdown: IVeltCommentsSidebarMinimalFilterDropdown;
|
|
1751
1755
|
LocationFilterDropdown: IVeltCommentsSidebarLocationFilterDropdown;
|
|
1752
1756
|
MinimalActionsDropdown: IVeltCommentsSidebarMinimalActionsDropdownWireframe;
|
|
1757
|
+
ResetFilterButton: React.FC<IVeltCommentsSidebarResetFilterButtonWireframeProps>;
|
|
1753
1758
|
};
|
|
1754
1759
|
|
|
1755
1760
|
interface IVeltCommentPinGhostCommentIndicatorProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.33",
|
|
4
4
|
"description": "Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.",
|
|
5
5
|
"homepage": "https://velt.dev",
|
|
6
6
|
"keywords": [
|