easyeda 0.0.64 → 0.0.66
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.
|
@@ -2233,7 +2233,7 @@ var PinShapeOutputSchema = z62.object({
|
|
|
2233
2233
|
var parsePin = (pinString) => {
|
|
2234
2234
|
const parts = pinString.split("~");
|
|
2235
2235
|
const [, visibility, , pinNumber, x, y, rotation2, id] = parts;
|
|
2236
|
-
const nameMatch = pinString.match(/~(\w+)~start~/);
|
|
2236
|
+
const nameMatch = pinString.match(/~(\w+)~(start|end)~/);
|
|
2237
2237
|
const label = nameMatch ? nameMatch[1] : "";
|
|
2238
2238
|
const colorMatch = pinString.match(/#[0-9A-F]{6}/);
|
|
2239
2239
|
const labelColor = colorMatch ? colorMatch[0] : "";
|
|
@@ -2791,4 +2791,4 @@ export {
|
|
|
2791
2791
|
convertRawEasyToTsx,
|
|
2792
2792
|
convertEasyEdaJsonToVariousFormats
|
|
2793
2793
|
};
|
|
2794
|
-
//# sourceMappingURL=chunk-
|
|
2794
|
+
//# sourceMappingURL=chunk-TEFFSXN2.js.map
|