@musnows/scriverse 0.7.1 → 0.7.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/dist/app.js +10 -1
- package/dist/app.js.map +1 -1
- package/dist/database.js +54 -2
- package/dist/database.js.map +1 -1
- package/dist/public/app.js +1 -1
- package/dist/public/index.html +3 -3
- package/dist/public/relationship-graph.js +24 -4
- package/dist/public/styles.css +2 -2
- package/dist/store.js +2 -1
- package/dist/store.js.map +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/app.js
CHANGED
|
@@ -389,7 +389,16 @@ const platformPageSizesSchema = z.object({
|
|
|
389
389
|
const platformUiSettingsSchema = z.object({
|
|
390
390
|
toastPosition: z.enum(["bottom-right", "top-right"]).optional(),
|
|
391
391
|
pageSizes: platformPageSizesSchema.optional(),
|
|
392
|
-
galaxyFrameRate: z.union([
|
|
392
|
+
galaxyFrameRate: z.union([
|
|
393
|
+
z.literal(24),
|
|
394
|
+
z.literal(30),
|
|
395
|
+
z.literal(60),
|
|
396
|
+
z.literal(90),
|
|
397
|
+
z.literal(120),
|
|
398
|
+
z.literal(144),
|
|
399
|
+
z.literal(165),
|
|
400
|
+
z.literal(240)
|
|
401
|
+
]).optional()
|
|
393
402
|
}).strict().refine((input) => input.toastPosition !== undefined || input.pageSizes !== undefined || input.galaxyFrameRate !== undefined, {
|
|
394
403
|
message: "至少需要提供一项界面设置"
|
|
395
404
|
});
|