@visactor/vseed 0.0.13 → 0.0.14
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/builder/builder/builder.d.ts +6 -0
- package/dist/dataReshape/constant.d.ts +1 -0
- package/dist/dataReshape/dataReshapeFor1D1M.d.ts +1 -0
- package/dist/dataReshape/dataReshapeFor2D1M.d.ts +1 -0
- package/dist/dataReshape/unfoldDimensions.d.ts +1 -1
- package/dist/index.cjs +76 -39
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +74 -40
- package/dist/index.js.map +1 -1
- package/dist/types/advancedVSeed.d.ts +2 -0
- package/dist/types/properties/datasetReshapeInfo/datasetReshapeInfo.d.ts +6 -0
- package/package.json +1 -1
@@ -28,6 +28,8 @@ export declare const zAdvancedVSeed: z.ZodObject<{
|
|
28
28
|
}, z.core.$strip>;
|
29
29
|
unfoldInfo: z.ZodObject<{
|
30
30
|
colorItems: z.ZodArray<z.ZodString>;
|
31
|
+
groupId: z.ZodString;
|
32
|
+
colorIdMap: z.ZodRecord<z.ZodString, z.ZodString>;
|
31
33
|
groupName: z.ZodString;
|
32
34
|
}, z.core.$strip>;
|
33
35
|
}, z.core.$strip>>;
|
@@ -7,7 +7,9 @@ export type FoldInfo = {
|
|
7
7
|
};
|
8
8
|
export type UnfoldInfo = {
|
9
9
|
groupName: string;
|
10
|
+
groupId: string;
|
10
11
|
colorItems: string[];
|
12
|
+
colorIdMap: Record<string, string>;
|
11
13
|
};
|
12
14
|
export declare const zFoldInfo: z.ZodObject<{
|
13
15
|
foldMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodUndefined]>>;
|
@@ -17,6 +19,8 @@ export declare const zFoldInfo: z.ZodObject<{
|
|
17
19
|
}, z.core.$strip>;
|
18
20
|
export declare const zUnfoldInfo: z.ZodObject<{
|
19
21
|
colorItems: z.ZodArray<z.ZodString>;
|
22
|
+
groupId: z.ZodString;
|
23
|
+
colorIdMap: z.ZodRecord<z.ZodString, z.ZodString>;
|
20
24
|
groupName: z.ZodString;
|
21
25
|
}, z.core.$strip>;
|
22
26
|
export declare const zDatasetReshapeInfo: z.ZodArray<z.ZodObject<{
|
@@ -29,6 +33,8 @@ export declare const zDatasetReshapeInfo: z.ZodArray<z.ZodObject<{
|
|
29
33
|
}, z.core.$strip>;
|
30
34
|
unfoldInfo: z.ZodObject<{
|
31
35
|
colorItems: z.ZodArray<z.ZodString>;
|
36
|
+
groupId: z.ZodString;
|
37
|
+
colorIdMap: z.ZodRecord<z.ZodString, z.ZodString>;
|
32
38
|
groupName: z.ZodString;
|
33
39
|
}, z.core.$strip>;
|
34
40
|
}, z.core.$strip>>;
|