@teambit/lanes.ui.lane-overview 0.0.222 → 0.0.223
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { EmptyComponentGalleryProps } from '@teambit/ui-foundation.ui.empty-component-gallery';
|
|
3
|
-
export
|
|
3
|
+
export type EmptyLaneOverviewProps = {} & EmptyComponentGalleryProps;
|
|
4
4
|
/**
|
|
5
5
|
* A component to show when the scope is empty
|
|
6
6
|
*/
|
package/dist/lane-overview.d.ts
CHANGED
|
@@ -3,10 +3,10 @@ import { LaneModel, LanesModel, LanesHost } from '@teambit/lanes.ui.models.lanes
|
|
|
3
3
|
import { RouteSlot } from '@teambit/ui-foundation.ui.react-router.slot-router';
|
|
4
4
|
import { SlotRegistry } from '@teambit/harmony';
|
|
5
5
|
import { ComponentModel } from '@teambit/component';
|
|
6
|
-
import { ComponentCardPluginType, PluginProps } from '@teambit/explorer.ui.component-card';
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
6
|
+
import type { ComponentCardPluginType, PluginProps } from '@teambit/explorer.ui.component-card';
|
|
7
|
+
export type LaneOverviewLine = ComponentType;
|
|
8
|
+
export type LaneOverviewLineSlot = SlotRegistry<LaneOverviewLine[]>;
|
|
9
|
+
export type LaneOverviewProps = {
|
|
10
10
|
routeSlot: RouteSlot;
|
|
11
11
|
overviewSlot?: LaneOverviewLineSlot;
|
|
12
12
|
host: LanesHost;
|
package/lane-overview.tsx
CHANGED
|
@@ -13,7 +13,7 @@ import { Tooltip } from '@teambit/design.ui.tooltip';
|
|
|
13
13
|
import { ComponentID } from '@teambit/component-id';
|
|
14
14
|
import { ComponentModel } from '@teambit/component';
|
|
15
15
|
import { ScopeID } from '@teambit/scopes.scope-id';
|
|
16
|
-
import { ComponentCardPluginType, PluginProps } from '@teambit/explorer.ui.component-card';
|
|
16
|
+
import type { ComponentCardPluginType, PluginProps } from '@teambit/explorer.ui.component-card';
|
|
17
17
|
import { WorkspaceComponentCard } from '@teambit/workspace.ui.workspace-component-card';
|
|
18
18
|
import { LaneDetails } from '@teambit/lanes.ui.lane-details';
|
|
19
19
|
import { EmptyLaneOverview } from './empty-lane-overview';
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/lanes.ui.lane-overview",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.223",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/lanes/ui/lane-overview",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.lanes",
|
|
8
8
|
"name": "ui/lane-overview",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.223"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"lodash.flatten": "4.4.0",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@teambit/lanes.hooks.use-lanes": "0.0.262",
|
|
26
26
|
"@teambit/lanes.ui.models.lanes-model": "0.0.213",
|
|
27
27
|
"@teambit/preview.ui.preview-placeholder": "0.0.514",
|
|
28
|
-
"@teambit/workspace.ui.workspace-component-card": "0.0.
|
|
28
|
+
"@teambit/workspace.ui.workspace-component-card": "0.0.522"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/react": "^17.0.8",
|
|
File without changes
|