@tscircuit/props 0.0.107 → 0.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/dist/index.d.ts +6 -0
- package/dist/index.js +371 -472
- package/dist/index.js.map +1 -1
- package/lib/components/trace.ts +1 -0
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -6200,6 +6200,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6200
6200
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6201
6201
|
} | undefined;
|
|
6202
6202
|
}>, "many">>;
|
|
6203
|
+
schDisplayLabel: z.ZodOptional<z.ZodString>;
|
|
6203
6204
|
}, {
|
|
6204
6205
|
path: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodType<{
|
|
6205
6206
|
getPortSelector: () => string;
|
|
@@ -6223,6 +6224,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6223
6224
|
via?: boolean | undefined;
|
|
6224
6225
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
6225
6226
|
}[] | undefined;
|
|
6227
|
+
schDisplayLabel?: string | undefined;
|
|
6226
6228
|
}, {
|
|
6227
6229
|
path: (string | {
|
|
6228
6230
|
getPortSelector: () => string;
|
|
@@ -6242,6 +6244,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6242
6244
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6243
6245
|
} | undefined;
|
|
6244
6246
|
}[] | undefined;
|
|
6247
|
+
schDisplayLabel?: string | undefined;
|
|
6245
6248
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6246
6249
|
key: z.ZodOptional<z.ZodString>;
|
|
6247
6250
|
thickness: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6284,6 +6287,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6284
6287
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6285
6288
|
} | undefined;
|
|
6286
6289
|
}>, "many">>;
|
|
6290
|
+
schDisplayLabel: z.ZodOptional<z.ZodString>;
|
|
6287
6291
|
}, {
|
|
6288
6292
|
from: z.ZodUnion<[z.ZodString, z.ZodType<{
|
|
6289
6293
|
getPortSelector: () => string;
|
|
@@ -6315,6 +6319,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6315
6319
|
via?: boolean | undefined;
|
|
6316
6320
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
6317
6321
|
}[] | undefined;
|
|
6322
|
+
schDisplayLabel?: string | undefined;
|
|
6318
6323
|
}, {
|
|
6319
6324
|
from: string | {
|
|
6320
6325
|
getPortSelector: () => string;
|
|
@@ -6337,6 +6342,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6337
6342
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6338
6343
|
} | undefined;
|
|
6339
6344
|
}[] | undefined;
|
|
6345
|
+
schDisplayLabel?: string | undefined;
|
|
6340
6346
|
}>]>;
|
|
6341
6347
|
type TraceProps = z.input<typeof traceProps>;
|
|
6342
6348
|
|