@cgi-learning-hub/ui 1.4.0-dev.1742394029 → 1.4.0-dev.1742463865
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/components/TreeView/TreeView.cjs.js +7 -7
- package/dist/components/TreeView/TreeView.es.js +414 -414
- package/dist/components/TreeView/style.cjs.js +1 -1
- package/dist/components/TreeView/style.es.js +15 -10
- package/dist/components/TreeView/types.d.ts +4 -0
- package/dist/components/stories/TreeView.stories.cjs.js +9 -3
- package/dist/components/stories/TreeView.stories.d.ts +1 -0
- package/dist/components/stories/TreeView.stories.es.js +267 -144
- package/package.json +1 -1
- package/dist/components/TreeView/style.d.ts +0 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cgi-learning-hub/ui",
|
|
3
|
-
"version": "1.4.0-dev.
|
|
3
|
+
"version": "1.4.0-dev.1742463865",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "CGI Learning-hub Team",
|
|
6
6
|
"description": "@cgi-learning-hub/ui is an open-source React component library that implements UI for HUB's features",
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { CSSProperties } from 'react';
|
|
2
|
-
export declare const DEFAULT_CHILDREN_INDENT = "50px";
|
|
3
|
-
export declare const treeContainerStyle: {
|
|
4
|
-
minHeight: number;
|
|
5
|
-
minWidth: number;
|
|
6
|
-
};
|
|
7
|
-
export declare const treeContentStyle: CSSProperties;
|
|
8
|
-
export declare const arrowContainerStyle: {
|
|
9
|
-
display: string;
|
|
10
|
-
marginLeft: string;
|
|
11
|
-
};
|
|
12
|
-
export declare const expandedGroupStyle: CSSProperties;
|