vue-wiring-diagram 1.1.4 → 1.1.6

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,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-wiring-diagram",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "description": "A Vue 3.x component for wiring diagram",
5
5
  "type": "module",
6
6
  "main": "dist/vue-wiring-diagram.umd.js",
@@ -276,4 +276,34 @@ onUnmounted(() => {
276
276
 
277
277
  <style lang="scss">
278
278
  @use "../../styles/animation.scss";
279
+
280
+ </style>
281
+
282
+ <style>
283
+ @keyframes forward-pipe {
284
+ to {
285
+ stroke-dashoffset: -1000
286
+ }
287
+ }
288
+
289
+ @keyframes reverse-pipe {
290
+ to {
291
+ stroke-dashoffset: 1000
292
+ }
293
+ }
294
+
295
+ @keyframes flashing {
296
+ 0% {
297
+ opacity: 0;
298
+ }
299
+ 35% {
300
+ opacity: 1;
301
+ }
302
+ 65% {
303
+ opacity: 1;
304
+ }
305
+ 100% {
306
+ opacity: 0;
307
+ }
308
+ }
279
309
  </style>