@teambit/lanes.ui.menus.use-lanes-menu 0.0.232 → 0.0.233
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/use-lanes-menu.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { LanesHost } from '@teambit/lanes.ui.models.lanes-model';
|
|
3
|
-
import { LaneId } from '@teambit/lane-id';
|
|
2
|
+
import type { LanesHost } from '@teambit/lanes.ui.models.lanes-model';
|
|
3
|
+
import type { LaneId } from '@teambit/lane-id';
|
|
4
4
|
export type LaneImportContentProps = {
|
|
5
5
|
currentLaneId: LaneId;
|
|
6
6
|
switchedOutToCurrentLane: boolean;
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/lanes.ui.menus.use-lanes-menu",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.233",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/lanes/ui/menus/use-lanes-menu",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.lanes",
|
|
8
8
|
"name": "ui/menus/use-lanes-menu",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.233"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"core-js": "^3.0.0",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"@teambit/lane-id": "0.0.312",
|
|
17
17
|
"@teambit/ui-foundation.ui.use-box.bottom-link": "0.0.119",
|
|
18
18
|
"@teambit/ui-foundation.ui.use-box.dropdown": "0.0.143",
|
|
19
|
-
"@teambit/lanes.ui.models.lanes-model": "0.0.
|
|
19
|
+
"@teambit/lanes.ui.models.lanes-model": "0.0.229"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@types/react": "^17.0.8",
|
package/use-lanes-menu.tsx
CHANGED
|
@@ -3,10 +3,10 @@ import { Icon } from '@teambit/evangelist.elements.icon';
|
|
|
3
3
|
import { CopyBox } from '@teambit/documenter.ui.copy-box';
|
|
4
4
|
import { Ellipsis } from '@teambit/design.ui.styles.ellipsis';
|
|
5
5
|
import { linkStyles } from '@teambit/ui-foundation.ui.use-box.bottom-link';
|
|
6
|
-
import { LanesHost } from '@teambit/lanes.ui.models.lanes-model';
|
|
6
|
+
import type { LanesHost } from '@teambit/lanes.ui.models.lanes-model';
|
|
7
7
|
import { UseBoxDropdown } from '@teambit/ui-foundation.ui.use-box.dropdown';
|
|
8
8
|
import { Link as BaseLink } from '@teambit/base-react.navigation.link';
|
|
9
|
-
import { LaneId } from '@teambit/lane-id';
|
|
9
|
+
import type { LaneId } from '@teambit/lane-id';
|
|
10
10
|
import styles from './use-lanes-menu.module.scss';
|
|
11
11
|
|
|
12
12
|
// @todo - this will be fixed as part of the @teambit/base-react.navigation.link upgrade to latest
|
|
File without changes
|