NOTICE 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. json-render — Oivo fork
  2. Copyright 2026 pch007 and contributors
  3. This product is a fork of "json-render" developed by Vercel Inc.
  4. Upstream repository: https://github.com/vercel-labs/json-render
  5. Original work: Copyright 2025 Vercel Inc.
  6. Licensed under the Apache License, Version 2.0 (the "License"); you may not use
  7. these files except in compliance with the License. A copy of the License is
  8. provided in the LICENSE file in this repository.
  9. ------------------------------------------------------------------------------
  10. Modifications in this fork (per Apache License, Version 2.0, Section 4(b)):
  11. - Image: an optional real `src` now renders an actual <img> element
  12. (object-cover), with a placeholder fallback when absent.
  13. - Pressable: a clickable container that wraps arbitrary children and emits
  14. a `press` event.
  15. - Lightbox: a self-contained photo gallery (thumbnail grid + fullscreen
  16. overlay with prev/next and keyboard/backdrop close) that manages its own
  17. state.
  18. - Modal: a self-contained modal whose trigger button and popup are a single
  19. component, managing its own state.
  20. - Playground: generation routed through the OpenAI-compatible ai.mm.mk
  21. gateway.
  22. Primary changed files:
  23. apps/web/lib/render/registry.tsx
  24. apps/web/lib/render/catalog.ts
  25. apps/web/app/api/generate/route.ts
  26. ------------------------------------------------------------------------------