@ryanyahya/opendoc 0.4.0
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/.agents/skills/opendoc-apply-comments/SKILL.md +30 -0
- package/.agents/skills/opendoc-apply-comments/agents/openai.yaml +4 -0
- package/.agents/skills/opendoc-create/SKILL.md +63 -0
- package/.agents/skills/opendoc-create/agents/openai.yaml +6 -0
- package/.agents/skills/opendoc-create-template/SKILL.md +50 -0
- package/.agents/skills/opendoc-create-template/agents/openai.yaml +4 -0
- package/.agents/skills/opendoc-create-template/references/structured-reports.md +11 -0
- package/.agents/skills/opendoc-create-theme/SKILL.md +40 -0
- package/.agents/skills/opendoc-create-theme/agents/openai.yaml +4 -0
- package/.agents/skills/opendoc-current-document/SKILL.md +32 -0
- package/.agents/skills/opendoc-current-document/agents/openai.yaml +4 -0
- package/.agents/skills/opendoc-current-document/references/context-fields.md +20 -0
- package/.agents/skills/opendoc-review-document/SKILL.md +60 -0
- package/.agents/skills/opendoc-review-document/agents/openai.yaml +4 -0
- package/AGENTS.md +69 -0
- package/CONTRIBUTING.md +38 -0
- package/LICENSE +21 -0
- package/README.md +179 -0
- package/SECURITY.md +9 -0
- package/THIRD_PARTY.md +49 -0
- package/VALIDATION.md +99 -0
- package/bin/opendoc.mjs +6 -0
- package/dist/assets/Markdown-sNZyjJi7.js +29 -0
- package/dist/assets/OpenDocSerif-Regular-D3OXs9A9.ttf +0 -0
- package/dist/assets/OpenDocSerif-Semibold-CjL9oDRo.ttf +0 -0
- package/dist/assets/geist-latin-ext-wght-italic-XgKbg5n7.woff2 +0 -0
- package/dist/assets/geist-latin-ext-wght-normal-DC-KSUi6.woff2 +0 -0
- package/dist/assets/geist-latin-wght-italic-dTnRTFFJ.woff2 +0 -0
- package/dist/assets/geist-latin-wght-normal-BgDaEnEv.woff2 +0 -0
- package/dist/assets/index-DdrZ6ozO.css +1 -0
- package/dist/assets/index-DgNBz7mL.js +39 -0
- package/dist/assets/pdf-B7Emtyld.js +54 -0
- package/dist/assets/pdf.worker.min-Dswkl-cV.mjs +29 -0
- package/dist/assets/wordmark-DsqLlZpb.png +0 -0
- package/dist/index.html +17 -0
- package/docs/APPEARANCE.md +21 -0
- package/docs/ASSETS.md +176 -0
- package/docs/AUTHORING.md +178 -0
- package/docs/HEADLESS.md +120 -0
- package/docs/MEDIA.md +112 -0
- package/docs/PROJECTS.md +55 -0
- package/docs/PROSE.md +15 -0
- package/docs/SELECTION.md +59 -0
- package/docs/TEMPLATES.md +55 -0
- package/docs/THEMES.md +106 -0
- package/node_modules/@formepdf/core/LICENSE +21 -0
- package/node_modules/@formepdf/core/README.md +53 -0
- package/node_modules/@formepdf/core/dist/attachments.d.ts +55 -0
- package/node_modules/@formepdf/core/dist/attachments.js +59 -0
- package/node_modules/@formepdf/core/dist/extract.d.ts +8 -0
- package/node_modules/@formepdf/core/dist/extract.js +56 -0
- package/node_modules/@formepdf/core/dist/index.d.ts +311 -0
- package/node_modules/@formepdf/core/dist/index.js +167 -0
- package/node_modules/@formepdf/core/dist/layout.d.ts +132 -0
- package/node_modules/@formepdf/core/dist/layout.js +240 -0
- package/node_modules/@formepdf/core/dist/shared/browserHelpers.d.ts +19 -0
- package/node_modules/@formepdf/core/dist/shared/browserHelpers.js +128 -0
- package/node_modules/@formepdf/core/package.json +35 -0
- package/node_modules/@formepdf/core/pkg-node/LICENSE +21 -0
- package/node_modules/@formepdf/core/pkg-node/README.md +84 -0
- package/node_modules/@formepdf/core/pkg-node/forme.d.ts +39 -0
- package/node_modules/@formepdf/core/pkg-node/forme.js +394 -0
- package/node_modules/@formepdf/core/pkg-node/forme_bg.wasm +0 -0
- package/node_modules/@formepdf/core/pkg-node/forme_bg.wasm.d.ts +21 -0
- package/node_modules/@formepdf/core/pkg-node/package.json +25 -0
- package/node_modules/@formepdf/react/README.md +70 -0
- package/node_modules/@formepdf/react/dist/charts.d.ts +72 -0
- package/node_modules/@formepdf/react/dist/charts.js +338 -0
- package/node_modules/@formepdf/react/dist/components.d.ts +533 -0
- package/node_modules/@formepdf/react/dist/components.js +608 -0
- package/node_modules/@formepdf/react/dist/expr.d.ts +20 -0
- package/node_modules/@formepdf/react/dist/expr.js +39 -0
- package/node_modules/@formepdf/react/dist/font.d.ts +2 -0
- package/node_modules/@formepdf/react/dist/font.js +1 -0
- package/node_modules/@formepdf/react/dist/index.d.ts +11 -0
- package/node_modules/@formepdf/react/dist/index.js +15 -0
- package/node_modules/@formepdf/react/dist/render.d.ts +12 -0
- package/node_modules/@formepdf/react/dist/render.js +15 -0
- package/node_modules/@formepdf/react/dist/serialize.d.ts +12 -0
- package/node_modules/@formepdf/react/dist/serialize.js +1470 -0
- package/node_modules/@formepdf/react/dist/stylesheet.d.ts +4 -0
- package/node_modules/@formepdf/react/dist/stylesheet.js +5 -0
- package/node_modules/@formepdf/react/dist/template-proxy.d.ts +38 -0
- package/node_modules/@formepdf/react/dist/template-proxy.js +100 -0
- package/node_modules/@formepdf/react/dist/types.d.ts +287 -0
- package/node_modules/@formepdf/react/dist/types.js +1 -0
- package/node_modules/@formepdf/react/package.json +41 -0
- package/node_modules/@formepdf/shared/README.md +7 -0
- package/node_modules/@formepdf/shared/dist/canvas.d.ts +6 -0
- package/node_modules/@formepdf/shared/dist/canvas.js +43 -0
- package/node_modules/@formepdf/shared/dist/charts.d.ts +100 -0
- package/node_modules/@formepdf/shared/dist/charts.js +98 -0
- package/node_modules/@formepdf/shared/dist/encode.d.ts +27 -0
- package/node_modules/@formepdf/shared/dist/encode.js +93 -0
- package/node_modules/@formepdf/shared/dist/font.d.ts +13 -0
- package/node_modules/@formepdf/shared/dist/font.js +52 -0
- package/node_modules/@formepdf/shared/dist/index.d.ts +10 -0
- package/node_modules/@formepdf/shared/dist/index.js +15 -0
- package/node_modules/@formepdf/shared/dist/parser.d.ts +30 -0
- package/node_modules/@formepdf/shared/dist/parser.js +756 -0
- package/node_modules/@formepdf/shared/dist/semantics.d.ts +15 -0
- package/node_modules/@formepdf/shared/dist/semantics.js +44 -0
- package/node_modules/@formepdf/shared/dist/style.d.ts +7 -0
- package/node_modules/@formepdf/shared/dist/style.js +1024 -0
- package/node_modules/@formepdf/shared/dist/types.d.ts +743 -0
- package/node_modules/@formepdf/shared/dist/types.js +2 -0
- package/node_modules/@formepdf/shared/package.json +35 -0
- package/node_modules/@types/node/LICENSE +21 -0
- package/node_modules/@types/node/README.md +15 -0
- package/node_modules/@types/node/assert/strict.d.ts +111 -0
- package/node_modules/@types/node/assert.d.ts +1078 -0
- package/node_modules/@types/node/async_hooks.d.ts +603 -0
- package/node_modules/@types/node/buffer.buffer.d.ts +472 -0
- package/node_modules/@types/node/buffer.d.ts +1934 -0
- package/node_modules/@types/node/child_process.d.ts +1476 -0
- package/node_modules/@types/node/cluster.d.ts +578 -0
- package/node_modules/@types/node/compatibility/disposable.d.ts +14 -0
- package/node_modules/@types/node/compatibility/index.d.ts +9 -0
- package/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
- package/node_modules/@types/node/compatibility/iterators.d.ts +20 -0
- package/node_modules/@types/node/console.d.ts +452 -0
- package/node_modules/@types/node/constants.d.ts +21 -0
- package/node_modules/@types/node/crypto.d.ts +4545 -0
- package/node_modules/@types/node/dgram.d.ts +600 -0
- package/node_modules/@types/node/diagnostics_channel.d.ts +576 -0
- package/node_modules/@types/node/dns/promises.d.ts +503 -0
- package/node_modules/@types/node/dns.d.ts +923 -0
- package/node_modules/@types/node/domain.d.ts +170 -0
- package/node_modules/@types/node/events.d.ts +976 -0
- package/node_modules/@types/node/fs/promises.d.ts +1306 -0
- package/node_modules/@types/node/fs.d.ts +4463 -0
- package/node_modules/@types/node/globals.d.ts +172 -0
- package/node_modules/@types/node/globals.typedarray.d.ts +38 -0
- package/node_modules/@types/node/http.d.ts +2097 -0
- package/node_modules/@types/node/http2.d.ts +2843 -0
- package/node_modules/@types/node/https.d.ts +579 -0
- package/node_modules/@types/node/index.d.ts +98 -0
- package/node_modules/@types/node/inspector.d.ts +253 -0
- package/node_modules/@types/node/inspector.generated.d.ts +4052 -0
- package/node_modules/@types/node/module.d.ts +891 -0
- package/node_modules/@types/node/net.d.ts +1076 -0
- package/node_modules/@types/node/os.d.ts +506 -0
- package/node_modules/@types/node/package.json +145 -0
- package/node_modules/@types/node/path.d.ts +200 -0
- package/node_modules/@types/node/perf_hooks.d.ts +968 -0
- package/node_modules/@types/node/process.d.ts +2084 -0
- package/node_modules/@types/node/punycode.d.ts +117 -0
- package/node_modules/@types/node/querystring.d.ts +152 -0
- package/node_modules/@types/node/readline/promises.d.ts +161 -0
- package/node_modules/@types/node/readline.d.ts +594 -0
- package/node_modules/@types/node/repl.d.ts +428 -0
- package/node_modules/@types/node/sea.d.ts +162 -0
- package/node_modules/@types/node/sqlite.d.ts +722 -0
- package/node_modules/@types/node/stream/consumers.d.ts +38 -0
- package/node_modules/@types/node/stream/promises.d.ts +90 -0
- package/node_modules/@types/node/stream/web.d.ts +573 -0
- package/node_modules/@types/node/stream.d.ts +1694 -0
- package/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/node_modules/@types/node/test.d.ts +2265 -0
- package/node_modules/@types/node/timers/promises.d.ts +108 -0
- package/node_modules/@types/node/timers.d.ts +287 -0
- package/node_modules/@types/node/tls.d.ts +1319 -0
- package/node_modules/@types/node/trace_events.d.ts +197 -0
- package/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
- package/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
- package/node_modules/@types/node/ts5.6/index.d.ts +98 -0
- package/node_modules/@types/node/tty.d.ts +208 -0
- package/node_modules/@types/node/url.d.ts +984 -0
- package/node_modules/@types/node/util.d.ts +2606 -0
- package/node_modules/@types/node/v8.d.ts +920 -0
- package/node_modules/@types/node/vm.d.ts +1053 -0
- package/node_modules/@types/node/wasi.d.ts +181 -0
- package/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
- package/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/node_modules/@types/node/web-globals/events.d.ts +97 -0
- package/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
- package/node_modules/@types/node/web-globals/navigator.d.ts +22 -0
- package/node_modules/@types/node/web-globals/storage.d.ts +24 -0
- package/node_modules/@types/node/web-globals/streams.d.ts +22 -0
- package/node_modules/@types/node/worker_threads.d.ts +819 -0
- package/node_modules/@types/node/zlib.d.ts +747 -0
- package/node_modules/@types/react/LICENSE +21 -0
- package/node_modules/@types/react/README.md +15 -0
- package/node_modules/@types/react/canary.d.ts +129 -0
- package/node_modules/@types/react/compiler-runtime.d.ts +4 -0
- package/node_modules/@types/react/experimental.d.ts +184 -0
- package/node_modules/@types/react/global.d.ts +166 -0
- package/node_modules/@types/react/index.d.ts +4378 -0
- package/node_modules/@types/react/jsx-dev-runtime.d.ts +33 -0
- package/node_modules/@types/react/jsx-runtime.d.ts +24 -0
- package/node_modules/@types/react/package.json +210 -0
- package/node_modules/@types/react/ts5.0/canary.d.ts +129 -0
- package/node_modules/@types/react/ts5.0/experimental.d.ts +184 -0
- package/node_modules/@types/react/ts5.0/global.d.ts +166 -0
- package/node_modules/@types/react/ts5.0/index.d.ts +4365 -0
- package/node_modules/@types/react/ts5.0/jsx-dev-runtime.d.ts +33 -0
- package/node_modules/@types/react/ts5.0/jsx-runtime.d.ts +24 -0
- package/node_modules/csstype/LICENSE +19 -0
- package/node_modules/csstype/README.md +291 -0
- package/node_modules/csstype/index.d.ts +22569 -0
- package/node_modules/csstype/index.js.flow +6863 -0
- package/node_modules/csstype/package.json +70 -0
- package/node_modules/entities/LICENSE +11 -0
- package/node_modules/entities/decode.d.ts +1 -0
- package/node_modules/entities/decode.js +3 -0
- package/node_modules/entities/dist/commonjs/decode-codepoint.d.ts +19 -0
- package/node_modules/entities/dist/commonjs/decode-codepoint.d.ts.map +1 -0
- package/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
- package/node_modules/entities/dist/commonjs/decode-codepoint.js.map +1 -0
- package/node_modules/entities/dist/commonjs/decode.d.ts +209 -0
- package/node_modules/entities/dist/commonjs/decode.d.ts.map +1 -0
- package/node_modules/entities/dist/commonjs/decode.js +511 -0
- package/node_modules/entities/dist/commonjs/decode.js.map +1 -0
- package/node_modules/entities/dist/commonjs/encode.d.ts +22 -0
- package/node_modules/entities/dist/commonjs/encode.d.ts.map +1 -0
- package/node_modules/entities/dist/commonjs/encode.js +73 -0
- package/node_modules/entities/dist/commonjs/encode.js.map +1 -0
- package/node_modules/entities/dist/commonjs/escape.d.ts +43 -0
- package/node_modules/entities/dist/commonjs/escape.d.ts.map +1 -0
- package/node_modules/entities/dist/commonjs/escape.js +121 -0
- package/node_modules/entities/dist/commonjs/escape.js.map +1 -0
- package/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts +2 -0
- package/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts.map +1 -0
- package/node_modules/entities/dist/commonjs/generated/decode-data-html.js +10 -0
- package/node_modules/entities/dist/commonjs/generated/decode-data-html.js.map +1 -0
- package/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts +2 -0
- package/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts.map +1 -0
- package/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +10 -0
- package/node_modules/entities/dist/commonjs/generated/decode-data-xml.js.map +1 -0
- package/node_modules/entities/dist/commonjs/generated/encode-html.d.ts +8 -0
- package/node_modules/entities/dist/commonjs/generated/encode-html.d.ts.map +1 -0
- package/node_modules/entities/dist/commonjs/generated/encode-html.js +13 -0
- package/node_modules/entities/dist/commonjs/generated/encode-html.js.map +1 -0
- package/node_modules/entities/dist/commonjs/index.d.ts +96 -0
- package/node_modules/entities/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/entities/dist/commonjs/index.js +131 -0
- package/node_modules/entities/dist/commonjs/index.js.map +1 -0
- package/node_modules/entities/dist/commonjs/package.json +3 -0
- package/node_modules/entities/dist/esm/decode-codepoint.d.ts +19 -0
- package/node_modules/entities/dist/esm/decode-codepoint.d.ts.map +1 -0
- package/node_modules/entities/dist/esm/decode-codepoint.js +72 -0
- package/node_modules/entities/dist/esm/decode-codepoint.js.map +1 -0
- package/node_modules/entities/dist/esm/decode.d.ts +209 -0
- package/node_modules/entities/dist/esm/decode.d.ts.map +1 -0
- package/node_modules/entities/dist/esm/decode.js +497 -0
- package/node_modules/entities/dist/esm/decode.js.map +1 -0
- package/node_modules/entities/dist/esm/encode.d.ts +22 -0
- package/node_modules/entities/dist/esm/encode.d.ts.map +1 -0
- package/node_modules/entities/dist/esm/encode.js +69 -0
- package/node_modules/entities/dist/esm/encode.js.map +1 -0
- package/node_modules/entities/dist/esm/escape.d.ts +43 -0
- package/node_modules/entities/dist/esm/escape.d.ts.map +1 -0
- package/node_modules/entities/dist/esm/escape.js +117 -0
- package/node_modules/entities/dist/esm/escape.js.map +1 -0
- package/node_modules/entities/dist/esm/generated/decode-data-html.d.ts +2 -0
- package/node_modules/entities/dist/esm/generated/decode-data-html.d.ts.map +1 -0
- package/node_modules/entities/dist/esm/generated/decode-data-html.js +7 -0
- package/node_modules/entities/dist/esm/generated/decode-data-html.js.map +1 -0
- package/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts +2 -0
- package/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts.map +1 -0
- package/node_modules/entities/dist/esm/generated/decode-data-xml.js +7 -0
- package/node_modules/entities/dist/esm/generated/decode-data-xml.js.map +1 -0
- package/node_modules/entities/dist/esm/generated/encode-html.d.ts +8 -0
- package/node_modules/entities/dist/esm/generated/encode-html.d.ts.map +1 -0
- package/node_modules/entities/dist/esm/generated/encode-html.js +10 -0
- package/node_modules/entities/dist/esm/generated/encode-html.js.map +1 -0
- package/node_modules/entities/dist/esm/index.d.ts +96 -0
- package/node_modules/entities/dist/esm/index.d.ts.map +1 -0
- package/node_modules/entities/dist/esm/index.js +107 -0
- package/node_modules/entities/dist/esm/index.js.map +1 -0
- package/node_modules/entities/dist/esm/package.json +3 -0
- package/node_modules/entities/escape.d.ts +1 -0
- package/node_modules/entities/escape.js +3 -0
- package/node_modules/entities/package.json +118 -0
- package/node_modules/entities/readme.md +122 -0
- package/node_modules/entities/src/decode-codepoint.ts +81 -0
- package/node_modules/entities/src/decode.spec.ts +320 -0
- package/node_modules/entities/src/decode.ts +620 -0
- package/node_modules/entities/src/encode.spec.ts +78 -0
- package/node_modules/entities/src/encode.ts +77 -0
- package/node_modules/entities/src/escape.spec.ts +14 -0
- package/node_modules/entities/src/escape.ts +148 -0
- package/node_modules/entities/src/generated/.eslintrc.json +10 -0
- package/node_modules/entities/src/generated/decode-data-html.ts +8 -0
- package/node_modules/entities/src/generated/decode-data-xml.ts +8 -0
- package/node_modules/entities/src/generated/encode-html.ts +17 -0
- package/node_modules/entities/src/index.spec.ts +125 -0
- package/node_modules/entities/src/index.ts +188 -0
- package/node_modules/parse5/LICENSE +19 -0
- package/node_modules/parse5/README.md +38 -0
- package/node_modules/parse5/dist/cjs/common/doctype.d.ts +4 -0
- package/node_modules/parse5/dist/cjs/common/doctype.js +118 -0
- package/node_modules/parse5/dist/cjs/common/error-codes.d.ts +67 -0
- package/node_modules/parse5/dist/cjs/common/error-codes.js +66 -0
- package/node_modules/parse5/dist/cjs/common/foreign-content.d.ts +9 -0
- package/node_modules/parse5/dist/cjs/common/foreign-content.js +237 -0
- package/node_modules/parse5/dist/cjs/common/html.d.ts +289 -0
- package/node_modules/parse5/dist/cjs/common/html.js +528 -0
- package/node_modules/parse5/dist/cjs/common/token.d.ts +84 -0
- package/node_modules/parse5/dist/cjs/common/token.js +24 -0
- package/node_modules/parse5/dist/cjs/common/unicode.d.ts +42 -0
- package/node_modules/parse5/dist/cjs/common/unicode.js +70 -0
- package/node_modules/parse5/dist/cjs/index.d.ts +71 -0
- package/node_modules/parse5/dist/cjs/index.js +54 -0
- package/node_modules/parse5/dist/cjs/package.json +1 -0
- package/node_modules/parse5/dist/cjs/parser/formatting-element-list.d.ts +36 -0
- package/node_modules/parse5/dist/cjs/parser/formatting-element-list.js +114 -0
- package/node_modules/parse5/dist/cjs/parser/index.d.ts +221 -0
- package/node_modules/parse5/dist/cjs/parser/index.js +3240 -0
- package/node_modules/parse5/dist/cjs/parser/open-element-stack.d.ts +53 -0
- package/node_modules/parse5/dist/cjs/parser/open-element-stack.js +328 -0
- package/node_modules/parse5/dist/cjs/serializer/index.d.ts +60 -0
- package/node_modules/parse5/dist/cjs/serializer/index.js +172 -0
- package/node_modules/parse5/dist/cjs/tokenizer/index.d.ts +247 -0
- package/node_modules/parse5/dist/cjs/tokenizer/index.js +2714 -0
- package/node_modules/parse5/dist/cjs/tokenizer/preprocessor.d.ts +36 -0
- package/node_modules/parse5/dist/cjs/tokenizer/preprocessor.js +200 -0
- package/node_modules/parse5/dist/cjs/tree-adapters/default.d.ts +84 -0
- package/node_modules/parse5/dist/cjs/tree-adapters/default.js +176 -0
- package/node_modules/parse5/dist/cjs/tree-adapters/interface.d.ts +255 -0
- package/node_modules/parse5/dist/cjs/tree-adapters/interface.js +2 -0
- package/node_modules/parse5/dist/common/doctype.d.ts +4 -0
- package/node_modules/parse5/dist/common/doctype.js +114 -0
- package/node_modules/parse5/dist/common/error-codes.d.ts +67 -0
- package/node_modules/parse5/dist/common/error-codes.js +63 -0
- package/node_modules/parse5/dist/common/foreign-content.d.ts +9 -0
- package/node_modules/parse5/dist/common/foreign-content.js +228 -0
- package/node_modules/parse5/dist/common/html.d.ts +289 -0
- package/node_modules/parse5/dist/common/html.js +523 -0
- package/node_modules/parse5/dist/common/token.d.ts +84 -0
- package/node_modules/parse5/dist/common/token.js +20 -0
- package/node_modules/parse5/dist/common/unicode.d.ts +42 -0
- package/node_modules/parse5/dist/common/unicode.js +62 -0
- package/node_modules/parse5/dist/index.d.ts +71 -0
- package/node_modules/parse5/dist/index.js +42 -0
- package/node_modules/parse5/dist/parser/formatting-element-list.d.ts +36 -0
- package/node_modules/parse5/dist/parser/formatting-element-list.js +110 -0
- package/node_modules/parse5/dist/parser/index.d.ts +221 -0
- package/node_modules/parse5/dist/parser/index.js +3245 -0
- package/node_modules/parse5/dist/parser/open-element-stack.d.ts +53 -0
- package/node_modules/parse5/dist/parser/open-element-stack.js +324 -0
- package/node_modules/parse5/dist/serializer/index.d.ts +60 -0
- package/node_modules/parse5/dist/serializer/index.js +168 -0
- package/node_modules/parse5/dist/tokenizer/index.d.ts +247 -0
- package/node_modules/parse5/dist/tokenizer/index.js +2710 -0
- package/node_modules/parse5/dist/tokenizer/preprocessor.d.ts +36 -0
- package/node_modules/parse5/dist/tokenizer/preprocessor.js +196 -0
- package/node_modules/parse5/dist/tree-adapters/default.d.ts +84 -0
- package/node_modules/parse5/dist/tree-adapters/default.js +173 -0
- package/node_modules/parse5/dist/tree-adapters/interface.d.ts +255 -0
- package/node_modules/parse5/dist/tree-adapters/interface.js +1 -0
- package/node_modules/parse5/package.json +50 -0
- package/node_modules/undici-types/LICENSE +21 -0
- package/node_modules/undici-types/README.md +6 -0
- package/node_modules/undici-types/agent.d.ts +31 -0
- package/node_modules/undici-types/api.d.ts +43 -0
- package/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/node_modules/undici-types/cache.d.ts +36 -0
- package/node_modules/undici-types/client.d.ts +108 -0
- package/node_modules/undici-types/connector.d.ts +34 -0
- package/node_modules/undici-types/content-type.d.ts +21 -0
- package/node_modules/undici-types/cookies.d.ts +28 -0
- package/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- package/node_modules/undici-types/dispatcher.d.ts +256 -0
- package/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- package/node_modules/undici-types/errors.d.ts +149 -0
- package/node_modules/undici-types/eventsource.d.ts +61 -0
- package/node_modules/undici-types/fetch.d.ts +209 -0
- package/node_modules/undici-types/file.d.ts +39 -0
- package/node_modules/undici-types/filereader.d.ts +54 -0
- package/node_modules/undici-types/formdata.d.ts +108 -0
- package/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/node_modules/undici-types/global-origin.d.ts +7 -0
- package/node_modules/undici-types/handlers.d.ts +15 -0
- package/node_modules/undici-types/header.d.ts +4 -0
- package/node_modules/undici-types/index.d.ts +71 -0
- package/node_modules/undici-types/interceptors.d.ts +17 -0
- package/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/node_modules/undici-types/mock-client.d.ts +25 -0
- package/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/node_modules/undici-types/package.json +55 -0
- package/node_modules/undici-types/patch.d.ts +33 -0
- package/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/node_modules/undici-types/pool.d.ts +39 -0
- package/node_modules/undici-types/proxy-agent.d.ts +28 -0
- package/node_modules/undici-types/readable.d.ts +65 -0
- package/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/node_modules/undici-types/retry-handler.d.ts +116 -0
- package/node_modules/undici-types/util.d.ts +18 -0
- package/node_modules/undici-types/webidl.d.ts +228 -0
- package/node_modules/undici-types/websocket.d.ts +150 -0
- package/package.json +80 -0
- package/scripts/rebuild-forme.mjs +61 -0
- package/src/app/AppearanceControl.tsx +44 -0
- package/src/app/AssetThemeDefaults.tsx +87 -0
- package/src/app/AssetsBrowser.tsx +273 -0
- package/src/app/CommentDock.tsx +108 -0
- package/src/app/CreateDocumentDialog.tsx +51 -0
- package/src/app/DocumentActions.tsx +69 -0
- package/src/app/DocumentCard.tsx +50 -0
- package/src/app/DocumentViewControl.tsx +31 -0
- package/src/app/DocumentsBrowser.tsx +70 -0
- package/src/app/ExportHistoryDialog.tsx +86 -0
- package/src/app/ExportMenu.tsx +127 -0
- package/src/app/GuideDialog.tsx +80 -0
- package/src/app/InspectionLayer.tsx +77 -0
- package/src/app/LogoUploadDialog.tsx +92 -0
- package/src/app/Markdown.tsx +34 -0
- package/src/app/MaterialsBrowser.tsx +149 -0
- package/src/app/PageNumberInput.tsx +56 -0
- package/src/app/Pdf.tsx +561 -0
- package/src/app/ProjectDialogs.tsx +100 -0
- package/src/app/Reader.tsx +769 -0
- package/src/app/SearchField.tsx +13 -0
- package/src/app/Sidebar.tsx +86 -0
- package/src/app/SkillIndex.tsx +30 -0
- package/src/app/TemplatesBrowser.tsx +149 -0
- package/src/app/ThemesBrowser.tsx +159 -0
- package/src/app/api.ts +47 -0
- package/src/app/appearance.ts +35 -0
- package/src/app/assets.css +139 -0
- package/src/app/catalogPreview.ts +20 -0
- package/src/app/colors.css +167 -0
- package/src/app/comment-dock.css +53 -0
- package/src/app/commentDrafts.ts +67 -0
- package/src/app/componentCorrection.ts +17 -0
- package/src/app/edit-workbench.css +87 -0
- package/src/app/editSession.ts +238 -0
- package/src/app/editorRecovery.ts +25 -0
- package/src/app/export-history.css +31 -0
- package/src/app/export.css +17 -0
- package/src/app/guideLinks.ts +21 -0
- package/src/app/guides.css +40 -0
- package/src/app/main.tsx +221 -0
- package/src/app/materials.css +53 -0
- package/src/app/pdfLoading.ts +12 -0
- package/src/app/pdfSelection.ts +112 -0
- package/src/app/projects.css +63 -0
- package/src/app/reader-toolbar.css +65 -0
- package/src/app/selection.css +150 -0
- package/src/app/sidebar.css +60 -0
- package/src/app/skills.css +7 -0
- package/src/app/style.css +1061 -0
- package/src/app/templates.css +49 -0
- package/src/app/themes.css +80 -0
- package/src/app/ui/Icon.tsx +92 -0
- package/src/app/ui/README.md +27 -0
- package/src/app/ui/fonts.css +36 -0
- package/src/app/ui/index.tsx +223 -0
- package/src/app/ui/ui.css +388 -0
- package/src/app/useReaderPreview.ts +19 -0
- package/src/app/useTextEditing.ts +155 -0
- package/src/assets/adapter.ts +122 -0
- package/src/assets/files.ts +378 -0
- package/src/assets/import-worker.ts +294 -0
- package/src/assets/imports.ts +124 -0
- package/src/assets/index.ts +60 -0
- package/src/assets/store.ts +798 -0
- package/src/assets/usage.ts +118 -0
- package/src/cli/check.ts +25 -0
- package/src/cli/init.ts +119 -0
- package/src/cli/lock.ts +34 -0
- package/src/cli/main.ts +118 -0
- package/src/cli/process.ts +19 -0
- package/src/cli/start.ts +96 -0
- package/src/cli/update.ts +348 -0
- package/src/cli/workspace.ts +94 -0
- package/src/document/index.tsx +641 -0
- package/src/document/page.tsx +53 -0
- package/src/document/text-targets.tsx +162 -0
- package/src/media/files.ts +124 -0
- package/src/media/render.ts +63 -0
- package/src/rendering/resolve-sources.ts +84 -0
- package/src/runtime/jsx-dev-runtime.ts +2 -0
- package/src/runtime/jsx-runtime.ts +2 -0
- package/src/runtime/paths.ts +12 -0
- package/src/server/assets-cli.ts +162 -0
- package/src/server/assets-http.ts +100 -0
- package/src/server/client.ts +50 -0
- package/src/server/clipboard.ts +22 -0
- package/src/server/comments-cli.ts +64 -0
- package/src/server/comments.ts +130 -0
- package/src/server/create-cli.ts +33 -0
- package/src/server/create.ts +228 -0
- package/src/server/dependencies.ts +91 -0
- package/src/server/documents.ts +143 -0
- package/src/server/edits.ts +249 -0
- package/src/server/export-batch.ts +105 -0
- package/src/server/export-errors.ts +2 -0
- package/src/server/export-file.ts +57 -0
- package/src/server/export-inputs.ts +66 -0
- package/src/server/export-preview.ts +69 -0
- package/src/server/export.ts +32 -0
- package/src/server/exports.ts +283 -0
- package/src/server/files.ts +21 -0
- package/src/server/guides.ts +71 -0
- package/src/server/index.ts +432 -0
- package/src/server/materials.ts +39 -0
- package/src/server/media-cli.ts +73 -0
- package/src/server/media-mutations.ts +168 -0
- package/src/server/pptx.ts +160 -0
- package/src/server/preflight.ts +129 -0
- package/src/server/projects-cli.ts +29 -0
- package/src/server/projects.ts +187 -0
- package/src/server/render-error.ts +9 -0
- package/src/server/render-source.ts +24 -0
- package/src/server/render.ts +48 -0
- package/src/server/review-cli.ts +40 -0
- package/src/server/review.ts +161 -0
- package/src/server/selection.ts +23 -0
- package/src/server/source-overrides.ts +97 -0
- package/src/server/templates-cli.ts +51 -0
- package/src/server/templates.ts +186 -0
- package/src/server/text-layout.ts +41 -0
- package/src/server/text-source.ts +307 -0
- package/src/server/themes-cli.ts +59 -0
- package/src/server/themes.ts +215 -0
- package/src/server/ttf2eot.d.ts +3 -0
- package/src/server/worker.ts +166 -0
- package/src/server/workspace.ts +242 -0
- package/src/shared/anchors.ts +69 -0
- package/src/shared/assets.ts +154 -0
- package/src/shared/export.ts +34 -0
- package/src/shared/media.ts +33 -0
- package/src/shared/projects.ts +19 -0
- package/src/shared/selection.ts +94 -0
- package/src/shared/skill-index.ts +14 -0
- package/src/shared/starters.ts +19 -0
- package/src/shared/templates.ts +18 -0
- package/src/shared/themes.ts +24 -0
- package/src/shared/types.ts +39 -0
- package/src/template/index.ts +27 -0
- package/src/themes/index.ts +3 -0
- package/src/themes/neutral.ts +20 -0
- package/src/themes/types.ts +110 -0
- package/starter/assets/brand/wordmark.png +0 -0
- package/starter/assets/fonts/InterUI-LICENSE.txt +93 -0
- package/starter/assets/fonts/InterUI-Medium.ttf +0 -0
- package/starter/assets/fonts/InterUI-Regular.ttf +0 -0
- package/starter/assets/fonts/InterUI-source.json +19 -0
- package/starter/assets/fonts/OpenDocMono-Regular.ttf +0 -0
- package/starter/assets/fonts/OpenDocSans-Italic.ttf +0 -0
- package/starter/assets/fonts/OpenDocSans-Regular.ttf +0 -0
- package/starter/assets/fonts/OpenDocSans-Semibold.ttf +0 -0
- package/starter/assets/fonts/OpenDocSans-SemiboldItalic.ttf +0 -0
- package/starter/assets/fonts/OpenDocSerif-Italic.ttf +0 -0
- package/starter/assets/fonts/OpenDocSerif-Regular.ttf +0 -0
- package/starter/assets/fonts/OpenDocSerif-Semibold.ttf +0 -0
- package/starter/assets/fonts/OpenDocSerif-SemiboldItalic.ttf +0 -0
- package/starter/assets/fonts/SourceCode-LICENSE.md +93 -0
- package/starter/assets/fonts/SourceSans-LICENSE.md +93 -0
- package/starter/assets/fonts/SourceSerif-LICENSE.md +93 -0
- package/starter/assets/fonts/geist/OFL.txt +93 -0
- package/starter/assets/fonts/geist/asset.json +7 -0
- package/starter/assets/fonts/geist/files/1a9874b3be0fc168692a3d2327bccb4d28835653d3b91537a755296a467a83e3.ttf +0 -0
- package/starter/assets/fonts/geist/files/a8eefb873ba9c9020665f8a98302697ce1f3b79ab2deef6ee508c0ca6a82e876.ttf +0 -0
- package/starter/assets/fonts/geist/files/ccce59465ae5c61930ada5453834f60500fbd95084d85db63e0e65fad0125455.ttf +0 -0
- package/starter/assets/fonts/geist/files/f5e95110d70593672515080bee9148463ada0a7f77b89ed65a3d43cb2b0ff83a.pdf +0 -0
- package/starter/assets/fonts/geist/revisions/9a2bc12fb2f23cb27bc227087e63e1407bb804ee0586480bd6b7966ec69fb474.json +60 -0
- package/starter/assets/fonts/inter/OFL.txt +93 -0
- package/starter/assets/fonts/inter/asset.json +7 -0
- package/starter/assets/fonts/inter/files/1b08e7fc267a5c7e1d614100f604b83e7e8a0be241f0f288faa2b3ac93a683ba.ttf +0 -0
- package/starter/assets/fonts/inter/files/5b6f0c6f26e5c554a64cdcc3a9b5d802b7f9aec6206f1dbcfcdcad7b5860a2a9.ttf +0 -0
- package/starter/assets/fonts/inter/files/957db8560d510a198a7d0333fae7b6b444b00c20801581126273978d778eb3c3.pdf +0 -0
- package/starter/assets/fonts/inter/files/b37284b5701b6b168dfc770aa1a4ac492106422fd3ba76bc7641e37434e8019c.ttf +0 -0
- package/starter/assets/fonts/inter/files/c1811d32ac0f6eed1bbf57529f2ecdfc6c717d48a969dd864942436315a1b198.ttf +0 -0
- package/starter/assets/fonts/inter/files/e7a1aaf7eda9f2fad4131725fa556265ec75ca7b2d756260173a040363e8d4f7.ttf +0 -0
- package/starter/assets/fonts/inter/files/ef8f755d933b9310804cc9152f1f18cb2ac460d6b05054ec913d889c9f11f79e.ttf +0 -0
- package/starter/assets/fonts/inter/revisions/600391517c413963b71e278a57c26c40366c81fa3939a6b9755f446206766d12.json +99 -0
- package/starter/assets/fonts/inter/source.json +57 -0
- package/starter/assets/fonts/lato/OFL.txt +93 -0
- package/starter/assets/fonts/lato/asset.json +7 -0
- package/starter/assets/fonts/lato/files/4a6b566dbb28adb473a8789ce5169306f42f0c8a070ac92bae93636f36348b0d.pdf +0 -0
- package/starter/assets/fonts/lato/files/5adeb6b334d8fb99ef053bc052b952773d544315e0e1d668a12c0ce8bd51375c.ttf +0 -0
- package/starter/assets/fonts/lato/files/62c1b7f0d2e74b45960154c3520efc337b553db0961bfdc950d5618334596cc8.ttf +0 -0
- package/starter/assets/fonts/lato/files/71b8b7decbe75a881ed267be539d402bd1e9420b799658aada4e0d1bd5af803c.ttf +0 -0
- package/starter/assets/fonts/lato/files/8a0aace75d33794eece4b28187bfc1df0bbd2888b5d8a56e01788c8d65d16be1.ttf +0 -0
- package/starter/assets/fonts/lato/files/d636e4683231f931eda222d588e944d082bfd3bdba02f928bee461c0f185b251.ttf +0 -0
- package/starter/assets/fonts/lato/files/e399c44efe1387100531d26c7e4800c5d12251b890d6654a3098c7c679cb1786.ttf +0 -0
- package/starter/assets/fonts/lato/revisions/49ccb93400a9d466fab7d9843b1ecf8916ec6d47a475dd79a597a22eb39616bc.json +99 -0
- package/starter/assets/fonts/lato/source.json +57 -0
- package/starter/assets/fonts/merriweather/OFL.txt +93 -0
- package/starter/assets/fonts/merriweather/asset.json +7 -0
- package/starter/assets/fonts/merriweather/files/1c54f91b910454251c4c2b7bd4e472e1abf265fba7ca3c0ef2eee2f41324099e.ttf +0 -0
- package/starter/assets/fonts/merriweather/files/8bde8da2bb7f0265e27ba0481f70bb48d0f98a976c145f2f239c648ddd6532e0.pdf +0 -0
- package/starter/assets/fonts/merriweather/files/90b7db4460fcd1a5ca49575c2668a793f3cd6447664d312a068d690e1c01e6bc.ttf +0 -0
- package/starter/assets/fonts/merriweather/files/afff81272b7653417bb6f8bef57add055b1f9fda36f27eba5f32b40752bd08da.ttf +0 -0
- package/starter/assets/fonts/merriweather/files/e029d3b71e5bae3877c73f4f2b15af28db16593d49b0aed2a328d37ff7075846.ttf +0 -0
- package/starter/assets/fonts/merriweather/files/e9864a6790bf712a04e20f3662b206a1535186ed3e877fd859dd5fb9682335df.ttf +0 -0
- package/starter/assets/fonts/merriweather/files/fa71baebdd20a7d0de2e5e445a5922530fe9e1d740efbe791f113b682d3cb093.ttf +0 -0
- package/starter/assets/fonts/merriweather/revisions/1888e390b3e4f38a3d7cd2dc1bb805aeb6ce13f986a97656f0265fd436bc91d2.json +99 -0
- package/starter/assets/fonts/merriweather/source.json +57 -0
- package/starter/assets/fonts/open-sans/OFL.txt +92 -0
- package/starter/assets/fonts/open-sans/asset.json +7 -0
- package/starter/assets/fonts/open-sans/files/1bc0594a83762b2c25d38915a34464b7fec6088298ca22d151757bf98d6700ec.ttf +0 -0
- package/starter/assets/fonts/open-sans/files/47ed1cfaa7ffca04a04ab850b2938fd52c09d1b44cfa3e2980878e166b0cbd87.ttf +0 -0
- package/starter/assets/fonts/open-sans/files/574939af301f07df8e21cfff279465c5981dd9d9cf62086f7515897df951c6f5.pdf +0 -0
- package/starter/assets/fonts/open-sans/files/6d3884d0d57c1b67e9c50c54eca7b69c535c114e76bd7a9cfda0258588185553.ttf +0 -0
- package/starter/assets/fonts/open-sans/files/733eb93b167e6d45de09aa768f6c0355647c2c26f5416dbc7407a08ed41e81c6.ttf +0 -0
- package/starter/assets/fonts/open-sans/files/75367e6da7d914eaed87883ba51b2a2b5816b5cdbb39f96ec5c81a5b032bfd5a.ttf +0 -0
- package/starter/assets/fonts/open-sans/files/ff4fdc11204e0edd14e9a0bb6c374b847a9093b0ec2c16702e03afca79ac4ef7.ttf +0 -0
- package/starter/assets/fonts/open-sans/revisions/bbbe3a4915b9bccbc883c0decb4097511c43b6bd09ae22a1516aff128c219bc5.json +99 -0
- package/starter/assets/fonts/open-sans/source.json +57 -0
- package/starter/assets/fonts/roboto/OFL.txt +93 -0
- package/starter/assets/fonts/roboto/asset.json +7 -0
- package/starter/assets/fonts/roboto/files/22d45d989248a624252b8382067ac56550212fa675dcdbaf12f03d297dd87a58.pdf +0 -0
- package/starter/assets/fonts/roboto/files/35757eaa996b3359022f47f164a67ee9eac04971af24c5b8fbd4b89e844ff190.ttf +0 -0
- package/starter/assets/fonts/roboto/files/4d3035883c531846bd1ce2dc89f36d932e72dc114f56062c7e3a9cdd74f3d3ea.ttf +0 -0
- package/starter/assets/fonts/roboto/files/be7639306a4fc4a02ce2ae2ff59eb1335e4db4a7379dd0a384ed7cc053817789.ttf +0 -0
- package/starter/assets/fonts/roboto/files/d2920cbb1b60a3fd11fbf22049286e43a6baf522d37fdf1e7c89562319bcfea5.ttf +0 -0
- package/starter/assets/fonts/roboto/files/dece7c71bbe61710787f0839c722c65e87355dd2eb4a823e6b5488121ff81e4b.ttf +0 -0
- package/starter/assets/fonts/roboto/files/f478ba88b0292e685e487901dfbb1401457d32d6ebee4030cdfd5698235bffa8.ttf +0 -0
- package/starter/assets/fonts/roboto/revisions/bda5e2d84c17313373dd2dbf3e64fe0dd450c7e1b59e6929e69557e122fe976e.json +99 -0
- package/starter/assets/fonts/roboto/source.json +57 -0
- package/starter/assets/logos/opendoc/asset.json +6 -0
- package/starter/assets/logos/opendoc/files/831d5ccd9eb6709cc8439ea257c03d81452e81a28a3d1eedbd6a3b7daff687b6.png +0 -0
- package/starter/assets/logos/opendoc/revisions/834dde8926ddb81de687254195a168bb13bfb77803307f1257de1f2228be63b2.json +33 -0
- package/starter/assets/ui-fonts/geist/OFL.txt +93 -0
- package/starter/assets/ui-fonts/geist/geist-latin-ext-wght-italic.woff2 +0 -0
- package/starter/assets/ui-fonts/geist/geist-latin-ext-wght-normal.woff2 +0 -0
- package/starter/assets/ui-fonts/geist/geist-latin-wght-italic.woff2 +0 -0
- package/starter/assets/ui-fonts/geist/geist-latin-wght-normal.woff2 +0 -0
- package/starter/assets/ui-fonts/geist/source.json +26 -0
- package/starter/documents/welcome/assets.json +7 -0
- package/starter/documents/welcome/index.tsx +160 -0
- package/starter/documents/welcome/media/.gitkeep +0 -0
- package/starter/documents/welcome/media/paper-architecture/image.png +0 -0
- package/starter/documents/welcome/media/paper-architecture/meta.json +9 -0
- package/starter/documents/welcome/media/paper-architecture/prompt.txt +1 -0
- package/starter/documents/welcome/media/studio-rhythm/chart.svg +2343 -0
- package/starter/documents/welcome/media/studio-rhythm/data.json +234 -0
- package/starter/documents/welcome/media/studio-rhythm/generation.json +9 -0
- package/starter/documents/welcome/media/studio-rhythm/image.png +0 -0
- package/starter/documents/welcome/media/studio-rhythm/meta.json +11 -0
- package/starter/documents/welcome/media/studio-rhythm/recipe.py +79 -0
- package/starter/documents/welcome/theme.tsx +5 -0
- package/starter/documents/welcome-presentation/assets.json +7 -0
- package/starter/documents/welcome-presentation/index.tsx +166 -0
- package/starter/documents/welcome-presentation/media/.gitkeep +0 -0
- package/starter/documents/welcome-presentation/media/paper-architecture/image.png +0 -0
- package/starter/documents/welcome-presentation/media/paper-architecture/meta.json +9 -0
- package/starter/documents/welcome-presentation/media/paper-architecture/prompt.txt +1 -0
- package/starter/documents/welcome-presentation/media/studio-rhythm/chart.svg +1336 -0
- package/starter/documents/welcome-presentation/media/studio-rhythm/data.json +234 -0
- package/starter/documents/welcome-presentation/media/studio-rhythm/generation.json +9 -0
- package/starter/documents/welcome-presentation/media/studio-rhythm/image.png +0 -0
- package/starter/documents/welcome-presentation/media/studio-rhythm/meta.json +13 -0
- package/starter/documents/welcome-presentation/media/studio-rhythm/recipe.py +49 -0
- package/starter/documents/welcome-presentation/theme.tsx +5 -0
- package/starter/projects.json +17 -0
- package/starter/templates/AGENTS.md +9 -0
- package/starter/templates/_shared/BusinessLogo.tsx +14 -0
- package/starter/templates/_shared/Pricing.tsx +40 -0
- package/starter/templates/_shared/commerce.ts +93 -0
- package/starter/templates/brand-guidelines/AGENTS.md +32 -0
- package/starter/templates/brand-guidelines/index.tsx +62 -0
- package/starter/templates/brand-guidelines/preview.tsx +181 -0
- package/starter/templates/brand-guidelines/starter.tsx +179 -0
- package/starter/templates/brand-guidelines/template.json +15 -0
- package/starter/templates/business-proposal/AGENTS.md +13 -0
- package/starter/templates/business-proposal/README.md +36 -0
- package/starter/templates/business-proposal/data.json +37 -0
- package/starter/templates/business-proposal/examples/long.json +142 -0
- package/starter/templates/business-proposal/examples/sparse.json +17 -0
- package/starter/templates/business-proposal/examples/typical.json +37 -0
- package/starter/templates/business-proposal/index.tsx +59 -0
- package/starter/templates/business-proposal/preview.tsx +47 -0
- package/starter/templates/business-proposal/schema.ts +14 -0
- package/starter/templates/business-proposal/starter.tsx +18 -0
- package/starter/templates/business-proposal/template.json +11 -0
- package/starter/templates/company-profile/AGENTS.md +48 -0
- package/starter/templates/company-profile/index.tsx +69 -0
- package/starter/templates/company-profile/preview.tsx +185 -0
- package/starter/templates/company-profile/starter.tsx +186 -0
- package/starter/templates/company-profile/template.json +15 -0
- package/starter/templates/consulting-report/AGENTS.md +11 -0
- package/starter/templates/consulting-report/README.md +13 -0
- package/starter/templates/consulting-report/RESEARCH.md +10 -0
- package/starter/templates/consulting-report/index.tsx +44 -0
- package/starter/templates/consulting-report/preview.tsx +39 -0
- package/starter/templates/consulting-report/starter.tsx +15 -0
- package/starter/templates/consulting-report/template.json +11 -0
- package/starter/templates/editorial-essay/AGENTS.md +11 -0
- package/starter/templates/editorial-essay/README.md +11 -0
- package/starter/templates/editorial-essay/index.tsx +30 -0
- package/starter/templates/editorial-essay/preview.tsx +26 -0
- package/starter/templates/editorial-essay/starter.tsx +15 -0
- package/starter/templates/editorial-essay/template.json +11 -0
- package/starter/templates/executive-brief/AGENTS.md +9 -0
- package/starter/templates/executive-brief/README.md +11 -0
- package/starter/templates/executive-brief/index.tsx +33 -0
- package/starter/templates/executive-brief/preview.tsx +37 -0
- package/starter/templates/executive-brief/starter.tsx +11 -0
- package/starter/templates/executive-brief/template.json +11 -0
- package/starter/templates/image-story/AGENTS.md +37 -0
- package/starter/templates/image-story/index.tsx +106 -0
- package/starter/templates/image-story/preview.tsx +33 -0
- package/starter/templates/image-story/starter.tsx +24 -0
- package/starter/templates/image-story/template.json +13 -0
- package/starter/templates/invoice/AGENTS.md +13 -0
- package/starter/templates/invoice/README.md +40 -0
- package/starter/templates/invoice/data.json +61 -0
- package/starter/templates/invoice/examples/long.json +241 -0
- package/starter/templates/invoice/examples/sparse.json +33 -0
- package/starter/templates/invoice/examples/typical.json +61 -0
- package/starter/templates/invoice/index.tsx +57 -0
- package/starter/templates/invoice/preview.tsx +12 -0
- package/starter/templates/invoice/schema.ts +45 -0
- package/starter/templates/invoice/starter.tsx +12 -0
- package/starter/templates/invoice/template.json +11 -0
- package/starter/templates/literary-text/AGENTS.md +9 -0
- package/starter/templates/literary-text/README.md +11 -0
- package/starter/templates/literary-text/index.tsx +31 -0
- package/starter/templates/literary-text/preview.tsx +20 -0
- package/starter/templates/literary-text/starter.tsx +11 -0
- package/starter/templates/literary-text/template.json +11 -0
- package/starter/templates/magazine-feature/AGENTS.md +11 -0
- package/starter/templates/magazine-feature/README.md +13 -0
- package/starter/templates/magazine-feature/index.tsx +41 -0
- package/starter/templates/magazine-feature/preview.tsx +34 -0
- package/starter/templates/magazine-feature/starter.tsx +15 -0
- package/starter/templates/magazine-feature/template.json +11 -0
- package/starter/templates/monthly-report/AGENTS.md +11 -0
- package/starter/templates/monthly-report/README.md +24 -0
- package/starter/templates/monthly-report/data.json +131 -0
- package/starter/templates/monthly-report/examples/long.json +519 -0
- package/starter/templates/monthly-report/examples/sparse.json +20 -0
- package/starter/templates/monthly-report/examples/typical.json +37 -0
- package/starter/templates/monthly-report/index.tsx +92 -0
- package/starter/templates/monthly-report/preview.tsx +14 -0
- package/starter/templates/monthly-report/schema.ts +127 -0
- package/starter/templates/monthly-report/starter.tsx +13 -0
- package/starter/templates/monthly-report/template.json +11 -0
- package/starter/templates/pitch-deck/AGENTS.md +32 -0
- package/starter/templates/pitch-deck/index.tsx +46 -0
- package/starter/templates/pitch-deck/preview.tsx +142 -0
- package/starter/templates/pitch-deck/starter.tsx +140 -0
- package/starter/templates/pitch-deck/template.json +15 -0
- package/starter/templates/proposal-deck/AGENTS.md +25 -0
- package/starter/templates/proposal-deck/index.tsx +52 -0
- package/starter/templates/proposal-deck/preview.tsx +172 -0
- package/starter/templates/proposal-deck/starter.tsx +168 -0
- package/starter/templates/proposal-deck/template.json +7 -0
- package/starter/templates/quotation/AGENTS.md +13 -0
- package/starter/templates/quotation/README.md +42 -0
- package/starter/templates/quotation/data.json +64 -0
- package/starter/templates/quotation/examples/long.json +272 -0
- package/starter/templates/quotation/examples/sparse.json +31 -0
- package/starter/templates/quotation/examples/typical.json +64 -0
- package/starter/templates/quotation/index.tsx +51 -0
- package/starter/templates/quotation/preview.tsx +12 -0
- package/starter/templates/quotation/schema.ts +27 -0
- package/starter/templates/quotation/starter.tsx +12 -0
- package/starter/templates/quotation/template.json +11 -0
- package/starter/templates/scientific-paper/AGENTS.md +11 -0
- package/starter/templates/scientific-paper/README.md +13 -0
- package/starter/templates/scientific-paper/index.tsx +47 -0
- package/starter/templates/scientific-paper/preview.tsx +43 -0
- package/starter/templates/scientific-paper/starter.tsx +15 -0
- package/starter/templates/scientific-paper/template.json +11 -0
- package/starter/themes/Specimen.tsx +54 -0
- package/starter/themes/civic-spectrum/components.tsx +92 -0
- package/starter/themes/civic-spectrum/design.md +70 -0
- package/starter/themes/civic-spectrum/index.ts +57 -0
- package/starter/themes/civic-spectrum/preview.tsx +66 -0
- package/starter/themes/field-manual/components.tsx +106 -0
- package/starter/themes/field-manual/design.md +72 -0
- package/starter/themes/field-manual/index.ts +57 -0
- package/starter/themes/field-manual/preview.tsx +82 -0
- package/starter/themes/index.ts +3 -0
- package/starter/themes/mckinsey-consulting/components.tsx +69 -0
- package/starter/themes/mckinsey-consulting/design.md +68 -0
- package/starter/themes/mckinsey-consulting/index.ts +60 -0
- package/starter/themes/mckinsey-consulting/preview.tsx +53 -0
- package/starter/themes/neutral/design.md +35 -0
- package/starter/themes/neutral/index.ts +21 -0
- package/starter/themes/neutral/preview.tsx +4 -0
- package/starter/themes/opendoc-neutral/components.tsx +77 -0
- package/starter/themes/opendoc-neutral/design.md +70 -0
- package/starter/themes/opendoc-neutral/index.ts +54 -0
- package/starter/themes/opendoc-neutral/preview.tsx +43 -0
- package/starter/themes/types.ts +3 -0
- package/tsconfig.workspace.json +24 -0
- package/vendor/formepdf/LICENSE +21 -0
- package/vendor/formepdf/README.md +97 -0
- package/vendor/formepdf/font-subset.patch +228 -0
- package/vendor/formepdf/text-writer.patch +507 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"kind": "font",
|
|
4
|
+
"id": "roboto",
|
|
5
|
+
"name": "Roboto",
|
|
6
|
+
"description": "",
|
|
7
|
+
"createdAt": "2026-09-10T11:28:43.180Z",
|
|
8
|
+
"faces": [
|
|
9
|
+
{
|
|
10
|
+
"id": "400-italic",
|
|
11
|
+
"family": "Roboto",
|
|
12
|
+
"postscriptName": "Roboto-Italic",
|
|
13
|
+
"weight": 400,
|
|
14
|
+
"style": "italic",
|
|
15
|
+
"file": {
|
|
16
|
+
"file": "files/4d3035883c531846bd1ce2dc89f36d932e72dc114f56062c7e3a9cdd74f3d3ea.ttf",
|
|
17
|
+
"hash": "4d3035883c531846bd1ce2dc89f36d932e72dc114f56062c7e3a9cdd74f3d3ea",
|
|
18
|
+
"mime": "font/ttf",
|
|
19
|
+
"bytes": 127988
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "600-italic",
|
|
24
|
+
"family": "Roboto",
|
|
25
|
+
"postscriptName": "Roboto-SemiBoldItalic",
|
|
26
|
+
"weight": 600,
|
|
27
|
+
"style": "italic",
|
|
28
|
+
"file": {
|
|
29
|
+
"file": "files/d2920cbb1b60a3fd11fbf22049286e43a6baf522d37fdf1e7c89562319bcfea5.ttf",
|
|
30
|
+
"hash": "d2920cbb1b60a3fd11fbf22049286e43a6baf522d37fdf1e7c89562319bcfea5",
|
|
31
|
+
"mime": "font/ttf",
|
|
32
|
+
"bytes": 128740
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "700-italic",
|
|
37
|
+
"family": "Roboto",
|
|
38
|
+
"postscriptName": "Roboto-BoldItalic",
|
|
39
|
+
"weight": 700,
|
|
40
|
+
"style": "italic",
|
|
41
|
+
"file": {
|
|
42
|
+
"file": "files/be7639306a4fc4a02ce2ae2ff59eb1335e4db4a7379dd0a384ed7cc053817789.ttf",
|
|
43
|
+
"hash": "be7639306a4fc4a02ce2ae2ff59eb1335e4db4a7379dd0a384ed7cc053817789",
|
|
44
|
+
"mime": "font/ttf",
|
|
45
|
+
"bytes": 128772
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"id": "400-normal",
|
|
50
|
+
"family": "Roboto",
|
|
51
|
+
"postscriptName": "Roboto-Regular",
|
|
52
|
+
"weight": 400,
|
|
53
|
+
"style": "normal",
|
|
54
|
+
"file": {
|
|
55
|
+
"file": "files/dece7c71bbe61710787f0839c722c65e87355dd2eb4a823e6b5488121ff81e4b.ttf",
|
|
56
|
+
"hash": "dece7c71bbe61710787f0839c722c65e87355dd2eb4a823e6b5488121ff81e4b",
|
|
57
|
+
"mime": "font/ttf",
|
|
58
|
+
"bytes": 123720
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"id": "600-normal",
|
|
63
|
+
"family": "Roboto",
|
|
64
|
+
"postscriptName": "Roboto-SemiBold",
|
|
65
|
+
"weight": 600,
|
|
66
|
+
"style": "normal",
|
|
67
|
+
"file": {
|
|
68
|
+
"file": "files/f478ba88b0292e685e487901dfbb1401457d32d6ebee4030cdfd5698235bffa8.ttf",
|
|
69
|
+
"hash": "f478ba88b0292e685e487901dfbb1401457d32d6ebee4030cdfd5698235bffa8",
|
|
70
|
+
"mime": "font/ttf",
|
|
71
|
+
"bytes": 124288
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"id": "700-normal",
|
|
76
|
+
"family": "Roboto",
|
|
77
|
+
"postscriptName": "Roboto-Bold",
|
|
78
|
+
"weight": 700,
|
|
79
|
+
"style": "normal",
|
|
80
|
+
"file": {
|
|
81
|
+
"file": "files/35757eaa996b3359022f47f164a67ee9eac04971af24c5b8fbd4b89e844ff190.ttf",
|
|
82
|
+
"hash": "35757eaa996b3359022f47f164a67ee9eac04971af24c5b8fbd4b89e844ff190",
|
|
83
|
+
"mime": "font/ttf",
|
|
84
|
+
"bytes": 124292
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"compatibility": {
|
|
89
|
+
"status": "ready",
|
|
90
|
+
"defaultEligible": true
|
|
91
|
+
},
|
|
92
|
+
"specimen": {
|
|
93
|
+
"file": "files/22d45d989248a624252b8382067ac56550212fa675dcdbaf12f03d297dd87a58.pdf",
|
|
94
|
+
"hash": "22d45d989248a624252b8382067ac56550212fa675dcdbaf12f03d297dd87a58",
|
|
95
|
+
"mime": "application/pdf",
|
|
96
|
+
"bytes": 87745
|
|
97
|
+
},
|
|
98
|
+
"revision": "bda5e2d84c17313373dd2dbf3e64fe0dd450c7e1b59e6929e69557e122fe976e"
|
|
99
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"family": "Roboto",
|
|
3
|
+
"stylesheet": "https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap",
|
|
4
|
+
"license": "https://raw.githubusercontent.com/google/fonts/main/ofl/roboto/OFL.txt",
|
|
5
|
+
"files": [
|
|
6
|
+
{
|
|
7
|
+
"filename": "Roboto-Italic.ttf",
|
|
8
|
+
"url": "https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHQiA8.ttf",
|
|
9
|
+
"sha256": "4d3035883c531846bd1ce2dc89f36d932e72dc114f56062c7e3a9cdd74f3d3ea",
|
|
10
|
+
"weight": 400,
|
|
11
|
+
"style": "italic",
|
|
12
|
+
"assetFile": "files/4d3035883c531846bd1ce2dc89f36d932e72dc114f56062c7e3a9cdd74f3d3ea.ttf"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"filename": "Roboto-SemiboldItalic.ttf",
|
|
16
|
+
"url": "https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLl_XiA8.ttf",
|
|
17
|
+
"sha256": "d2920cbb1b60a3fd11fbf22049286e43a6baf522d37fdf1e7c89562319bcfea5",
|
|
18
|
+
"weight": 600,
|
|
19
|
+
"style": "italic",
|
|
20
|
+
"assetFile": "files/d2920cbb1b60a3fd11fbf22049286e43a6baf522d37fdf1e7c89562319bcfea5.ttf"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"filename": "Roboto-BoldItalic.ttf",
|
|
24
|
+
"url": "https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLmbXiA8.ttf",
|
|
25
|
+
"sha256": "be7639306a4fc4a02ce2ae2ff59eb1335e4db4a7379dd0a384ed7cc053817789",
|
|
26
|
+
"weight": 700,
|
|
27
|
+
"style": "italic",
|
|
28
|
+
"assetFile": "files/be7639306a4fc4a02ce2ae2ff59eb1335e4db4a7379dd0a384ed7cc053817789.ttf"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"filename": "Roboto-Regular.ttf",
|
|
32
|
+
"url": "https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmT.ttf",
|
|
33
|
+
"sha256": "dece7c71bbe61710787f0839c722c65e87355dd2eb4a823e6b5488121ff81e4b",
|
|
34
|
+
"weight": 400,
|
|
35
|
+
"style": "normal",
|
|
36
|
+
"assetFile": "files/dece7c71bbe61710787f0839c722c65e87355dd2eb4a823e6b5488121ff81e4b.ttf"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"filename": "Roboto-Semibold.ttf",
|
|
40
|
+
"url": "https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYaammT.ttf",
|
|
41
|
+
"sha256": "f478ba88b0292e685e487901dfbb1401457d32d6ebee4030cdfd5698235bffa8",
|
|
42
|
+
"weight": 600,
|
|
43
|
+
"style": "normal",
|
|
44
|
+
"assetFile": "files/f478ba88b0292e685e487901dfbb1401457d32d6ebee4030cdfd5698235bffa8.ttf"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"filename": "Roboto-Bold.ttf",
|
|
48
|
+
"url": "https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammT.ttf",
|
|
49
|
+
"sha256": "35757eaa996b3359022f47f164a67ee9eac04971af24c5b8fbd4b89e844ff190",
|
|
50
|
+
"weight": 700,
|
|
51
|
+
"style": "normal",
|
|
52
|
+
"assetFile": "files/35757eaa996b3359022f47f164a67ee9eac04971af24c5b8fbd4b89e844ff190.ttf"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"downloadedAt": "2026-09-10T09:57:23.965Z",
|
|
56
|
+
"preparation": "Google-supplied static TTF files, preserved without modification."
|
|
57
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"kind": "logo",
|
|
4
|
+
"id": "opendoc",
|
|
5
|
+
"name": "OpenDoc",
|
|
6
|
+
"description": "The existing OpenDoc wordmark. Preserve proportions; use this dark artwork on white or pale surfaces.",
|
|
7
|
+
"createdAt": "2026-09-11T06:30:59.193Z",
|
|
8
|
+
"defaultVariation": "default",
|
|
9
|
+
"variations": [
|
|
10
|
+
{
|
|
11
|
+
"id": "default",
|
|
12
|
+
"name": "On light backgrounds",
|
|
13
|
+
"description": "Original dark OpenDoc wordmark for white or pale page backgrounds.",
|
|
14
|
+
"original": {
|
|
15
|
+
"file": "files/831d5ccd9eb6709cc8439ea257c03d81452e81a28a3d1eedbd6a3b7daff687b6.png",
|
|
16
|
+
"hash": "831d5ccd9eb6709cc8439ea257c03d81452e81a28a3d1eedbd6a3b7daff687b6",
|
|
17
|
+
"mime": "image/png",
|
|
18
|
+
"bytes": 358142,
|
|
19
|
+
"width": 2172,
|
|
20
|
+
"height": 724
|
|
21
|
+
},
|
|
22
|
+
"image": {
|
|
23
|
+
"file": "files/831d5ccd9eb6709cc8439ea257c03d81452e81a28a3d1eedbd6a3b7daff687b6.png",
|
|
24
|
+
"hash": "831d5ccd9eb6709cc8439ea257c03d81452e81a28a3d1eedbd6a3b7daff687b6",
|
|
25
|
+
"mime": "image/png",
|
|
26
|
+
"bytes": 358142,
|
|
27
|
+
"width": 2172,
|
|
28
|
+
"height": 724
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"revision": "834dde8926ddb81de687254195a168bb13bfb77803307f1257de1f2228be63b2"
|
|
33
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
Copyright 2024 The Geist Project Authors (https://github.com/vercel/geist-font) Geist-Italic[wght].ttf: Copyright 2024 The Geist Project Authors (https://github.com/vercel/geist-font)
|
|
2
|
+
|
|
3
|
+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
4
|
+
This license is copied below, and is also available with a FAQ at:
|
|
5
|
+
http://scripts.sil.org/OFL
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
-----------------------------------------------------------
|
|
9
|
+
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
10
|
+
-----------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
PREAMBLE
|
|
13
|
+
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
14
|
+
development of collaborative font projects, to support the font creation
|
|
15
|
+
efforts of academic and linguistic communities, and to provide a free and
|
|
16
|
+
open framework in which fonts may be shared and improved in partnership
|
|
17
|
+
with others.
|
|
18
|
+
|
|
19
|
+
The OFL allows the licensed fonts to be used, studied, modified and
|
|
20
|
+
redistributed freely as long as they are not sold by themselves. The
|
|
21
|
+
fonts, including any derivative works, can be bundled, embedded,
|
|
22
|
+
redistributed and/or sold with any software provided that any reserved
|
|
23
|
+
names are not used by derivative works. The fonts and derivatives,
|
|
24
|
+
however, cannot be released under any other type of license. The
|
|
25
|
+
requirement for fonts to remain under this license does not apply
|
|
26
|
+
to any document created using the fonts or their derivatives.
|
|
27
|
+
|
|
28
|
+
DEFINITIONS
|
|
29
|
+
"Font Software" refers to the set of files released by the Copyright
|
|
30
|
+
Holder(s) under this license and clearly marked as such. This may
|
|
31
|
+
include source files, build scripts and documentation.
|
|
32
|
+
|
|
33
|
+
"Reserved Font Name" refers to any names specified as such after the
|
|
34
|
+
copyright statement(s).
|
|
35
|
+
|
|
36
|
+
"Original Version" refers to the collection of Font Software components as
|
|
37
|
+
distributed by the Copyright Holder(s).
|
|
38
|
+
|
|
39
|
+
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
40
|
+
or substituting -- in part or in whole -- any of the components of the
|
|
41
|
+
Original Version, by changing formats or by porting the Font Software to a
|
|
42
|
+
new environment.
|
|
43
|
+
|
|
44
|
+
"Author" refers to any designer, engineer, programmer, technical
|
|
45
|
+
writer or other person who contributed to the Font Software.
|
|
46
|
+
|
|
47
|
+
PERMISSION & CONDITIONS
|
|
48
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
49
|
+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
50
|
+
redistribute, and sell modified and unmodified copies of the Font
|
|
51
|
+
Software, subject to the following conditions:
|
|
52
|
+
|
|
53
|
+
1) Neither the Font Software nor any of its individual components,
|
|
54
|
+
in Original or Modified Versions, may be sold by itself.
|
|
55
|
+
|
|
56
|
+
2) Original or Modified Versions of the Font Software may be bundled,
|
|
57
|
+
redistributed and/or sold with any software, provided that each copy
|
|
58
|
+
contains the above copyright notice and this license. These can be
|
|
59
|
+
included either as stand-alone text files, human-readable headers or
|
|
60
|
+
in the appropriate machine-readable metadata fields within text or
|
|
61
|
+
binary files as long as those fields can be easily viewed by the user.
|
|
62
|
+
|
|
63
|
+
3) No Modified Version of the Font Software may use the Reserved Font
|
|
64
|
+
Name(s) unless explicit written permission is granted by the corresponding
|
|
65
|
+
Copyright Holder. This restriction only applies to the primary font name as
|
|
66
|
+
presented to the users.
|
|
67
|
+
|
|
68
|
+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
69
|
+
Software shall not be used to promote, endorse or advertise any
|
|
70
|
+
Modified Version, except to acknowledge the contribution(s) of the
|
|
71
|
+
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
72
|
+
permission.
|
|
73
|
+
|
|
74
|
+
5) The Font Software, modified or unmodified, in part or in whole,
|
|
75
|
+
must be distributed entirely under this license, and must not be
|
|
76
|
+
distributed under any other license. The requirement for fonts to
|
|
77
|
+
remain under this license does not apply to any document created
|
|
78
|
+
using the Font Software.
|
|
79
|
+
|
|
80
|
+
TERMINATION
|
|
81
|
+
This license becomes null and void if any of the above conditions are
|
|
82
|
+
not met.
|
|
83
|
+
|
|
84
|
+
DISCLAIMER
|
|
85
|
+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
86
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
87
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
88
|
+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
89
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
90
|
+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
91
|
+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
92
|
+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
93
|
+
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"family": "Geist",
|
|
3
|
+
"purpose": "Bundled browser interface; independent of document font assets",
|
|
4
|
+
"package": "@fontsource-variable/geist",
|
|
5
|
+
"version": "5.3.0",
|
|
6
|
+
"source": "https://www.npmjs.com/package/@fontsource-variable/geist/v/5.3.0",
|
|
7
|
+
"license": "OFL.txt",
|
|
8
|
+
"files": [
|
|
9
|
+
{
|
|
10
|
+
"file": "geist-latin-ext-wght-normal.woff2",
|
|
11
|
+
"sha256": "824f485b5d26e2f2da3c2b236132ece1bc8e4e43373452950bb0e40548b4313f"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"file": "geist-latin-ext-wght-italic.woff2",
|
|
15
|
+
"sha256": "56dc9ac98e3fc45e7ee487d03ee205b35858c672f2e15053eabbb119c0bc1e74"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"file": "geist-latin-wght-normal.woff2",
|
|
19
|
+
"sha256": "19f9c92546aa300c312235e3125af1b81394d8db9a4bc4a425cd5b641d2d54e1"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"file": "geist-latin-wght-italic.woff2",
|
|
23
|
+
"sha256": "9b10496762af92659f3b05d2b084b0c8f962c3ecdf637aa764e3b7fd17f5acaf"
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
}
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Document, Block, Paragraph, Heading, Section, Callout, Figure, Media, Logo,
|
|
3
|
+
DataTable, Strong, Em, Cite, CrossReference, Note, Notes, References, CodeBlock,
|
|
4
|
+
View, type DocumentMeta,
|
|
5
|
+
} from 'opendoc';
|
|
6
|
+
import { NeutralPages, NeutralOpening, NeutralColumns, NeutralQuote, PaperStudy } from '../../themes/opendoc-neutral/components';
|
|
7
|
+
import { colors, metrics } from '../../themes/opendoc-neutral';
|
|
8
|
+
import { theme } from './theme';
|
|
9
|
+
import studio from './media/studio-rhythm/data.json';
|
|
10
|
+
|
|
11
|
+
export const meta: DocumentMeta = {
|
|
12
|
+
title: 'Welcome to OpenDoc',
|
|
13
|
+
description: 'An illustrated guide to making beautiful documents: expressive layouts, generated imagery, detailed charts, shared assets, feedback, and a reviewed PDF.',
|
|
14
|
+
kind: 'field guide',
|
|
15
|
+
theme: theme.id,
|
|
16
|
+
};
|
|
17
|
+
const stageKeys = ['research', 'drafting', 'design', 'review'] as const;
|
|
18
|
+
const stageTotals = stageKeys.map(key => studio.documents.reduce((sum, row) => sum + row[key], 0));
|
|
19
|
+
const totalHours = stageTotals.reduce((sum, value) => sum + value, 0);
|
|
20
|
+
const tableRows = stageKeys.map((key, index) => [key[0].toUpperCase() + key.slice(1), stageTotals[index], `${(stageTotals[index] / totalHours * 100).toFixed(1)}%`]);
|
|
21
|
+
|
|
22
|
+
export default function Welcome() {
|
|
23
|
+
return <Document title={meta.title} author="OpenDoc" theme={theme} references={{
|
|
24
|
+
workspace: { author: 'OpenDoc', title: 'Workspace guide. Local file: README.md', year: '2026' },
|
|
25
|
+
authoring: { author: 'OpenDoc', title: 'Authoring documents. Local file: docs/AUTHORING.md', year: '2026' },
|
|
26
|
+
assets: { author: 'OpenDoc', title: 'Media & Assets. Local files: docs/ASSETS.md and docs/MEDIA.md', year: '2026' },
|
|
27
|
+
}}>
|
|
28
|
+
<NeutralPages title="Welcome" label="OpenDoc / A field guide" header={false}>
|
|
29
|
+
<View style={{ flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', marginBottom: 48 }}>
|
|
30
|
+
<Block id="welcome-brand"><Logo width={144} /></Block>
|
|
31
|
+
<Paragraph id="welcome-edition" role="label" style={{ color: colors.muted, textAlign: 'right', marginBottom: 0 }}>{'A FIELD GUIDE\nEDITION 01 / 2026'}</Paragraph>
|
|
32
|
+
</View>
|
|
33
|
+
<NeutralOpening id="welcome-opening" eyebrow="THE POSSIBILITIES START HERE" title={'Welcome to\nOpenDoc.'} subtitle="A local place to make documents you are proud to share." display />
|
|
34
|
+
<Paragraph id="welcome-introduction" style={{ width: 385, marginTop: 6, marginBottom: 36 }}>Bring your idea and material. Work with Codex or another coding agent to develop the writing and design. OpenDoc turns that work into a PDF you can read, refine, and make your own.</Paragraph>
|
|
35
|
+
<PaperStudy id="welcome-paper-study" />
|
|
36
|
+
<Paragraph id="welcome-cover-caption" role="small" style={{ marginTop: 20 }}>This document is the demonstration: real type, real layouts, real images, and the same PDF you can export.</Paragraph>
|
|
37
|
+
</NeutralPages>
|
|
38
|
+
|
|
39
|
+
<NeutralPages title="Begin with an idea" label="OpenDoc / A field guide">
|
|
40
|
+
<NeutralOpening id="welcome-begin" eyebrow="01 / BEGIN" title="Give good work a home." subtitle="Start with a reader, a purpose, and the material you already have." />
|
|
41
|
+
<NeutralColumns left={<>
|
|
42
|
+
<Section id="welcome-projects" title="Give your work a home" lead="Every document belongs to a project." style={{ marginTop: -20 }}>
|
|
43
|
+
<Paragraph id="welcome-project-settings">Use the + beside Projects to create a home for a client, a course, or a body of work. Choose a default theme when you want new documents to start consistently.</Paragraph>
|
|
44
|
+
</Section>
|
|
45
|
+
<Section id="welcome-create" title="Give your agent a brief" lead="Name the reader, the purpose, and the material you want to use.">
|
|
46
|
+
<Paragraph id="welcome-starters">Create document gives you a prompt with your project included. Paste it into your coding agent and add your brief. As the agent changes the local source, OpenDoc refreshes the PDF.</Paragraph>
|
|
47
|
+
<Callout id="welcome-example-brief" title="A brief you can use">Write a two-page proposal from my notes. Explain the work and the next decision; flag missing prices. Keep the writing direct. Review every PDF page before handing it back.</Callout>
|
|
48
|
+
</Section>
|
|
49
|
+
</>} right={<>
|
|
50
|
+
<Section id="welcome-layout" title="Choose a starting point" lead="Templates supply a page structure. Themes supply its visual character." style={{ marginTop: -20 }}>
|
|
51
|
+
<Paragraph id="welcome-templates">Browse real PDF specimens in Templates and Themes. Use this template starts from a layout you like. View AGENTS.md explains how your agent can adapt it. A custom composition is always possible.</Paragraph>
|
|
52
|
+
</Section>
|
|
53
|
+
<Heading id="welcome-library-heading" level={2}>Find your way around</Heading>
|
|
54
|
+
<Paragraph id="welcome-library-tools">Documents shows all your work; a project shows just its own documents. Search by name and switch between gallery and list views. Choose light, dark, or system appearance for the app.</Paragraph>
|
|
55
|
+
<Paragraph id="welcome-library-actions">The document menu lets you rename, duplicate, move, or delete a document. Deletion offers Undo. Renaming its library entry leaves the authored PDF title unchanged.</Paragraph>
|
|
56
|
+
<Paragraph id="welcome-appearance-note" role="small">App appearance changes the workspace. Your document keeps its own page colors, typography, and artwork. <Cite source="workspace" /></Paragraph>
|
|
57
|
+
</>} />
|
|
58
|
+
</NeutralPages>
|
|
59
|
+
|
|
60
|
+
<NeutralPages title="Make room for imagery" label="OpenDoc / A field guide" surface="dark">
|
|
61
|
+
<NeutralOpening id="welcome-imagery" eyebrow="02 / IMAGINE" title="Ideas taking form." subtitle="A picture can carry a mood, explain a process, or give an idea a physical presence." surface="dark" />
|
|
62
|
+
<Block id="welcome-paper-architecture">
|
|
63
|
+
<Media item="paper-architecture" width={metrics.measure} />
|
|
64
|
+
<Paragraph id="welcome-image-caption" role="caption" style={{ color: colors.inverseMuted, marginTop: 12, marginBottom: 24 }}>Ideas taking form. An AI-generated editorial illustration made with Imagegen for this guide. The imagined paper sculpture is an illustration, not documentary evidence.</Paragraph>
|
|
65
|
+
</Block>
|
|
66
|
+
<NeutralColumns left={<>
|
|
67
|
+
<Heading id="welcome-image-direction" level={2} style={{ color: colors.inverse, marginTop: 0 }}>Give the image a job</Heading>
|
|
68
|
+
<Paragraph id="welcome-image-direction-copy" style={{ color: colors.inverse }}>Ask your agent for an image that serves the document. Describe the subject, composition, atmosphere, and space it needs on the page.</Paragraph>
|
|
69
|
+
</>} right={<>
|
|
70
|
+
<Heading id="welcome-image-record" level={2} style={{ color: colors.inverse, marginTop: 0 }}>Keep the story with it</Heading>
|
|
71
|
+
<Paragraph id="welcome-image-record-copy" style={{ color: colors.inverse }}>This image lives in the document’s Media folder with a title, description, alternative text, attribution, and its original prompt. Open Media & Assets to inspect it.</Paragraph>
|
|
72
|
+
</>} />
|
|
73
|
+
</NeutralPages>
|
|
74
|
+
|
|
75
|
+
<NeutralPages title="Read the evidence" label="OpenDoc / A field guide" surface="white">
|
|
76
|
+
<NeutralOpening id="welcome-evidence" eyebrow="03 / EXPLAIN" title="Let the evidence lead." />
|
|
77
|
+
<Paragraph id="welcome-chart-introduction" style={{ marginBottom: 4 }}>A fictional studio, 24 documents, 12 weeks: one dataset and three coordinated views.</Paragraph>
|
|
78
|
+
<Figure id="welcome-studio-chart" caption="Weekly effort, workstream totals, and document length against effort." sourceNote="Synthetic values, not a productivity benchmark. Each dot is a fictional document; blue highlights one example." style={{ marginBottom: 8 }}>
|
|
79
|
+
<Media item="studio-rhythm" width={metrics.measure} />
|
|
80
|
+
</Figure>
|
|
81
|
+
<DataTable id="welcome-workstream-table" caption="The key values, as selectable text" columns={[{ label: 'Workstream', width: 2 }, { label: 'Hours', align: 'right' }, { label: 'Share', align: 'right' }]} rows={tableRows} rowIds={[...stageKeys]} sourceNote={`Illustrative total: ${totalHours} hours. Prepared data, plot recipe, and a vector original are saved with the chart.`} />
|
|
82
|
+
</NeutralPages>
|
|
83
|
+
|
|
84
|
+
<NeutralPages title="Compose the page" label="OpenDoc / A field guide">
|
|
85
|
+
<NeutralOpening id="welcome-composition" eyebrow="04 / COMPOSE" title="A page can change its pace." subtitle="A clear grid gives you freedom to vary the reading experience." />
|
|
86
|
+
<NeutralColumns ratio="narrow-left" left={<>
|
|
87
|
+
<Paragraph id="welcome-type-label" role="label">TWO VOICES</Paragraph>
|
|
88
|
+
<Paragraph id="welcome-type-sans" style={{ fontSize: 70, fontWeight: 600, lineHeight: 1, letterSpacing: -3, color: colors.blue, marginBottom: 4 }}>Aa</Paragraph>
|
|
89
|
+
<Paragraph id="welcome-type-sans-caption" role="small" style={{ marginBottom: 22 }}>Sans for a clear, direct voice.</Paragraph>
|
|
90
|
+
<Paragraph id="welcome-type-serif" style={{ fontFamily: 'OpenDoc Serif', fontStyle: 'italic', fontSize: 70, lineHeight: 1, letterSpacing: -2, marginBottom: 4 }}>Aa</Paragraph>
|
|
91
|
+
<Paragraph id="welcome-type-serif-caption" role="small">Serif italic for a reflective passage.</Paragraph>
|
|
92
|
+
</>} right={<>
|
|
93
|
+
<Heading id="welcome-reading-path" level={2} style={{ marginTop: 0 }}>Make the reading path clear</Heading>
|
|
94
|
+
<Paragraph id="welcome-reading-path-copy">This page uses an asymmetric one-to-two grid. The narrow column introduces the type; the wider column carries the explanation. Earlier pages use equal columns. The image page gives almost the whole width to one visual.</Paragraph>
|
|
95
|
+
<Paragraph id="welcome-emphasis">Use <Strong>weight</Strong> to establish hierarchy and <Em>italic</Em> for a change of voice. Let long paragraphs and tables continue naturally. Short independent pieces can sit beside one another without forcing an entire report into a fixed page count.</Paragraph>
|
|
96
|
+
<Paragraph id="welcome-cross-references">References can stay connected as the document changes. <CrossReference target="welcome-studio-chart" /> and <CrossReference target="welcome-workstream-table" /> resolve from stable labels, rather than manually typed numbers. <Cite source="authoring" /><Note id="welcome-demo-basis">The chart data and studio examples in this guide are synthetic. The paper sculpture was AI-generated. The guide’s quotations are original OpenDoc copy.</Note></Paragraph>
|
|
97
|
+
</>} />
|
|
98
|
+
<NeutralQuote id="welcome-house-quote" attribution="Original OpenDoc house copy">A document can be rigorous and still feel alive.</NeutralQuote>
|
|
99
|
+
<DataTable id="welcome-layout-options" caption="Choose a structure that serves the material" columns={[{ label: 'Composition', width: 1.1 }, { label: 'Useful for', width: 2 }]} rows={[["One reading column", 'A sustained argument, essay, or long report'], ["Two equal columns", 'Parallel ideas, paired explanations, or a concise comparison'], ["A one-to-two split", 'A marginal note beside the main argument']]} rowIds={['single', 'equal', 'asymmetric']} />
|
|
100
|
+
</NeutralPages>
|
|
101
|
+
|
|
102
|
+
<NeutralPages title="Keep your materials close" label="OpenDoc / A field guide">
|
|
103
|
+
<NeutralOpening id="welcome-asset-opening" eyebrow="05 / KEEP" title="A home for every asset." subtitle="Reusable identity and document-specific evidence belong together in the workspace." />
|
|
104
|
+
<Block id="welcome-asset-wordmark" style={{ paddingTop: 12, paddingBottom: 24, borderTopWidth: 0.6, borderBottomWidth: 0.6, borderColor: colors.rule, marginBottom: 24 }}>
|
|
105
|
+
<Logo width={220} />
|
|
106
|
+
<Paragraph id="welcome-wordmark-guidance" role="small" style={{ marginTop: 8, marginBottom: 0 }}>The existing OpenDoc wordmark, imported into the shared Logos library and bound to this document. This dark artwork is placed on a light page.</Paragraph>
|
|
107
|
+
</Block>
|
|
108
|
+
<NeutralColumns left={<>
|
|
109
|
+
<Section id="welcome-assets" title="Share the identity" lead="Import reusable logos and fonts once." style={{ marginTop: -20 }}>
|
|
110
|
+
<Paragraph id="welcome-shared-assets">Add named logo variations with guidance for the surfaces they suit. Import original static font faces and inspect the real PDF specimen before choosing them for a document.</Paragraph>
|
|
111
|
+
<Paragraph id="welcome-asset-defaults">Theme defaults help new documents start consistently. Each document keeps its saved asset choices until you explicitly update them. A newer logo or font version does not silently replace the one in this PDF.</Paragraph>
|
|
112
|
+
</Section>
|
|
113
|
+
</>} right={<>
|
|
114
|
+
<Heading id="welcome-media-heading" level={2} style={{ marginTop: 0 }}>Keep the evidence local</Heading>
|
|
115
|
+
<Paragraph id="welcome-media">Images and charts belong to their document. Keep prepared data, recipes, and attribution beside each visual. Original references can stay wherever you already manage them.</Paragraph>
|
|
116
|
+
<Paragraph id="welcome-media-browse">Search Media by title, kind, or document. Its detail view shows where an image is used, its prepared files, and its source notes. Ask the agent to regenerate a chart when the underlying data changes.</Paragraph>
|
|
117
|
+
<Paragraph id="welcome-media-freshness">OpenDoc detects changes to recorded visual inputs. A derived image must be regenerated, reviewed, and recorded before the revised document can export. <Cite source="assets" /></Paragraph>
|
|
118
|
+
</>} />
|
|
119
|
+
<DataTable id="welcome-media-files" caption="What travels with this chart" columns={[{ label: 'Prepared file', width: 1.1 }, { label: 'Why it matters', width: 2 }]} rows={[["Editable data", 'The 24 records behind the figure'], ["Plot recipe", 'A reproducible way to draw the same comparison'], ["Image + vector original", 'A reviewed PDF image and an editable visual source']]} rowIds={['data', 'recipe', 'artwork']} />
|
|
120
|
+
</NeutralPages>
|
|
121
|
+
|
|
122
|
+
<NeutralPages title="Read, notice, revise" label="OpenDoc / A field guide" surface="white">
|
|
123
|
+
<NeutralOpening id="welcome-review-opening" eyebrow="06 / REFINE" title="The next draft is yours." />
|
|
124
|
+
<NeutralColumns left={<>
|
|
125
|
+
<Section id="welcome-review" title="Read, notice, revise" lead="Review the PDF as your reader will encounter it." style={{ marginTop: -20 }}>
|
|
126
|
+
<Paragraph id="welcome-reader-tools">Use page thumbnails, the outline, and zoom. Select text or a component to inspect it. Check the argument, the figures, and the final page; accurate facts and useful sources still need your judgment.</Paragraph>
|
|
127
|
+
<Paragraph id="welcome-comments">Choose Edit or Comment from the selection controls. Make several wording corrections, use Undo or Redo, then Save all. The bottom-right comments button opens saved feedback.</Paragraph>
|
|
128
|
+
</Section>
|
|
129
|
+
</>} right={<>
|
|
130
|
+
<Heading id="welcome-practice-heading" level={2} style={{ marginTop: 0 }}>Try a small correction</Heading>
|
|
131
|
+
<Paragraph id="welcome-edit-practice" style={{ fontSize: 15, lineHeight: 1.45, borderLeftWidth: 2, borderColor: colors.blue, paddingLeft: 14 }}>This sentence is ready for your first edit.</Paragraph>
|
|
132
|
+
<Paragraph id="welcome-feedback">Select the sentence above and change a word. Use comments for work that needs the agent’s judgment: rewriting a passage, checking a source, or improving a layout. Ask the agent to apply the saved feedback.</Paragraph>
|
|
133
|
+
<Paragraph id="welcome-feedback-history" role="small">Saved corrections reach the local source. Comments retain their history. Formatting, structure, and calculations remain agent work.</Paragraph>
|
|
134
|
+
</>} />
|
|
135
|
+
<CodeBlock id="welcome-native-example" language="tsx" caption="For the curious: a real, editable paragraph starts simply">{'<Paragraph id="my-opening">\n Begin with the idea you want to share.\n</Paragraph>'}</CodeBlock>
|
|
136
|
+
<Paragraph id="welcome-code-caption" role="small">Your coding agent works in TSX with native PDF components. You can direct the writing and design in ordinary language.</Paragraph>
|
|
137
|
+
<References title="The local guides behind this tour" headingStyle={{ fontSize: 12, marginTop: 14, marginBottom: 8 }} />
|
|
138
|
+
<Notes title="About the demonstration" />
|
|
139
|
+
</NeutralPages>
|
|
140
|
+
|
|
141
|
+
<NeutralPages title="Export the work" label="OpenDoc / A field guide" surface="dark">
|
|
142
|
+
<NeutralOpening id="welcome-closing" eyebrow="07 / SHARE" title={'Made here.\nReady to share.'} subtitle="Export the version you have read, checked, and made your own." surface="dark" display />
|
|
143
|
+
<View style={{ width: 48, height: 4, backgroundColor: colors.blue, marginTop: 8, marginBottom: 30 }} />
|
|
144
|
+
<Block id="welcome-export">
|
|
145
|
+
<Heading id="welcome-export-heading" level={2} style={{ color: colors.inverse }}>Export the version you reviewed</Heading>
|
|
146
|
+
<Paragraph id="welcome-export-lead" style={{ color: colors.inverse }}>Save pending text corrections and review the updated PDF first.</Paragraph>
|
|
147
|
+
<Paragraph id="welcome-export-details" style={{ color: colors.inverse }}>Choose Export, name the file, and select Save PDF. OpenDoc saves it in the workspace’s output folder. Download a copy lets the browser save another copy; open the PDF to print, reveal it in your files, or copy the PDF file on macOS.</Paragraph>
|
|
148
|
+
</Block>
|
|
149
|
+
<NeutralColumns style={{ marginTop: 12 }} left={<>
|
|
150
|
+
<Heading id="welcome-history-heading" level={2} style={{ color: colors.inverse, marginTop: 0 }}>Keep the versions</Heading>
|
|
151
|
+
<Paragraph id="welcome-export-history" style={{ color: colors.inverse }}>Previous exports keeps the files you saved. Open, reveal, or remove a saved export with Undo. A later edit to the document does not change an earlier PDF.</Paragraph>
|
|
152
|
+
</>} right={<>
|
|
153
|
+
<Heading id="welcome-ready-heading" level={2} style={{ color: colors.inverse, marginTop: 0 }}>Wait for a ready revision</Heading>
|
|
154
|
+
<Paragraph id="welcome-render-recovery" style={{ color: colors.inverse }}>If a revision fails to render, the last successful preview stays visible with an error. Fix the current revision before exporting it.</Paragraph>
|
|
155
|
+
</>} />
|
|
156
|
+
<Paragraph id="welcome-local-files" style={{ color: colors.inverseMuted, marginTop: 30 }}>Your source, assets, feedback, and PDFs stay local. OpenDoc has no built-in AI chat; you choose the external agent and what you share with it. Keep the workspace in your backup routine or version control.</Paragraph>
|
|
157
|
+
<Paragraph id="welcome-final-invitation" style={{ color: colors.inverse, fontFamily: 'OpenDoc Serif', fontStyle: 'italic', fontSize: 23, lineHeight: 1.3, marginTop: 24 }}>Now bring an idea worth putting on a page.</Paragraph>
|
|
158
|
+
</NeutralPages>
|
|
159
|
+
</Document>;
|
|
160
|
+
}
|
|
File without changes
|
|
Binary file
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Ideas taking form",
|
|
3
|
+
"description": "An editorial paper sculpture generated for the OpenDoc welcome document: curved sheets, layered paper, charcoal shadows, and small blue print marks.",
|
|
4
|
+
"file": "image.png",
|
|
5
|
+
"kind": "illustration",
|
|
6
|
+
"alt": "Warm-white sheets rise into a sculptural arch above stacks of paper, with sparse blue marks and soft light in a charcoal studio.",
|
|
7
|
+
"sources": ["Generated with the built-in Imagegen tool for OpenDoc on 11 September 2026. See prompt.txt for the exact generation prompt."],
|
|
8
|
+
"attribution": "AI-generated editorial illustration. This is an imagined scene, not a photograph documenting a real object."
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Use case: stylized-concept. Create one exquisite editorial still-life image for OpenDoc, a local document-making application. The concept is 'ideas taking form': real tactile sheets of warm-white paper folded, curved and stacked into a small architectural landscape, one long sheet rising into a sculptural arch, precise layers and beautiful negative space. A few sheets carry tiny abstract graphite lines and sparse ultramarine blue print marks, no readable text. Photograph the physical paper sculpture in a quiet charcoal studio with a warm neutral stone surface, soft directional daylight from upper left, deep but readable shadows, subtle paper grain, convincingly thin paper edges. Sophisticated design-journal art direction, restrained, sculptural, material, genuinely photographic detail rather than plastic CGI. Wide landscape composition at roughly 3:2, image fills the frame, highest practical resolution. Dominant bone white and near black; ultramarine blue is a very small accent. The entire sculpture fits within the frame with breathing room. No people, screens, computers, UI, lettering, logo, watermark, glowing effects, gradients as graphic decoration, or stock-photo office objects.
|