sticky-file-tree 0.0.7 → 0.0.8
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/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -71,6 +71,7 @@ interface CustomFileProps extends CustomBaseProps {
|
|
|
71
71
|
selected: boolean;
|
|
72
72
|
}
|
|
73
73
|
interface CustomFolderProps extends CustomBaseProps {
|
|
74
|
+
selected: boolean;
|
|
74
75
|
open: boolean;
|
|
75
76
|
}
|
|
76
77
|
interface DepthOffsetProps {
|
|
@@ -196,4 +197,4 @@ declare const FileIcon: ({ style, ...props }: IconProps) => react_jsx_runtime.JS
|
|
|
196
197
|
declare const ArrowIcon: ({ style, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
197
198
|
|
|
198
199
|
export { ArrowIcon, FileIcon, FileTree };
|
|
199
|
-
export type { FileTreeProps, Theme, TreeFileNodeOptions, TreeFolderNodeOptions, TreeNodeOptions };
|
|
200
|
+
export type { CustomFileProps, CustomFolderProps, DepthOffsetProps, FileTreeProps, Theme, TreeFileNodeOptions, TreeFolderNodeOptions, TreeNodeOptions };
|