@teambit/lanes 1.0.106 → 1.0.108
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/create-lane.ts +118 -0
- package/dist/create-lane.js +1 -1
- package/dist/create-lane.js.map +1 -1
- package/dist/lane.cmd.d.ts +15 -15
- package/dist/lane.cmd.js +3 -4
- package/dist/lane.cmd.js.map +1 -1
- package/dist/lanes.composition.d.ts +2 -2
- package/dist/lanes.graphql.js +8 -11
- package/dist/lanes.graphql.js.map +1 -1
- package/dist/lanes.main.runtime.d.ts +10 -19
- package/dist/lanes.main.runtime.js +45 -77
- package/dist/lanes.main.runtime.js.map +1 -1
- package/dist/lanes.spec.js +34 -43
- package/dist/lanes.spec.js.map +1 -1
- package/dist/lanes.ui.runtime.d.ts +14 -14
- package/dist/lanes.ui.runtime.js +8 -10
- package/dist/lanes.ui.runtime.js.map +1 -1
- package/dist/{preview-1703505948637.js → preview-1703647408454.js} +2 -2
- package/dist/switch-lanes.d.ts +1 -1
- package/dist/switch-lanes.js +1 -2
- package/dist/switch-lanes.js.map +1 -1
- package/index.ts +8 -0
- package/lane.cmd.ts +499 -0
- package/lanes.aspect.ts +7 -0
- package/lanes.create.route.ts +28 -0
- package/lanes.delete.route.ts +31 -0
- package/lanes.graphql.ts +290 -0
- package/lanes.main.runtime.ts +1188 -0
- package/lanes.restore.route.ts +28 -0
- package/lanes.spec.ts +201 -0
- package/package.json +31 -40
- package/switch-lanes.ts +152 -0
- package/switch.cmd.ts +100 -0
- package/tsconfig.json +16 -21
- package/types/asset.d.ts +15 -3
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
|
+
}
|