@zthun/romulator-web 1.14.0 → 1.14.1
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/CHANGELOG.md +9 -0
- package/dist/assets/index-C6fv_IdF.js +865 -0
- package/dist/index.html +1 -1
- package/package.json +6 -6
- package/src/systems/system-page.tsx +15 -8
- package/dist/assets/index-nHUlV-0_.js +0 -861
package/dist/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Romulator: Organize your Games</title>
|
|
7
|
-
<script type="module" crossorigin src="/assets/index-
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-C6fv_IdF.js"></script>
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
10
10
|
<div id="zthunworks-romulator"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zthun/romulator-web",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.1",
|
|
4
4
|
"description": "Romulator frontend",
|
|
5
5
|
"author": "Anthony Bonta",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"@types/node": "^24.9.1",
|
|
22
22
|
"@zthun/cirque": "^7.1.11",
|
|
23
23
|
"@zthun/cirque-du-react": "^7.1.11",
|
|
24
|
-
"@zthun/fashion-boutique": "^12.0.
|
|
25
|
-
"@zthun/fashion-tailor": "^12.0.
|
|
26
|
-
"@zthun/fashion-theme": "^12.0.
|
|
24
|
+
"@zthun/fashion-boutique": "^12.0.1",
|
|
25
|
+
"@zthun/fashion-tailor": "^12.0.1",
|
|
26
|
+
"@zthun/fashion-theme": "^12.0.1",
|
|
27
27
|
"@zthun/helpful-fn": "^9.10.0",
|
|
28
28
|
"@zthun/helpful-query": "^9.10.0",
|
|
29
29
|
"@zthun/helpful-react": "^9.10.0",
|
|
30
30
|
"@zthun/janitor-build-config": "^19.4.1",
|
|
31
|
-
"@zthun/romulator-client": "^1.14.
|
|
31
|
+
"@zthun/romulator-client": "^1.14.1",
|
|
32
32
|
"@zthun/webigail-http": "^5.0.0",
|
|
33
33
|
"@zthun/webigail-rest": "^5.0.0",
|
|
34
34
|
"@zthun/webigail-url": "^5.0.0",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"vitest": "^4.0.3",
|
|
44
44
|
"vitest-mock-extended": "^3.1.0"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "8eb3494a94d71e45e8d8a826b32bab352476f82e"
|
|
47
47
|
}
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
ZSuspenseProgress,
|
|
16
16
|
} from "@zthun/fashion-boutique";
|
|
17
17
|
import { ZSizeFixed, ZSizeVaried } from "@zthun/fashion-tailor";
|
|
18
|
-
import { firstDefined } from "@zthun/helpful-fn";
|
|
18
|
+
import { firstDefined, ZOrientation } from "@zthun/helpful-fn";
|
|
19
19
|
import {
|
|
20
20
|
ZDataRequestBuilder,
|
|
21
21
|
ZFilterBinaryBuilder,
|
|
@@ -203,12 +203,19 @@ export function ZRomulatorSystemPage() {
|
|
|
203
203
|
subHeading: startCase(media[mediaIndex]),
|
|
204
204
|
}}
|
|
205
205
|
>
|
|
206
|
-
<
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
206
|
+
<ZStack
|
|
207
|
+
orientation={ZOrientation.Horizontal}
|
|
208
|
+
width={ZSizeVaried.Full}
|
|
209
|
+
align={{ items: "center" }}
|
|
210
|
+
justify={{ content: "center" }}
|
|
211
|
+
>
|
|
212
|
+
<ZCarousel
|
|
213
|
+
count={media.length}
|
|
214
|
+
renderAtIndex={(i) => renderSystemMedia(media[i], system)}
|
|
215
|
+
value={mediaIndex}
|
|
216
|
+
onValueChange={setMediaIndex}
|
|
217
|
+
/>
|
|
218
|
+
</ZStack>
|
|
212
219
|
</ZCard>
|
|
213
220
|
);
|
|
214
221
|
};
|
|
@@ -231,7 +238,7 @@ export function ZRomulatorSystemPage() {
|
|
|
231
238
|
}
|
|
232
239
|
|
|
233
240
|
return (
|
|
234
|
-
<ZGrid columns={{ xl: "1fr auto",
|
|
241
|
+
<ZGrid columns={{ xl: "1fr auto", md: "1fr" }} gap={ZSizeFixed.Medium}>
|
|
235
242
|
{renderSystemGameListCard(system)}
|
|
236
243
|
|
|
237
244
|
<ZStack gap={ZSizeFixed.Medium}>
|