schematic-symbols 0.0.175 → 0.0.177

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 CHANGED
@@ -293,14 +293,14 @@ var rotateRightFacingSymbol = (symbol11, opts) => {
293
293
  ...applyToPoint(transform2, port)
294
294
  })
295
295
  );
296
- const bounds100 = getBoundsOfPrimitives(rotatedPrimitives);
296
+ const bounds110 = getBoundsOfPrimitives(rotatedPrimitives);
297
297
  return {
298
298
  primitives: rotatedPrimitives,
299
299
  center,
300
300
  ports: rotatedPorts,
301
301
  size: {
302
- width: bounds100.maxX - bounds100.minX,
303
- height: bounds100.maxY - bounds100.minY
302
+ width: bounds110.maxX - bounds110.minX,
303
+ height: bounds110.maxY - bounds110.minY
304
304
  },
305
305
  ...overrides
306
306
  };
@@ -348,10 +348,10 @@ var SymbolModifier = class {
348
348
  return this;
349
349
  }
350
350
  computeSize() {
351
- const bounds100 = getBoundsOfPrimitives(this.symbol.primitives);
351
+ const bounds110 = getBoundsOfPrimitives(this.symbol.primitives);
352
352
  return {
353
- width: bounds100.maxX - bounds100.minX,
354
- height: bounds100.maxY - bounds100.minY
353
+ width: bounds110.maxX - bounds110.minX,
354
+ height: bounds110.maxY - bounds110.minY
355
355
  };
356
356
  }
