@teambit/ui-foundation.ui.side-bar 0.0.885 → 0.0.886

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,6 +6,7 @@ import { inflateToTree, attachPayload } from '@teambit/base-ui.graph.tree.inflat
6
6
  import { Tree, TreeNodeRenderer, TreeNode as TreeNodeType } from '@teambit/design.ui.tree';
7
7
  import { LanesModel } from '@teambit/lanes.ui.models.lanes-model';
8
8
  import { TreeContextProvider } from '@teambit/base-ui.graph.tree.tree-context';
9
+ import { LanesContext } from '@teambit/lanes.hooks.use-lanes';
9
10
  import { PayloadType, ScopePayload } from './payload-type';
10
11
  import { DefaultTreeNodeRenderer } from './default-tree-node-renderer';
11
12
 
@@ -14,6 +15,7 @@ type ComponentTreeProps = {
14
15
  transformTree?: (rootNode: TreeNodeType) => TreeNodeType;
15
16
  TreeNode?: TreeNodeRenderer<PayloadType>;
16
17
  isCollapsed?: boolean;
18
+ lanesModel?: LanesModel;
17
19
  // assumeScopeInUrl?: boolean;
18
20
  } & React.HTMLAttributes<HTMLDivElement>;
19
21
 
@@ -31,6 +33,7 @@ export function ComponentTree({
31
33
  isCollapsed,
32
34
  className,
33
35
  transformTree,
36
+ lanesModel,
34
37
  // assumeScopeInUrl = false,
35
38
  TreeNode = DefaultTreeNodeRenderer,
36
39
  }: ComponentTreeProps) {
@@ -57,12 +60,12 @@ export function ComponentTree({
57
60
  }, [components.length]);
58
61
 
59
62
  return (
60
- <TreeContextProvider>
61
- <div style={indentStyle(1)} className={className}>
62
- <Tree TreeNode={TreeNode} activePath={activeComponent} tree={rootNode} isCollapsed={isCollapsed} />
63
- </div>
64
- </TreeContextProvider>
63
+ <LanesContext.Provider value={{ lanesModel }}>
64
+ <TreeContextProvider>
65
+ <div style={indentStyle(1)} className={className}>
66
+ <Tree TreeNode={TreeNode} activePath={activeComponent} tree={rootNode} isCollapsed={isCollapsed} />
67
+ </div>
68
+ </TreeContextProvider>
69
+ </LanesContext.Provider>
65
70
  );
66
71
  }
67
-
68
-
@@ -12,7 +12,7 @@ import { Tooltip } from '@teambit/design.ui.tooltip';
12
12
  import { TreeContext } from '@teambit/base-ui.graph.tree.tree-context';
13
13
  import { indentClass } from '@teambit/base-ui.graph.tree.indent';
14
14
  import { TreeNodeProps } from '@teambit/base-ui.graph.tree.recursive-tree';
15
- import { useLanes } from '@teambit/lanes.hooks.use-lanes';
15
+ import { LanesContext } from '@teambit/lanes.hooks.use-lanes';
16
16
  import { LanesModel } from '@teambit/lanes.ui.models.lanes-model';
17
17
  import { getName } from '../utils/get-name';
18
18
 
@@ -20,16 +20,17 @@ import styles from './component-view.module.scss';
20
20
 
21
21
  export type ComponentViewProps<Payload = any> = {
22
22
  treeNodeSlot?: ComponentTreeSlot;
23
- useLanes?: () => { lanesModel?: LanesModel };
24
23
  scopeName?: string;
25
24
  } & TreeNodeProps<Payload>;
26
25
 
