hayun-vite 0.1.1 → 0.1.2

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hayun-vite",
3
3
  "private": false,
4
- "version": "0.1.1",
4
+ "version": "0.1.2",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
package/src/Form/Form.js CHANGED
@@ -137,6 +137,7 @@ export default class Form {
137
137
  svg.setAttribute("style", "background-color: BlanchedAlmond");
138
138
  if (this.image) {
139
139
  let image = document.createElementNS(svgNS, "image");
140
+ image.setAttribute('class', 'non-print')
140
141
  image.setAttribute('width', width);
141
142
  image.setAttribute('height', height);
142
143
 
@@ -59,6 +59,9 @@ export default function printForm({ container }) {
59
59
  padding: 0;
60
60
  break-inside: avoid;
61
61
  }
62
+ .non-print {
63
+ display: none;
64
+ }
62
65
 
63
66
  }
64
67