@teambit/compositions 1.0.228 → 1.0.229
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/artifacts/__bit_junit.xml +1 -1
- package/artifacts/preview/teambit_compositions_compositions-preview.js +1 -1
- package/artifacts/schema.json +353 -79
- package/dist/composition.d.ts +47 -0
- package/dist/composition.section.d.ts +28 -0
- package/dist/compositions.aspect.d.ts +3 -0
- package/dist/compositions.composition.d.ts +1 -0
- package/dist/compositions.d.ts +22 -0
- package/dist/compositions.graphql.d.ts +3 -0
- package/dist/compositions.main.runtime.d.ts +110 -0
- package/dist/compositions.preview-definition.d.ts +16 -0
- package/dist/compositions.preview.runtime.d.ts +22 -0
- package/dist/compositions.ui.runtime.d.ts +24 -0
- package/dist/index.d.ts +11 -0
- package/dist/{preview-1712805335812.js → preview-1712822929999.js} +2 -2
- package/dist/ui/composition-preview.d.ts +9 -0
- package/dist/ui/compositions-panel/compositions-panel.d.ts +27 -0
- package/dist/ui/compositions-panel/index.d.ts +0 -0
- package/dist/ui/compositions-panel-node/compositions-panel-node.d.ts +7 -0
- package/dist/ui/compositions-panel-node/index.d.ts +1 -0
- package/dist/ui/index.d.ts +1 -0
- package/dist/ui/use-compositions.d.ts +0 -0
- package/package.json +15 -15
- package/tsconfig.json +1 -40
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
export type CompositionProps = {
|
|
2
|
+
identifier: string;
|
|
3
|
+
filepath?: string;
|
|
4
|
+
displayName?: string;
|
|
5
|
+
};
|
|
6
|
+
export type CompositionBrowserMetadata = {
|
|
7
|
+
displayName?: string;
|
|
8
|
+
identifier: string;
|
|
9
|
+
};
|
|
10
|
+
export type CompositionBrowserMetadataObject = {
|
|
11
|
+
compositions: CompositionBrowserMetadata[];
|
|
12
|
+
};
|
|
13
|
+
export declare class Composition {
|
|
14
|
+
/**
|
|
15
|
+
* identifier of the composition
|
|
16
|
+
*/
|
|
17
|
+
readonly identifier: string;
|
|
18
|
+
/**
|
|
19
|
+
* file path in which the composition is contained.
|
|
20
|
+
*/
|
|
21
|
+
readonly filepath?: string | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* set explicit display name
|
|
24
|
+
*/
|
|
25
|
+
private _displayName?;
|
|
26
|
+
constructor(
|
|
27
|
+
/**
|
|
28
|
+
* identifier of the composition
|
|
29
|
+
*/
|
|
30
|
+
identifier: string,
|
|
31
|
+
/**
|
|
32
|
+
* file path in which the composition is contained.
|
|
33
|
+
*/
|
|
34
|
+
filepath?: string | undefined,
|
|
35
|
+
/**
|
|
36
|
+
* set explicit display name
|
|
37
|
+
*/
|
|
38
|
+
_displayName?: string | undefined);
|
|
39
|
+
get displayName(): string;
|
|
40
|
+
toObject(): {
|
|
41
|
+
identifier: string;
|
|
42
|
+
filepath: string | undefined;
|
|
43
|
+
displayName: string | undefined;
|
|
44
|
+
};
|
|
45
|
+
toBrowserMetaDataObject(): CompositionBrowserMetadata;
|
|
46
|
+
static fromArray(compositions: CompositionProps[]): Composition[];
|
|
47
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Section } from '@teambit/component';
|
|
2
|
+
import type { CompositionsUI, CompositionsMenuSlot, EmptyStateSlot } from './compositions.ui.runtime';
|
|
3
|
+
type Options = {
|
|
4
|
+
menuBarWidgetSlot: CompositionsMenuSlot;
|
|
5
|
+
};
|
|
6
|
+
export declare class CompositionsSection implements Section {
|
|
7
|
+
/**
|
|
8
|
+
* simulations ui extension.
|
|
9
|
+
*/
|
|
10
|
+
private compositions;
|
|
11
|
+
private options;
|
|
12
|
+
private emptyStateSlot;
|
|
13
|
+
constructor(
|
|
14
|
+
/**
|
|
15
|
+
* simulations ui extension.
|
|
16
|
+
*/
|
|
17
|
+
compositions: CompositionsUI, options: Options, emptyStateSlot: EmptyStateSlot);
|
|
18
|
+
navigationLink: {
|
|
19
|
+
href: string;
|
|
20
|
+
children: string;
|
|
21
|
+
};
|
|
22
|
+
route: {
|
|
23
|
+
path: string;
|
|
24
|
+
element: import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
};
|
|
26
|
+
order: number;
|
|
27
|
+
}
|
|
28
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Logo: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { ComponentModel } from '@teambit/component';
|
|
3
|
+
import { EmptyStateSlot } from './compositions.ui.runtime';
|
|
4
|
+
import { Composition } from './composition';
|
|
5
|
+
import type { CompositionsMenuSlot } from './compositions.ui.runtime';
|
|
6
|
+
import { ComponentCompositionProps } from './ui/composition-preview';
|
|
7
|
+
export type MenuBarWidget = {
|
|
8
|
+
location: 'start' | 'end';
|
|
9
|
+
content: ReactNode;
|
|
10
|
+
};
|
|
11
|
+
export type CompositionsProp = {
|
|
12
|
+
menuBarWidgets?: CompositionsMenuSlot;
|
|
13
|
+
emptyState?: EmptyStateSlot;
|
|
14
|
+
};
|
|
15
|
+
export declare function Compositions({ menuBarWidgets, emptyState }: CompositionsProp): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export type CompositionContentProps = {
|
|
17
|
+
component: ComponentModel;
|
|
18
|
+
selected?: Composition;
|
|
19
|
+
queryParams?: string | string[];
|
|
20
|
+
emptyState?: EmptyStateSlot;
|
|
21
|
+
} & ComponentCompositionProps;
|
|
22
|
+
export declare function CompositionContent({ component, selected, queryParams, emptyState, ...componentCompositionProps }: CompositionContentProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { AspectData, Component, ComponentMap, IComponent } from '@teambit/component';
|
|
2
|
+
import { ScopeMain } from '@teambit/scope';
|
|
3
|
+
import { DevFilesMain } from '@teambit/dev-files';
|
|
4
|
+
import { EnvsMain } from '@teambit/envs';
|
|
5
|
+
import { GraphqlMain } from '@teambit/graphql';
|
|
6
|
+
import { ComponentLoadOptions } from '@teambit/legacy/dist/consumer/component/component-loader';
|
|
7
|
+
import { AbstractVinyl } from '@teambit/legacy/dist/consumer/component/sources';
|
|
8
|
+
import { PreviewMain } from '@teambit/preview';
|
|
9
|
+
import { SchemaMain } from '@teambit/schema';
|
|
10
|
+
import { Workspace } from '@teambit/workspace';
|
|
11
|
+
import { Composition } from './composition';
|
|
12
|
+
export type CompositionsConfig = {
|
|
13
|
+
/**
|
|
14
|
+
* glob pattern to detect composition files. This includes all related files, like styles and jsons.
|
|
15
|
+
* @example ['/*.composition?(s).*']
|
|
16
|
+
*/
|
|
17
|
+
compositionFilePattern: string[];
|
|
18
|
+
/**
|
|
19
|
+
* glob pattern to select Preview files. this will only include files matched by compositionFilePattern.
|
|
20
|
+
* @example ['*.{t,j}s', '*.{t,j}sx']
|
|
21
|
+
*/
|
|
22
|
+
compositionPreviewFilePattern: string[];
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* the component documentation extension.
|
|
26
|
+
*/
|
|
27
|
+
export declare class CompositionsMain {
|
|
28
|
+
/**
|
|
29
|
+
* Glob pattern to select all composition files
|
|
30
|
+
*/
|
|
31
|
+
private compositionFilePattern;
|
|
32
|
+
/**
|
|
33
|
+
* Glob pattern to select composition preview files
|
|
34
|
+
*/
|
|
35
|
+
private previewFilePattern;
|
|
36
|
+
/**
|
|
37
|
+
* envs extension.
|
|
38
|
+
*/
|
|
39
|
+
private preview;
|
|
40
|
+
/**
|
|
41
|
+
* workspace extension.
|
|
42
|
+
*/
|
|
43
|
+
private workspace;
|
|
44
|
+
/**
|
|
45
|
+
* schema extension.
|
|
46
|
+
*/
|
|
47
|
+
private schema;
|
|
48
|
+
private devFiles;
|
|
49
|
+
private envs;
|
|
50
|
+
constructor(
|
|
51
|
+
/**
|
|
52
|
+
* Glob pattern to select all composition files
|
|
53
|
+
*/
|
|
54
|
+
compositionFilePattern: string[],
|
|
55
|
+
/**
|
|
56
|
+
* Glob pattern to select composition preview files
|
|
57
|
+
*/
|
|
58
|
+
previewFilePattern: string[],
|
|
59
|
+
/**
|
|
60
|
+
* envs extension.
|
|
61
|
+
*/
|
|
62
|
+
preview: PreviewMain,
|
|
63
|
+
/**
|
|
64
|
+
* workspace extension.
|
|
65
|
+
*/
|
|
66
|
+
workspace: Workspace,
|
|
67
|
+
/**
|
|
68
|
+
* schema extension.
|
|
69
|
+
*/
|
|
70
|
+
schema: SchemaMain, devFiles: DevFilesMain, envs: EnvsMain);
|
|
71
|
+
/**
|
|
72
|
+
* returns an array of doc file paths for a set of components.
|
|
73
|
+
*/
|
|
74
|
+
getPreviewFiles(components: Component[]): ComponentMap<AbstractVinyl[]>;
|
|
75
|
+
/**
|
|
76
|
+
* checks if a file matches the composition file pattern.
|
|
77
|
+
*/
|
|
78
|
+
isCompositionFile(filePath: string): boolean;
|
|
79
|
+
/**
|
|
80
|
+
* get component compositions.
|
|
81
|
+
*/
|
|
82
|
+
getCompositions(component: IComponent): Composition[];
|
|
83
|
+
/**
|
|
84
|
+
* read composition from the component source code.
|
|
85
|
+
*/
|
|
86
|
+
readCompositions(component: Component): Composition[];
|
|
87
|
+
getCompositionFilePattern(): string[];
|
|
88
|
+
getComponentDevPatterns(component: Component): {
|
|
89
|
+
name: string;
|
|
90
|
+
pattern: string[];
|
|
91
|
+
};
|
|
92
|
+
getDevPatternToRegister(): (component: Component) => {
|
|
93
|
+
name: string;
|
|
94
|
+
pattern: string[];
|
|
95
|
+
};
|
|
96
|
+
onComponentLoad(component: Component, loadOpts?: ComponentLoadOptions): Promise<AspectData | undefined>;
|
|
97
|
+
private computeCompositions;
|
|
98
|
+
static defaultConfig: CompositionsConfig;
|
|
99
|
+
static runtime: import("@teambit/harmony").RuntimeDefinition;
|
|
100
|
+
static dependencies: import("@teambit/harmony").Aspect[];
|
|
101
|
+
static provider([preview, graphql, workspace, schema, devFiles, envs, scope]: [
|
|
102
|
+
PreviewMain,
|
|
103
|
+
GraphqlMain,
|
|
104
|
+
Workspace,
|
|
105
|
+
SchemaMain,
|
|
106
|
+
DevFilesMain,
|
|
107
|
+
EnvsMain,
|
|
108
|
+
ScopeMain
|
|
109
|
+
], config: CompositionsConfig): Promise<CompositionsMain>;
|
|
110
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Component, ComponentMap } from '@teambit/component';
|
|
2
|
+
import type { ExecutionContext, Environment } from '@teambit/envs';
|
|
3
|
+
import { PreviewDefinition } from '@teambit/preview';
|
|
4
|
+
import { AbstractVinyl } from '@teambit/legacy/dist/consumer/component/sources';
|
|
5
|
+
import { CompositionsMain } from './compositions.main.runtime';
|
|
6
|
+
import { CompositionBrowserMetadataObject } from './composition';
|
|
7
|
+
export declare class CompositionPreviewDefinition implements PreviewDefinition {
|
|
8
|
+
private compositions;
|
|
9
|
+
readonly prefix = "compositions";
|
|
10
|
+
readonly includePeers = true;
|
|
11
|
+
constructor(compositions: CompositionsMain);
|
|
12
|
+
renderTemplatePath(context: ExecutionContext): Promise<string | undefined>;
|
|
13
|
+
renderTemplatePathByEnv(env: Environment): Promise<string | undefined>;
|
|
14
|
+
getModuleMap(components: Component[]): Promise<ComponentMap<AbstractVinyl[]>>;
|
|
15
|
+
getMetadata(component: Component): Promise<CompositionBrowserMetadataObject>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ComponentID } from '@teambit/component-id';
|
|
2
|
+
import { PreviewPreview, RenderingContext, PreviewModule } from '@teambit/preview';
|
|
3
|
+
import { CompositionBrowserMetadataObject } from './composition';
|
|
4
|
+
export declare class CompositionsPreview {
|
|
5
|
+
/**
|
|
6
|
+
* preview extension.
|
|
7
|
+
*/
|
|
8
|
+
private preview;
|
|
9
|
+
constructor(
|
|
10
|
+
/**
|
|
11
|
+
* preview extension.
|
|
12
|
+
*/
|
|
13
|
+
preview: PreviewPreview);
|
|
14
|
+
render(componentId: ComponentID, envId: string, modules: PreviewModule, otherPreviewDefs: any, context: RenderingContext): void;
|
|
15
|
+
/** gets relevant information for this preview to render */
|
|
16
|
+
selectPreviewModel(componentFullName: string, previewModule: PreviewModule): any;
|
|
17
|
+
getMetadata(componentFullName: string, previewModule: PreviewModule): CompositionBrowserMetadataObject | undefined;
|
|
18
|
+
private getActiveComposition;
|
|
19
|
+
static runtime: import("@teambit/harmony").RuntimeDefinition;
|
|
20
|
+
static dependencies: import("@teambit/harmony").Aspect[];
|
|
21
|
+
static provider([preview]: [PreviewPreview]): Promise<CompositionsPreview>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { ReactNode } from 'react';
|
|
2
|
+
import { ComponentType } from 'react';
|
|
3
|
+
import { SlotRegistry } from '@teambit/harmony';
|
|
4
|
+
import { ComponentUI } from '@teambit/component';
|
|
5
|
+
import { ComponentCompareUI } from '@teambit/component-compare';
|
|
6
|
+
import { MenuBarWidget } from './compositions';
|
|
7
|
+
export type CompositionsMenuSlot = SlotRegistry<MenuBarWidget[]>;
|
|
8
|
+
export type EmptyStateSlot = SlotRegistry<ComponentType>;
|
|
9
|
+
export declare class CompositionsUI {
|
|
10
|
+
private menuBarWidgetSlot;
|
|
11
|
+
private emptyStateSlot;
|
|
12
|
+
constructor(menuBarWidgetSlot: CompositionsMenuSlot, emptyStateSlot: EmptyStateSlot);
|
|
13
|
+
/**
|
|
14
|
+
* register a new tester empty state. this allows to register a different empty state from each environment for example.
|
|
15
|
+
*/
|
|
16
|
+
registerEmptyState(emptyStateComponent: ComponentType): this;
|
|
17
|
+
registerMenuWidget(...widget: MenuBarWidget[]): void;
|
|
18
|
+
getCompositionsCompare: () => import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
static dependencies: import("@teambit/harmony").Aspect[];
|
|
20
|
+
static runtime: import("@teambit/harmony").RuntimeDefinition;
|
|
21
|
+
static slots: ((registerFn: () => string) => SlotRegistry<ReactNode>)[];
|
|
22
|
+
static provider([component, componentCompare]: [ComponentUI, ComponentCompareUI], config: {}, [compositionMenuSlot, emptyStateSlot]: [CompositionsMenuSlot, EmptyStateSlot]): Promise<CompositionsUI>;
|
|
23
|
+
}
|
|
24
|
+
export default CompositionsUI;
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CompositionsAspect } from './compositions.aspect';
|
|
2
|
+
export { CompositionsAspect };
|
|
3
|
+
export type { CompositionsMain } from './compositions.main.runtime';
|
|
4
|
+
export type { CompositionsUI, CompositionsMenuSlot, EmptyStateSlot } from './compositions.ui.runtime';
|
|
5
|
+
export type { CompositionProps } from './composition';
|
|
6
|
+
export { Composition } from './composition';
|
|
7
|
+
export type { CompositionContentProps } from './compositions';
|
|
8
|
+
export { CompositionContent } from './compositions';
|
|
9
|
+
export type { CompositionsPreview } from './compositions.preview.runtime';
|
|
10
|
+
export { ComponentComposition } from './ui';
|
|
11
|
+
export default CompositionsAspect;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.compositions_compositions@1.0.
|
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.compositions_compositions@1.0.
|
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.compositions_compositions@1.0.229/dist/compositions.composition.js';
|
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.compositions_compositions@1.0.229/dist/compositions.docs.mdx';
|
|
3
3
|
|
|
4
4
|
export const compositions = [compositions_0];
|
|
5
5
|
export const overview = [overview_0];
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ComponentPreviewProps } from '@teambit/preview.ui.component-preview';
|
|
2
|
+
import { Composition } from '../composition';
|
|
3
|
+
export type ComponentCompositionProps = {
|
|
4
|
+
/**
|
|
5
|
+
* composition to use for component rendering.
|
|
6
|
+
*/
|
|
7
|
+
composition?: Composition;
|
|
8
|
+
} & ComponentPreviewProps;
|
|
9
|
+
export declare function ComponentComposition({ composition, component, queryParams, ...rest }: ComponentCompositionProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Composition } from '../../composition';
|
|
3
|
+
export type CompositionsPanelProps = {
|
|
4
|
+
/**
|
|
5
|
+
* list of compositions
|
|
6
|
+
*/
|
|
7
|
+
compositions: Composition[];
|
|
8
|
+
/**
|
|
9
|
+
* select composition to display
|
|
10
|
+
*/
|
|
11
|
+
onSelectComposition: (composition: Composition) => void;
|
|
12
|
+
/**
|
|
13
|
+
* the currently active composition
|
|
14
|
+
*/
|
|
15
|
+
active?: Composition;
|
|
16
|
+
/**
|
|
17
|
+
* the url to the base composition. doesntc contain the current composition params
|
|
18
|
+
*/
|
|
19
|
+
url: string;
|
|
20
|
+
/**
|
|
21
|
+
* checks if a component is using the new preview api. if false, doesnt scale to support new preview
|
|
22
|
+
*/
|
|
23
|
+
isScaling?: boolean;
|
|
24
|
+
includesEnvTemplate?: boolean;
|
|
25
|
+
useNameParam?: boolean;
|
|
26
|
+
} & React.HTMLAttributes<HTMLUListElement>;
|
|
27
|
+
export declare function CompositionsPanel({ url, compositions, isScaling, onSelectComposition: onSelect, active, includesEnvTemplate, useNameParam, className, ...rest }: CompositionsPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
File without changes
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export type CompositionsPanelNodeProps = {
|
|
3
|
+
name: string;
|
|
4
|
+
onClick: (event: React.MouseEvent<HTMLAnchorElement>) => void;
|
|
5
|
+
isActive: boolean;
|
|
6
|
+
} & React.HTMLAttributes<HTMLLIElement>;
|
|
7
|
+
export declare function CompositionsPanelNode({ name, onClick, isActive, ...rest }: CompositionsPanelNodeProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './compositions-panel-node';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ComponentComposition } from './composition-preview';
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/compositions",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.229",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/compositions/compositions",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.compositions",
|
|
8
8
|
"name": "compositions",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.229"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"graphql-tag": "2.12.1",
|
|
@@ -34,23 +34,23 @@
|
|
|
34
34
|
"@teambit/compositions.ui.composition-compare": "0.0.255",
|
|
35
35
|
"@teambit/evangelist.elements.icon": "1.0.2",
|
|
36
36
|
"@teambit/ui-foundation.ui.menu-widget-icon": "0.0.502",
|
|
37
|
-
"@teambit/component": "1.0.
|
|
37
|
+
"@teambit/component": "1.0.229",
|
|
38
38
|
"@teambit/compositions.model.composition-id": "0.0.502",
|
|
39
|
-
"@teambit/graphql": "1.0.
|
|
40
|
-
"@teambit/cli": "0.0.
|
|
41
|
-
"@teambit/dev-files": "1.0.
|
|
42
|
-
"@teambit/envs": "1.0.
|
|
43
|
-
"@teambit/preview": "1.0.
|
|
44
|
-
"@teambit/schema": "1.0.
|
|
45
|
-
"@teambit/scope": "1.0.
|
|
39
|
+
"@teambit/graphql": "1.0.229",
|
|
40
|
+
"@teambit/cli": "0.0.862",
|
|
41
|
+
"@teambit/dev-files": "1.0.229",
|
|
42
|
+
"@teambit/envs": "1.0.229",
|
|
43
|
+
"@teambit/preview": "1.0.229",
|
|
44
|
+
"@teambit/schema": "1.0.229",
|
|
45
|
+
"@teambit/scope": "1.0.229",
|
|
46
46
|
"@teambit/toolbox.path.match-patterns": "0.0.15",
|
|
47
|
-
"@teambit/workspace": "1.0.
|
|
47
|
+
"@teambit/workspace": "1.0.229",
|
|
48
48
|
"@teambit/docs.ui.queries.get-docs": "0.0.508",
|
|
49
|
-
"@teambit/panels": "0.0.
|
|
49
|
+
"@teambit/panels": "0.0.864",
|
|
50
50
|
"@teambit/preview.ui.component-preview": "1.0.5",
|
|
51
51
|
"@teambit/ui-foundation.ui.buttons.collapser": "0.0.219",
|
|
52
|
-
"@teambit/component-compare": "1.0.
|
|
53
|
-
"@teambit/ui": "1.0.
|
|
52
|
+
"@teambit/component-compare": "1.0.229",
|
|
53
|
+
"@teambit/ui": "1.0.229"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/lodash": "4.14.165",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@types/mocha": "9.1.0",
|
|
60
60
|
"chai": "4.3.0",
|
|
61
61
|
"@teambit/component-id": "1.2.0",
|
|
62
|
-
"@teambit/harmony.envs.core-aspect-env": "0.0.
|
|
62
|
+
"@teambit/harmony.envs.core-aspect-env": "0.0.33",
|
|
63
63
|
"@teambit/compositions.aspect-docs.compositions": "0.0.167"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
package/tsconfig.json
CHANGED
|
@@ -20,8 +20,7 @@
|
|
|
20
20
|
"emitDeclarationOnly": true,
|
|
21
21
|
"strict": true,
|
|
22
22
|
"strictPropertyInitialization": false,
|
|
23
|
-
"noImplicitAny": false
|
|
24
|
-
"composite": true
|
|
23
|
+
"noImplicitAny": false
|
|
25
24
|
},
|
|
26
25
|
"exclude": [
|
|
27
26
|
"artifacts",
|
|
@@ -36,43 +35,5 @@
|
|
|
36
35
|
"include": [
|
|
37
36
|
"**/*",
|
|
38
37
|
"**/*.json"
|
|
39
|
-
],
|
|
40
|
-
"references": [
|
|
41
|
-
{
|
|
42
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component@1.0.228"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_graphql@1.0.228"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.861"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_dev-files@1.0.228"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.envs_envs@1.0.228"
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.preview_preview@1.0.228"
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.semantics_schema@1.0.228"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.scope_scope@1.0.228"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.workspace_workspace@1.0.228"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_panels@0.0.863"
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component-compare@1.0.228"
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@1.0.228"
|
|
76
|
-
}
|
|
77
38
|
]
|
|
78
39
|
}
|