schematic-symbols 0.0.97 → 0.0.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +4 -0
- package/dist/index.js +16 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/symbols/capacitor_down.ts +4 -0
- package/symbols/capacitor_left.ts +4 -0
- package/symbols/capacitor_right.ts +3 -0
- package/symbols/capacitor_up.ts +4 -0
    
        package/dist/index.d.ts
    CHANGED
    
    | @@ -83,7 +83,11 @@ declare const _default: { | |
| 83 83 | 
             
                battery_vert: undefined;
         | 
| 84 84 | 
             
                boxresistor_horz: undefined;
         | 
| 85 85 | 
             
                boxresistor_vert: undefined;
         | 
| 86 | 
            +
                capacitor_down: undefined;
         | 
| 86 87 | 
             
                capacitor_horz: undefined;
         | 
| 88 | 
            +
                capacitor_left: undefined;
         | 
| 89 | 
            +
                capacitor_right: undefined;
         | 
| 90 | 
            +
                capacitor_up: undefined;
         | 
| 87 91 | 
             
                capacitor_vert: undefined;
         | 
| 88 92 | 
             
                constant_current_diode_horz: undefined;
         | 
| 89 93 | 
             
                constant_current_diode_vert: undefined;
         | 
    
        package/dist/index.js
    CHANGED
    
    | @@ -962,6 +962,18 @@ var capacitor_horz_default = defineSymbol({ | |
| 962 962 | 
             
              center: { x: bounds5.centerX, y: bounds5.centerY }
         | 
| 963 963 | 
             
            });
         | 
| 964 964 |  | 
| 965 | 
            +
            // symbols/capacitor_down.ts
         | 
| 966 | 
            +
            var capacitor_down_default = rotateSymbol(capacitor_horz_default, "down");
         | 
| 967 | 
            +
             | 
| 968 | 
            +
            // symbols/capacitor_left.ts
         | 
| 969 | 
            +
            var capacitor_left_default = rotateSymbol(capacitor_horz_default, "left");
         | 
| 970 | 
            +
             | 
| 971 | 
            +
            // symbols/capacitor_right.ts
         | 
| 972 | 
            +
            var capacitor_right_default = capacitor_horz_default;
         | 
| 973 | 
            +
             | 
| 974 | 
            +
            // symbols/capacitor_up.ts
         | 
| 975 | 
            +
            var capacitor_up_default = rotateSymbol(capacitor_horz_default, "up");
         | 
| 976 | 
            +
             | 
| 965 977 | 
             
            // symbols/capacitor_vert.ts
         | 
| 966 978 | 
             
            var capacitor_vert_default = rotateSymbol(capacitor_horz_default);
         | 
| 967 979 |  | 
| @@ -12838,7 +12850,11 @@ var symbols_index_default = { | |
| 12838 12850 | 
             
              "battery_vert": battery_vert_default,
         | 
| 12839 12851 | 
             
              "boxresistor_horz": boxresistor_horz_default,
         | 
| 12840 12852 | 
             
              "boxresistor_vert": boxresistor_vert_default,
         | 
| 12853 | 
            +
              "capacitor_down": capacitor_down_default,
         | 
| 12841 12854 | 
             
              "capacitor_horz": capacitor_horz_default,
         | 
| 12855 | 
            +
              "capacitor_left": capacitor_left_default,
         | 
| 12856 | 
            +
              "capacitor_right": capacitor_right_default,
         | 
| 12857 | 
            +
              "capacitor_up": capacitor_up_default,
         | 
| 12842 12858 | 
             
              "capacitor_vert": capacitor_vert_default,
         | 
| 12843 12859 | 
             
              "constant_current_diode_horz": constant_current_diode_horz_default,
         | 
| 12844 12860 | 
             
              "constant_current_diode_vert": constant_current_diode_vert_default,
         |