marqy 0.0.7 → 0.0.9
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/examples/index.css +1 -1
- package/examples/index.js +6 -2
- package/package.json +8 -8
- package/styles.css +1 -1
package/examples/index.css
CHANGED
package/examples/index.js
CHANGED
|
@@ -28,8 +28,8 @@ function App() {
|
|
|
28
28
|
<p className="text-32 mx-05">Render whatever you want:</p>
|
|
29
29
|
<img
|
|
30
30
|
width="100"
|
|
31
|
-
src="https://
|
|
32
|
-
alt="
|
|
31
|
+
src="https://picsum.photos/seed/picsum/550/350"
|
|
32
|
+
alt="Lorem Picsum"
|
|
33
33
|
/>
|
|
34
34
|
</div>
|
|
35
35
|
</Marqy>
|
|
@@ -51,6 +51,10 @@ function App() {
|
|
|
51
51
|
</p>
|
|
52
52
|
</Marqy>
|
|
53
53
|
) : null}
|
|
54
|
+
{/* Child with no width */}
|
|
55
|
+
<Marqy>
|
|
56
|
+
<p className="text-32 py-025"></p>
|
|
57
|
+
</Marqy>
|
|
54
58
|
</div>
|
|
55
59
|
)
|
|
56
60
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "marqy",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "Accessible, performant React marquees.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -37,15 +37,15 @@
|
|
|
37
37
|
"prepublishOnly": "yarn build"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@types/react": "^
|
|
41
|
-
"concurrently": "^
|
|
42
|
-
"microbundle": "^0.
|
|
40
|
+
"@types/react": "^18.2.21",
|
|
41
|
+
"concurrently": "^8.2.1",
|
|
42
|
+
"microbundle": "^0.15.1",
|
|
43
43
|
"parcel-bundler": "^1.12.5",
|
|
44
|
-
"react": "^
|
|
45
|
-
"react-dom": "^
|
|
44
|
+
"react": "^18.2.0",
|
|
45
|
+
"react-dom": "^18.2.0"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"react": "^16.8.0 || 17.x",
|
|
49
|
-
"react-dom": "^16.8.0 || 17.x"
|
|
48
|
+
"react": "^16.8.0 || 17.x || 18.x",
|
|
49
|
+
"react-dom": "^16.8.0 || 17.x || 18.x"
|
|
50
50
|
}
|
|
51
51
|
}
|