svelte-on-rails 0.0.28 → 0.0.29
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15999c6d05393547b3711e946165a7aaae7784cc5d24e55848991ad4772bb266
|
4
|
+
data.tar.gz: 20c1b98dd7eeb8938b60836115909695e77ffdceba17244e85a279cae7b57ad2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d71688f76d82e82432610e3ea68c8e483dfc2ebdffd47ba9916783655986754c909d8e64a750d119fad5f7dfdab884176ab0e0f067931e9fc588601afbcc234b
|
7
|
+
data.tar.gz: 0b213226ab03bf76bd999ff7d875b43c14a1968563dc1851d3d6fedb6a0142bfac7258f8f906a277b9bc1a0fa1bfd09f9b471deabae21ee07aed02080bf11fea
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<script>
|
2
2
|
import svgRaw from '../../images/svg.svg?raw'
|
3
|
-
import svg from '../../images/svg.svg'
|
3
|
+
//import svg from '../../images/svg.svg'
|
4
4
|
import png from '../../images/check-circle-green.png'
|
5
5
|
import Nested from './sub/NestedComponent.svelte'
|
6
6
|
import {nestedJavascriptFunction} from '../nestedJavascript.js'
|
@@ -27,9 +27,8 @@
|
|
27
27
|
</ul>
|
28
28
|
|
29
29
|
<hr/>
|
30
|
-
<p>Images on various ways</p>
|
31
30
|
<span class="wrap-svg">{@html svgRaw}</span>
|
32
|
-
<img alt="svg ERROR" src={svg}
|
31
|
+
<!-- <img alt="svg ERROR" src={svg} />-->
|
33
32
|
<img alt="png ERROR" src={png} />
|
34
33
|
|
35
34
|
<hr/>
|