27
26
  export function ComponentView(props: ComponentViewProps) {
28
- const { node, scopeName, useLanes: useLanesFromProps, treeNodeSlot } = props;
27
+ const { node, scopeName, treeNodeSlot } = props;
28
+
29
29
  let component = node.payload;
30
30
 
31
31
  const { onSelect } = useContext(TreeContext);
32
- const { lanesModel } = (useLanesFromProps || useLanes)();
32
+ const lanesContextModel = useContext(LanesContext);
33
+ const lanesModel = lanesContextModel?.lanesModel;
33
34
 
34
35
  const handleClick = useCallback(
35
36
  (event: React.MouseEvent<HTMLAnchorElement, MouseEvent>) => {
@@ -41,13 +42,13 @@ export function ComponentView(props: ComponentViewProps) {
41
42
  const location = useLocation();
42
43
  const scope = { name: scopeName };
43
44
 
44
- if (!component.id || !component.environment.id) return null;
45
+ const isMissingCompOrEnvId = !component?.id || !component?.environment?.id;
45
46
 
46
47
  component = component as ComponentModel;
47
48
 
48
- const envId = ComponentID.fromString(component.environment?.id as string);
49
+ const envId = !isMissingCompOrEnvId ? ComponentID.fromString(component.environment?.id as string) : undefined;
49
50
 
50
- const envTooltip = (
51
+ const envTooltip = envId ? (
51
52
  <Link
52
53
  external
53
54
  className={styles.envLink}
@@ -63,11 +64,14 @@ export function ComponentView(props: ComponentViewProps) {
63
64
  <div className={styles.componentEnvTitle}>Environment</div>
64
65
  <div>{component.environment?.id}</div>
65
66
  </Link>
66
- );
67
+ ) : null;
67
68
 
68
- const href = lanesModel?.getLaneComponentUrlByVersion(component.id as any, lanesModel.viewedLane?.id, !scope.name);
69
+ const href = !isMissingCompOrEnvId
70
+ ? lanesModel?.getLaneComponentUrlByVersion(component.id as any, lanesModel.viewedLane?.id, !scope.name)
71
+ : undefined;
69
72
 
70
73
  const viewingMainCompOnLane = React.useMemo(() => {
74
+ if (isMissingCompOrEnvId) return false;
71
75
  return (
72
76
  !component.status?.isNew &&
73
77
  !lanesModel?.viewedLane?.id.isDefault() &&
@@ -75,8 +79,6 @@ export function ComponentView(props: ComponentViewProps) {
75
79
  );
76
80
  }, [lanesModel?.viewedLane?.id.toString(), component.id.toString()]);
77
81
 
78
-
79
-
80
82
  /**
81
83
  * this covers the following use cases when matching the active component's href with location
82
84
  *
@@ -119,7 +121,7 @@ export function ComponentView(props: ComponentViewProps) {
119
121
  * @todo - move this logic to a util function
120
122
  */
121
123
  const isActive = React.useMemo(() => {
122
- if (!href || !location) return false;
124
+ if (!href || !location || !component?.id) return false;
123
125
 
124
126
  const scopeFromQueryParams = location.search.split('scope=')[1];
125
127
 
@@ -178,16 +180,18 @@ export function ComponentView(props: ComponentViewProps) {
178
180
  return !scopeFromQueryParams
179
181
  ? laneCompIdFromUrl?.toString() === compIdStr || laneCompIdFromUrl.fullName === compIdName
180
182
  : laneCompIdFromUrl?.toString() === compIdStr ||
181
- (laneCompIdFromUrl.fullName === compIdName && componentScope === scopeFromQueryParams);
182
- }, [href, viewingMainCompOnLane, location?.pathname, component.id.toString(), scope.name]);
183
+ (laneCompIdFromUrl.fullName === compIdName && componentScope === scopeFromQueryParams);
184
+ }, [href, viewingMainCompOnLane, location?.pathname, component?.id.toString(), scope.name]);
185
+
186
+ if (isMissingCompOrEnvId) return null;
183
187
 
184
- const isCompModified = component.status?.modifyInfo?.hasModifiedFiles
185
- || component.status?.modifyInfo?.hasModifiedDependencies;
188
+ const isCompModified =
189
+ component.status?.modifyInfo?.hasModifiedFiles || component.status?.modifyInfo?.hasModifiedDependencies;
186
190
 
187
191
  const addOpacity = viewingMainCompOnLane && !isCompModified;
188
192
 
189
193
  const Name = viewingMainCompOnLane ? (
190
- <Tooltip className={styles.tooltip} placement="top" content='On Main'>
194
+ <Tooltip className={styles.tooltip} placement="top" content="On Main">
191
195
  <span className={classNames(addOpacity && styles.opacity)}>{getName(node.id)}</span>
192
196
  </Tooltip>
193
197
  ) : (
@@ -213,9 +217,8 @@ export function ComponentView(props: ComponentViewProps) {
213
217
  <div className={styles.right}>
214
218
  <DeprecationIcon component={component} />
215
219
  {/* {isInternal && <Icon of="Internal" className={styles.componentIcon} />} */}
216
- {
217
- treeNodeSlot
218
- && treeNodeSlot.toArray().map(([id, treeNode]) => <treeNode.widget key={id} component={component} />)}
220
+ {treeNodeSlot &&
221
+ treeNodeSlot.toArray().map(([id, treeNode]) => <treeNode.widget key={id} component={component} />)}
219
222
  </div>
220
223
  </Link>
221
224
  );
@@ -1 +1 @@
1
- export * from './component-view';
1
+ export { ComponentView } from './component-view';
@@ -1,12 +1,14 @@
1
1
  import { ComponentModel } from '@teambit/component';
2
2
  import React from 'react';
3
3
  import { TreeNodeRenderer, TreeNode as TreeNodeType } from '@teambit/design.ui.tree';
4
+ import { LanesModel } from '@teambit/lanes.ui.models.lanes-model';
4
5
  import { PayloadType } from './payload-type';
5
6
  type ComponentTreeProps = {
6
7
  components: ComponentModel[];
7
8
  transformTree?: (rootNode: TreeNodeType) => TreeNodeType;
8
9
  TreeNode?: TreeNodeRenderer<PayloadType>;
9
10
  isCollapsed?: boolean;
11
+ lanesModel?: LanesModel;
10
12
  } & React.HTMLAttributes<HTMLDivElement>;
11
- export declare function ComponentTree({ components, isCollapsed, className, transformTree, TreeNode, }: ComponentTreeProps): import("react/jsx-runtime").JSX.Element;
13
+ export declare function ComponentTree({ components, isCollapsed, className, transformTree, lanesModel, TreeNode, }: ComponentTreeProps): import("react/jsx-runtime").JSX.Element;
12
14
  export {};
@@ -7,6 +7,7 @@ import { inflateToTree, attachPayload } from '@teambit/base-ui.graph.tree.inflat
7
7
  import { Tree } from '@teambit/design.ui.tree';
8
8
  import { LanesModel } from '@teambit/lanes.ui.models.lanes-model';
9
9
  import { TreeContextProvider } from '@teambit/base-ui.graph.tree.tree-context';
10
+ import { LanesContext } from '@teambit/lanes.hooks.use-lanes';
10
11
  import { ScopePayload } from './payload-type';
11
12
  import { DefaultTreeNodeRenderer } from './default-tree-node-renderer';
12
13
  function calcPayload(components) {
@@ -15,7 +16,7 @@ function calcPayload(components) {
15
16
  scopeIds.forEach((x) => x && payloadMap.set(`${x}/`, new ScopePayload()));
16
17
  return payloadMap;
17
18
  }
18
- export function ComponentTree({ components, isCollapsed, className, transformTree,
19
+ export function ComponentTree({ components, isCollapsed, className, transformTree, lanesModel,
19
20
  // assumeScopeInUrl = false,
20
21
  TreeNode = DefaultTreeNodeRenderer, }) {
21
22
  const { pathname = '/' } = useLocation() || {};
@@ -36,6 +37,6 @@ TreeNode = DefaultTreeNodeRenderer, }) {
36
37
  return transformTree(tree);
37
38
  return tree;
38
39
  }, [components.length]);
39
- return (_jsx(TreeContextProvider, { children: _jsx("div", { style: indentStyle(1), className: className, children: _jsx(Tree, { TreeNode: TreeNode, activePath: activeComponent, tree: rootNode, isCollapsed: isCollapsed }) }) }));
40
+ return (_jsx(LanesContext.Provider, { value: { lanesModel }, children: _jsx(TreeContextProvider, { children: _jsx("div", { style: indentStyle(1), className: className, children: _jsx(Tree, { TreeNode: TreeNode, activePath: activeComponent, tree: rootNode, isCollapsed: isCollapsed }) }) }) }));
40
41
  }
41
42
  //# sourceMappingURL=component-tree.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"component-tree.js","sourceRoot":"","sources":["../../component-tree/component-tree.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"component-tree.js","sourceRoot":"","sources":["../../component-tree/component-tree.tsx"],"names":[],"mappings":"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"}
@@ -1,11 +1,7 @@
1
1
  import { ComponentTreeSlot } from '@teambit/component-tree';
2
2
  import { TreeNodeProps } from '@teambit/base-ui.graph.tree.recursive-tree';
3
- import { LanesModel } from '@teambit/lanes.ui.models.lanes-model';
4
3
  export type ComponentViewProps<Payload = any> = {
5
4
  treeNodeSlot?: ComponentTreeSlot;
6
- useLanes?: () => {
7
- lanesModel?: LanesModel;
8
- };
9
5
  scopeName?: string;
10
6
  } & TreeNodeProps<Payload>;
11
7
  export declare function ComponentView(props: ComponentViewProps): import("react/jsx-runtime").JSX.Element | null;
@@ -9,33 +9,37 @@ import React, { useCallback, useContext } from 'react';
9
9
  import { Tooltip } from '@teambit/design.ui.tooltip';
10
10
  import { TreeContext } from '@teambit/base-ui.graph.tree.tree-context';
11
11
  import { indentClass } from '@teambit/base-ui.graph.tree.indent';
12
- import { useLanes } from '@teambit/lanes.hooks.use-lanes';
12
+ import { LanesContext } from '@teambit/lanes.hooks.use-lanes';
13
13
  import { LanesModel } from '@teambit/lanes.ui.models.lanes-model';
14
14
  import { getName } from '../utils/get-name';
15
15
  import styles from './component-view.module.scss';
16
16
  export function ComponentView(props) {
17
- const { node, scopeName, useLanes: useLanesFromProps, treeNodeSlot } = props;
17
+ const { node, scopeName, treeNodeSlot } = props;
18
18
  let component = node.payload;
19
19
  const { onSelect } = useContext(TreeContext);
20
- const { lanesModel } = (useLanesFromProps || useLanes)();
20
+ const lanesContextModel = useContext(LanesContext);
21
+ const lanesModel = lanesContextModel?.lanesModel;
21
22
  const handleClick = useCallback((event) => {
22
23
  onSelect?.(node.id, event);
23
24
  }, [onSelect, node.id]);
24
25
  const location = useLocation();
25
26
  const scope = { name: scopeName };
26
- if (!component.id || !component.environment.id)
27
- return null;
27
+ const isMissingCompOrEnvId = !component?.id || !component?.environment?.id;
28
28
  component = component;
29
- const envId = ComponentID.fromString(component.environment?.id);
30
- const envTooltip = (_jsxs(Link, { external: true, className: styles.envLink, href: ComponentUrl.toUrl(envId, {
29
+ const envId = !isMissingCompOrEnvId ? ComponentID.fromString(component.environment?.id) : undefined;
30
+ const envTooltip = envId ? (_jsxs(Link, { external: true, className: styles.envLink, href: ComponentUrl.toUrl(envId, {
31
31
  includeVersion: true,
32
32
  useLocationOrigin: !window.location.host.startsWith('localhost'),
33
33
  }), onClick: (event) => {
34
34
  // do not trigger component selection
35
35
  event.stopPropagation();
36
- }, children: [_jsx("div", { className: styles.componentEnvTitle, children: "Environment" }), _jsx("div", { children: component.environment?.id })] }));
37
- const href = lanesModel?.getLaneComponentUrlByVersion(component.id, lanesModel.viewedLane?.id, !scope.name);
36
+ }, children: [_jsx("div", { className: styles.componentEnvTitle, children: "Environment" }), _jsx("div", { children: component.environment?.id })] })) : null;
37
+ const href = !isMissingCompOrEnvId
38
+ ? lanesModel?.getLaneComponentUrlByVersion(component.id, lanesModel.viewedLane?.id, !scope.name)
39
+ : undefined;
38
40
  const viewingMainCompOnLane = React.useMemo(() => {
41
+ if (isMissingCompOrEnvId)
42
+ return false;
39
43
  return (!component.status?.isNew &&
40
44
  !lanesModel?.viewedLane?.id.isDefault() &&
41
45
  lanesModel?.isComponentOnMainButNotOnLane(component.id, undefined, lanesModel?.viewedLane?.id));
@@ -82,7 +86,7 @@ export function ComponentView(props) {
82
86
  * @todo - move this logic to a util function
83
87
  */
84
88
  const isActive = React.useMemo(() => {
85
- if (!href || !location)
89
+ if (!href || !location || !component?.id)
86
90
  return false;
87
91
  const scopeFromQueryParams = location.search.split('scope=')[1];
88
92
  const pathname = location.pathname.substring(1).split('?')[0];
@@ -127,14 +131,15 @@ export function ComponentView(props) {
127
131
  ? laneCompIdFromUrl?.toString() === compIdStr || laneCompIdFromUrl.fullName === compIdName
128
132
  : laneCompIdFromUrl?.toString() === compIdStr ||
129
133
  (laneCompIdFromUrl.fullName === compIdName && componentScope === scopeFromQueryParams);
130
- }, [href, viewingMainCompOnLane, location?.pathname, component.id.toString(), scope.name]);
131
- const isCompModified = component.status?.modifyInfo?.hasModifiedFiles
132
- || component.status?.modifyInfo?.hasModifiedDependencies;
134
+ }, [href, viewingMainCompOnLane, location?.pathname, component?.id.toString(), scope.name]);
135
+ if (isMissingCompOrEnvId)
136
+ return null;
137
+ const isCompModified = component.status?.modifyInfo?.hasModifiedFiles || component.status?.modifyInfo?.hasModifiedDependencies;
133
138
  const addOpacity = viewingMainCompOnLane && !isCompModified;
134
- const Name = viewingMainCompOnLane ? (_jsx(Tooltip, { className: styles.tooltip, placement: "top", content: 'On Main', children: _jsx("span", { className: classNames(addOpacity && styles.opacity), children: getName(node.id) }) })) : (_jsx("span", { children: getName(node.id) }));
139
+ const Name = viewingMainCompOnLane ? (_jsx(Tooltip, { className: styles.tooltip, placement: "top", content: "On Main", children: _jsx("span", { className: classNames(addOpacity && styles.opacity), children: getName(node.id) }) })) : (_jsx("span", { children: getName(node.id) }));
135
140
  return (_jsxs(Link, { href: href, className: classNames(indentClass, styles.component), activeClassName: styles.active, onClick: handleClick,
136
141
  // exact={true}
137
- active: isActive, children: [_jsxs("div", { className: styles.left, children: [_jsx(Tooltip, { className: styles.componentEnvTooltip, placement: "top", content: envTooltip, children: _jsx(EnvIcon, { component: component, className: styles.envIcon }) }), Name] }), _jsxs("div", { className: styles.right, children: [_jsx(DeprecationIcon, { component: component }), treeNodeSlot
138
- && treeNodeSlot.toArray().map(([id, treeNode]) => _jsx(treeNode.widget, { component: component }, id))] })] }));
142
+ active: isActive, children: [_jsxs("div", { className: styles.left, children: [_jsx(Tooltip, { className: styles.componentEnvTooltip, placement: "top", content: envTooltip, children: _jsx(EnvIcon, { component: component, className: styles.envIcon }) }), Name] }), _jsxs("div", { className: styles.right, children: [_jsx(DeprecationIcon, { component: component }), treeNodeSlot &&
143
+ treeNodeSlot.toArray().map(([id, treeNode]) => _jsx(treeNode.widget, { component: component }, id))] })] }));
139
144
  }
140
145
  //# sourceMappingURL=component-view.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"component-view.js","sourceRoot":"","sources":["../../../component-tree/component-view/component-view.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"component-view.js","sourceRoot":"","sources":["../../../component-tree/component-view/component-view.tsx"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- export * from './component-view';
1
+ export { ComponentView } from './component-view';
@@ -1,2 +1,2 @@
1
- export * from './component-view';
1
+ export { ComponentView } from './component-view';
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../component-tree/component-view/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../component-tree/component-view/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC"}
package/dist/index.d.ts CHANGED
@@ -1 +1,2 @@
1
- export { ComponentTree, ComponentView, ScopeTreeNode, NamespaceTreeNode, PayloadType, ScopePayload, } from './component-tree';
1
+ export { ComponentTree, ComponentView, ScopeTreeNode, NamespaceTreeNode, ScopePayload } from './component-tree';
2
+ export type { PayloadType } from './component-tree';
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
- export { ComponentTree, ComponentView, ScopeTreeNode, NamespaceTreeNode, ScopePayload, } from './component-tree';
1
+ export { ComponentTree, ComponentView, ScopeTreeNode, NamespaceTreeNode, ScopePayload } from './component-tree';
2
2
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,aAAa,EACb,aAAa,EACb,iBAAiB,EAEjB,YAAY,GACb,MAAM,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,aAAa,EAAE,iBAAiB,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC"}
@@ -0,0 +1,7 @@
1
+ ;
2
+ ;
3
+
4
+ export const compositions = [];
5
+ export const overview = [];
6
+
7
+ export const compositions_metadata = {"compositions":[]};
package/index.ts CHANGED
@@ -1,8 +1,3 @@
1
- export {
2
- ComponentTree,
3
- ComponentView,
4
- ScopeTreeNode,
5
- NamespaceTreeNode,
6
- PayloadType,
7
- ScopePayload,
8
- } from './component-tree';
1
+ export { ComponentTree, ComponentView, ScopeTreeNode, NamespaceTreeNode, ScopePayload } from './component-tree';
2
+
3
+ export type { PayloadType } from './component-tree';
package/package.json CHANGED
@@ -1,17 +1,16 @@
1
1
  {
2
2
  "name": "@teambit/ui-foundation.ui.side-bar",
3
- "version": "0.0.885",
3
+ "version": "0.0.886",
4
4
  "homepage": "https://bit.cloud/teambit/ui-foundation/ui/side-bar",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.ui-foundation",
8
8
  "name": "ui/side-bar",
9
- "version": "0.0.885"
9
+ "version": "0.0.886"
10
10
  },
11
11
  "dependencies": {
12
12
  "classnames": "2.2.6",
13
13
  "react-animate-height": "2.0.23",
14
- "@teambit/base-react.navigation.link": "2.0.31",
15
14
  "@teambit/base-ui.graph.tree.indent": "1.0.0",
16
15
  "@teambit/base-ui.graph.tree.inflate-paths": "1.0.0",
17
16
  "@teambit/base-ui.graph.tree.tree-context": "1.0.0",
@@ -19,24 +18,25 @@
19
18
  "@teambit/lanes.ui.models.lanes-model": "0.0.221",
20
19
  "@teambit/base-ui.theme.colors": "1.0.0",
21
20
  "@teambit/base-ui.graph.tree.recursive-tree": "1.0.0",
22
- "@teambit/component-id": "1.2.0",
23
- "@teambit/component.modules.component-url": "0.0.167",
21
+ "@teambit/component-id": "1.2.2",
24
22
  "@teambit/component.ui.deprecation-icon": "0.0.509",
25
- "@teambit/design.ui.tooltip": "0.0.361",
26
- "@teambit/envs.ui.env-icon": "0.0.505",
27
- "@teambit/lanes.hooks.use-lanes": "0.0.272",
28
- "@teambit/evangelist.elements.icon": "1.0.2"
23
+ "@teambit/evangelist.elements.icon": "1.0.2",
24
+ "@teambit/lanes.hooks.use-lanes": "0.0.274",
25
+ "@teambit/component.modules.component-url": "0.0.169",
26
+ "@teambit/design.ui.tooltip": "0.0.371",
27
+ "@teambit/envs.ui.env-icon": "0.0.505"
29
28
  },
30
29
  "devDependencies": {
31
30
  "@types/classnames": "2.2.11",
32
31
  "@types/mocha": "9.1.0",
33
- "@teambit/react.v17.react-env": "1.1.53"
32
+ "@teambit/react.v17.react-env": "1.1.71"
34
33
  },
35
34
  "peerDependencies": {
36
35
  "react": "17.0.2",
37
36
  "@types/react-dom": "^17.0.0",
38
37
  "@types/react": "^17.0.0",
39
- "react-dom": "17.0.2"
38
+ "react-dom": "17.0.2",
39
+ "@teambit/base-react.navigation.link": "2.0.31"
40
40
  },
41
41
  "license": "Apache-2.0",
42
42
  "optionalDependencies": {},
@@ -0,0 +1,41 @@
1
+ declare module '*.png' {
2
+ const value: any;
3
+ export = value;
4
+ }
5
+ declare module '*.svg' {
6
+ import type { FunctionComponent, SVGProps } from 'react';
7
+
8
+ export const ReactComponent: FunctionComponent<
9
+ SVGProps<SVGSVGElement> & { title?: string }
10
+ >;
11
+ const src: string;
12
+ export default src;
13
+ }
14
+ declare module '*.jpg' {
15
+ const value: any;
16
+ export = value;
17
+ }
18
+ declare module '*.jpeg' {
19
+ const value: any;
20
+ export = value;
21
+ }
22
+ declare module '*.gif' {
23
+ const value: any;
24
+ export = value;
25
+ }
26
+ declare module '*.bmp' {
27
+ const value: any;
28
+ export = value;
29
+ }
30
+ declare module '*.otf' {
31
+ const value: any;
32
+ export = value;
33
+ }
34
+ declare module '*.woff' {
35
+ const value: any;
36
+ export = value;
37
+ }
38
+ declare module '*.woff2' {
39
+ const value: any;
40
+ export = value;
41
+ }
@@ -0,0 +1,42 @@
1
+ declare module '*.module.css' {
2
+ const classes: { readonly [key: string]: string };
3
+ export default classes;
4
+ }
5
+ declare module '*.module.scss' {
6
+ const classes: { readonly [key: string]: string };
7
+ export default classes;
8
+ }
9
+ declare module '*.module.sass' {
10
+ const classes: { readonly [key: string]: string };
11
+ export default classes;
12
+ }
13
+
14
+ declare module '*.module.less' {
15
+ const classes: { readonly [key: string]: string };
16
+ export default classes;
17
+ }
18
+
19
+ declare module '*.less' {
20
+ const classes: { readonly [key: string]: string };
21
+ export default classes;
22
+ }
23
+
24
+ declare module '*.css' {
25
+ const classes: { readonly [key: string]: string };
26
+ export default classes;
27
+ }
28
+
29
+ declare module '*.sass' {
30
+ const classes: { readonly [key: string]: string };
31
+ export default classes;
32
+ }
33
+
34
+ declare module '*.scss' {
35
+ const classes: { readonly [key: string]: string };
36
+ export default classes;
37
+ }
38
+
39
+ declare module '*.mdx' {
40
+ const component: any;
41
+ export default component;
42
+ }
File without changes