@teambit/workspace 1.0.107 → 1.0.109
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/preview/static/css/teambit.workspace/workspace-preview.115618a8.css +55 -0
- package/artifacts/preview/static/images/2f046646df38433e90d7.png +0 -0
- package/artifacts/preview/static/images/b40d450de296e275550f.png +0 -0
- package/artifacts/preview/static/images/cb67fb802479e2710016.png +0 -0
- package/artifacts/preview/teambit_workspace_workspace-preview.js +2 -0
- package/dist/aspects-merger.js +13 -22
- package/dist/aspects-merger.js.map +1 -1
- package/dist/bit-map.d.ts +1 -1
- package/dist/build-graph-from-fs.d.ts +2 -2
- package/dist/build-graph-from-fs.js +1 -2
- package/dist/build-graph-from-fs.js.map +1 -1
- package/dist/build-graph-ids-from-fs.js +1 -1
- package/dist/build-graph-ids-from-fs.js.map +1 -1
- package/dist/capsule.cmd.d.ts +2 -2
- package/dist/capsule.cmd.js +1 -2
- package/dist/capsule.cmd.js.map +1 -1
- package/dist/component-config-file/component-config-file.d.ts +2 -2
- package/dist/component-tree.widget.d.ts +2 -2
- package/dist/eject-conf.cmd.d.ts +2 -2
- package/dist/envs-subcommands/envs-replace.cmd.d.ts +1 -1
- package/dist/envs-subcommands/envs-set.cmd.d.ts +1 -1
- package/dist/envs-subcommands/envs-unset.cmd.d.ts +1 -1
- package/dist/envs-subcommands/envs-update.cmd.d.ts +1 -1
- package/dist/filter.d.ts +1 -1
- package/dist/filter.js +1 -1
- package/dist/filter.js.map +1 -1
- package/dist/merge-conflict-file.d.ts +1 -1
- package/dist/merge-conflict-file.js +1 -2
- package/dist/merge-conflict-file.js.map +1 -1
- package/dist/on-component-events.d.ts +6 -6
- package/dist/{preview-1703590665075.js → preview-1703698405864.js} +2 -2
- package/dist/scope-subcommands/scope-set.cmd.d.ts +1 -1
- package/dist/ui/workspace/use-workspace.d.ts +8 -8
- package/dist/ui/workspace/use-workspace.js +7 -18
- package/dist/ui/workspace/use-workspace.js.map +1 -1
- package/dist/ui/workspace/workspace-model.d.ts +3 -3
- package/dist/ui/workspace/workspace-overview/workspace-overview.d.ts +2 -2
- package/dist/ui/workspace/workspace-overview/workspace-overview.js +1 -2
- package/dist/ui/workspace/workspace-overview/workspace-overview.js.map +1 -1
- package/dist/ui/workspace/workspace-provider.d.ts +3 -3
- package/dist/ui/workspace/workspace.d.ts +3 -3
- package/dist/workspace-aspects-loader.d.ts +3 -3
- package/dist/workspace-aspects-loader.js +7 -11
- package/dist/workspace-aspects-loader.js.map +1 -1
- package/dist/workspace-component/comp-files.d.ts +3 -3
- package/dist/workspace-component/component-status.d.ts +3 -3
- package/dist/workspace-component/workspace-component-loader.d.ts +5 -5
- package/dist/workspace-component/workspace-component-loader.js +11 -12
- package/dist/workspace-component/workspace-component-loader.js.map +1 -1
- package/dist/workspace.composition.d.ts +2 -2
- package/dist/workspace.d.ts +6 -6
- package/dist/workspace.graphql.d.ts +2 -2
- package/dist/workspace.graphql.js +2 -4
- package/dist/workspace.graphql.js.map +1 -1
- package/dist/workspace.js +16 -23
- package/dist/workspace.js.map +1 -1
- package/dist/workspace.provider.d.ts +12 -12
- package/dist/workspace.provider.js +8 -11
- package/dist/workspace.provider.js.map +1 -1
- package/dist/workspace.ui.drawer.d.ts +1 -1
- package/dist/workspace.ui.drawer.js +5 -6
- package/dist/workspace.ui.drawer.js.map +1 -1
- package/dist/workspace.ui.runtime.d.ts +1 -1
- package/dist/workspace.ui.runtime.js +2 -8
- package/dist/workspace.ui.runtime.js.map +1 -1
- package/package.json +39 -46
- package/tsconfig.json +16 -21
- package/types/asset.d.ts +15 -3
package/tsconfig.json
CHANGED
|
@@ -1,38 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"lib": [
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"DOM.Iterable",
|
|
8
|
-
"ScriptHost"
|
|
4
|
+
"esnext",
|
|
5
|
+
"dom",
|
|
6
|
+
"dom.Iterable"
|
|
9
7
|
],
|
|
10
|
-
"target": "
|
|
11
|
-
"module": "
|
|
12
|
-
"jsx": "react",
|
|
13
|
-
"allowJs": true,
|
|
14
|
-
"composite": true,
|
|
8
|
+
"target": "es2020",
|
|
9
|
+
"module": "es2020",
|
|
10
|
+
"jsx": "react-jsx",
|
|
15
11
|
"declaration": true,
|
|
16
12
|
"sourceMap": true,
|
|
17
|
-
"skipLibCheck": true,
|
|
18
13
|
"experimentalDecorators": true,
|
|
19
|
-
"
|
|
14
|
+
"skipLibCheck": true,
|
|
20
15
|
"moduleResolution": "node",
|
|
21
16
|
"esModuleInterop": true,
|
|
22
|
-
"rootDir": ".",
|
|
23
17
|
"resolveJsonModule": true,
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"strictPropertyInitialization": false,
|
|
28
|
-
"strict": true,
|
|
29
|
-
"noImplicitAny": false,
|
|
30
|
-
"preserveConstEnums": true
|
|
18
|
+
"allowJs": true,
|
|
19
|
+
"outDir": "dist",
|
|
20
|
+
"emitDeclarationOnly": true
|
|
31
21
|
},
|
|
32
22
|
"exclude": [
|
|
23
|
+
"artifacts",
|
|
24
|
+
"public",
|
|
33
25
|
"dist",
|
|
26
|
+
"node_modules",
|
|
27
|
+
"package.json",
|
|
34
28
|
"esm.mjs",
|
|
35
|
-
"
|
|
29
|
+
"**/*.cjs",
|
|
30
|
+
"./dist"
|
|
36
31
|
],
|
|
37
32
|
"include": [
|
|
38
33
|
"**/*",
|
package/types/asset.d.ts
CHANGED
|
@@ -5,12 +5,12 @@ declare module '*.png' {
|
|
|
5
5
|
declare module '*.svg' {
|
|
6
6
|
import type { FunctionComponent, SVGProps } from 'react';
|
|
7
7
|
|
|
8
|
-
export const ReactComponent: FunctionComponent<
|
|
8
|
+
export const ReactComponent: FunctionComponent<
|
|
9
|
+
SVGProps<SVGSVGElement> & { title?: string }
|
|
10
|
+
>;
|
|
9
11
|
const src: string;
|
|
10
12
|
export default src;
|
|
11
13
|
}
|
|
12
|
-
|
|
13
|
-
// @TODO Gilad
|
|
14
14
|
declare module '*.jpg' {
|
|
15
15
|
const value: any;
|
|
16
16
|
export = value;
|
|
@@ -27,3 +27,15 @@ declare module '*.bmp' {
|
|
|
27
27
|
const value: any;
|
|
28
28
|
export = value;
|
|
29
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
|
+
}
|