@veltdev/react 4.5.0-beta.26 → 4.5.0-beta.27
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 +12 -2
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFilter/VeltCommentsSidebarFilter.d.ts +2 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFilter/VeltCommentsSidebarFilterCustom/VeltCommentsSidebarFilterCustom.d.ts +15 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFilter/VeltCommentsSidebarFilterCustom/index.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +12 -2
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFilter/VeltCommentsSidebarFilter.d.ts +2 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFilter/VeltCommentsSidebarFilterCustom/VeltCommentsSidebarFilterCustom.d.ts +15 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFilter/VeltCommentsSidebarFilterCustom/index.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +10 -0
- package/package.json +1 -1
|
@@ -17,6 +17,7 @@ import { IVeltCommentsSidebarFilterResetButtonProps } from './VeltCommentsSideba
|
|
|
17
17
|
import { IVeltCommentsSidebarFilterAssigned } from './VeltCommentsSidebarFilterAssigned/VeltCommentsSidebarFilterAssigned';
|
|
18
18
|
import { IVeltCommentsSidebarFilterTagged } from './VeltCommentsSidebarFilterTagged/VeltCommentsSidebarFilterTagged';
|
|
19
19
|
import { IVeltCommentsSidebarFilterDocument } from './VeltCommentsSidebarFilterDocument/VeltCommentsSidebarFilterDocument';
|
|
20
|
+
import { IVeltCommentsSidebarFilterCustom } from './VeltCommentsSidebarFilterCustom/VeltCommentsSidebarFilterCustom';
|
|
20
21
|
export interface IVeltCommentsSidebarFilterProps extends IVeltWireframeCommonProps {
|
|
21
22
|
}
|
|
22
23
|
export interface IVeltCommentsSidebarFilter extends React.FC<IVeltCommentsSidebarFilterProps> {
|
|
@@ -37,6 +38,7 @@ export interface IVeltCommentsSidebarFilter extends React.FC<IVeltCommentsSideba
|
|
|
37
38
|
ResetButton: React.FC<IVeltCommentsSidebarFilterResetButtonProps>;
|
|
38
39
|
Search: IVeltCommentsSidebarFilterSearch;
|
|
39
40
|
Document: IVeltCommentsSidebarFilterDocument;
|
|
41
|
+
Custom: IVeltCommentsSidebarFilterCustom;
|
|
40
42
|
}
|
|
41
43
|
declare const VeltCommentsSidebarFilter: IVeltCommentsSidebarFilter;
|
|
42
44
|
export default VeltCommentsSidebarFilter;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IVeltWireframeCommonProps } from '../../../../constants';
|
|
3
|
+
import { IVeltCommentsSidebarFilterItem } from '../VeltCommentsSidebarFilterItem/VeltCommentsSidebarFilterItem';
|
|
4
|
+
import { IVeltCommentsSidebarFilterNameProps } from '../VeltCommentsSidebarFilterName/VeltCommentsSidebarFilterName';
|
|
5
|
+
import { IVeltCommentsSidebarFilterSearch } from '../VeltCommentsSidebarFilterSearch/VeltCommentsSidebarFilterSearch';
|
|
6
|
+
export interface IVeltCommentsSidebarFilterCustomProps extends IVeltWireframeCommonProps {
|
|
7
|
+
id?: string;
|
|
8
|
+
}
|
|
9
|
+
export interface IVeltCommentsSidebarFilterCustom extends React.FC<IVeltCommentsSidebarFilterCustomProps> {
|
|
10
|
+
Name: React.FC<IVeltCommentsSidebarFilterNameProps>;
|
|
11
|
+
Item: IVeltCommentsSidebarFilterItem;
|
|
12
|
+
Search: IVeltCommentsSidebarFilterSearch;
|
|
13
|
+
}
|
|
14
|
+
declare const VeltCommentsSidebarFilterCustom: IVeltCommentsSidebarFilterCustom;
|
|
15
|
+
export default VeltCommentsSidebarFilterCustom;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltCommentsSidebarFilterCustom";
|
package/esm/types/constants.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const VELT_SDK_VERSION = "4.5.0-beta.
|
|
2
|
+
export declare const VELT_SDK_VERSION = "4.5.0-beta.27";
|
|
3
3
|
export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
|
|
4
4
|
export declare const VELT_TAB_ID = "veltTabId";
|
|
5
5
|
export declare const INTEGRITY_MAP: Record<string, string>;
|
package/index.d.ts
CHANGED
|
@@ -1600,6 +1600,15 @@ interface IVeltCommentsSidebarFilterDocument extends React$1.FC<IVeltCommentsSid
|
|
|
1600
1600
|
Search: IVeltCommentsSidebarFilterSearch;
|
|
1601
1601
|
}
|
|
1602
1602
|
|
|
1603
|
+
interface IVeltCommentsSidebarFilterCustomProps extends IVeltWireframeCommonProps {
|
|
1604
|
+
id?: string;
|
|
1605
|
+
}
|
|
1606
|
+
interface IVeltCommentsSidebarFilterCustom extends React$1.FC<IVeltCommentsSidebarFilterCustomProps> {
|
|
1607
|
+
Name: React$1.FC<IVeltCommentsSidebarFilterNameProps>;
|
|
1608
|
+
Item: IVeltCommentsSidebarFilterItem;
|
|
1609
|
+
Search: IVeltCommentsSidebarFilterSearch;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1603
1612
|
interface IVeltCommentsSidebarFilterProps extends IVeltWireframeCommonProps {
|
|
1604
1613
|
}
|
|
1605
1614
|
interface IVeltCommentsSidebarFilter extends React$1.FC<IVeltCommentsSidebarFilterProps> {
|
|
@@ -1620,6 +1629,7 @@ interface IVeltCommentsSidebarFilter extends React$1.FC<IVeltCommentsSidebarFilt
|
|
|
1620
1629
|
ResetButton: React$1.FC<IVeltCommentsSidebarFilterResetButtonProps>;
|
|
1621
1630
|
Search: IVeltCommentsSidebarFilterSearch;
|
|
1622
1631
|
Document: IVeltCommentsSidebarFilterDocument;
|
|
1632
|
+
Custom: IVeltCommentsSidebarFilterCustom;
|
|
1623
1633
|
}
|
|
1624
1634
|
|
|
1625
1635
|
interface IVeltCommentsSidebarFilterButtonProps extends IVeltWireframeCommonProps {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "4.5.0-beta.
|
|
3
|
+
"version": "4.5.0-beta.27",
|
|
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": [
|