@teambit/component.ui.component-drawer 0.0.350 → 0.0.352
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.
|
@@ -6,4 +6,4 @@ export declare type ComponentFilterWidgetContextType = {
|
|
|
6
6
|
export declare const ComponentFilterWidgetContext: React.Context<ComponentFilterWidgetContextType>;
|
|
7
7
|
export declare const ComponentFilterWidgetProvider: ({ children }: {
|
|
8
8
|
children: ReactNode;
|
|
9
|
-
}) => JSX.Element;
|
|
9
|
+
}) => React.JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
1
|
+
import React, { ReactNode } from 'react';
|
|
2
2
|
import { PayloadType } from '@teambit/ui-foundation.ui.side-bar';
|
|
3
3
|
import { ComponentTreeSlot } from '@teambit/component-tree';
|
|
4
4
|
import type { DrawerType } from '@teambit/ui-foundation.ui.tree.drawer';
|
|
@@ -58,17 +58,17 @@ export declare class ComponentsDrawer implements DrawerType {
|
|
|
58
58
|
constructor(props: ComponentsDrawerProps);
|
|
59
59
|
Context: ({ children }: {
|
|
60
60
|
children: any;
|
|
61
|
-
}) => JSX.Element;
|
|
61
|
+
}) => React.JSX.Element;
|
|
62
62
|
renderFilters: ({ components, lanes }: {
|
|
63
63
|
components: ComponentModel[];
|
|
64
64
|
lanes?: LanesModel;
|
|
65
|
-
}) => JSX.Element;
|
|
65
|
+
}) => React.JSX.Element;
|
|
66
66
|
renderTree: ({ components, host }: {
|
|
67
67
|
components: ComponentModel[];
|
|
68
68
|
host?: ScopeModel | WorkspaceModel;
|
|
69
|
-
}) => JSX.Element;
|
|
69
|
+
}) => React.JSX.Element;
|
|
70
70
|
setWidgets: (widgets?: DrawerWidgetSlot) => void;
|
|
71
|
-
render: () => JSX.Element;
|
|
71
|
+
render: () => React.JSX.Element;
|
|
72
72
|
}
|
|
73
|
-
export declare function TreeToggleWidget(): JSX.Element;
|
|
74
|
-
export declare function FilterWidget(): JSX.Element;
|
|
73
|
+
export declare function TreeToggleWidget(): React.JSX.Element;
|
|
74
|
+
export declare function FilterWidget(): React.JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/component.ui.component-drawer",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.352",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/component/ui/component-drawer",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.component",
|
|
8
8
|
"name": "ui/component-drawer",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.352"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"classnames": "2.2.6",
|
|
13
13
|
"lodash.flatten": "4.4.0",
|
|
14
14
|
"core-js": "^3.0.0",
|
|
15
|
-
"@teambit/
|
|
15
|
+
"@teambit/component.ui.component-filters.component-filter-context": "0.0.214",
|
|
16
16
|
"@teambit/design.ui.skeletons.sidebar-loader": "0.0.4",
|
|
17
17
|
"@teambit/design.ui.styles.ellipsis": "0.0.357",
|
|
18
18
|
"@teambit/design.ui.styles.muted-italic": "0.0.44",
|
|
19
19
|
"@teambit/design.ui.tree": "0.0.15",
|
|
20
20
|
"@teambit/harmony": "0.4.6",
|
|
21
|
-
"@teambit/
|
|
22
|
-
"@teambit/lanes.
|
|
23
|
-
"@teambit/
|
|
24
|
-
"@teambit/
|
|
25
|
-
"@teambit/
|
|
26
|
-
"@teambit/
|
|
21
|
+
"@teambit/lanes.hooks.use-lanes": "0.0.254",
|
|
22
|
+
"@teambit/lanes.ui.models.lanes-model": "0.0.207",
|
|
23
|
+
"@teambit/ui-foundation.ui.side-bar": "0.0.869",
|
|
24
|
+
"@teambit/ui-foundation.ui.tree.drawer": "0.0.517",
|
|
25
|
+
"@teambit/base-ui.utils.composer": "1.0.0",
|
|
26
|
+
"@teambit/scope.models.scope-model": "0.0.469"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/react": "^17.0.8",
|
|
File without changes
|