easyeda 0.0.62 → 0.0.63
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.
|
@@ -2603,7 +2603,6 @@ import { createUseComponent } from "@tscircuit/core"
|
|
|
2603
2603
|
import type { CommonLayoutProps } from "@tscircuit/props"
|
|
2604
2604
|
|
|
2605
2605
|
const pinLabels = ${JSON.stringify(pinLabels, null, " ")} as const
|
|
2606
|
-
const pinNames = Object.values(pinLabels)
|
|
2607
2606
|
|
|
2608
2607
|
interface Props extends CommonLayoutProps {
|
|
2609
2608
|
name: string
|
|
@@ -2626,7 +2625,7 @@ export const ${componentName} = (props: Props) => {
|
|
|
2626
2625
|
)
|
|
2627
2626
|
}
|
|
2628
2627
|
|
|
2629
|
-
export const use${componentName} = createUseComponent(${componentName},
|
|
2628
|
+
export const use${componentName} = createUseComponent(${componentName}, pinLabels)
|
|
2630
2629
|
|
|
2631
2630
|
`.trim();
|
|
2632
2631
|
};
|
|
@@ -2661,7 +2660,10 @@ var convertBetterEasyToTsx = async ({
|
|
|
2661
2660
|
const sourcePorts = su_default(circuitJson).source_port.list();
|
|
2662
2661
|
const pinLabels = {};
|
|
2663
2662
|
for (const sourcePort of sourcePorts) {
|
|
2664
|
-
pinLabels[sourcePort.name] =
|
|
2663
|
+
pinLabels[sourcePort.name] = [
|
|
2664
|
+
sourcePort.name,
|
|
2665
|
+
...sourcePort.port_hints ?? []
|
|
2666
|
+
];
|
|
2665
2667
|
}
|
|
2666
2668
|
let modelObjUrl;
|
|
2667
2669
|
if (cad_component2.model_obj_url) {
|
|
@@ -2784,4 +2786,4 @@ export {
|
|
|
2784
2786
|
convertRawEasyToTsx,
|
|
2785
2787
|
convertEasyEdaJsonToVariousFormats
|
|
2786
2788
|
};
|
|
2787
|
-
//# sourceMappingURL=chunk-
|
|
2789
|
+
//# sourceMappingURL=chunk-P73EQY2M.js.map
|