357
357
  build() {
@@ -1251,10 +1251,10 @@ var backward_diode_up_default = rotated;
1251
1251
  function defineSymbol(symbol11) {
1252
1252
  let size = symbol11.size;
1253
1253
  if (!size) {
1254
- const bounds100 = getBoundsOfPrimitives(symbol11.primitives);
1254
+ const bounds110 = getBoundsOfPrimitives(symbol11.primitives);
1255
1255
  size = {
1256
- width: bounds100.maxX - bounds100.minX,
1257
- height: bounds100.maxY - bounds100.minY
1256
+ width: bounds110.maxX - bounds110.minX,
1257
+ height: bounds110.maxY - bounds110.minY
1258
1258
  };
1259
1259
  }
1260
1260
  return { ...symbol11, size };
@@ -4135,11 +4135,119 @@ var constant_current_diode_default = {
4135
4135
  }
4136
4136
  };
4137
4137
 
4138
+ // symbols/constant_current_diode_down.ts
4139
+ var { paths: paths32, texts: texts32, bounds: bounds32, refblocks: refblocks32, circles: circles32 } = constant_current_diode_default;
4140
+ var constant_current_diode_down_default = modifySymbol({
4141
+ primitives: [
4142
+ ...Object.values(paths32),
4143
+ ...Object.values(circles32),
4144
+ {
4145
+ type: "text",
4146
+ text: "{REF}",
4147
+ x: -0.15,
4148
+ y: 0.3894553499999995
4149
+ },
4150
+ {
4151
+ type: "text",
4152
+ text: "{VAL}",
4153
+ x: 0.15,
4154
+ y: 0.3894553499999995
4155
+ }
4156
+ ],
4157
+ ports: [
4158
+ { ...refblocks32.left1, labels: ["1"] },
4159
+ { ...refblocks32.right1, labels: ["2"] }
4160
+ ],
4161
+ size: { width: bounds32.width, height: bounds32.height },
4162
+ center: { x: bounds32.centerX, y: bounds32.centerY }
4163
+ }).rotateRightFacingSymbol("down").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
4164
+
4138
4165
  // symbols/constant_current_diode_horz.ts
4139
4166
  var constant_current_diode_horz_default = modifySymbol(constant_current_diode_default).changeTextAnchor("{VAL}", "middle_top").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_bottom").build();
4140
4167
 
4168
+ // symbols/constant_current_diode_left.ts
4169
+ var { paths: paths33, texts: texts33, bounds: bounds33, refblocks: refblocks33, circles: circles33 } = constant_current_diode_default;
4170
+ var constant_current_diode_left_default = modifySymbol({
4171
+ primitives: [
4172
+ ...Object.values(paths33),
4173
+ ...Object.values(circles33),
4174
+ {
4175
+ type: "text",
4176
+ text: "{REF}",
4177
+ x: -0,
4178
+ y: -0.2894553499999995
4179
+ },
4180
+ {
4181
+ type: "text",
4182
+ text: "{VAL}",
4183
+ x: 0,
4184
+ y: 0.3894553499999995
4185
+ }
4186
+ ],
4187
+ ports: [
4188
+ { ...refblocks33.left1, labels: ["1"] },
4189
+ { ...refblocks33.right1, labels: ["2"] }
4190
+ ],
4191
+ size: { width: bounds33.width, height: bounds33.height },
4192
+ center: { x: bounds33.centerX, y: bounds33.centerY }
4193
+ }).changeTextAnchor("{VAL}", "middle_bottom").rotateRightFacingSymbol("left").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_bottom").build();
4194
+
4195
+ // symbols/constant_current_diode_right.ts
4196
+ var constant_current_diode_right_default = modifySymbol(constant_current_diode_default).changeTextAnchor("{VAL}", "middle_top").labelPort("left1", ["1", "neg"]).labelPort("right1", ["2", "pos"]).changeTextAnchor("{REF}", "middle_bottom").build();
4197
+
4198
+ // symbols/constant_current_diode_up.ts
4199
+ var { paths: paths34, texts: texts34, bounds: bounds34, refblocks: refblocks34, circles: circles34 } = constant_current_diode_default;
4200
+ var constant_current_diode_up_default = modifySymbol({
4201
+ primitives: [
4202
+ ...Object.values(paths34),
4203
+ ...Object.values(circles34),
4204
+ {
4205
+ type: "text",
4206
+ text: "{REF}",
4207
+ x: 0.15,
4208
+ y: -0.2894553499999995
4209
+ },
4210
+ {
4211
+ type: "text",
4212
+ text: "{VAL}",
4213
+ x: -0.15,
4214
+ y: -0.2894553499999995
4215
+ }
4216
+ ],
4217
+ ports: [
4218
+ { ...refblocks34.left1, labels: ["1"] },
4219
+ { ...refblocks34.right1, labels: ["2"] }
4220
+ ],
4221
+ size: { width: bounds34.width, height: bounds34.height },
4222
+ center: { x: bounds34.centerX, y: bounds34.centerY }
4223
+ }).rotateRightFacingSymbol("up").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
4224
+
4141
4225
  // symbols/constant_current_diode_vert.ts
4142
- var constant_current_diode_vert_default = modifySymbol(constant_current_diode_default).rotateRightFacingSymbol("down").changeTextAnchor("{VAL}", "middle_right").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_left").build();
4226
+ var { paths: paths35, texts: texts35, bounds: bounds35, refblocks: refblocks35, circles: circles35 } = constant_current_diode_default;
4227
+ var constant_current_diode_vert_default = modifySymbol({
4228
+ primitives: [
4229
+ ...Object.values(paths35),
4230
+ ...Object.values(circles35),
4231
+ {
4232
+ type: "text",
4233
+ text: "{REF}",
4234
+ x: 0.15,
4235
+ y: -0.2894553499999995
4236
+ },
4237
+ {
4238
+ type: "text",
4239
+ text: "{VAL}",
4240
+ x: -0.15,
4241
+ y: -0.2894553499999995
4242
+ }
4243
+ ],
4244
+ ports: [
4245
+ { ...refblocks35.left1, labels: ["1"] },
4246
+ { ...refblocks35.right1, labels: ["2"] }
4247
+ ],
4248
+ size: { width: bounds35.width, height: bounds35.height },
4249
+ center: { x: bounds35.centerX, y: bounds35.centerY }
4250
+ }).rotateRightFacingSymbol("up").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
4143
4251
 
4144
4252
  // assets/generated/crystal_4pin.json
4145
4253
  var crystal_4pin_default = {
@@ -4439,11 +4547,11 @@ var crystal_4pin_default = {
4439
4547
  };
4440
4548
 
4441
4549
  // symbols/crystal_4pin_down.ts
4442
- var { paths: paths32, texts: texts32, bounds: bounds32, refblocks: refblocks32, circles: circles32 } = crystal_4pin_default;
4550
+ var { paths: paths36, texts: texts36, bounds: bounds36, refblocks: refblocks36, circles: circles36 } = crystal_4pin_default;
4443
4551
  var crystal_4pin_down_default = modifySymbol({
4444
4552
  primitives: [
4445
- ...Object.values(paths32),
4446
- ...Object.values(circles32),
4553
+ ...Object.values(paths36),
4554
+ ...Object.values(circles36),
4447
4555
  {
4448
4556
  type: "text",
4449
4557
  text: "{REF}",
@@ -4458,17 +4566,17 @@ var crystal_4pin_down_default = modifySymbol({
4458
4566
  }
4459
4567
  ],
4460
4568
  ports: [
4461
- { ...refblocks32.left1, labels: ["1"] },
4569
+ { ...refblocks36.left1, labels: ["1"] },
4462
4570
  // TODO add more "standard" labels
4463
- { ...refblocks32.right1, labels: ["3"] },
4571
+ { ...refblocks36.right1, labels: ["3"] },
4464
4572
  // TODO add more "standard" labels
4465
- { ...refblocks32.bottom1, labels: ["4"] },
4573
+ { ...refblocks36.bottom1, labels: ["4"] },
4466
4574
  // TODO add more "standard" labels
4467
- { ...refblocks32.top1, labels: ["2"] }
4575
+ { ...refblocks36.top1, labels: ["2"] }
4468
4576
  // TODO add more "standard" labels
4469
4577
  ],
4470
- size: { width: bounds32.width, height: bounds32.height },
4471
- center: { x: bounds32.centerX, y: bounds32.centerY }
4578
+ size: { width: bounds36.width, height: bounds36.height },
4579
+ center: { x: bounds36.centerX, y: bounds36.centerY }
4472
4580
  }).rotateRightFacingSymbol("down").changeTextAnchor("{REF}", "bottom_left").changeTextAnchor("{VAL}", "top_left").build();
4473
4581
 
4474
4582
  // symbols/crystal_4pin_left.ts
@@ -4478,11 +4586,11 @@ var crystal_4pin_left_default = modifySymbol(crystal_4pin_default).labelPort("to
4478
4586
  var crystal_4pin_right_default = modifySymbol(crystal_4pin_default).labelPort("top1", ["2", "gnd1"]).labelPort("bottom1", ["4", "gnd2"]).labelPort("left1", ["1"]).labelPort("right1", ["3"]).changeTextAnchor("{REF}", "bottom_left").changeTextAnchor("{VAL}", "top_left").build();
4479
4587
 
4480
4588
  // symbols/crystal_4pin_up.ts
4481
- var { paths: paths33, texts: texts33, bounds: bounds33, refblocks: refblocks33, circles: circles33 } = crystal_4pin_default;
4589
+ var { paths: paths37, texts: texts37, bounds: bounds37, refblocks: refblocks37, circles: circles37 } = crystal_4pin_default;
4482
4590
  var crystal_4pin_up_default = modifySymbol({
4483
4591
  primitives: [
4484
- ...Object.values(paths33),
4485
- ...Object.values(circles33),
4592
+ ...Object.values(paths37),
4593
+ ...Object.values(circles37),
4486
4594
  {
4487
4595
  type: "text",
4488
4596
  text: "{VAL}",
@@ -4497,17 +4605,17 @@ var crystal_4pin_up_default = modifySymbol({
4497
4605
  }
4498
4606
  ],
4499
4607
  ports: [
4500
- { ...refblocks33.left1, labels: ["1"] },
4608
+ { ...refblocks37.left1, labels: ["1"] },
4501
4609
  // TODO add more "standard" labels
4502
- { ...refblocks33.right1, labels: ["3"] },
4610
+ { ...refblocks37.right1, labels: ["3"] },
4503
4611
  // TODO add more "standard" labels
4504
- { ...refblocks33.bottom1, labels: ["4"] },
4612
+ { ...refblocks37.bottom1, labels: ["4"] },
4505
4613
  // TODO add more "standard" labels
4506
- { ...refblocks33.top1, labels: ["2"] }
4614
+ { ...refblocks37.top1, labels: ["2"] }
4507
4615
  // TODO add more "standard" labels
4508
4616
  ],
4509
- size: { width: bounds33.width, height: bounds33.height },
4510
- center: { x: bounds33.centerX, y: bounds33.centerY }
4617
+ size: { width: bounds37.width, height: bounds37.height },
4618
+ center: { x: bounds37.centerX, y: bounds37.centerY }
4511
4619
  }).rotateRightFacingSymbol("up").changeTextAnchor("{REF}", "bottom_left").changeTextAnchor("{VAL}", "top_left").build();
4512
4620
 
4513
4621
  // assets/generated/crystal.json
@@ -4672,11 +4780,11 @@ var crystal_default = {
4672
4780
  };
4673
4781
 
4674
4782
  // symbols/crystal_down.ts
4675
- var { paths: paths34, texts: texts34, bounds: bounds34, refblocks: refblocks34, circles: circles34 } = crystal_default;
4783
+ var { paths: paths38, texts: texts38, bounds: bounds38, refblocks: refblocks38, circles: circles38 } = crystal_default;
4676
4784
  var crystal_down_default = modifySymbol({
4677
4785
  primitives: [
4678
- ...Object.values(paths34),
4679
- ...Object.values(circles34),
4786
+ ...Object.values(paths38),
4787
+ ...Object.values(circles38),
4680
4788
  {
4681
4789
  type: "text",
4682
4790
  text: "{REF}",
@@ -4691,13 +4799,13 @@ var crystal_down_default = modifySymbol({
4691
4799
  }
4692
4800
  ],
4693
4801
  ports: [
4694
- { ...refblocks34.left1, labels: ["1"] },
4802
+ { ...refblocks38.left1, labels: ["1"] },
4695
4803
  // TODO add more "standard" labels
4696
- { ...refblocks34.right1, labels: ["2"] }
4804
+ { ...refblocks38.right1, labels: ["2"] }
4697
4805
  // TODO add more "standard" labels
4698
4806
  ],
4699
- size: { width: bounds34.width, height: bounds34.height },
4700
- center: { x: bounds34.centerX, y: bounds34.centerY }
4807
+ size: { width: bounds38.width, height: bounds38.height },
4808
+ center: { x: bounds38.centerX, y: bounds38.centerY }
4701
4809
  }).changeTextAnchor("{VAL}", "top_left").rotateRightFacingSymbol("down").labelPort("left1", ["1", "pos"]).labelPort("right1", ["2", "neg"]).changeTextAnchor("{REF}", "bottom_left").build();
4702
4810
 
4703
4811
  // symbols/crystal_left.ts
@@ -4707,11 +4815,11 @@ var crystal_left_default = modifySymbol(crystal_default).changeTextAnchor("{VAL}
4707
4815
  var crystal_right_default = modifySymbol(crystal_default).changeTextAnchor("{VAL}", "middle_top").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_bottom").build();
4708
4816
 
4709
4817
  // symbols/crystal_up.ts
4710
- var { paths: paths35, texts: texts35, bounds: bounds35, refblocks: refblocks35, circles: circles35 } = crystal_default;
4818
+ var { paths: paths39, texts: texts39, bounds: bounds39, refblocks: refblocks39, circles: circles39 } = crystal_default;
4711
4819
  var crystal_up_default = modifySymbol({
4712
4820
  primitives: [
4713
- ...Object.values(paths35),
4714
- ...Object.values(circles35),
4821
+ ...Object.values(paths39),
4822
+ ...Object.values(circles39),
4715
4823
  {
4716
4824
  type: "text",
4717
4825
  text: "{REF}",
@@ -4726,13 +4834,13 @@ var crystal_up_default = modifySymbol({
4726
4834
  }
4727
4835
  ],
4728
4836
  ports: [
4729
- { ...refblocks35.left1, labels: ["1"] },
4837
+ { ...refblocks39.left1, labels: ["1"] },
4730
4838
  // TODO add more "standard" labels
4731
- { ...refblocks35.right1, labels: ["2"] }
4839
+ { ...refblocks39.right1, labels: ["2"] }
4732
4840
  // TODO add more "standard" labels
4733
4841
  ],
4734
- size: { width: bounds35.width, height: bounds35.height },
4735
- center: { x: bounds35.centerX, y: bounds35.centerY }
4842
+ size: { width: bounds39.width, height: bounds39.height },
4843
+ center: { x: bounds39.centerX, y: bounds39.centerY }
4736
4844
  }).changeTextAnchor("{VAL}", "middle_top").rotateRightFacingSymbol("up").labelPort("left1", ["1", "pos"]).labelPort("right1", ["2", "neg"]).changeTextAnchor("{REF}", "bottom_left").build();
4737
4845
 
4738
4846
  // assets/generated/darlington_pair_transistor.json
@@ -5109,11 +5217,11 @@ var dc_ammeter_default = {
5109
5217
  };
5110
5218
 
5111
5219
  // symbols/dc_ammeter_horz.ts
5112
- var { paths: paths36, texts: texts36, bounds: bounds36, refblocks: refblocks36, circles: circles36 } = dc_ammeter_default;
5220
+ var { paths: paths40, texts: texts40, bounds: bounds40, refblocks: refblocks40, circles: circles40 } = dc_ammeter_default;
5113
5221
  var dc_ammeter_horz_default = defineSymbol({
5114
5222
  primitives: [
5115
- ...Object.values(paths36),
5116
- ...Object.values(circles36),
5223
+ ...Object.values(paths40),
5224
+ ...Object.values(circles40),
5117
5225
  {
5118
5226
  type: "text",
5119
5227
  text: "{REF}",
@@ -5128,16 +5236,16 @@ var dc_ammeter_horz_default = defineSymbol({
5128
5236
  y: 0.35,
5129
5237
  anchor: "middle_bottom"
5130
5238
  },
5131
- { ...texts36.left1, x: 0, y: 0.01, anchor: "center", fontSize: 0.3 }
5239
+ { ...texts40.left1, x: 0, y: 0.01, anchor: "center", fontSize: 0.3 }
5132
5240
  ],
5133
5241
  ports: [
5134
- { ...refblocks36.left1, labels: ["1"] },
5242
+ { ...refblocks40.left1, labels: ["1"] },
5135
5243
  // TODO add more "standard" labels
5136
- { ...refblocks36.right1, labels: ["2"] }
5244
+ { ...refblocks40.right1, labels: ["2"] }
5137
5245
  // TODO add more "standard" labels
5138
5246
  ],
5139
- size: { width: bounds36.width, height: bounds36.height },
5140
- center: { x: bounds36.centerX, y: bounds36.centerY }
5247
+ size: { width: bounds40.width, height: bounds40.height },
5248
+ center: { x: bounds40.centerX, y: bounds40.centerY }
5141
5249
  });
5142
5250
 
5143
5251
  // symbols/dc_ammeter_vert.ts
@@ -5283,11 +5391,11 @@ var dc_voltmeter_default = {
5283
5391
  };
5284
5392
 
5285
5393
  // symbols/dc_voltmeter_down.ts
5286
- var { paths: paths37, texts: texts37, bounds: bounds37, refblocks: refblocks37, circles: circles37 } = dc_voltmeter_default;
5394
+ var { paths: paths41, texts: texts41, bounds: bounds41, refblocks: refblocks41, circles: circles41 } = dc_voltmeter_default;
5287
5395
  var dc_voltmeter_down_default = modifySymbol({
5288
5396
  primitives: [
5289
- ...Object.values(paths37),
5290
- ...Object.values(circles37),
5397
+ ...Object.values(paths41),
5398
+ ...Object.values(circles41),
5291
5399
  {
5292
5400
  type: "text",
5293
5401
  text: "{REF}",
@@ -5302,19 +5410,19 @@ var dc_voltmeter_down_default = modifySymbol({
5302
5410
  }
5303
5411
  ],
5304
5412
  ports: [
5305
- { ...refblocks37.left1, labels: ["1"] },
5306
- { ...refblocks37.right1, labels: ["2"] }
5413
+ { ...refblocks41.left1, labels: ["1"] },
5414
+ { ...refblocks41.right1, labels: ["2"] }
5307
5415
  ],
5308
- size: { width: bounds37.width, height: bounds37.height },
5309
- center: { x: bounds37.centerX, y: bounds37.centerY }
5416
+ size: { width: bounds41.width, height: bounds41.height },
5417
+ center: { x: bounds41.centerX, y: bounds41.centerY }
5310
5418
  }).rotateRightFacingSymbol("down").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
5311
5419
 
5312
5420
  // symbols/dc_voltmeter_horz.ts
5313
- var { paths: paths38, texts: texts38, bounds: bounds38, refblocks: refblocks38, circles: circles38 } = dc_voltmeter_default;
5421
+ var { paths: paths42, texts: texts42, bounds: bounds42, refblocks: refblocks42, circles: circles42 } = dc_voltmeter_default;
5314
5422
  var dc_voltmeter_horz_default = modifySymbol({
5315
5423
  primitives: [
5316
- ...Object.values(paths38),
5317
- ...Object.values(circles38),
5424
+ ...Object.values(paths42),
5425
+ ...Object.values(circles42),
5318
5426
  {
5319
5427
  type: "text",
5320
5428
  text: "{REF}",
@@ -5329,19 +5437,19 @@ var dc_voltmeter_horz_default = modifySymbol({
5329
5437
  }
5330
5438
  ],
5331
5439
  ports: [
5332
- { ...refblocks38.left1, labels: ["1"] },
5333
- { ...refblocks38.right1, labels: ["2"] }
5440
+ { ...refblocks42.left1, labels: ["1"] },
5441
+ { ...refblocks42.right1, labels: ["2"] }
5334
5442
  ],
5335
- size: { width: bounds38.width, height: bounds38.height },
5336
- center: { x: bounds38.centerX, y: bounds38.centerY }
5443
+ size: { width: bounds42.width, height: bounds42.height },
5444
+ center: { x: bounds42.centerX, y: bounds42.centerY }
5337
5445
  }).changeTextAnchor("{VAL}", "middle_top").rotateRightFacingSymbol("right").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_bottom").build();
5338
5446
 
5339
5447
  // symbols/dc_voltmeter_left.ts
5340
- var { paths: paths39, texts: texts39, bounds: bounds39, refblocks: refblocks39, circles: circles39 } = dc_voltmeter_default;
5448
+ var { paths: paths43, texts: texts43, bounds: bounds43, refblocks: refblocks43, circles: circles43 } = dc_voltmeter_default;
5341
5449
  var dc_voltmeter_left_default = modifySymbol({
5342
5450
  primitives: [
5343
- ...Object.values(paths39),
5344
- ...Object.values(circles39),
5451
+ ...Object.values(paths43),
5452
+ ...Object.values(circles43),
5345
5453
  {
5346
5454
  type: "text",
5347
5455
  text: "{REF}",
@@ -5356,19 +5464,19 @@ var dc_voltmeter_left_default = modifySymbol({
5356
5464
  }
5357
5465
  ],
5358
5466
  ports: [
5359
- { ...refblocks39.left1, labels: ["1"] },
5360
- { ...refblocks39.right1, labels: ["2"] }
5467
+ { ...refblocks43.left1, labels: ["1"] },
5468
+ { ...refblocks43.right1, labels: ["2"] }
5361
5469
  ],
5362
- size: { width: bounds39.width, height: bounds39.height },
5363
- center: { x: bounds39.centerX, y: bounds39.centerY }
5470
+ size: { width: bounds43.width, height: bounds43.height },
5471
+ center: { x: bounds43.centerX, y: bounds43.centerY }
5364
5472
  }).changeTextAnchor("{VAL}", "middle_bottom").rotateRightFacingSymbol("left").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_bottom").build();
5365
5473
 
5366
5474
  // symbols/dc_voltmeter_right.ts
5367
- var { paths: paths40, texts: texts40, bounds: bounds40, refblocks: refblocks40, circles: circles40 } = dc_voltmeter_default;
5475
+ var { paths: paths44, texts: texts44, bounds: bounds44, refblocks: refblocks44, circles: circles44 } = dc_voltmeter_default;
5368
5476
  var dc_voltmeter_right_default = modifySymbol({
5369
5477
  primitives: [
5370
- ...Object.values(paths40),
5371
- ...Object.values(circles40),
5478
+ ...Object.values(paths44),
5479
+ ...Object.values(circles44),
5372
5480
  {
5373
5481
  type: "text",
5374
5482
  text: "{REF}",
@@ -5383,19 +5491,19 @@ var dc_voltmeter_right_default = modifySymbol({
5383
5491
  }
5384
5492
  ],
5385
5493
  ports: [
5386
- { ...refblocks40.left1, labels: ["1"] },
5387
- { ...refblocks40.right1, labels: ["2"] }
5494
+ { ...refblocks44.left1, labels: ["1"] },
5495
+ { ...refblocks44.right1, labels: ["2"] }
5388
5496
  ],
5389
- size: { width: bounds40.width, height: bounds40.height },
5390
- center: { x: bounds40.centerX, y: bounds40.centerY }
5497
+ size: { width: bounds44.width, height: bounds44.height },
5498
+ center: { x: bounds44.centerX, y: bounds44.centerY }
5391
5499
  }).changeTextAnchor("{VAL}", "middle_top").rotateRightFacingSymbol("right").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_bottom").build();
5392
5500
 
5393
5501
  // symbols/dc_voltmeter_up.ts
5394
- var { paths: paths41, texts: texts41, bounds: bounds41, refblocks: refblocks41, circles: circles41 } = dc_voltmeter_default;
5502
+ var { paths: paths45, texts: texts45, bounds: bounds45, refblocks: refblocks45, circles: circles45 } = dc_voltmeter_default;
5395
5503
  var dc_voltmeter_up_default = modifySymbol({
5396
5504
  primitives: [
5397
- ...Object.values(paths41),
5398
- ...Object.values(circles41),
5505
+ ...Object.values(paths45),
5506
+ ...Object.values(circles45),
5399
5507
  {
5400
5508
  type: "text",
5401
5509
  text: "{REF}",
@@ -5410,19 +5518,19 @@ var dc_voltmeter_up_default = modifySymbol({
5410
5518
  }
5411
5519
  ],
5412
5520
  ports: [
5413
- { ...refblocks41.left1, labels: ["1"] },
5414
- { ...refblocks41.right1, labels: ["2"] }
5521
+ { ...refblocks45.left1, labels: ["1"] },
5522
+ { ...refblocks45.right1, labels: ["2"] }
5415
5523
  ],
5416
- size: { width: bounds41.width, height: bounds41.height },
5417
- center: { x: bounds41.centerX, y: bounds41.centerY }
5524
+ size: { width: bounds45.width, height: bounds45.height },
5525
+ center: { x: bounds45.centerX, y: bounds45.centerY }
5418
5526
  }).rotateRightFacingSymbol("up").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
5419
5527
 
5420
5528
  // symbols/dc_voltmeter_vert.ts
5421
- var { paths: paths42, texts: texts42, bounds: bounds42, refblocks: refblocks42, circles: circles42 } = dc_voltmeter_default;
5529
+ var { paths: paths46, texts: texts46, bounds: bounds46, refblocks: refblocks46, circles: circles46 } = dc_voltmeter_default;
5422
5530
  var dc_voltmeter_vert_default = modifySymbol({
5423
5531
  primitives: [
5424
- ...Object.values(paths42),
5425
- ...Object.values(circles42),
5532
+ ...Object.values(paths46),
5533
+ ...Object.values(circles46),
5426
5534
  {
5427
5535
  type: "text",
5428
5536
  text: "{REF}",
@@ -5437,11 +5545,11 @@ var dc_voltmeter_vert_default = modifySymbol({
5437
5545
  }
5438
5546
  ],
5439
5547
  ports: [
5440
- { ...refblocks42.left1, labels: ["1"] },
5441
- { ...refblocks42.right1, labels: ["2"] }
5548
+ { ...refblocks46.left1, labels: ["1"] },
5549
+ { ...refblocks46.right1, labels: ["2"] }
5442
5550
  ],
5443
- size: { width: bounds42.width, height: bounds42.height },
5444
- center: { x: bounds42.centerX, y: bounds42.centerY }
5551
+ size: { width: bounds46.width, height: bounds46.height },
5552
+ center: { x: bounds46.centerX, y: bounds46.centerY }
5445
5553
  }).rotateRightFacingSymbol("up").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
5446
5554
 
5447
5555
  // assets/generated/diac.json
@@ -5605,11 +5713,11 @@ var diac_horz_default = modifySymbol(diac_default).changeTextAnchor("{VAL}", "mi
5605
5713
 
5606
5714
  // symbols/diac_vert.ts
5607
5715
  var rotatedSymbol2 = rotateSymbol(diac_horz_default);
5608
- var texts43 = rotatedSymbol2.primitives.filter(
5716
+ var texts47 = rotatedSymbol2.primitives.filter(
5609
5717
  (primitive) => primitive.type === "text"
5610
5718
  );
5611
- var ref2 = texts43.find((text) => text.text === "{REF}");
5612
- var val2 = texts43.find((text) => text.text === "{VAL}");
5719
+ var ref2 = texts47.find((text) => text.text === "{REF}");
5720
+ var val2 = texts47.find((text) => text.text === "{VAL}");
5613
5721
  ref2.y = 0;
5614
5722
  val2.y = 0;
5615
5723
  var diac_vert_default = rotatedSymbol2;
@@ -6886,11 +6994,11 @@ var ferrite_bead_default = {
6886
6994
  };
6887
6995
 
6888
6996
  // symbols/ferrite_bead_up.ts
6889
- var { paths: paths43, texts: texts44, bounds: bounds43, refblocks: refblocks43, circles: circles43 } = ferrite_bead_default;
6997
+ var { paths: paths47, texts: texts48, bounds: bounds47, refblocks: refblocks47, circles: circles47 } = ferrite_bead_default;
6890
6998
  var ferrite_bead_up_default = modifySymbol({
6891
6999
  primitives: [
6892
- ...Object.values(paths43),
6893
- ...Object.values(circles43),
7000
+ ...Object.values(paths47),
7001
+ ...Object.values(circles47),
6894
7002
  {
6895
7003
  type: "text",
6896
7004
  text: "{REF}",
@@ -6905,13 +7013,13 @@ var ferrite_bead_up_default = modifySymbol({
6905
7013
  }
6906
7014
  ],
6907
7015
  ports: [
6908
- { ...refblocks43.left1, labels: ["1"] },
7016
+ { ...refblocks47.left1, labels: ["1"] },
6909
7017
  // TODO add more "standard" labels
6910
- { ...refblocks43.right1, labels: ["2"] }
7018
+ { ...refblocks47.right1, labels: ["2"] }
6911
7019
  // TODO add more "standard" labels
6912
7020
  ],
6913
- size: { width: bounds43.width, height: bounds43.height },
6914
- center: { x: bounds43.centerX, y: bounds43.centerY }
7021
+ size: { width: bounds47.width, height: bounds47.height },
7022
+ center: { x: bounds47.centerX, y: bounds47.centerY }
6915
7023
  }).rotateRightFacingSymbol("up").labelPort("left", ["1"]).labelPort("right", ["2"]).changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
6916
7024
 
6917
7025
  // symbols/ferrite_bead_down.ts
@@ -7051,11 +7159,167 @@ var filled_diode_default = {
7051
7159
  circles: {}
7052
7160
  };
7053
7161
 
7162
+ // symbols/filled_diode_down.ts
7163
+ var { paths: paths48, texts: texts49, bounds: bounds48, refblocks: refblocks48, circles: circles48 } = filled_diode_default;
7164
+ var filled_diode_down_default = modifySymbol({
7165
+ primitives: [
7166
+ ...Object.values(paths48),
7167
+ ...Object.values(circles48),
7168
+ {
7169
+ type: "text",
7170
+ text: "{REF}",
7171
+ x: -0.15,
7172
+ y: 0.3294553499999995
7173
+ },
7174
+ {
7175
+ type: "text",
7176
+ text: "{VAL}",
7177
+ x: 0.15,
7178
+ y: 0.3294553499999995
7179
+ }
7180
+ ],
7181
+ ports: [
7182
+ { ...refblocks48.left1, labels: ["1"] },
7183
+ { ...refblocks48.right1, labels: ["2"] }
7184
+ ],
7185
+ size: { width: bounds48.width, height: bounds48.height },
7186
+ center: { x: bounds48.centerX, y: bounds48.centerY }
7187
+ }).rotateRightFacingSymbol("down").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
7188
+
7054
7189
  // symbols/filled_diode_horz.ts
7055
- var filled_diode_horz_default = modifySymbol(filled_diode_default).changeTextAnchor("{VAL}", "middle_top").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_bottom").build();
7190
+ var { paths: paths49, texts: texts50, bounds: bounds49, refblocks: refblocks49, circles: circles49 } = filled_diode_default;
7191
+ var filled_diode_horz_default = modifySymbol({
7192
+ primitives: [
7193
+ ...Object.values(paths49),
7194
+ ...Object.values(circles49),
7195
+ {
7196
+ type: "text",
7197
+ text: "{REF}",
7198
+ x: -0,
7199
+ y: 0.4094553499999995
7200
+ },
7201
+ {
7202
+ type: "text",
7203
+ text: "{VAL}",
7204
+ x: 0,
7205
+ y: -0.4094553499999995
7206
+ }
7207
+ ],
7208
+ ports: [
7209
+ { ...refblocks49.left1, labels: ["1"] },
7210
+ { ...refblocks49.right1, labels: ["2"] }
7211
+ ],
7212
+ size: { width: bounds49.width, height: bounds49.height },
7213
+ center: { x: bounds49.centerX, y: bounds49.centerY }
7214
+ }).changeTextAnchor("{VAL}", "middle_top").rotateRightFacingSymbol("right").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_bottom").build();
7215
+
7216
+ // symbols/filled_diode_left.ts
7217
+ var { paths: paths50, texts: texts51, bounds: bounds50, refblocks: refblocks50, circles: circles50 } = filled_diode_default;
7218
+ var filled_diode_left_default = modifySymbol({
7219
+ primitives: [
7220
+ ...Object.values(paths50),
7221
+ ...Object.values(circles50),
7222
+ {
7223
+ type: "text",
7224
+ text: "{REF}",
7225
+ x: -0,
7226
+ y: -0.3094553499999995
7227
+ },
7228
+ {
7229
+ type: "text",
7230
+ text: "{VAL}",
7231
+ x: 0,
7232
+ y: 0.4094553499999995
7233
+ }
7234
+ ],
7235
+ ports: [
7236
+ { ...refblocks50.left1, labels: ["1"] },
7237
+ { ...refblocks50.right1, labels: ["2"] }
7238
+ ],
7239
+ size: { width: bounds50.width, height: bounds50.height },
7240
+ center: { x: bounds50.centerX, y: bounds50.centerY }
7241
+ }).changeTextAnchor("{VAL}", "middle_bottom").rotateRightFacingSymbol("left").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_bottom").build();
7242
+
7243
+ // symbols/filled_diode_right.ts
7244
+ var { paths: paths51, texts: texts52, bounds: bounds51, refblocks: refblocks51, circles: circles51 } = filled_diode_default;
7245
+ var filled_diode_right_default = modifySymbol({
7246
+ primitives: [
7247
+ ...Object.values(paths51),
7248
+ ...Object.values(circles51),
7249
+ {
7250
+ type: "text",
7251
+ text: "{REF}",
7252
+ x: -0,
7253
+ y: 0.4094553499999995
7254
+ },
7255
+ {
7256
+ type: "text",
7257
+ text: "{VAL}",
7258
+ x: 0,
7259
+ y: -0.4094553499999995
7260
+ }
7261
+ ],
7262
+ ports: [
7263
+ { ...refblocks51.left1, labels: ["1"] },
7264
+ { ...refblocks51.right1, labels: ["2"] }
7265
+ ],
7266
+ size: { width: bounds51.width, height: bounds51.height },
7267
+ center: { x: bounds51.centerX, y: bounds51.centerY }
7268
+ }).changeTextAnchor("{VAL}", "middle_top").rotateRightFacingSymbol("right").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_bottom").build();
7269
+
7270
+ // symbols/filled_diode_up.ts
7271
+ var { paths: paths52, texts: texts53, bounds: bounds52, refblocks: refblocks52, circles: circles52 } = filled_diode_default;
7272
+ var filled_diode_up_default = modifySymbol({
7273
+ primitives: [
7274
+ ...Object.values(paths52),
7275
+ ...Object.values(circles52),
7276
+ {
7277
+ type: "text",
7278
+ text: "{REF}",
7279
+ x: 0.15,
7280
+ y: -0.2894553499999995
7281
+ },
7282
+ {
7283
+ type: "text",
7284
+ text: "{VAL}",
7285
+ x: -0.15,
7286
+ y: -0.2894553499999995
7287
+ }
7288
+ ],
7289
+ ports: [
7290
+ { ...refblocks52.left1, labels: ["1"] },
7291
+ { ...refblocks52.right1, labels: ["2"] }
7292
+ ],
7293
+ size: { width: bounds52.width, height: bounds52.height },
7294
+ center: { x: bounds52.centerX, y: bounds52.centerY }
7295
+ }).rotateRightFacingSymbol("up").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
7056
7296
 
7057
7297
  // symbols/filled_diode_vert.ts
7058
- var filled_diode_vert_default = rotateSymbol(filled_diode_horz_default);
7298
+ var { paths: paths53, texts: texts54, bounds: bounds53, refblocks: refblocks53, circles: circles53 } = filled_diode_default;
7299
+ var filled_diode_vert_default = modifySymbol({
7300
+ primitives: [
7301
+ ...Object.values(paths53),
7302
+ ...Object.values(circles53),
7303
+ {
7304
+ type: "text",
7305
+ text: "{REF}",
7306
+ x: 0.15,
7307
+ y: -0.2894553499999995
7308
+ },
7309
+ {
7310
+ type: "text",
7311
+ text: "{VAL}",
7312
+ x: -0.15,
7313
+ y: -0.2894553499999995
7314
+ }
7315
+ ],
7316
+ ports: [
7317
+ { ...refblocks53.left1, labels: ["1"] },
7318
+ { ...refblocks53.right1, labels: ["2"] }
7319
+ ],
7320
+ size: { width: bounds53.width, height: bounds53.height },
7321
+ center: { x: bounds53.centerX, y: bounds53.centerY }
7322
+ }).rotateRightFacingSymbol("up").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
7059
7323
 
7060
7324
  // assets/generated/frequency_meter.json
7061
7325
  var frequency_meter_default = {
@@ -7144,11 +7408,11 @@ var frequency_meter_default = {
7144
7408
  };
7145
7409
 
7146
7410
  // symbols/frequency_meter_horz.ts
7147
- var { paths: paths44, texts: texts45, bounds: bounds44, refblocks: refblocks44, circles: circles44 } = frequency_meter_default;
7411
+ var { paths: paths54, texts: texts55, bounds: bounds54, refblocks: refblocks54, circles: circles54 } = frequency_meter_default;
7148
7412
  var frequency_meter_horz_default = defineSymbol({
7149
7413
  primitives: [
7150
- ...Object.values(paths44),
7151
- ...Object.values(circles44),
7414
+ ...Object.values(paths54),
7415
+ ...Object.values(circles54),
7152
7416
  {
7153
7417
  type: "text",
7154
7418
  text: "{REF}",
@@ -7163,16 +7427,16 @@ var frequency_meter_horz_default = defineSymbol({
7163
7427
  y: 0.35,
7164
7428
  anchor: "middle_bottom"
7165
7429
  },
7166
- { ...texts45.left1, x: 0, y: 0.01, anchor: "center", fontSize: 0.2 }
7430
+ { ...texts55.left1, x: 0, y: 0.01, anchor: "center", fontSize: 0.2 }
7167
7431
  ],
7168
7432
  ports: [
7169
- { ...refblocks44.left1, labels: ["1"] },
7433
+ { ...refblocks54.left1, labels: ["1"] },
7170
7434
  // TODO add more "standard" labels
7171
- { ...refblocks44.right1, labels: ["2"] }
7435
+ { ...refblocks54.right1, labels: ["2"] }
7172
7436
  // TODO add more "standard" labels
7173
7437
  ],
7174
- size: { width: bounds44.width, height: bounds44.height },
7175
- center: { x: bounds44.centerX, y: bounds44.centerY }
7438
+ size: { width: bounds54.width, height: bounds54.height },
7439
+ center: { x: bounds54.centerX, y: bounds54.centerY }
7176
7440
  });
7177
7441
 
7178
7442
  // symbols/frequency_meter_vert.ts
@@ -7277,11 +7541,11 @@ var fuse_default = {
7277
7541
  };
7278
7542
 
7279
7543
  // symbols/fuse_horz.ts
7280
- var { paths: paths45, texts: texts46, bounds: bounds45, refblocks: refblocks45 } = fuse_default;
7544
+ var { paths: paths55, texts: texts56, bounds: bounds55, refblocks: refblocks55 } = fuse_default;
7281
7545
  var fuse_horz_default = defineSymbol({
7282
7546
  primitives: [
7283
- ...Object.values(paths45),
7284
- { ...texts46.top1, anchor: "middle_bottom" },
7547
+ ...Object.values(paths55),
7548
+ { ...texts56.top1, anchor: "middle_bottom" },
7285
7549
  {
7286
7550
  type: "text",
7287
7551
  text: "{VAL}",
@@ -7291,13 +7555,13 @@ var fuse_horz_default = defineSymbol({
7291
7555
  }
7292
7556
  ],
7293
7557
  ports: [
7294
- { ...refblocks45.left1, labels: ["1"] },
7558
+ { ...refblocks55.left1, labels: ["1"] },
7295
7559
  // TODO add more "standard" labels
7296
- { ...refblocks45.right1, labels: ["2"] }
7560
+ { ...refblocks55.right1, labels: ["2"] }
7297
7561
  // TODO add more "standard" labels
7298
7562
  ],
7299
- size: { width: bounds45.width, height: bounds45.height },
7300
- center: { x: bounds45.centerX, y: bounds45.centerY }
7563
+ size: { width: bounds55.width, height: bounds55.height },
7564
+ center: { x: bounds55.centerX, y: bounds55.centerY }
7301
7565
  });
7302
7566
 
7303
7567
  // symbols/fuse_vert.ts
@@ -7474,10 +7738,10 @@ var ground2_default = {
7474
7738
  };
7475
7739
 
7476
7740
  // symbols/ground2_down.ts
7477
- var { paths: paths46, texts: texts47, bounds: bounds46, refblocks: refblocks46 } = ground2_default;
7741
+ var { paths: paths56, texts: texts57, bounds: bounds56, refblocks: refblocks56 } = ground2_default;
7478
7742
  var ground2_down_default = modifySymbol({
7479
7743
  primitives: [
7480
- ...Object.values(paths46),
7744
+ ...Object.values(paths56),
7481
7745
  {
7482
7746
  type: "text",
7483
7747
  text: "{REF}",
@@ -7486,18 +7750,18 @@ var ground2_down_default = modifySymbol({
7486
7750
  }
7487
7751
  ],
7488
7752
  ports: [
7489
- { ...refblocks46.left1, labels: ["1"] }
7753
+ { ...refblocks56.left1, labels: ["1"] }
7490
7754
  // TODO add more "standard" labels
7491
7755
  ],
7492
- center: { x: bounds46.centerX, y: bounds46.centerY }
7756
+ center: { x: bounds56.centerX, y: bounds56.centerY }
7493
7757
  }).rotateRightFacingSymbol("down").labelPort("left1", ["1"]).changeTextAnchor("{REF}", "middle_bottom").build();
7494
7758
 
7495
7759
  // symbols/ground2_left.ts
7496
- var { paths: paths47, texts: texts48, bounds: bounds47, refblocks: refblocks47, circles: circles45 } = ground2_default;
7760
+ var { paths: paths57, texts: texts58, bounds: bounds57, refblocks: refblocks57, circles: circles55 } = ground2_default;
7497
7761
  var ground2_left_default = modifySymbol({
7498
7762
  primitives: [
7499
- ...Object.values(paths47),
7500
- ...Object.values(circles45),
7763
+ ...Object.values(paths57),
7764
+ ...Object.values(circles55),
7501
7765
  {
7502
7766
  type: "text",
7503
7767
  text: "{REF}",
@@ -7506,18 +7770,18 @@ var ground2_left_default = modifySymbol({
7506
7770
  }
7507
7771
  ],
7508
7772
  ports: [
7509
- { ...refblocks47.left1, labels: ["1"] }
7773
+ { ...refblocks57.left1, labels: ["1"] }
7510
7774
  // TODO add more "standard" labels
7511
7775
  ],
7512
- center: { x: bounds47.centerX, y: bounds47.centerY }
7776
+ center: { x: bounds57.centerX, y: bounds57.centerY }
7513
7777
  }).rotateRightFacingSymbol("left").labelPort("left1", ["1"]).changeTextAnchor("{REF}", "middle_left").build();
7514
7778
 
7515
7779
  // symbols/ground2_right.ts
7516
- var { paths: paths48, texts: texts49, bounds: bounds48, refblocks: refblocks48, circles: circles46 } = ground2_default;
7780
+ var { paths: paths58, texts: texts59, bounds: bounds58, refblocks: refblocks58, circles: circles56 } = ground2_default;
7517
7781
  var ground2_right_default = modifySymbol({
7518
7782
  primitives: [
7519
- ...Object.values(paths48),
7520
- ...Object.values(circles46),
7783
+ ...Object.values(paths58),
7784
+ ...Object.values(circles56),
7521
7785
  {
7522
7786
  type: "text",
7523
7787
  text: "{REF}",
@@ -7526,18 +7790,18 @@ var ground2_right_default = modifySymbol({
7526
7790
  }
7527
7791
  ],
7528
7792
  ports: [
7529
- { ...refblocks48.left1, labels: ["1"] }
7793
+ { ...refblocks58.left1, labels: ["1"] }
7530
7794
  // TODO add more "standard" labels
7531
7795
  ],
7532
- center: { x: bounds48.centerX, y: bounds48.centerY }
7796
+ center: { x: bounds58.centerX, y: bounds58.centerY }
7533
7797
  }).changeTextAnchor("{VAL}", "middle_top").rotateRightFacingSymbol("right").labelPort("left1", ["1"]).changeTextAnchor("{REF}", "middle_right").build();
7534
7798
 
7535
7799
  // symbols/ground2_up.ts
7536
- var { paths: paths49, texts: texts50, bounds: bounds49, refblocks: refblocks49, circles: circles47 } = ground2_default;
7800
+ var { paths: paths59, texts: texts60, bounds: bounds59, refblocks: refblocks59, circles: circles57 } = ground2_default;
7537
7801
  var ground2_up_default = modifySymbol({
7538
7802
  primitives: [
7539
- ...Object.values(paths49),
7540
- ...Object.values(circles47),
7803
+ ...Object.values(paths59),
7804
+ ...Object.values(circles57),
7541
7805
  {
7542
7806
  type: "text",
7543
7807
  text: "{REF}",
@@ -7546,10 +7810,10 @@ var ground2_up_default = modifySymbol({
7546
7810
  }
7547
7811
  ],
7548
7812
  ports: [
7549
- { ...refblocks49.left1, labels: ["1"] }
7813
+ { ...refblocks59.left1, labels: ["1"] }
7550
7814
  // TODO add more "standard" labels
7551
7815
  ],
7552
- center: { x: bounds49.centerX, y: bounds49.centerY }
7816
+ center: { x: bounds59.centerX, y: bounds59.centerY }
7553
7817
  }).rotateRightFacingSymbol("up").labelPort("left1", ["1"]).changeTextAnchor("{REF}", "middle_top").build();
7554
7818
 
7555
7819
  // assets/generated/gunn_diode.json
@@ -7670,7 +7934,7 @@ var gunn_diode_default = {
7670
7934
  };
7671
7935
 
7672
7936
  // symbols/gunn_diode_horz.ts
7673
- var { paths: paths50, texts: texts51, bounds: bounds50, refblocks: refblocks50, circles: circles48 } = gunn_diode_default;
7937
+ var { paths: paths60, texts: texts61, bounds: bounds60, refblocks: refblocks60, circles: circles58 } = gunn_diode_default;
7674
7938
  var gunn_diode_horz_default = modifySymbol(gunn_diode_default).changeTextAnchor("{VAL}", "middle_top").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_bottom").build();
7675
7939
 
7676
7940
  // symbols/gunn_diode_vert.ts
@@ -8435,12 +8699,12 @@ var illuminated_push_button_normally_open_horz_default = modifySymbol(illuminate
8435
8699
 
8436
8700
  // symbols/illuminated_push_button_normally_open_vert.ts
8437
8701
  var rotatedSymbol4 = rotateSymbol(illuminated_push_button_normally_open_horz_default);
8438
- var texts52 = rotatedSymbol4.primitives.filter((p) => p.type === "text");
8439
- var val18 = texts52.find((t) => t.text === "{VAL}");
8702
+ var texts62 = rotatedSymbol4.primitives.filter((p) => p.type === "text");
8703
+ var val18 = texts62.find((t) => t.text === "{VAL}");
8440
8704
  val18.x = -0.35;
8441
8705
  val18.y = 0;
8442
8706
  val18.anchor = "middle_right";
8443
- var ref18 = texts52.find((t) => t.text === "{REF}");
8707
+ var ref18 = texts62.find((t) => t.text === "{REF}");
8444
8708
  ref18.y = 0;
8445
8709
  ref18.x = 0.35;
8446
8710
  ref18.anchor = "middle_left";
@@ -9842,22 +10106,22 @@ var inductor_default = {
9842
10106
  };
9843
10107
 
9844
10108
  // symbols/inductor_right.ts
9845
- var { paths: paths51, texts: texts53, bounds: bounds51, refblocks: refblocks51, circles: circles49 } = inductor_default;
10109
+ var { paths: paths61, texts: texts63, bounds: bounds61, refblocks: refblocks61, circles: circles59 } = inductor_default;
9846
10110
  var inductor_right_default = defineSymbol({
9847
10111
  primitives: [
9848
- ...Object.values(paths51),
9849
- ...Object.values(circles49),
9850
- { ...texts53.top1, anchor: "middle_bottom" },
9851
- { ...texts53.bottom1, anchor: "middle_top" }
10112
+ ...Object.values(paths61),
10113
+ ...Object.values(circles59),
10114
+ { ...texts63.top1, anchor: "middle_bottom" },
10115
+ { ...texts63.bottom1, anchor: "middle_top" }
9852
10116
  ],
9853
10117
  ports: [
9854
- { ...refblocks51.left1, labels: ["1"] },
10118
+ { ...refblocks61.left1, labels: ["1"] },
9855
10119
  // TODO add more "standard" labels
9856
- { ...refblocks51.right1, labels: ["2"] }
10120
+ { ...refblocks61.right1, labels: ["2"] }
9857
10121
  // TODO add more "standard" labels
9858
10122
  ],
9859
- size: { width: bounds51.width, height: bounds51.height },
9860
- center: { x: bounds51.centerX, y: bounds51.centerY }
10123
+ size: { width: bounds61.width, height: bounds61.height },
10124
+ center: { x: bounds61.centerX, y: bounds61.centerY }
9861
10125
  });
9862
10126
 
9863
10127
  // symbols/inductor_up.ts
@@ -10376,22 +10640,22 @@ var led_default = {
10376
10640
  };
10377
10641
 
10378
10642
  // symbols/led_right.ts
10379
- var { paths: paths52, texts: texts54, bounds: bounds52, refblocks: refblocks52, circles: circles50 } = led_default;
10643
+ var { paths: paths62, texts: texts64, bounds: bounds62, refblocks: refblocks62, circles: circles60 } = led_default;
10380
10644
  var led_right_default = defineSymbol({
10381
10645
  primitives: [
10382
- ...Object.values(paths52),
10383
- ...Object.values(circles50),
10384
- { ...texts54.bottom1, anchor: "middle_top" },
10385
- { ...texts54.right1, anchor: "middle_bottom" }
10646
+ ...Object.values(paths62),
10647
+ ...Object.values(circles60),
10648
+ { ...texts64.bottom1, anchor: "middle_top" },
10649
+ { ...texts64.right1, anchor: "middle_bottom" }
10386
10650
  ],
10387
10651
  ports: [
10388
- { ...refblocks52.left1, labels: ["1"] },
10652
+ { ...refblocks62.left1, labels: ["1"] },
10389
10653
  // TODO add more "standard" labels
10390
- { ...refblocks52.right1, labels: ["2"] }
10654
+ { ...refblocks62.right1, labels: ["2"] }
10391
10655
  // TODO add more "standard" labels
10392
10656
  ],
10393
- size: { width: bounds52.width, height: bounds52.height },
10394
- center: { x: bounds52.centerX, y: bounds52.centerY }
10657
+ size: { width: bounds62.width, height: bounds62.height },
10658
+ center: { x: bounds62.centerX, y: bounds62.centerY }
10395
10659
  });
10396
10660
 
10397
10661
  // symbols/led_up.ts
@@ -10654,32 +10918,32 @@ var light_dependent_resistor_default = {
10654
10918
  };
10655
10919
 
10656
10920
  // symbols/light_dependent_resistor_horz.ts
10657
- var { paths: paths53, texts: texts55, bounds: bounds53, refblocks: refblocks53, circles: circles51 } = light_dependent_resistor_default;
10921
+ var { paths: paths63, texts: texts65, bounds: bounds63, refblocks: refblocks63, circles: circles61 } = light_dependent_resistor_default;
10658
10922
  var light_dependent_resistor_horz_default = defineSymbol({
10659
10923
  primitives: [
10660
- ...Object.values(paths53),
10661
- ...Object.values(circles51),
10662
- { ...texts55.top1, anchor: "middle_left", x: 0 },
10663
- { ...texts55.bottom1, anchor: "middle_left", x: 0 }
10924
+ ...Object.values(paths63),
10925
+ ...Object.values(circles61),
10926
+ { ...texts65.top1, anchor: "middle_left", x: 0 },
10927
+ { ...texts65.bottom1, anchor: "middle_left", x: 0 }
10664
10928
  ],
10665
10929
  ports: [
10666
- { ...refblocks53.left1, labels: ["1"] },
10930
+ { ...refblocks63.left1, labels: ["1"] },
10667
10931
  // TODO add more "standard" labels
10668
- { ...refblocks53.right1, labels: ["2"] }
10932
+ { ...refblocks63.right1, labels: ["2"] }
10669
10933
  // TODO add more "standard" labels
10670
10934
  ],
10671
- size: { width: bounds53.width, height: bounds53.height },
10672
- center: { x: bounds53.centerX, y: bounds53.centerY }
10935
+ size: { width: bounds63.width, height: bounds63.height },
10936
+ center: { x: bounds63.centerX, y: bounds63.centerY }
10673
10937
  });
10674
10938
 
10675
10939
  // symbols/light_dependent_resistor_vert.ts
10676
10940
  var rotatedSymbol5 = rotateSymbol(light_dependent_resistor_horz_default);
10677
- var texts56 = rotatedSymbol5.primitives.filter((p) => p.type === "text");
10678
- var val24 = texts56.find((t) => t.text === "{VAL}");
10941
+ var texts66 = rotatedSymbol5.primitives.filter((p) => p.type === "text");
10942
+ var val24 = texts66.find((t) => t.text === "{VAL}");
10679
10943
  val24.x = -0.35;
10680
10944
  val24.y = 0;
10681
10945
  val24.anchor = "middle_right";
10682
- var ref24 = texts56.find((t) => t.text === "{REF}");
10946
+ var ref24 = texts66.find((t) => t.text === "{REF}");
10683
10947
  ref24.y = 0;
10684
10948
  ref24.x = 0.35;
10685
10949
  ref24.anchor = "middle_left";
@@ -10956,23 +11220,23 @@ var mosfet_depletion_normally_on_default = {
10956
11220
  };
10957
11221
 
10958
11222
  // symbols/mosfet_depletion_normally_on_horz.ts
10959
- var { paths: paths54, texts: texts57, bounds: bounds54, refblocks: refblocks54 } = mosfet_depletion_normally_on_default;
11223
+ var { paths: paths64, texts: texts67, bounds: bounds64, refblocks: refblocks64 } = mosfet_depletion_normally_on_default;
10960
11224
  var mosfet_depletion_normally_on_horz_default = defineSymbol({
10961
11225
  primitives: [
10962
- ...Object.values(paths54),
10963
- { ...texts57.right1, anchor: "middle_left" },
10964
- { ...texts57.right2, anchor: "middle_left" }
11226
+ ...Object.values(paths64),
11227
+ { ...texts67.right1, anchor: "middle_left" },
11228
+ { ...texts67.right2, anchor: "middle_left" }
10965
11229
  ],
10966
11230
  ports: [
10967
- { ...refblocks54.top1, labels: ["1"] },
11231
+ { ...refblocks64.top1, labels: ["1"] },
10968
11232
  // TODO add more "standard" labels
10969
- { ...refblocks54.bottom1, labels: ["2"] },
11233
+ { ...refblocks64.bottom1, labels: ["2"] },
10970
11234
  // TODO add more "standard" labels
10971
- { ...refblocks54.left1, labels: ["3"] }
11235
+ { ...refblocks64.left1, labels: ["3"] }
10972
11236
  // TODO add more "standard" labels
10973
11237
  ],
10974
- size: { width: bounds54.width + 0.4, height: bounds54.height },
10975
- center: { x: bounds54.centerX + 0.2, y: bounds54.centerY }
11238
+ size: { width: bounds64.width + 0.4, height: bounds64.height },
11239
+ center: { x: bounds64.centerX + 0.2, y: bounds64.centerY }
10976
11240
  });
10977
11241
 
10978
11242
  // symbols/mosfet_depletion_normally_on_vert.ts
@@ -11598,20 +11862,20 @@ var mushroom_head_normally_open_momentary_default = {
11598
11862
  };
11599
11863
 
11600
11864
  // symbols/mushroom_head_normally_open_momentary_horz.ts
11601
- var { paths: paths55, texts: texts58, bounds: bounds55, refblocks: refblocks55, circles: circles52 } = mushroom_head_normally_open_momentary_default;
11865
+ var { paths: paths65, texts: texts68, bounds: bounds65, refblocks: refblocks65, circles: circles62 } = mushroom_head_normally_open_momentary_default;
11602
11866
  var mushroom_head_normally_open_momentary_horz_default = defineSymbol({
11603
11867
  primitives: [
11604
- ...Object.values(paths55),
11605
- ...Object.values(circles52),
11606
- { ...texts58.top1, anchor: "middle_bottom", x: 0 },
11607
- { ...texts58.bottom1, anchor: "middle_top", x: 0 }
11868
+ ...Object.values(paths65),
11869
+ ...Object.values(circles62),
11870
+ { ...texts68.top1, anchor: "middle_bottom", x: 0 },
11871
+ { ...texts68.bottom1, anchor: "middle_top", x: 0 }
11608
11872
  ],
11609
11873
  ports: [
11610
- { ...refblocks55.left1, labels: ["1"] },
11611
- { ...refblocks55.right1, labels: ["2"] }
11874
+ { ...refblocks65.left1, labels: ["1"] },
11875
+ { ...refblocks65.right1, labels: ["2"] }
11612
11876
  ],
11613
- size: { width: bounds55.width, height: bounds55.height },
11614
- center: { x: bounds55.centerX + 6e-3, y: bounds55.centerY + 0.06 }
11877
+ size: { width: bounds65.width, height: bounds65.height },
11878
+ center: { x: bounds65.centerX + 6e-3, y: bounds65.centerY + 0.06 }
11615
11879
  });
11616
11880
 
11617
11881
  // symbols/mushroom_head_normally_open_momentary_vert.ts
@@ -11828,34 +12092,34 @@ var n_channel_d_mosfet_transistor_default = {
11828
12092
  };
11829
12093
 
11830
12094
  // symbols/n_channel_d_mosfet_transistor_horz.ts
11831
- var { paths: paths56, texts: texts59, bounds: bounds56, refblocks: refblocks56, circles: circles53 } = n_channel_d_mosfet_transistor_default;
12095
+ var { paths: paths66, texts: texts69, bounds: bounds66, refblocks: refblocks66, circles: circles63 } = n_channel_d_mosfet_transistor_default;
11832
12096
  var n_channel_d_mosfet_transistor_horz_default = defineSymbol({
11833
12097
  primitives: [
11834
- ...Object.values(paths56),
11835
- ...Object.values(circles53),
11836
- { ...texts59.top1, anchor: "middle_right", x: 0 },
11837
- { ...texts59.bottom1, anchor: "middle_right", x: 0 }
12098
+ ...Object.values(paths66),
12099
+ ...Object.values(circles63),
12100
+ { ...texts69.top1, anchor: "middle_right", x: 0 },
12101
+ { ...texts69.bottom1, anchor: "middle_right", x: 0 }
11838
12102
  ],
11839
12103
  ports: [
11840
- { ...refblocks56.top1, labels: ["1", "drain"] },
12104
+ { ...refblocks66.top1, labels: ["1", "drain"] },
11841
12105
  // TODO add more "standard" labels
11842
- { ...refblocks56.bottom1, labels: ["2", "source"] },
12106
+ { ...refblocks66.bottom1, labels: ["2", "source"] },
11843
12107
  // TODO add more "standard" labels
11844
- { ...refblocks56.left1, labels: ["3", "gate"] }
12108
+ { ...refblocks66.left1, labels: ["3", "gate"] }
11845
12109
  // TODO add more "standard" labels
11846
12110
  ],
11847
- size: { width: bounds56.width, height: bounds56.height },
11848
- center: { x: bounds56.centerX, y: bounds56.centerY }
12111
+ size: { width: bounds66.width, height: bounds66.height },
12112
+ center: { x: bounds66.centerX, y: bounds66.centerY }
11849
12113
  });
11850
12114
 
11851
12115
  // symbols/n_channel_d_mosfet_transistor_vert.ts
11852
12116
  var rotatedSymbol6 = rotateSymbol(n_channel_d_mosfet_transistor_horz_default);
11853
- var texts60 = rotatedSymbol6.primitives.filter((p) => p.type === "text");
11854
- var val27 = texts60.find((t) => t.text === "{VAL}");
12117
+ var texts70 = rotatedSymbol6.primitives.filter((p) => p.type === "text");
12118
+ var val27 = texts70.find((t) => t.text === "{VAL}");
11855
12119
  val27.x = -0.35;
11856
12120
  val27.y = 0;
11857
12121
  val27.anchor = "middle_right";
11858
- var ref27 = texts60.find((t) => t.text === "{REF}");
12122
+ var ref27 = texts70.find((t) => t.text === "{REF}");
11859
12123
  ref27.y = 0;
11860
12124
  ref27.x = 0.35;
11861
12125
  ref27.anchor = "middle_left";
@@ -12089,34 +12353,34 @@ var n_channel_e_mosfet_transistor_default = {
12089
12353
  };
12090
12354
 
12091
12355
  // symbols/n_channel_e_mosfet_transistor_horz.ts
12092
- var { paths: paths57, texts: texts61, bounds: bounds57, refblocks: refblocks57, circles: circles54 } = n_channel_e_mosfet_transistor_default;
12356
+ var { paths: paths67, texts: texts71, bounds: bounds67, refblocks: refblocks67, circles: circles64 } = n_channel_e_mosfet_transistor_default;
12093
12357
  var n_channel_e_mosfet_transistor_horz_default = defineSymbol({
12094
12358
  primitives: [
12095
- ...Object.values(paths57),
12096
- ...Object.values(circles54),
12097
- { ...texts61.top1, anchor: "middle_right", x: 0 },
12098
- { ...texts61.bottom1, anchor: "middle_right", x: 0 }
12359
+ ...Object.values(paths67),
12360
+ ...Object.values(circles64),
12361
+ { ...texts71.top1, anchor: "middle_right", x: 0 },
12362
+ { ...texts71.bottom1, anchor: "middle_right", x: 0 }
12099
12363
  ],
12100
12364
  ports: [
12101
- { ...refblocks57.top1, labels: ["1", "drain"] },
12365
+ { ...refblocks67.top1, labels: ["1", "drain"] },
12102
12366
  // TODO add more "standard" labels
12103
- { ...refblocks57.bottom1, labels: ["2", "source"] },
12367
+ { ...refblocks67.bottom1, labels: ["2", "source"] },
12104
12368
  // TODO add more "standard" labels
12105
- { ...refblocks57.left1, labels: ["3", "gate"] }
12369
+ { ...refblocks67.left1, labels: ["3", "gate"] }
12106
12370
  // TODO add more "standard" labels
12107
12371
  ],
12108
- size: { width: bounds57.width, height: bounds57.height },
12109
- center: { x: bounds57.centerX, y: bounds57.centerY }
12372
+ size: { width: bounds67.width, height: bounds67.height },
12373
+ center: { x: bounds67.centerX, y: bounds67.centerY }
12110
12374
  });
12111
12375
 
12112
12376
  // symbols/n_channel_e_mosfet_transistor_vert.ts
12113
12377
  var rotatedSymbol7 = rotateSymbol(n_channel_e_mosfet_transistor_horz_default);
12114
- var texts62 = rotatedSymbol7.primitives.filter((p) => p.type === "text");
12115
- var val28 = texts62.find((t) => t.text === "{VAL}");
12378
+ var texts72 = rotatedSymbol7.primitives.filter((p) => p.type === "text");
12379
+ var val28 = texts72.find((t) => t.text === "{VAL}");
12116
12380
  val28.x = -0.35;
12117
12381
  val28.y = 0;
12118
12382
  val28.anchor = "middle_right";
12119
- var ref28 = texts62.find((t) => t.text === "{REF}");
12383
+ var ref28 = texts72.find((t) => t.text === "{REF}");
12120
12384
  ref28.y = 0;
12121
12385
  ref28.x = 0.35;
12122
12386
  ref28.anchor = "middle_left";
@@ -12290,34 +12554,34 @@ var njfet_transistor_default = {
12290
12554
  };
12291
12555
 
12292
12556
  // symbols/njfet_transistor_horz.ts
12293
- var { paths: paths58, texts: texts63, bounds: bounds58, refblocks: refblocks58, circles: circles55 } = njfet_transistor_default;
12557
+ var { paths: paths68, texts: texts73, bounds: bounds68, refblocks: refblocks68, circles: circles65 } = njfet_transistor_default;
12294
12558
  var njfet_transistor_horz_default = defineSymbol({
12295
12559
  primitives: [
12296
- ...Object.values(paths58),
12297
- ...Object.values(circles55),
12298
- { ...texts63.top1, anchor: "middle_right", x: 0 },
12299
- { ...texts63.bottom1, anchor: "middle_right", x: 0 }
12560
+ ...Object.values(paths68),
12561
+ ...Object.values(circles65),
12562
+ { ...texts73.top1, anchor: "middle_right", x: 0 },
12563
+ { ...texts73.bottom1, anchor: "middle_right", x: 0 }
12300
12564
  ],
12301
12565
  ports: [
12302
- { ...refblocks58.top1, labels: ["1", "drain"] },
12566
+ { ...refblocks68.top1, labels: ["1", "drain"] },
12303
12567
  // TODO add more "standard" labels
12304
- { ...refblocks58.bottom1, labels: ["2", "source"] },
12568
+ { ...refblocks68.bottom1, labels: ["2", "source"] },
12305
12569
  // TODO add more "standard" labels
12306
- { ...refblocks58.left1, labels: ["3", "gate"] }
12570
+ { ...refblocks68.left1, labels: ["3", "gate"] }
12307
12571
  // TODO add more "standard" labels
12308
12572
  ],
12309
- size: { width: bounds58.width, height: bounds58.height },
12310
- center: { x: bounds58.centerX, y: bounds58.centerY }
12573
+ size: { width: bounds68.width, height: bounds68.height },
12574
+ center: { x: bounds68.centerX, y: bounds68.centerY }
12311
12575
  });
12312
12576
 
12313
12577
  // symbols/njfet_transistor_vert.ts
12314
12578
  var rotatedSymbol8 = rotateSymbol(njfet_transistor_horz_default);
12315
- var texts64 = rotatedSymbol8.primitives.filter((p) => p.type === "text");
12316
- var val29 = texts64.find((t) => t.text === "{VAL}");
12579
+ var texts74 = rotatedSymbol8.primitives.filter((p) => p.type === "text");
12580
+ var val29 = texts74.find((t) => t.text === "{VAL}");
12317
12581
  val29.x = -0.35;
12318
12582
  val29.y = 0;
12319
12583
  val29.anchor = "middle_right";
12320
- var ref29 = texts64.find((t) => t.text === "{REF}");
12584
+ var ref29 = texts74.find((t) => t.text === "{REF}");
12321
12585
  ref29.y = 0;
12322
12586
  ref29.x = 0.35;
12323
12587
  ref29.anchor = "middle_left";
@@ -12372,11 +12636,11 @@ var not_connected_default = {
12372
12636
  };
12373
12637
 
12374
12638
  // symbols/not_connected_right.ts
12375
- var { paths: paths59, bounds: bounds59, refblocks: refblocks59 } = not_connected_default;
12639
+ var { paths: paths69, bounds: bounds69, refblocks: refblocks69 } = not_connected_default;
12376
12640
  var not_connected_right_default = modifySymbol({
12377
- primitives: [...Object.values(paths59)],
12378
- ports: [{ ...refblocks59.left1, labels: ["1"] }],
12379
- center: { x: bounds59.centerX, y: bounds59.centerY }
12641
+ primitives: [...Object.values(paths69)],
12642
+ ports: [{ ...refblocks69.left1, labels: ["1"] }],
12643
+ center: { x: bounds69.centerX, y: bounds69.centerY }
12380
12644
  }).rotateRightFacingSymbol("right").labelPort("left1", ["1"]).build();
12381
12645
 
12382
12646
  // symbols/not_connected_down.ts
@@ -12556,11 +12820,11 @@ var npn_bipolar_transistor_default = {
12556
12820
  };
12557
12821
 
12558
12822
  // symbols/npn_bipolar_transistor_down.ts
12559
- var { paths: paths60, texts: texts65, bounds: bounds60, refblocks: refblocks60, circles: circles56 } = npn_bipolar_transistor_default;
12823
+ var { paths: paths70, texts: texts75, bounds: bounds70, refblocks: refblocks70, circles: circles66 } = npn_bipolar_transistor_default;
12560
12824
  var npn_bipolar_transistor_down_default = modifySymbol({
12561
12825
  primitives: [
12562
- ...Object.values(paths60),
12563
- ...Object.values(circles56),
12826
+ ...Object.values(paths70),
12827
+ ...Object.values(circles66),
12564
12828
  {
12565
12829
  type: "text",
12566
12830
  text: "{REF}",
@@ -12575,24 +12839,24 @@ var npn_bipolar_transistor_down_default = modifySymbol({
12575
12839
  }
12576
12840
  ],
12577
12841
  ports: [
12578
- { ...refblocks60.top1, labels: ["1"] },
12579
- { ...refblocks60.bottom1, labels: ["3"] },
12580
- { ...refblocks60.left1, labels: ["2"] }
12842
+ { ...refblocks70.top1, labels: ["1"] },
12843
+ { ...refblocks70.bottom1, labels: ["3"] },
12844
+ { ...refblocks70.left1, labels: ["2"] }
12581
12845
  ],
12582
- size: { width: bounds60.width, height: bounds60.height },
12583
- center: { x: bounds60.centerX, y: bounds60.centerY }
12846
+ size: { width: bounds70.width, height: bounds70.height },
12847
+ center: { x: bounds70.centerX, y: bounds70.centerY }
12584
12848
  }).rotateRightFacingSymbol("right").changeTextAnchor("{REF}", "middle_right").changeTextAnchor("{VAL}", "middle_right").build();
12585
12849
 
12586
12850
  // symbols/npn_bipolar_transistor_horz.ts
12587
- var { paths: paths61, texts: texts66, bounds: bounds61, refblocks: refblocks61, circles: circles57 } = npn_bipolar_transistor_default;
12851
+ var { paths: paths71, texts: texts76, bounds: bounds71, refblocks: refblocks71, circles: circles67 } = npn_bipolar_transistor_default;
12588
12852
  var npn_bipolar_transistor_horz_default = modifySymbol(npn_bipolar_transistor_default).rotateRightFacingSymbol("up").changeTextAnchor("{VAL}", "middle_left").labelPort("left1", ["2"]).labelPort("top1", ["1"]).labelPort("bottom1", ["3"]).changeTextAnchor("{REF}", "middle_right").build();
12589
12853
 
12590
12854
  // symbols/npn_bipolar_transistor_left.ts
12591
- var { paths: paths62, texts: texts67, bounds: bounds62, refblocks: refblocks62, circles: circles58 } = npn_bipolar_transistor_default;
12855
+ var { paths: paths72, texts: texts77, bounds: bounds72, refblocks: refblocks72, circles: circles68 } = npn_bipolar_transistor_default;
12592
12856
  var npn_bipolar_transistor_left_default = modifySymbol({
12593
12857
  primitives: [
12594
- ...Object.values(paths62),
12595
- ...Object.values(circles58),
12858
+ ...Object.values(paths72),
12859
+ ...Object.values(circles68),
12596
12860
  {
12597
12861
  type: "text",
12598
12862
  text: "{REF}",
@@ -12607,20 +12871,20 @@ var npn_bipolar_transistor_left_default = modifySymbol({
12607
12871
  }
12608
12872
  ],
12609
12873
  ports: [
12610
- { ...refblocks62.top1, labels: ["1"] },
12611
- { ...refblocks62.bottom1, labels: ["3"] },
12612
- { ...refblocks62.left1, labels: ["2"] }
12874
+ { ...refblocks72.top1, labels: ["1"] },
12875
+ { ...refblocks72.bottom1, labels: ["3"] },
12876
+ { ...refblocks72.left1, labels: ["2"] }
12613
12877
  ],
12614
- size: { width: bounds62.width, height: bounds62.height },
12615
- center: { x: bounds62.centerX, y: bounds62.centerY }
12878
+ size: { width: bounds72.width, height: bounds72.height },
12879
+ center: { x: bounds72.centerX, y: bounds72.centerY }
12616
12880
  }).rotateRightFacingSymbol("down").changeTextAnchor("{REF}", "middle_bottom").changeTextAnchor("{VAL}", "middle_bottom").build();
12617
12881
 
12618
12882
  // symbols/npn_bipolar_transistor_right.ts
12619
- var { paths: paths63, texts: texts68, bounds: bounds63, refblocks: refblocks63, circles: circles59 } = npn_bipolar_transistor_default;
12883
+ var { paths: paths73, texts: texts78, bounds: bounds73, refblocks: refblocks73, circles: circles69 } = npn_bipolar_transistor_default;
12620
12884
  var npn_bipolar_transistor_right_default = modifySymbol({
12621
12885
  primitives: [
12622
- ...Object.values(paths63),
12623
- ...Object.values(circles59),
12886
+ ...Object.values(paths73),
12887
+ ...Object.values(circles69),
12624
12888
  {
12625
12889
  type: "text",
12626
12890
  text: "{REF}",
@@ -12635,20 +12899,20 @@ var npn_bipolar_transistor_right_default = modifySymbol({
12635
12899
  }
12636
12900
  ],
12637
12901
  ports: [
12638
- { ...refblocks63.top1, labels: ["1"] },
12639
- { ...refblocks63.bottom1, labels: ["3"] },
12640
- { ...refblocks63.left1, labels: ["2"] }
12902
+ { ...refblocks73.top1, labels: ["1"] },
12903
+ { ...refblocks73.bottom1, labels: ["3"] },
12904
+ { ...refblocks73.left1, labels: ["2"] }
12641
12905
  ],
12642
- size: { width: bounds63.width, height: bounds63.height },
12643
- center: { x: bounds63.centerX, y: bounds63.centerY }
12906
+ size: { width: bounds73.width, height: bounds73.height },
12907
+ center: { x: bounds73.centerX, y: bounds73.centerY }
12644
12908
  }).rotateRightFacingSymbol("up").changeTextAnchor("{REF}", "middle_top").changeTextAnchor("{VAL}", "middle_top").build();
12645
12909
 
12646
12910
  // symbols/npn_bipolar_transistor_up.ts
12647
- var { paths: paths64, texts: texts69, bounds: bounds64, refblocks: refblocks64, circles: circles60 } = npn_bipolar_transistor_default;
12911
+ var { paths: paths74, texts: texts79, bounds: bounds74, refblocks: refblocks74, circles: circles70 } = npn_bipolar_transistor_default;
12648
12912
  var npn_bipolar_transistor_up_default = modifySymbol({
12649
12913
  primitives: [
12650
- ...Object.values(paths64),
12651
- ...Object.values(circles60),
12914
+ ...Object.values(paths74),
12915
+ ...Object.values(circles70),
12652
12916
  {
12653
12917
  type: "text",
12654
12918
  text: "{REF}",
@@ -12663,20 +12927,20 @@ var npn_bipolar_transistor_up_default = modifySymbol({
12663
12927
  }
12664
12928
  ],
12665
12929
  ports: [
12666
- { ...refblocks64.top1, labels: ["1"] },
12667
- { ...refblocks64.bottom1, labels: ["3"] },
12668
- { ...refblocks64.left1, labels: ["2"] }
12930
+ { ...refblocks74.top1, labels: ["1"] },
12931
+ { ...refblocks74.bottom1, labels: ["3"] },
12932
+ { ...refblocks74.left1, labels: ["2"] }
12669
12933
  ],
12670
- size: { width: bounds64.width, height: bounds64.height },
12671
- center: { x: bounds64.centerX, y: bounds64.centerY }
12934
+ size: { width: bounds74.width, height: bounds74.height },
12935
+ center: { x: bounds74.centerX, y: bounds74.centerY }
12672
12936
  }).rotateRightFacingSymbol("left").changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
12673
12937
 
12674
12938
  // symbols/npn_bipolar_transistor_vert.ts
12675
- var { paths: paths65, texts: texts70, bounds: bounds65, refblocks: refblocks65, circles: circles61 } = npn_bipolar_transistor_default;
12939
+ var { paths: paths75, texts: texts80, bounds: bounds75, refblocks: refblocks75, circles: circles71 } = npn_bipolar_transistor_default;
12676
12940
  var npn_bipolar_transistor_vert_default = modifySymbol({
12677
12941
  primitives: [
12678
- ...Object.values(paths65),
12679
- ...Object.values(circles61),
12942
+ ...Object.values(paths75),
12943
+ ...Object.values(circles71),
12680
12944
  {
12681
12945
  type: "text",
12682
12946
  text: "{REF}",
@@ -12691,12 +12955,12 @@ var npn_bipolar_transistor_vert_default = modifySymbol({
12691
12955
  }
12692
12956
  ],
12693
12957
  ports: [
12694
- { ...refblocks65.top1, labels: ["1"] },
12695
- { ...refblocks65.bottom1, labels: ["3"] },
12696
- { ...refblocks65.left1, labels: ["2"] }
12958
+ { ...refblocks75.top1, labels: ["1"] },
12959
+ { ...refblocks75.bottom1, labels: ["3"] },
12960
+ { ...refblocks75.left1, labels: ["2"] }
12697
12961
  ],
12698
- size: { width: bounds65.width, height: bounds65.height },
12699
- center: { x: bounds65.centerX, y: bounds65.centerY }
12962
+ size: { width: bounds75.width, height: bounds75.height },
12963
+ center: { x: bounds75.centerX, y: bounds75.centerY }
12700
12964
  }).rotateRightFacingSymbol("left").changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
12701
12965
 
12702
12966
  // assets/generated/opamp_no_power.json
@@ -13319,34 +13583,34 @@ var p_channel_d_mosfet_transistor_default = {
13319
13583
  };
13320
13584
 
13321
13585
  // symbols/p_channel_d_mosfet_transistor_horz.ts
13322
- var { paths: paths66, texts: texts71, bounds: bounds66, refblocks: refblocks66, circles: circles62 } = p_channel_d_mosfet_transistor_default;
13586
+ var { paths: paths76, texts: texts81, bounds: bounds76, refblocks: refblocks76, circles: circles72 } = p_channel_d_mosfet_transistor_default;
13323
13587
  var p_channel_d_mosfet_transistor_horz_default = defineSymbol({
13324
13588
  primitives: [
13325
- ...Object.values(paths66),
13326
- ...Object.values(circles62),
13327
- { ...texts71.top1, anchor: "middle_right", x: 0 },
13328
- { ...texts71.bottom1, anchor: "middle_right", x: 0 }
13589
+ ...Object.values(paths76),
13590
+ ...Object.values(circles72),
13591
+ { ...texts81.top1, anchor: "middle_right", x: 0 },
13592
+ { ...texts81.bottom1, anchor: "middle_right", x: 0 }
13329
13593
  ],
13330
13594
  ports: [
13331
- { ...refblocks66.top1, labels: ["1", "drain"] },
13595
+ { ...refblocks76.top1, labels: ["1", "drain"] },
13332
13596
  // TODO add more "standard" labels
13333
- { ...refblocks66.bottom1, labels: ["2", "source"] },
13597
+ { ...refblocks76.bottom1, labels: ["2", "source"] },
13334
13598
  // TODO add more "standard" labels
13335
- { ...refblocks66.left1, labels: ["3", "gate"] }
13599
+ { ...refblocks76.left1, labels: ["3", "gate"] }
13336
13600
  // TODO add more "standard" labels
13337
13601
  ],
13338
- size: { width: bounds66.width, height: bounds66.height },
13339
- center: { x: bounds66.centerX, y: bounds66.centerY }
13602
+ size: { width: bounds76.width, height: bounds76.height },
13603
+ center: { x: bounds76.centerX, y: bounds76.centerY }
13340
13604
  });
13341
13605
 
13342
13606
  // symbols/p_channel_d_mosfet_transistor_vert.ts
13343
13607
  var rotatedSymbol9 = rotateSymbol(p_channel_d_mosfet_transistor_horz_default);
13344
- var texts72 = rotatedSymbol9.primitives.filter((p) => p.type === "text");
13345
- var val30 = texts72.find((t) => t.text === "{VAL}");
13608
+ var texts82 = rotatedSymbol9.primitives.filter((p) => p.type === "text");
13609
+ var val30 = texts82.find((t) => t.text === "{VAL}");
13346
13610
  val30.x = -0.35;
13347
13611
  val30.y = 0;
13348
13612
  val30.anchor = "middle_right";
13349
- var ref30 = texts72.find((t) => t.text === "{REF}");
13613
+ var ref30 = texts82.find((t) => t.text === "{REF}");
13350
13614
  ref30.y = 0;
13351
13615
  ref30.x = 0.35;
13352
13616
  ref30.anchor = "middle_left";
@@ -13580,34 +13844,34 @@ var p_channel_e_mosfet_transistor_default = {
13580
13844
  };
13581
13845
 
13582
13846
  // symbols/p_channel_e_mosfet_transistor_horz.ts
13583
- var { paths: paths67, texts: texts73, bounds: bounds67, refblocks: refblocks67, circles: circles63 } = p_channel_e_mosfet_transistor_default;
13847
+ var { paths: paths77, texts: texts83, bounds: bounds77, refblocks: refblocks77, circles: circles73 } = p_channel_e_mosfet_transistor_default;
13584
13848
  var p_channel_e_mosfet_transistor_horz_default = defineSymbol({
13585
13849
  primitives: [
13586
- ...Object.values(paths67),
13587
- ...Object.values(circles63),
13588
- { ...texts73.top1, anchor: "middle_right", x: 0 },
13589
- { ...texts73.bottom1, anchor: "middle_right", x: 0 }
13850
+ ...Object.values(paths77),
13851
+ ...Object.values(circles73),
13852
+ { ...texts83.top1, anchor: "middle_right", x: 0 },
13853
+ { ...texts83.bottom1, anchor: "middle_right", x: 0 }
13590
13854
  ],
13591
13855
  ports: [
13592
- { ...refblocks67.top1, labels: ["1", "drain"] },
13856
+ { ...refblocks77.top1, labels: ["1", "drain"] },
13593
13857
  // TODO add more "standard" labels
13594
- { ...refblocks67.bottom1, labels: ["2", "source"] },
13858
+ { ...refblocks77.bottom1, labels: ["2", "source"] },
13595
13859
  // TODO add more "standard" labels
13596
- { ...refblocks67.left1, labels: ["3", "gate"] }
13860
+ { ...refblocks77.left1, labels: ["3", "gate"] }
13597
13861
  // TODO add more "standard" labels
13598
13862
  ],
13599
- size: { width: bounds67.width, height: bounds67.height },
13600
- center: { x: bounds67.centerX, y: bounds67.centerY }
13863
+ size: { width: bounds77.width, height: bounds77.height },
13864
+ center: { x: bounds77.centerX, y: bounds77.centerY }
13601
13865
  });
13602
13866
 
13603
13867
  // symbols/p_channel_e_mosfet_transistor_vert.ts
13604
13868
  var rotatedSymbol10 = rotateSymbol(p_channel_e_mosfet_transistor_horz_default);
13605
- var texts74 = rotatedSymbol10.primitives.filter((p) => p.type === "text");
13606
- var val31 = texts74.find((t) => t.text === "{VAL}");
13869
+ var texts84 = rotatedSymbol10.primitives.filter((p) => p.type === "text");
13870
+ var val31 = texts84.find((t) => t.text === "{VAL}");
13607
13871
  val31.x = -0.35;
13608
13872
  val31.y = 0;
13609
13873
  val31.anchor = "middle_right";
13610
- var ref31 = texts74.find((t) => t.text === "{REF}");
13874
+ var ref31 = texts84.find((t) => t.text === "{REF}");
13611
13875
  ref31.y = 0;
13612
13876
  ref31.x = 0.35;
13613
13877
  ref31.anchor = "middle_left";
@@ -13842,8 +14106,8 @@ var photodiode_horz_default = modifySymbol(photodiode_default).changeTextAnchor(
13842
14106
 
13843
14107
  // symbols/photodiode_vert.ts
13844
14108
  var rotatedSymbol11 = rotateSymbol(photodiode_horz_default);
13845
- var texts75 = rotatedSymbol11.primitives.filter((p) => p.type === "text");
13846
- var ref32 = texts75.find((t) => t.text === "{REF}");
14109
+ var texts85 = rotatedSymbol11.primitives.filter((p) => p.type === "text");
14110
+ var ref32 = texts85.find((t) => t.text === "{REF}");
13847
14111
  ref32.y = 0;
13848
14112
  ref32.anchor = "middle_left";
13849
14113
  var photodiode_vert_default = rotatedSymbol11;
@@ -14016,34 +14280,34 @@ var pjfet_transistor_default = {
14016
14280
  };
14017
14281
 
14018
14282
  // symbols/pjfet_transistor_horz.ts
14019
- var { paths: paths68, texts: texts76, bounds: bounds68, refblocks: refblocks68, circles: circles64 } = pjfet_transistor_default;
14283
+ var { paths: paths78, texts: texts86, bounds: bounds78, refblocks: refblocks78, circles: circles74 } = pjfet_transistor_default;
14020
14284
  var pjfet_transistor_horz_default = defineSymbol({
14021
14285
  primitives: [
14022
- ...Object.values(paths68),
14023
- ...Object.values(circles64),
14024
- { ...texts76.top1, anchor: "middle_right", x: 0 },
14025
- { ...texts76.bottom1, anchor: "middle_right" }
14286
+ ...Object.values(paths78),
14287
+ ...Object.values(circles74),
14288
+ { ...texts86.top1, anchor: "middle_right", x: 0 },
14289
+ { ...texts86.bottom1, anchor: "middle_right" }
14026
14290
  ],
14027
14291
  ports: [
14028
- { ...refblocks68.top1, labels: ["1", "drain"] },
14292
+ { ...refblocks78.top1, labels: ["1", "drain"] },
14029
14293
  // TODO add more "standard" labels
14030
- { ...refblocks68.bottom1, labels: ["2", "source"] },
14294
+ { ...refblocks78.bottom1, labels: ["2", "source"] },
14031
14295
  // TODO add more "standard" labels
14032
- { ...refblocks68.left1, labels: ["3", "gate"] }
14296
+ { ...refblocks78.left1, labels: ["3", "gate"] }
14033
14297
  // TODO add more "standard" labels
14034
14298
  ],
14035
- size: { width: bounds68.width, height: bounds68.height },
14036
- center: { x: bounds68.centerX, y: bounds68.centerY }
14299
+ size: { width: bounds78.width, height: bounds78.height },
14300
+ center: { x: bounds78.centerX, y: bounds78.centerY }
14037
14301
  });
14038
14302
 
14039
14303
  // symbols/pjfet_transistor_vert.ts
14040
14304
  var rotatedSymbol12 = rotateSymbol(pjfet_transistor_horz_default);
14041
- var texts77 = rotatedSymbol12.primitives.filter((p) => p.type === "text");
14042
- var val32 = texts77.find((t) => t.text === "{VAL}");
14305
+ var texts87 = rotatedSymbol12.primitives.filter((p) => p.type === "text");
14306
+ var val32 = texts87.find((t) => t.text === "{VAL}");
14043
14307
  val32.x = -0.35;
14044
14308
  val32.y = 0;
14045
14309
  val32.anchor = "middle_right";
14046
- var ref33 = texts77.find((t) => t.text === "{REF}");
14310
+ var ref33 = texts87.find((t) => t.text === "{REF}");
14047
14311
  ref33.y = 0;
14048
14312
  ref33.x = 0.35;
14049
14313
  ref33.anchor = "middle_left";
@@ -14217,11 +14481,11 @@ var pnp_bipolar_transistor_default = {
14217
14481
  };
14218
14482
 
14219
14483
  // symbols/pnp_bipolar_transistor_down.ts
14220
- var { paths: paths69, texts: texts78, bounds: bounds69, refblocks: refblocks69, circles: circles65 } = pnp_bipolar_transistor_default;
14484
+ var { paths: paths79, texts: texts88, bounds: bounds79, refblocks: refblocks79, circles: circles75 } = pnp_bipolar_transistor_default;
14221
14485
  var pnp_bipolar_transistor_down_default = modifySymbol({
14222
14486
  primitives: [
14223
- ...Object.values(paths69),
14224
- ...Object.values(circles65),
14487
+ ...Object.values(paths79),
14488
+ ...Object.values(circles75),
14225
14489
  {
14226
14490
  type: "text",
14227
14491
  text: "{REF}",
@@ -14236,24 +14500,24 @@ var pnp_bipolar_transistor_down_default = modifySymbol({
14236
14500
  }
14237
14501
  ],
14238
14502
  ports: [
14239
- { ...refblocks69.top1, labels: ["1"] },
14240
- { ...refblocks69.bottom1, labels: ["3"] },
14241
- { ...refblocks69.left1, labels: ["2"] }
14503
+ { ...refblocks79.top1, labels: ["1"] },
14504
+ { ...refblocks79.bottom1, labels: ["3"] },
14505
+ { ...refblocks79.left1, labels: ["2"] }
14242
14506
  ],
14243
- size: { width: bounds69.width, height: bounds69.height },
14244
- center: { x: bounds69.centerX, y: bounds69.centerY }
14507
+ size: { width: bounds79.width, height: bounds79.height },
14508
+ center: { x: bounds79.centerX, y: bounds79.centerY }
14245
14509
  }).rotateRightFacingSymbol("right").changeTextAnchor("{REF}", "middle_right").changeTextAnchor("{VAL}", "middle_right").build();
14246
14510
 
14247
14511
  // symbols/pnp_bipolar_transistor_horz.ts
14248
- var { paths: paths70, texts: texts79, bounds: bounds70, refblocks: refblocks70, circles: circles66 } = pnp_bipolar_transistor_default;
14512
+ var { paths: paths80, texts: texts89, bounds: bounds80, refblocks: refblocks80, circles: circles76 } = pnp_bipolar_transistor_default;
14249
14513
  var pnp_bipolar_transistor_horz_default = modifySymbol(pnp_bipolar_transistor_default).rotateRightFacingSymbol("up").changeTextAnchor("{VAL}", "middle_left").labelPort("left1", ["2"]).labelPort("top1", ["1"]).labelPort("bottom1", ["3"]).changeTextAnchor("{REF}", "middle_right").build();
14250
14514
 
14251
14515
  // symbols/pnp_bipolar_transistor_left.ts
14252
- var { paths: paths71, texts: texts80, bounds: bounds71, refblocks: refblocks71, circles: circles67 } = pnp_bipolar_transistor_default;
14516
+ var { paths: paths81, texts: texts90, bounds: bounds81, refblocks: refblocks81, circles: circles77 } = pnp_bipolar_transistor_default;
14253
14517
  var pnp_bipolar_transistor_left_default = modifySymbol({
14254
14518
  primitives: [
14255
- ...Object.values(paths71),
14256
- ...Object.values(circles67),
14519
+ ...Object.values(paths81),
14520
+ ...Object.values(circles77),
14257
14521
  {
14258
14522
  type: "text",
14259
14523
  text: "{REF}",
@@ -14268,20 +14532,20 @@ var pnp_bipolar_transistor_left_default = modifySymbol({
14268
14532
  }
14269
14533
  ],
14270
14534
  ports: [
14271
- { ...refblocks71.top1, labels: ["1"] },
14272
- { ...refblocks71.bottom1, labels: ["3"] },
14273
- { ...refblocks71.left1, labels: ["2"] }
14535
+ { ...refblocks81.top1, labels: ["1"] },
14536
+ { ...refblocks81.bottom1, labels: ["3"] },
14537
+ { ...refblocks81.left1, labels: ["2"] }
14274
14538
  ],
14275
- size: { width: bounds71.width, height: bounds71.height },
14276
- center: { x: bounds71.centerX, y: bounds71.centerY }
14539
+ size: { width: bounds81.width, height: bounds81.height },
14540
+ center: { x: bounds81.centerX, y: bounds81.centerY }
14277
14541
  }).rotateRightFacingSymbol("down").changeTextAnchor("{REF}", "middle_bottom").changeTextAnchor("{VAL}", "middle_bottom").build();
14278
14542
 
14279
14543
  // symbols/pnp_bipolar_transistor_right.ts
14280
- var { paths: paths72, texts: texts81, bounds: bounds72, refblocks: refblocks72, circles: circles68 } = pnp_bipolar_transistor_default;
14544
+ var { paths: paths82, texts: texts91, bounds: bounds82, refblocks: refblocks82, circles: circles78 } = pnp_bipolar_transistor_default;
14281
14545
  var pnp_bipolar_transistor_right_default = modifySymbol({
14282
14546
  primitives: [
14283
- ...Object.values(paths72),
14284
- ...Object.values(circles68),
14547
+ ...Object.values(paths82),
14548
+ ...Object.values(circles78),
14285
14549
  {
14286
14550
  type: "text",
14287
14551
  text: "{REF}",
@@ -14296,20 +14560,20 @@ var pnp_bipolar_transistor_right_default = modifySymbol({
14296
14560
  }
14297
14561
  ],
14298
14562
  ports: [
14299
- { ...refblocks72.top1, labels: ["1"] },
14300
- { ...refblocks72.bottom1, labels: ["3"] },
14301
- { ...refblocks72.left1, labels: ["2"] }
14563
+ { ...refblocks82.top1, labels: ["1"] },
14564
+ { ...refblocks82.bottom1, labels: ["3"] },
14565
+ { ...refblocks82.left1, labels: ["2"] }
14302
14566
  ],
14303
- size: { width: bounds72.width, height: bounds72.height },
14304
- center: { x: bounds72.centerX, y: bounds72.centerY }
14567
+ size: { width: bounds82.width, height: bounds82.height },
14568
+ center: { x: bounds82.centerX, y: bounds82.centerY }
14305
14569
  }).rotateRightFacingSymbol("up").changeTextAnchor("{REF}", "middle_top").changeTextAnchor("{VAL}", "middle_top").build();
14306
14570
 
14307
14571
  // symbols/pnp_bipolar_transistor_up.ts
14308
- var { paths: paths73, texts: texts82, bounds: bounds73, refblocks: refblocks73, circles: circles69 } = pnp_bipolar_transistor_default;
14572
+ var { paths: paths83, texts: texts92, bounds: bounds83, refblocks: refblocks83, circles: circles79 } = pnp_bipolar_transistor_default;
14309
14573
  var pnp_bipolar_transistor_up_default = modifySymbol({
14310
14574
  primitives: [
14311
- ...Object.values(paths73),
14312
- ...Object.values(circles69),
14575
+ ...Object.values(paths83),
14576
+ ...Object.values(circles79),
14313
14577
  {
14314
14578
  type: "text",
14315
14579
  text: "{REF}",
@@ -14324,20 +14588,20 @@ var pnp_bipolar_transistor_up_default = modifySymbol({
14324
14588
  }
14325
14589
  ],
14326
14590
  ports: [
14327
- { ...refblocks73.top1, labels: ["1"] },
14328
- { ...refblocks73.bottom1, labels: ["3"] },
14329
- { ...refblocks73.left1, labels: ["2"] }
14591
+ { ...refblocks83.top1, labels: ["1"] },
14592
+ { ...refblocks83.bottom1, labels: ["3"] },
14593
+ { ...refblocks83.left1, labels: ["2"] }
14330
14594
  ],
14331
- size: { width: bounds73.width, height: bounds73.height },
14332
- center: { x: bounds73.centerX, y: bounds73.centerY }
14595
+ size: { width: bounds83.width, height: bounds83.height },
14596
+ center: { x: bounds83.centerX, y: bounds83.centerY }
14333
14597
  }).rotateRightFacingSymbol("left").changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
14334
14598
 
14335
14599
  // symbols/pnp_bipolar_transistor_vert.ts
14336
- var { paths: paths74, texts: texts83, bounds: bounds74, refblocks: refblocks74, circles: circles70 } = pnp_bipolar_transistor_default;
14600
+ var { paths: paths84, texts: texts93, bounds: bounds84, refblocks: refblocks84, circles: circles80 } = pnp_bipolar_transistor_default;
14337
14601
  var pnp_bipolar_transistor_vert_default = modifySymbol({
14338
14602
  primitives: [
14339
- ...Object.values(paths74),
14340
- ...Object.values(circles70),
14603
+ ...Object.values(paths84),
14604
+ ...Object.values(circles80),
14341
14605
  {
14342
14606
  type: "text",
14343
14607
  text: "{REF}",
@@ -14352,12 +14616,12 @@ var pnp_bipolar_transistor_vert_default = modifySymbol({
14352
14616
  }
14353
14617
  ],
14354
14618
  ports: [
14355
- { ...refblocks74.top1, labels: ["1"] },
14356
- { ...refblocks74.bottom1, labels: ["3"] },
14357
- { ...refblocks74.left1, labels: ["2"] }
14619
+ { ...refblocks84.top1, labels: ["1"] },
14620
+ { ...refblocks84.bottom1, labels: ["3"] },
14621
+ { ...refblocks84.left1, labels: ["2"] }
14358
14622
  ],
14359
- size: { width: bounds74.width, height: bounds74.height },
14360
- center: { x: bounds74.centerX, y: bounds74.centerY }
14623
+ size: { width: bounds84.width, height: bounds84.height },
14624
+ center: { x: bounds84.centerX, y: bounds84.centerY }
14361
14625
  }).rotateRightFacingSymbol("left").changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
14362
14626
 
14363
14627
  // assets/generated/potentiometer.json
@@ -14770,21 +15034,21 @@ var potentiometer_default = {
14770
15034
  };
14771
15035
 
14772
15036
  // symbols/potentiometer_horz.ts
14773
- var { paths: paths75, texts: texts84, bounds: bounds75, refblocks: refblocks75 } = potentiometer_default;
15037
+ var { paths: paths85, texts: texts94, bounds: bounds85, refblocks: refblocks85 } = potentiometer_default;
14774
15038
  var potentiometer_horz_default = defineSymbol({
14775
15039
  primitives: [
14776
- ...Object.values(paths75),
14777
- { ...texts84.bottom1, y: 0.35, anchor: "middle_top" },
14778
- { ...texts84.top1, anchor: "middle_left" }
15040
+ ...Object.values(paths85),
15041
+ { ...texts94.bottom1, y: 0.35, anchor: "middle_top" },
15042
+ { ...texts94.top1, anchor: "middle_left" }
14779
15043
  ],
14780
15044
  ports: [
14781
- { ...refblocks75.left1, labels: ["1"] },
15045
+ { ...refblocks85.left1, labels: ["1"] },
14782
15046
  // TODO add more "standard" labels
14783
- { ...refblocks75.right1, labels: ["2"] }
15047
+ { ...refblocks85.right1, labels: ["2"] }
14784
15048
  // TODO add more "standard" labels
14785
15049
  ],
14786
- size: { width: bounds75.width + 0.05, height: bounds75.height },
14787
- center: { x: bounds75.centerX, y: bounds75.centerY }
15050
+ size: { width: bounds85.width + 0.05, height: bounds85.height },
15051
+ center: { x: bounds85.centerX, y: bounds85.centerY }
14788
15052
  });
14789
15053
 
14790
15054
  // symbols/potentiometer_vert.ts
@@ -14947,21 +15211,21 @@ var potentiometer2_default = {
14947
15211
  };
14948
15212
 
14949
15213
  // symbols/potentiometer2_right.ts
14950
- var { paths: paths76, texts: texts85, bounds: bounds76, refblocks: refblocks76 } = potentiometer2_default;
15214
+ var { paths: paths86, texts: texts95, bounds: bounds86, refblocks: refblocks86 } = potentiometer2_default;
14951
15215
  var potentiometer2_right_default = defineSymbol({
14952
15216
  primitives: [
14953
- ...Object.values(paths76),
14954
- { ...texts85.bottom1, x: 0, y: -0.35, anchor: "middle_top" },
14955
- { ...texts85.top1, x: 0, y: 0.35, anchor: "middle_bottom" }
15217
+ ...Object.values(paths86),
15218
+ { ...texts95.bottom1, x: 0, y: -0.35, anchor: "middle_top" },
15219
+ { ...texts95.top1, x: 0, y: 0.35, anchor: "middle_bottom" }
14956
15220
  ],
14957
15221
  ports: [
14958
- { ...refblocks76.left1, labels: ["1"] },
15222
+ { ...refblocks86.left1, labels: ["1"] },
14959
15223
  // TODO add more "standard" labels
14960
- { ...refblocks76.right1, labels: ["2"] }
15224
+ { ...refblocks86.right1, labels: ["2"] }
14961
15225
  // TODO add more "standard" labels
14962
15226
  ],
14963
- size: { width: bounds76.width + 0.05, height: bounds76.height },
14964
- center: { x: bounds76.centerX, y: bounds76.centerY }
15227
+ size: { width: bounds86.width + 0.05, height: bounds86.height },
15228
+ center: { x: bounds86.centerX, y: bounds86.centerY }
14965
15229
  });
14966
15230
 
14967
15231
  // symbols/potentiometer2_down.ts
@@ -15206,11 +15470,11 @@ var power_factor_meter_default = {
15206
15470
  };
15207
15471
 
15208
15472
  // symbols/power_factor_meter_horz.ts
15209
- var { paths: paths77, texts: texts86, bounds: bounds77, refblocks: refblocks77, circles: circles71 } = power_factor_meter_default;
15473
+ var { paths: paths87, texts: texts96, bounds: bounds87, refblocks: refblocks87, circles: circles81 } = power_factor_meter_default;
15210
15474
  var power_factor_meter_horz_default = defineSymbol({
15211
15475
  primitives: [
15212
- ...Object.values(paths77),
15213
- ...Object.values(circles71),
15476
+ ...Object.values(paths87),
15477
+ ...Object.values(circles81),
15214
15478
  // { ...texts.top1, anchor: "middle_left" },
15215
15479
  {
15216
15480
  type: "text",
@@ -15237,21 +15501,21 @@ var power_factor_meter_horz_default = defineSymbol({
15237
15501
  }
15238
15502
  ],
15239
15503
  ports: [
15240
- { ...refblocks77.left1, labels: ["1"] },
15504
+ { ...refblocks87.left1, labels: ["1"] },
15241
15505
  // TODO add more "standard" labels
15242
- { ...refblocks77.right1, labels: ["2"] }
15506
+ { ...refblocks87.right1, labels: ["2"] }
15243
15507
  // TODO add more "standard" labels
15244
15508
  ],
15245
- size: { width: bounds77.width, height: bounds77.height },
15246
- center: { x: bounds77.centerX, y: bounds77.centerY }
15509
+ size: { width: bounds87.width, height: bounds87.height },
15510
+ center: { x: bounds87.centerX, y: bounds87.centerY }
15247
15511
  });
15248
15512
 
15249
15513
  // symbols/power_factor_meter_vert.ts
15250
15514
  var rotatedSymbol13 = rotateSymbol(power_factor_meter_horz_default);
15251
- var texts87 = rotatedSymbol13.primitives.filter((p) => p.type === "text");
15252
- var ref37 = texts87.find((t) => t.text === "{REF}");
15253
- var val36 = texts87.find((t) => t.text === "{VAL}");
15254
- var text_cos = texts87.find((t) => t.text === "COS \u03C6");
15515
+ var texts97 = rotatedSymbol13.primitives.filter((p) => p.type === "text");
15516
+ var ref37 = texts97.find((t) => t.text === "{REF}");
15517
+ var val36 = texts97.find((t) => t.text === "{VAL}");
15518
+ var text_cos = texts97.find((t) => t.text === "COS \u03C6");
15255
15519
  ref37.x = 0.35;
15256
15520
  ref37.y = 0;
15257
15521
  ref37.anchor = "middle_left";
@@ -15382,22 +15646,22 @@ var push_button_normally_closed_momentary_default = {
15382
15646
  };
15383
15647
 
15384
15648
  // symbols/push_button_normally_closed_momentary_horz.ts
15385
- var { paths: paths78, texts: texts88, bounds: bounds78, refblocks: refblocks78, circles: circles72 } = push_button_normally_closed_momentary_default;
15649
+ var { paths: paths88, texts: texts98, bounds: bounds88, refblocks: refblocks88, circles: circles82 } = push_button_normally_closed_momentary_default;
15386
15650
  var push_button_normally_closed_momentary_horz_default = defineSymbol({
15387
15651
  primitives: [
15388
- ...Object.values(paths78),
15389
- ...Object.values(circles72),
15390
- { ...texts88.top1, anchor: "middle_left" },
15391
- { ...texts88.bottom1, anchor: "middle_left" }
15652
+ ...Object.values(paths88),
15653
+ ...Object.values(circles82),
15654
+ { ...texts98.top1, anchor: "middle_left" },
15655
+ { ...texts98.bottom1, anchor: "middle_left" }
15392
15656
  ],
15393
15657
  ports: [
15394
- { ...refblocks78.left1, labels: ["1"] },
15658
+ { ...refblocks88.left1, labels: ["1"] },
15395
15659
  // TODO add more "standard" labels
15396
- { ...refblocks78.right1, labels: ["2"] }
15660
+ { ...refblocks88.right1, labels: ["2"] }
15397
15661
  // TODO add more "standard" labels
15398
15662
  ],
15399
- size: { width: bounds78.width, height: bounds78.height },
15400
- center: { x: bounds78.centerX, y: bounds78.centerY }
15663
+ size: { width: bounds88.width, height: bounds88.height },
15664
+ center: { x: bounds88.centerX, y: bounds88.centerY }
15401
15665
  });
15402
15666
 
15403
15667
  // symbols/push_button_normally_closed_momentary_vert.ts
@@ -15552,22 +15816,22 @@ var push_button_normally_open_momentary_default = {
15552
15816
  };
15553
15817
 
15554
15818
  // symbols/push_button_normally_open_momentary_horz.ts
15555
- var { paths: paths79, texts: texts89, bounds: bounds79, refblocks: refblocks79, circles: circles73 } = push_button_normally_open_momentary_default;
15819
+ var { paths: paths89, texts: texts99, bounds: bounds89, refblocks: refblocks89, circles: circles83 } = push_button_normally_open_momentary_default;
15556
15820
  var push_button_normally_open_momentary_horz_default = defineSymbol({
15557
15821
  primitives: [
15558
- ...Object.values(paths79),
15559
- ...Object.values(circles73),
15560
- { ...texts89.top1, anchor: "middle_left" },
15561
- { ...texts89.bottom1, anchor: "middle_left" }
15822
+ ...Object.values(paths89),
15823
+ ...Object.values(circles83),
15824
+ { ...texts99.top1, anchor: "middle_left" },
15825
+ { ...texts99.bottom1, anchor: "middle_left" }
15562
15826
  ],
15563
15827
  ports: [
15564
- { ...refblocks79.left1, labels: ["1"] },
15828
+ { ...refblocks89.left1, labels: ["1"] },
15565
15829
  // TODO add more "standard" labels
15566
- { ...refblocks79.right1, labels: ["2"] }
15830
+ { ...refblocks89.right1, labels: ["2"] }
15567
15831
  // TODO add more "standard" labels
15568
15832
  ],
15569
- size: { width: bounds79.width, height: bounds79.height },
15570
- center: { x: bounds79.centerX, y: bounds79.centerY }
15833
+ size: { width: bounds89.width, height: bounds89.height },
15834
+ center: { x: bounds89.centerX, y: bounds89.centerY }
15571
15835
  });
15572
15836
 
15573
15837
  // symbols/push_button_normally_open_momentary_vert.ts
@@ -15983,26 +16247,26 @@ var rectifier_diode_default = {
15983
16247
  };
15984
16248
 
15985
16249
  // symbols/rectifier_diode_horz.ts
15986
- var { paths: paths80, texts: texts90, bounds: bounds80, refblocks: refblocks80, circles: circles74 } = rectifier_diode_default;
16250
+ var { paths: paths90, texts: texts100, bounds: bounds90, refblocks: refblocks90, circles: circles84 } = rectifier_diode_default;
15987
16251
  var rectifier_diode_horz_default = defineSymbol({
15988
16252
  primitives: [
15989
- ...Object.values(paths80),
15990
- ...Object.values(circles74),
15991
- { ...texts90.top1, anchor: "middle_right" },
15992
- { ...texts90.bottom1, anchor: "middle_right" }
16253
+ ...Object.values(paths90),
16254
+ ...Object.values(circles84),
16255
+ { ...texts100.top1, anchor: "middle_right" },
16256
+ { ...texts100.bottom1, anchor: "middle_right" }
15993
16257
  ],
15994
16258
  ports: [
15995
- { ...refblocks80.top1, labels: ["1"] },
16259
+ { ...refblocks90.top1, labels: ["1"] },
15996
16260
  // TODO add more "standard" labels
15997
- { ...refblocks80.bottom1, labels: ["2"] },
16261
+ { ...refblocks90.bottom1, labels: ["2"] },
15998
16262
  // TODO add more "standard" labels
15999
- { ...refblocks80.left1, labels: ["3"] },
16263
+ { ...refblocks90.left1, labels: ["3"] },
16000
16264
  // TODO add more "standard" labels
16001
- { ...refblocks80.right1, labels: ["4"] }
16265
+ { ...refblocks90.right1, labels: ["4"] }
16002
16266
  // TODO add more "standard" labels
16003
16267
  ],
16004
- size: { width: bounds80.width, height: bounds80.height },
16005
- center: { x: bounds80.centerX, y: bounds80.centerY }
16268
+ size: { width: bounds90.width, height: bounds90.height },
16269
+ center: { x: bounds90.centerX, y: bounds90.centerY }
16006
16270
  });
16007
16271
 
16008
16272
  // symbols/rectifier_diode_vert.ts
@@ -16224,11 +16488,11 @@ var resistor_default = {
16224
16488
  };
16225
16489
 
16226
16490
  // symbols/resistor_down.ts
16227
- var { paths: paths81, texts: texts91, bounds: bounds81, refblocks: refblocks81, circles: circles75 } = resistor_default;
16491
+ var { paths: paths91, texts: texts101, bounds: bounds91, refblocks: refblocks91, circles: circles85 } = resistor_default;
16228
16492
  var resistor_down_default = modifySymbol({
16229
16493
  primitives: [
16230
- ...Object.values(paths81),
16231
- ...Object.values(circles75),
16494
+ ...Object.values(paths91),
16495
+ ...Object.values(circles85),
16232
16496
  {
16233
16497
  type: "text",
16234
16498
  text: "{REF}",
@@ -16243,21 +16507,21 @@ var resistor_down_default = modifySymbol({
16243
16507
  }
16244
16508
  ],
16245
16509
  ports: [
16246
- { ...refblocks81.left1, labels: ["1"] },
16510
+ { ...refblocks91.left1, labels: ["1"] },
16247
16511
  // TODO add more "standard" labels
16248
- { ...refblocks81.right1, labels: ["2"] }
16512
+ { ...refblocks91.right1, labels: ["2"] }
16249
16513
  // TODO add more "standard" labels
16250
16514
  ],
16251
- size: { width: bounds81.width, height: bounds81.height },
16252
- center: { x: bounds81.centerX, y: bounds81.centerY }
16515
+ size: { width: bounds91.width, height: bounds91.height },
16516
+ center: { x: bounds91.centerX, y: bounds91.centerY }
16253
16517
  }).rotateRightFacingSymbol("down").labelPort("left", ["1"]).labelPort("right", ["2"]).changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
16254
16518
 
16255
16519
  // symbols/resistor_left.ts
16256
- var { paths: paths82, texts: texts92, bounds: bounds82, refblocks: refblocks82, circles: circles76 } = resistor_default;
16520
+ var { paths: paths92, texts: texts102, bounds: bounds92, refblocks: refblocks92, circles: circles86 } = resistor_default;
16257
16521
  var resistor_left_default = modifySymbol({
16258
16522
  primitives: [
16259
- ...Object.values(paths82),
16260
- ...Object.values(circles76),
16523
+ ...Object.values(paths92),
16524
+ ...Object.values(circles86),
16261
16525
  {
16262
16526
  type: "text",
16263
16527
  text: "{REF}",
@@ -16272,21 +16536,21 @@ var resistor_left_default = modifySymbol({
16272
16536
  }
16273
16537
  ],
16274
16538
  ports: [
16275
- { ...refblocks82.left1, labels: ["1"] },
16539
+ { ...refblocks92.left1, labels: ["1"] },
16276
16540
  // TODO add more "standard" labels
16277
- { ...refblocks82.right1, labels: ["2"] }
16541
+ { ...refblocks92.right1, labels: ["2"] }
16278
16542
  // TODO add more "standard" labels
16279
16543
  ],
16280
- size: { width: bounds82.width, height: bounds82.height },
16281
- center: { x: bounds82.centerX, y: bounds82.centerY }
16544
+ size: { width: bounds92.width, height: bounds92.height },
16545
+ center: { x: bounds92.centerX, y: bounds92.centerY }
16282
16546
  }).rotateRightFacingSymbol("left").labelPort("left", ["1"]).labelPort("right", ["2"]).changeTextAnchor("{REF}", "middle_bottom").changeTextAnchor("{VAL}", "middle_top").build();
16283
16547
 
16284
16548
  // symbols/resistor_right.ts
16285
- var { paths: paths83, texts: texts93, bounds: bounds83, refblocks: refblocks83, circles: circles77 } = resistor_default;
16549
+ var { paths: paths93, texts: texts103, bounds: bounds93, refblocks: refblocks93, circles: circles87 } = resistor_default;
16286
16550
  var resistor_right_default = modifySymbol({
16287
16551
  primitives: [
16288
- ...Object.values(paths83),
16289
- ...Object.values(circles77),
16552
+ ...Object.values(paths93),
16553
+ ...Object.values(circles87),
16290
16554
  {
16291
16555
  type: "text",
16292
16556
  text: "{REF}",
@@ -16301,21 +16565,21 @@ var resistor_right_default = modifySymbol({
16301
16565
  }
16302
16566
  ],
16303
16567
  ports: [
16304
- { ...refblocks83.left1, labels: ["1"] },
16568
+ { ...refblocks93.left1, labels: ["1"] },
16305
16569
  // TODO add more "standard" labels
16306
- { ...refblocks83.right1, labels: ["2"] }
16570
+ { ...refblocks93.right1, labels: ["2"] }
16307
16571
  // TODO add more "standard" labels
16308
16572
  ],
16309
- size: { width: bounds83.width, height: bounds83.height },
16310
- center: { x: bounds83.centerX, y: bounds83.centerY }
16573
+ size: { width: bounds93.width, height: bounds93.height },
16574
+ center: { x: bounds93.centerX, y: bounds93.centerY }
16311
16575
  }).rotateRightFacingSymbol("right").labelPort("left", ["1"]).labelPort("right", ["2"]).changeTextAnchor("{REF}", "middle_bottom").changeTextAnchor("{VAL}", "middle_top").build();
16312
16576
 
16313
16577
  // symbols/resistor_up.ts
16314
- var { paths: paths84, texts: texts94, bounds: bounds84, refblocks: refblocks84, circles: circles78 } = resistor_default;
16578
+ var { paths: paths94, texts: texts104, bounds: bounds94, refblocks: refblocks94, circles: circles88 } = resistor_default;
16315
16579
  var resistor_up_default = modifySymbol({
16316
16580
  primitives: [
16317
- ...Object.values(paths84),
16318
- ...Object.values(circles78),
16581
+ ...Object.values(paths94),
16582
+ ...Object.values(circles88),
16319
16583
  {
16320
16584
  type: "text",
16321
16585
  text: "{REF}",
@@ -16330,13 +16594,13 @@ var resistor_up_default = modifySymbol({
16330
16594
  }
16331
16595
  ],
16332
16596
  ports: [
16333
- { ...refblocks84.left1, labels: ["1"] },
16597
+ { ...refblocks94.left1, labels: ["1"] },
16334
16598
  // TODO add more "standard" labels
16335
- { ...refblocks84.right1, labels: ["2"] }
16599
+ { ...refblocks94.right1, labels: ["2"] }
16336
16600
  // TODO add more "standard" labels
16337
16601
  ],
16338
- size: { width: bounds84.width, height: bounds84.height },
16339
- center: { x: bounds84.centerX, y: bounds84.centerY }
16602
+ size: { width: bounds94.width, height: bounds94.height },
16603
+ center: { x: bounds94.centerX, y: bounds94.centerY }
16340
16604
  }).rotateRightFacingSymbol("up").labelPort("left", ["1"]).labelPort("right", ["2"]).changeTextAnchor("{REF}", "middle_left").changeTextAnchor("{VAL}", "middle_left").build();
16341
16605
 
16342
16606
  // assets/generated/resonator.json
@@ -16685,11 +16949,11 @@ var resonator_default = {
16685
16949
  };
16686
16950
 
16687
16951
  // symbols/resonator_horz.ts
16688
- var { paths: paths85, texts: texts95, bounds: bounds85, refblocks: refblocks85, circles: circles79 } = resonator_default;
16952
+ var { paths: paths95, texts: texts105, bounds: bounds95, refblocks: refblocks95, circles: circles89 } = resonator_default;
16689
16953
  var resonator_horz_default = defineSymbol({
16690
16954
  primitives: [
16691
- ...Object.values(paths85),
16692
- ...Object.values(circles79),
16955
+ ...Object.values(paths95),
16956
+ ...Object.values(circles89),
16693
16957
  // { ...texts.top1, anchor: "middle_left" },
16694
16958
  // { ...texts.bottom1, anchor: "middle_left" },
16695
16959
  {
@@ -16708,15 +16972,15 @@ var resonator_horz_default = defineSymbol({
16708
16972
  }
16709
16973
  ],
16710
16974
  ports: [
16711
- { ...refblocks85.left1, labels: ["1"] },
16975
+ { ...refblocks95.left1, labels: ["1"] },
16712
16976
  // TODO add more "standard" labels
16713
- { ...refblocks85.right1, labels: ["2"] },
16977
+ { ...refblocks95.right1, labels: ["2"] },
16714
16978
  // TODO add more "standard" labels
16715
- { ...refblocks85.right2, labels: ["3"] }
16979
+ { ...refblocks95.right2, labels: ["3"] }
16716
16980
  // TODO add more "standard" labels
16717
16981
  ],
16718
- size: { width: bounds85.width, height: bounds85.height },
16719
- center: { x: bounds85.centerX, y: bounds85.centerY }
16982
+ size: { width: bounds95.width, height: bounds95.height },
16983
+ center: { x: bounds95.centerX, y: bounds95.centerY }
16720
16984
  });
16721
16985
 
16722
16986
  // symbols/resonator_vert.ts
@@ -17108,15 +17372,15 @@ var silicon_controlled_rectifier_default = {
17108
17372
  };
17109
17373
 
17110
17374
  // symbols/silicon_controlled_rectifier_horz.ts
17111
- var { paths: paths86, texts: texts96, bounds: bounds86, refblocks: refblocks86, circles: circles80 } = silicon_controlled_rectifier_default;
17375
+ var { paths: paths96, texts: texts106, bounds: bounds96, refblocks: refblocks96, circles: circles90 } = silicon_controlled_rectifier_default;
17112
17376
  var silicon_controlled_rectifier_horz_default = modifySymbol(silicon_controlled_rectifier_default).changeTextAnchor("{VAL}", "middle_top").labelPort("left1", ["1"]).labelPort("right1", ["2"]).labelPort("bottom1", ["3"]).changeTextAnchor("{REF}", "middle_bottom").build();
17113
17377
 
17114
17378
  // symbols/silicon_controlled_rectifier_vert.ts
17115
17379
  var rotatedSymbol14 = rotateSymbol(silicon_controlled_rectifier_horz_default);
17116
- var texts97 = rotatedSymbol14.primitives.filter(
17380
+ var texts107 = rotatedSymbol14.primitives.filter(
17117
17381
  (primitive) => primitive.type === "text"
17118
17382
  );
17119
- var ref42 = texts97.find((text) => text.text === "{REF}");
17383
+ var ref42 = texts107.find((text) => text.text === "{REF}");
17120
17384
  ref42.y = 0;
17121
17385
  ref42.anchor = "middle_left";
17122
17386
  var silicon_controlled_rectifier_vert_default = rotatedSymbol14;
@@ -20676,7 +20940,7 @@ var step_recovery_diode_default = {
20676
20940
  };
20677
20941
 
20678
20942
  // symbols/step_recovery_diode_horz.ts
20679
- var { paths: paths87, texts: texts98, bounds: bounds87, refblocks: refblocks87, circles: circles81 } = step_recovery_diode_default;
20943
+ var { paths: paths97, texts: texts108, bounds: bounds97, refblocks: refblocks97, circles: circles91 } = step_recovery_diode_default;
20680
20944
  var step_recovery_diode_horz_default = modifySymbol(step_recovery_diode_default).changeTextAnchor("{VAL}", "middle_top").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_bottom").build();
20681
20945
 
20682
20946
  // symbols/step_recovery_diode_vert.ts
@@ -20769,11 +21033,11 @@ var tachometer_default = {
20769
21033
  };
20770
21034
 
20771
21035
  // symbols/tachometer_horz.ts
20772
- var { paths: paths88, texts: texts99, bounds: bounds88, refblocks: refblocks88, circles: circles82 } = tachometer_default;
21036
+ var { paths: paths98, texts: texts109, bounds: bounds98, refblocks: refblocks98, circles: circles92 } = tachometer_default;
20773
21037
  var tachometer_horz_default = defineSymbol({
20774
21038
  primitives: [
20775
- ...Object.values(paths88),
20776
- ...Object.values(circles82),
21039
+ ...Object.values(paths98),
21040
+ ...Object.values(circles92),
20777
21041
  {
20778
21042
  type: "text",
20779
21043
  text: "{REF}",
@@ -20788,16 +21052,16 @@ var tachometer_horz_default = defineSymbol({
20788
21052
  y: 0.35,
20789
21053
  anchor: "middle_bottom"
20790
21054
  },
20791
- { ...texts99.left1, y: 0.01, anchor: "center", fontSize: 0.2 }
21055
+ { ...texts109.left1, y: 0.01, anchor: "center", fontSize: 0.2 }
20792
21056
  ],
20793
21057
  ports: [
20794
- { ...refblocks88.left1, labels: ["1"] },
21058
+ { ...refblocks98.left1, labels: ["1"] },
20795
21059
  // TODO add more "standard" labels
20796
- { ...refblocks88.right1, labels: ["2"] }
21060
+ { ...refblocks98.right1, labels: ["2"] }
20797
21061
  // TODO add more "standard" labels
20798
21062
  ],
20799
- size: { width: bounds88.width, height: bounds88.height },
20800
- center: { x: bounds88.centerX, y: bounds88.centerY }
21063
+ size: { width: bounds98.width, height: bounds98.height },
21064
+ center: { x: bounds98.centerX, y: bounds98.centerY }
20801
21065
  });
20802
21066
 
20803
21067
  // symbols/tachometer_vert.ts
@@ -21219,16 +21483,16 @@ var triac_default = {
21219
21483
  };
21220
21484
 
21221
21485
  // symbols/triac_horz.ts
21222
- var { paths: paths89, texts: texts100, bounds: bounds89, refblocks: refblocks89, circles: circles83 } = triac_default;
21486
+ var { paths: paths99, texts: texts110, bounds: bounds99, refblocks: refblocks99, circles: circles93 } = triac_default;
21223
21487
  var triac_horz_default = modifySymbol(triac_default).changeTextAnchor("{VAL}", "middle_top").labelPort("left1", ["1"]).labelPort("right1", ["2"]).labelPort("bottom1", ["3"]).changeTextAnchor("{REF}", "middle_bottom").build();
21224
21488
 
21225
21489
  // symbols/triac_vert.ts
21226
21490
  var rotatedSymbol16 = rotateSymbol(triac_horz_default);
21227
- var texts101 = rotatedSymbol16.primitives.filter(
21491
+ var texts111 = rotatedSymbol16.primitives.filter(
21228
21492
  (primitive) => primitive.type === "text"
21229
21493
  );
21230
- var ref60 = texts101.find((text) => text.text === "{REF}");
21231
- var val56 = texts101.find((text) => text.text === "{VAL}");
21494
+ var ref60 = texts111.find((text) => text.text === "{REF}");
21495
+ var val56 = texts111.find((text) => text.text === "{VAL}");
21232
21496
  ref60.y = 0;
21233
21497
  val56.y = 0;
21234
21498
  var triac_vert_default = rotatedSymbol16;
@@ -21395,22 +21659,22 @@ var tunnel_diode_default = {
21395
21659
  };
21396
21660
 
21397
21661
  // symbols/tunnel_diode_horz.ts
21398
- var { paths: paths90, texts: texts102, bounds: bounds90, refblocks: refblocks90, circles: circles84 } = tunnel_diode_default;
21662
+ var { paths: paths100, texts: texts112, bounds: bounds100, refblocks: refblocks100, circles: circles94 } = tunnel_diode_default;
21399
21663
  var tunnel_diode_horz_default = defineSymbol({
21400
21664
  primitives: [
21401
- ...Object.values(paths90),
21402
- ...Object.values(circles84),
21403
- { ...texts102.top1, anchor: "middle_bottom" },
21404
- { ...texts102.bottom1, anchor: "middle_top" }
21665
+ ...Object.values(paths100),
21666
+ ...Object.values(circles94),
21667
+ { ...texts112.top1, anchor: "middle_bottom" },
21668
+ { ...texts112.bottom1, anchor: "middle_top" }
21405
21669
  ],
21406
21670
  ports: [
21407
- { ...refblocks90.left1, labels: ["1"] },
21671
+ { ...refblocks100.left1, labels: ["1"] },
21408
21672
  // TODO add more "standard" labels
21409
- { ...refblocks90.right1, labels: ["2"] }
21673
+ { ...refblocks100.right1, labels: ["2"] }
21410
21674
  // TODO add more "standard" labels
21411
21675
  ],
21412
- size: { width: bounds90.width, height: bounds90.height },
21413
- center: { x: bounds90.centerX, y: bounds90.centerY }
21676
+ size: { width: bounds100.width, height: bounds100.height },
21677
+ center: { x: bounds100.centerX, y: bounds100.centerY }
21414
21678
  });
21415
21679
 
21416
21680
  // symbols/tunnel_diode_vert.ts
@@ -21593,34 +21857,34 @@ var unijunction_transistor_default = {
21593
21857
  };
21594
21858
 
21595
21859
  // symbols/unijunction_transistor_horz.ts
21596
- var { paths: paths91, texts: texts103, bounds: bounds91, refblocks: refblocks91, circles: circles85 } = unijunction_transistor_default;
21860
+ var { paths: paths101, texts: texts113, bounds: bounds101, refblocks: refblocks101, circles: circles95 } = unijunction_transistor_default;
21597
21861
  var unijunction_transistor_horz_default = defineSymbol({
21598
21862
  primitives: [
21599
- ...Object.values(paths91),
21600
- ...Object.values(circles85),
21601
- { ...texts103.top1, anchor: "middle_left" },
21602
- { ...texts103.bottom1, anchor: "middle_right" }
21863
+ ...Object.values(paths101),
21864
+ ...Object.values(circles95),
21865
+ { ...texts113.top1, anchor: "middle_left" },
21866
+ { ...texts113.bottom1, anchor: "middle_right" }
21603
21867
  ],
21604
21868
  ports: [
21605
- { ...refblocks91.top1, labels: ["1"] },
21869
+ { ...refblocks101.top1, labels: ["1"] },
21606
21870
  // TODO add more "standard" labels
21607
- { ...refblocks91.bottom1, labels: ["2"] },
21871
+ { ...refblocks101.bottom1, labels: ["2"] },
21608
21872
  // TODO add more "standard" labels
21609
- { ...refblocks91.left1, labels: ["3"] }
21873
+ { ...refblocks101.left1, labels: ["3"] }
21610
21874
  // TODO add more "standard" labels
21611
21875
  ],
21612
- size: { width: bounds91.width, height: bounds91.height },
21613
- center: { x: bounds91.centerX, y: bounds91.centerY }
21876
+ size: { width: bounds101.width, height: bounds101.height },
21877
+ center: { x: bounds101.centerX, y: bounds101.centerY }
21614
21878
  });
21615
21879
 
21616
21880
  // symbols/unijunction_transistor_vert.ts
21617
21881
  var rotatedSymbol17 = rotateSymbol(unijunction_transistor_horz_default);
21618
- var texts104 = rotatedSymbol17.primitives.filter(
21882
+ var texts114 = rotatedSymbol17.primitives.filter(
21619
21883
  (primitive) => primitive.type === "text"
21620
21884
  );
21621
- var ref62 = texts104.find((text) => text.text === "{REF}");
21885
+ var ref62 = texts114.find((text) => text.text === "{REF}");
21622
21886
  ref62.y = 0.1;
21623
- var val58 = texts104.find((text) => text.text === "{VAL}");
21887
+ var val58 = texts114.find((text) => text.text === "{VAL}");
21624
21888
  val58.y = 0.1;
21625
21889
  val58.x = -0.4;
21626
21890
  var unijunction_transistor_vert_default = rotatedSymbol17;
@@ -21864,33 +22128,33 @@ var var_meter_default = {
21864
22128
  };
21865
22129
 
21866
22130
  // symbols/var_meter_horz.ts
21867
- var { paths: paths92, texts: texts105, bounds: bounds92, refblocks: refblocks92, circles: circles86 } = var_meter_default;
22131
+ var { paths: paths102, texts: texts115, bounds: bounds102, refblocks: refblocks102, circles: circles96 } = var_meter_default;
21868
22132
  var var_meter_horz_default = defineSymbol({
21869
22133
  primitives: [
21870
- ...Object.values(paths92),
21871
- ...Object.values(circles86),
22134
+ ...Object.values(paths102),
22135
+ ...Object.values(circles96),
21872
22136
  {
21873
- ...texts105.top1,
22137
+ ...texts115.top1,
21874
22138
  x: 0,
21875
22139
  y: -0.3594553499999995,
21876
22140
  anchor: "middle_top"
21877
22141
  },
21878
22142
  {
21879
- ...texts105.bottom1,
22143
+ ...texts115.bottom1,
21880
22144
  x: 0,
21881
22145
  y: 0.35,
21882
22146
  anchor: "middle_bottom"
21883
22147
  },
21884
- { ...texts105.left1, x: -0.02, y: 0.01, fontSize: 0.2, anchor: "center" }
22148
+ { ...texts115.left1, x: -0.02, y: 0.01, fontSize: 0.2, anchor: "center" }
21885
22149
  ],
21886
22150
  ports: [
21887
- { ...refblocks92.left1, labels: ["1"] },
22151
+ { ...refblocks102.left1, labels: ["1"] },
21888
22152
  // TODO add more "standard" labels
21889
- { ...refblocks92.right1, labels: ["2"] }
22153
+ { ...refblocks102.right1, labels: ["2"] }
21890
22154
  // TODO add more "standard" labels
21891
22155
  ],
21892
- size: { width: bounds92.width, height: bounds92.height },
21893
- center: { x: bounds92.centerX, y: bounds92.centerY }
22156
+ size: { width: bounds102.width, height: bounds102.height },
22157
+ center: { x: bounds102.centerX, y: bounds102.centerY }
21894
22158
  });
21895
22159
 
21896
22160
  // symbols/var_meter_vert.ts
@@ -22043,22 +22307,22 @@ var varactor_diode_default = {
22043
22307
  };
22044
22308
 
22045
22309
  // symbols/varactor_diode_horz.ts
22046
- var { paths: paths93, texts: texts106, bounds: bounds93, refblocks: refblocks93, circles: circles87 } = varactor_diode_default;
22310
+ var { paths: paths103, texts: texts116, bounds: bounds103, refblocks: refblocks103, circles: circles97 } = varactor_diode_default;
22047
22311
  var varactor_diode_horz_default = defineSymbol({
22048
22312
  primitives: [
22049
- ...Object.values(paths93),
22050
- ...Object.values(circles87),
22051
- { ...texts106.top1, anchor: "middle_bottom" },
22052
- { ...texts106.bottom1, anchor: "middle_top" }
22313
+ ...Object.values(paths103),
22314
+ ...Object.values(circles97),
22315
+ { ...texts116.top1, anchor: "middle_bottom" },
22316
+ { ...texts116.bottom1, anchor: "middle_top" }
22053
22317
  ],
22054
22318
  ports: [
22055
- { ...refblocks93.left1, labels: ["1"] },
22319
+ { ...refblocks103.left1, labels: ["1"] },
22056
22320
  // TODO add more "standard" labels
22057
- { ...refblocks93.right1, labels: ["2"] }
22321
+ { ...refblocks103.right1, labels: ["2"] }
22058
22322
  // TODO add more "standard" labels
22059
22323
  ],
22060
- size: { width: bounds93.width, height: bounds93.height },
22061
- center: { x: bounds93.centerX, y: bounds93.centerY }
22324
+ size: { width: bounds103.width, height: bounds103.height },
22325
+ center: { x: bounds103.centerX, y: bounds103.centerY }
22062
22326
  });
22063
22327
 
22064
22328
  // symbols/varactor_diode_vert.ts
@@ -22206,26 +22470,26 @@ var varistor_default = {
22206
22470
  };
22207
22471
 
22208
22472
  // symbols/varistor_horz.ts
22209
- var { paths: paths94, texts: texts107, bounds: bounds94, refblocks: refblocks94 } = varistor_default;
22473
+ var { paths: paths104, texts: texts117, bounds: bounds104, refblocks: refblocks104 } = varistor_default;
22210
22474
  var varistor_horz_default = defineSymbol({
22211
22475
  primitives: [
22212
- ...Object.values(paths94),
22213
- { ...texts107.top1, anchor: "middle_left" },
22214
- { ...texts107.bottom1, anchor: "middle_right" }
22476
+ ...Object.values(paths104),
22477
+ { ...texts117.top1, anchor: "middle_left" },
22478
+ { ...texts117.bottom1, anchor: "middle_right" }
22215
22479
  ],
22216
22480
  ports: [
22217
22481
  {
22218
- ...refblocks94.left1,
22482
+ ...refblocks104.left1,
22219
22483
  labels: ["1", "-"]
22220
22484
  },
22221
22485
  {
22222
- ...refblocks94.right1,
22486
+ ...refblocks104.right1,
22223
22487
  labels: ["2", "+"]
22224
22488
  }
22225
22489
  ],
22226
- size: { width: bounds94.width, height: bounds94.height },
22490
+ size: { width: bounds104.width, height: bounds104.height },
22227
22491
  //{ width: 1, height: 0.24 },
22228
- center: { x: bounds94.centerX, y: bounds94.centerY }
22492
+ center: { x: bounds104.centerX, y: bounds104.centerY }
22229
22493
  });
22230
22494
 
22231
22495
  // symbols/varistor_vert.ts
@@ -22318,11 +22582,11 @@ var varmeter_default = {
22318
22582
  };
22319
22583
 
22320
22584
  // symbols/varmeter_horz.ts
22321
- var { paths: paths95, texts: texts108, bounds: bounds95, refblocks: refblocks95, circles: circles88 } = varmeter_default;
22585
+ var { paths: paths105, texts: texts118, bounds: bounds105, refblocks: refblocks105, circles: circles98 } = varmeter_default;
22322
22586
  var varmeter_horz_default = defineSymbol({
22323
22587
  primitives: [
22324
- ...Object.values(paths95),
22325
- ...Object.values(circles88),
22588
+ ...Object.values(paths105),
22589
+ ...Object.values(circles98),
22326
22590
  {
22327
22591
  type: "text",
22328
22592
  text: "{REF}",
@@ -22337,16 +22601,16 @@ var varmeter_horz_default = defineSymbol({
22337
22601
  y: 0.35,
22338
22602
  anchor: "middle_bottom"
22339
22603
  },
22340
- { ...texts108.left1, anchor: "center", y: 0.02, fontSize: 0.2 }
22604
+ { ...texts118.left1, anchor: "center", y: 0.02, fontSize: 0.2 }
22341
22605
  ],
22342
22606
  ports: [
22343
- { ...refblocks95.left1, labels: ["1"] },
22607
+ { ...refblocks105.left1, labels: ["1"] },
22344
22608
  // TODO add more "standard" labels
22345
- { ...refblocks95.right1, labels: ["2"] }
22609
+ { ...refblocks105.right1, labels: ["2"] }
22346
22610
  // TODO add more "standard" labels
22347
22611
  ],
22348
- size: { width: bounds95.width, height: bounds95.height },
22349
- center: { x: bounds95.centerX, y: bounds95.centerY }
22612
+ size: { width: bounds105.width, height: bounds105.height },
22613
+ center: { x: bounds105.centerX, y: bounds105.centerY }
22350
22614
  });
22351
22615
 
22352
22616
  // symbols/varmeter_vert.ts
@@ -22551,7 +22815,7 @@ var volt_meter_default = {
22551
22815
  };
22552
22816
 
22553
22817
  // symbols/volt_meter_horz.ts
22554
- var { paths: paths96, texts: texts109, bounds: bounds96, circles: circles89, refblocks: refblocks96 } = volt_meter_default;
22818
+ var { paths: paths106, texts: texts119, bounds: bounds106, circles: circles99, refblocks: refblocks106 } = volt_meter_default;
22555
22819
  var volt_meter_horz_default = modifySymbol(volt_meter_default).changeTextAnchor("{VAL}", "middle_top").labelPort("left1", ["1"]).labelPort("right1", ["2"]).changeTextAnchor("{REF}", "middle_bottom").build();
22556
22820
 
22557
22821
  // symbols/volt_meter_vert.ts
@@ -22644,11 +22908,11 @@ var watt_hour_meter_default = {
22644
22908
  };
22645
22909
 
22646
22910
  // symbols/watt_hour_meter_horz.ts
22647
- var { paths: paths97, texts: texts110, bounds: bounds97, refblocks: refblocks97, circles: circles90 } = watt_hour_meter_default;
22911
+ var { paths: paths107, texts: texts120, bounds: bounds107, refblocks: refblocks107, circles: circles100 } = watt_hour_meter_default;
22648
22912
  var watt_hour_meter_horz_default = defineSymbol({
22649
22913
  primitives: [
22650
- ...Object.values(paths97),
22651
- ...Object.values(circles90),
22914
+ ...Object.values(paths107),
22915
+ ...Object.values(circles100),
22652
22916
  {
22653
22917
  type: "text",
22654
22918
  text: "{REF}",
@@ -22663,16 +22927,16 @@ var watt_hour_meter_horz_default = defineSymbol({
22663
22927
  y: 0.35,
22664
22928
  anchor: "middle_bottom"
22665
22929
  },
22666
- { ...texts110.left1, anchor: "center", y: 0.01, fontSize: 0.2 }
22930
+ { ...texts120.left1, anchor: "center", y: 0.01, fontSize: 0.2 }
22667
22931
  ],
22668
22932
  ports: [
22669
- { ...refblocks97.left1, labels: ["1"] },
22933
+ { ...refblocks107.left1, labels: ["1"] },
22670
22934
  // TODO add more "standard" labels
22671
- { ...refblocks97.right1, labels: ["2"] }
22935
+ { ...refblocks107.right1, labels: ["2"] }
22672
22936
  // TODO add more "standard" labels
22673
22937
  ],
22674
- size: { width: bounds97.width, height: bounds97.height },
22675
- center: { x: bounds97.centerX, y: bounds97.centerY }
22938
+ size: { width: bounds107.width, height: bounds107.height },
22939
+ center: { x: bounds107.centerX, y: bounds107.centerY }
22676
22940
  });
22677
22941
 
22678
22942
  // symbols/watt_hour_meter_vert.ts
@@ -22776,11 +23040,11 @@ var wattmeter_default = {
22776
23040
  };
22777
23041
 
22778
23042
  // symbols/wattmeter_horz.ts
22779
- var { paths: paths98, texts: texts111, bounds: bounds98, refblocks: refblocks98, circles: circles91 } = wattmeter_default;
23043
+ var { paths: paths108, texts: texts121, bounds: bounds108, refblocks: refblocks108, circles: circles101 } = wattmeter_default;
22780
23044
  var wattmeter_horz_default = defineSymbol({
22781
23045
  primitives: [
22782
- ...Object.values(paths98),
22783
- ...Object.values(circles91),
23046
+ ...Object.values(paths108),
23047
+ ...Object.values(circles101),
22784
23048
  {
22785
23049
  type: "text",
22786
23050
  text: "{REF}",
@@ -22795,16 +23059,16 @@ var wattmeter_horz_default = defineSymbol({
22795
23059
  y: 0.35,
22796
23060
  anchor: "middle_bottom"
22797
23061
  },
22798
- { ...texts111.left1, anchor: "center", y: 0.01, fontSize: 0.3 }
23062
+ { ...texts121.left1, anchor: "center", y: 0.01, fontSize: 0.3 }
22799
23063
  ],
22800
23064
  ports: [
22801
- { ...refblocks98.left1, labels: ["1"] },
23065
+ { ...refblocks108.left1, labels: ["1"] },
22802
23066
  // TODO add more "standard" labels
22803
- { ...refblocks98.right1, labels: ["2"] }
23067
+ { ...refblocks108.right1, labels: ["2"] }
22804
23068
  // TODO add more "standard" labels
22805
23069
  ],
22806
- size: { width: bounds98.width, height: bounds98.height },
22807
- center: { x: bounds98.centerX, y: bounds98.centerY }
23070
+ size: { width: bounds108.width, height: bounds108.height },
23071
+ center: { x: bounds108.centerX, y: bounds108.centerY }
22808
23072
  });
22809
23073
 
22810
23074
  // symbols/wattmeter_vert.ts
@@ -22968,22 +23232,22 @@ var zener_diode_default = {
22968
23232
  };
22969
23233
 
22970
23234
  // symbols/zener_diode_horz.ts
22971
- var { paths: paths99, texts: texts112, bounds: bounds99, refblocks: refblocks99, circles: circles92 } = zener_diode_default;
23235
+ var { paths: paths109, texts: texts122, bounds: bounds109, refblocks: refblocks109, circles: circles102 } = zener_diode_default;
22972
23236
  var zener_diode_horz_default = defineSymbol({
22973
23237
  primitives: [
22974
- ...Object.values(paths99),
22975
- ...Object.values(circles92),
22976
- { ...texts112.top1, anchor: "middle_bottom" },
22977
- { ...texts112.bottom1, anchor: "middle_top" }
23238
+ ...Object.values(paths109),
23239
+ ...Object.values(circles102),
23240
+ { ...texts122.top1, anchor: "middle_bottom" },
23241
+ { ...texts122.bottom1, anchor: "middle_top" }
22978
23242
  ],
22979
23243
  ports: [
22980
- { ...refblocks99.left1, labels: ["1"] },
23244
+ { ...refblocks109.left1, labels: ["1"] },
22981
23245
  // TODO add more "standard" labels
22982
- { ...refblocks99.right1, labels: ["2"] }
23246
+ { ...refblocks109.right1, labels: ["2"] }
22983
23247
  // TODO add more "standard" labels
22984
23248
  ],
22985
- size: { width: bounds99.width, height: bounds99.height },
22986
- center: { x: bounds99.centerX, y: bounds99.centerY }
23249
+ size: { width: bounds109.width, height: bounds109.height },
23250
+ center: { x: bounds109.centerX, y: bounds109.centerY }
22987
23251
  });
22988
23252
 
22989
23253
  // symbols/zener_diode_vert.ts
@@ -23038,7 +23302,11 @@ var symbols_index_default = {
23038
23302
  "capacitor_polarized_up": capacitor_polarized_up_default,
23039
23303
  "capacitor_right": capacitor_right_default,
23040
23304
  "capacitor_up": capacitor_up_default,
23305
+ "constant_current_diode_down": constant_current_diode_down_default,
23041
23306
  "constant_current_diode_horz": constant_current_diode_horz_default,
23307
+ "constant_current_diode_left": constant_current_diode_left_default,
23308
+ "constant_current_diode_right": constant_current_diode_right_default,
23309
+ "constant_current_diode_up": constant_current_diode_up_default,
23042
23310
  "constant_current_diode_vert": constant_current_diode_vert_default,
23043
23311
  "crystal_4pin_down": crystal_4pin_down_default,
23044
23312
  "crystal_4pin_left": crystal_4pin_left_default,
@@ -23084,7 +23352,11 @@ var symbols_index_default = {
23084
23352
  "ferrite_bead_left": ferrite_bead_left_default,
23085
23353
  "ferrite_bead_right": ferrite_bead_right_default,
23086
23354
  "ferrite_bead_up": ferrite_bead_up_default,
23355
+ "filled_diode_down": filled_diode_down_default,
23087
23356
  "filled_diode_horz": filled_diode_horz_default,
23357
+ "filled_diode_left": filled_diode_left_default,
23358
+ "filled_diode_right": filled_diode_right_default,
23359
+ "filled_diode_up": filled_diode_up_default,
23088
23360
  "filled_diode_vert": filled_diode_vert_default,
23089
23361
  "frequency_meter_horz": frequency_meter_horz_default,
23090
23362
  "frequency_meter_vert": frequency_meter_vert_default,