@tscircuit/pcb-viewer 1.11.345 → 1.11.346
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.js +5 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -13868,6 +13868,9 @@ var PcbGroupOverlay = ({
|
|
|
13868
13868
|
sourceGroups.map((group) => [group.source_group_id, group])
|
|
13869
13869
|
);
|
|
13870
13870
|
const visiblePcbGroups = pcbGroups.filter((group) => {
|
|
13871
|
+
if (group.name?.toLowerCase().includes("subpanel")) {
|
|
13872
|
+
return false;
|
|
13873
|
+
}
|
|
13871
13874
|
if (pcb_group_view_mode === "all") return true;
|
|
13872
13875
|
if (!group.source_group_id) return false;
|
|
13873
13876
|
const sourceGroup = sourceGroupById.get(group.source_group_id);
|
|
@@ -14191,7 +14194,7 @@ import { css as css3 } from "@emotion/css";
|
|
|
14191
14194
|
// package.json
|
|
14192
14195
|
var package_default = {
|
|
14193
14196
|
name: "@tscircuit/pcb-viewer",
|
|
14194
|
-
version: "1.11.
|
|
14197
|
+
version: "1.11.345",
|
|
14195
14198
|
main: "dist/index.js",
|
|
14196
14199
|
type: "module",
|
|
14197
14200
|
repository: "tscircuit/pcb-viewer",
|
|
@@ -14228,7 +14231,7 @@ var package_default = {
|
|
|
14228
14231
|
"react-cosmos-plugin-vite": "7.0.0-beta.0",
|
|
14229
14232
|
"react-dom": "19.1.0",
|
|
14230
14233
|
"react-use": "^17.4.0",
|
|
14231
|
-
tscircuit: "^0.0.
|
|
14234
|
+
tscircuit: "^0.0.1421",
|
|
14232
14235
|
tsup: "^8.0.2",
|
|
14233
14236
|
"type-fest": "^3.0.0",
|
|
14234
14237
|
typescript: "^5.4.4",
|