deskforge 1.0.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/.vscode/settings.json +3 -0
- package/README.md +547 -0
- package/examples/deskforge-app/App.ts +50 -0
- package/examples/deskforge-app/README.md +80 -0
- package/examples/deskforge-app/app.json +10 -0
- package/examples/deskforge-app/dist/App.d.ts +1 -0
- package/examples/deskforge-app/dist/App.js +100 -0
- package/examples/deskforge-app/dist/App.js.map +1 -0
- package/examples/deskforge-app/dist/deskforge-app-details.png +0 -0
- package/examples/deskforge-app/dist/deskforge-app-home.png +0 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/App.d.ts +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/App.js +74 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/App.js.map +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Details.d.ts +9 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Details.js +14 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Details.js.map +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Home.d.ts +9 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Home.js +13 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Home.js.map +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/index.d.ts +2 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/index.js +13 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/index.js.map +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/Responsive.d.ts +38 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/Responsive.js +61 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/Responsive.js.map +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/index.d.ts +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/index.js +18 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/easing.d.ts +22 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/easing.js +91 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/easing.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/index.d.ts +3 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/index.js +26 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/interpolate.d.ts +6 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/interpolate.js +83 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/interpolate.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/spring.d.ts +20 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/spring.js +79 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/spring.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/component/component.d.ts +5 -0
- package/examples/deskforge-app/dist/packages/core/src/component/component.js +14 -0
- package/examples/deskforge-app/dist/packages/core/src/component/component.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/component/index.d.ts +1 -0
- package/examples/deskforge-app/dist/packages/core/src/component/index.js +18 -0
- package/examples/deskforge-app/dist/packages/core/src/component/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/index.d.ts +5 -0
- package/examples/deskforge-app/dist/packages/core/src/index.js +30 -0
- package/examples/deskforge-app/dist/packages/core/src/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/index.d.ts +1 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/index.js +20 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/scheduler.d.ts +11 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/scheduler.js +61 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/scheduler.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/diff.d.ts +16 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/diff.js +67 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/diff.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/index.d.ts +3 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/index.js +23 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/node.d.ts +12 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/node.js +59 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/node.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/tree.d.ts +10 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/tree.js +43 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/tree.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/canvas.d.ts +23 -0
- package/examples/deskforge-app/dist/packages/renderer/src/canvas.js +38 -0
- package/examples/deskforge-app/dist/packages/renderer/src/canvas.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/context.d.ts +33 -0
- package/examples/deskforge-app/dist/packages/renderer/src/context.js +45 -0
- package/examples/deskforge-app/dist/packages/renderer/src/context.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/dirty-region.d.ts +42 -0
- package/examples/deskforge-app/dist/packages/renderer/src/dirty-region.js +106 -0
- package/examples/deskforge-app/dist/packages/renderer/src/dirty-region.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/engine.d.ts +56 -0
- package/examples/deskforge-app/dist/packages/renderer/src/engine.js +95 -0
- package/examples/deskforge-app/dist/packages/renderer/src/engine.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/filters.d.ts +22 -0
- package/examples/deskforge-app/dist/packages/renderer/src/filters.js +41 -0
- package/examples/deskforge-app/dist/packages/renderer/src/filters.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/index.d.ts +15 -0
- package/examples/deskforge-app/dist/packages/renderer/src/index.js +34 -0
- package/examples/deskforge-app/dist/packages/renderer/src/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/painter.d.ts +26 -0
- package/examples/deskforge-app/dist/packages/renderer/src/painter.js +127 -0
- package/examples/deskforge-app/dist/packages/renderer/src/painter.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/renderer.d.ts +71 -0
- package/examples/deskforge-app/dist/packages/renderer/src/renderer.js +120 -0
- package/examples/deskforge-app/dist/packages/renderer/src/renderer.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/svg-export.d.ts +47 -0
- package/examples/deskforge-app/dist/packages/renderer/src/svg-export.js +125 -0
- package/examples/deskforge-app/dist/packages/renderer/src/svg-export.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/app.d.ts +9 -0
- package/examples/deskforge-app/dist/packages/router/src/app.js +12 -0
- package/examples/deskforge-app/dist/packages/router/src/app.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/file-router.d.ts +35 -0
- package/examples/deskforge-app/dist/packages/router/src/file-router.js +145 -0
- package/examples/deskforge-app/dist/packages/router/src/file-router.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/index.d.ts +5 -0
- package/examples/deskforge-app/dist/packages/router/src/index.js +24 -0
- package/examples/deskforge-app/dist/packages/router/src/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/manifest.d.ts +9 -0
- package/examples/deskforge-app/dist/packages/router/src/manifest.js +26 -0
- package/examples/deskforge-app/dist/packages/router/src/manifest.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/router.d.ts +30 -0
- package/examples/deskforge-app/dist/packages/router/src/router.js +112 -0
- package/examples/deskforge-app/dist/packages/router/src/router.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/screen.d.ts +30 -0
- package/examples/deskforge-app/dist/packages/router/src/screen.js +34 -0
- package/examples/deskforge-app/dist/packages/router/src/screen.js.map +1 -0
- package/examples/deskforge-app/dist/src/screens/Details.d.ts +9 -0
- package/examples/deskforge-app/dist/src/screens/Details.js +62 -0
- package/examples/deskforge-app/dist/src/screens/Details.js.map +1 -0
- package/examples/deskforge-app/dist/src/screens/Home.d.ts +9 -0
- package/examples/deskforge-app/dist/src/screens/Home.js +68 -0
- package/examples/deskforge-app/dist/src/screens/Home.js.map +1 -0
- package/examples/deskforge-app/dist/src/screens/index.d.ts +2 -0
- package/examples/deskforge-app/dist/src/screens/index.js +11 -0
- package/examples/deskforge-app/dist/src/screens/index.js.map +1 -0
- package/examples/deskforge-app/node_modules/@types/node/LICENSE +21 -0
- package/examples/deskforge-app/node_modules/@types/node/README.md +15 -0
- package/examples/deskforge-app/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/examples/deskforge-app/node_modules/@types/node/assert.d.ts +1062 -0
- package/examples/deskforge-app/node_modules/@types/node/async_hooks.d.ts +605 -0
- package/examples/deskforge-app/node_modules/@types/node/buffer.buffer.d.ts +471 -0
- package/examples/deskforge-app/node_modules/@types/node/buffer.d.ts +1936 -0
- package/examples/deskforge-app/node_modules/@types/node/child_process.d.ts +1475 -0
- package/examples/deskforge-app/node_modules/@types/node/cluster.d.ts +577 -0
- package/examples/deskforge-app/node_modules/@types/node/compatibility/disposable.d.ts +16 -0
- package/examples/deskforge-app/node_modules/@types/node/compatibility/index.d.ts +9 -0
- package/examples/deskforge-app/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
- package/examples/deskforge-app/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
- package/examples/deskforge-app/node_modules/@types/node/console.d.ts +452 -0
- package/examples/deskforge-app/node_modules/@types/node/constants.d.ts +21 -0
- package/examples/deskforge-app/node_modules/@types/node/crypto.d.ts +4590 -0
- package/examples/deskforge-app/node_modules/@types/node/dgram.d.ts +597 -0
- package/examples/deskforge-app/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
- package/examples/deskforge-app/node_modules/@types/node/dns/promises.d.ts +479 -0
- package/examples/deskforge-app/node_modules/@types/node/dns.d.ts +871 -0
- package/examples/deskforge-app/node_modules/@types/node/domain.d.ts +170 -0
- package/examples/deskforge-app/node_modules/@types/node/events.d.ts +977 -0
- package/examples/deskforge-app/node_modules/@types/node/fs/promises.d.ts +1270 -0
- package/examples/deskforge-app/node_modules/@types/node/fs.d.ts +4375 -0
- package/examples/deskforge-app/node_modules/@types/node/globals.d.ts +172 -0
- package/examples/deskforge-app/node_modules/@types/node/globals.typedarray.d.ts +38 -0
- package/examples/deskforge-app/node_modules/@types/node/http.d.ts +2049 -0
- package/examples/deskforge-app/node_modules/@types/node/http2.d.ts +2712 -0
- package/examples/deskforge-app/node_modules/@types/node/https.d.ts +578 -0
- package/examples/deskforge-app/node_modules/@types/node/index.d.ts +93 -0
- package/examples/deskforge-app/node_modules/@types/node/inspector.generated.d.ts +3966 -0
- package/examples/deskforge-app/node_modules/@types/node/module.d.ts +539 -0
- package/examples/deskforge-app/node_modules/@types/node/net.d.ts +1031 -0
- package/examples/deskforge-app/node_modules/@types/node/os.d.ts +506 -0
- package/examples/deskforge-app/node_modules/@types/node/package.json +140 -0
- package/examples/deskforge-app/node_modules/@types/node/path.d.ts +200 -0
- package/examples/deskforge-app/node_modules/@types/node/perf_hooks.d.ts +961 -0
- package/examples/deskforge-app/node_modules/@types/node/process.d.ts +1961 -0
- package/examples/deskforge-app/node_modules/@types/node/punycode.d.ts +117 -0
- package/examples/deskforge-app/node_modules/@types/node/querystring.d.ts +152 -0
- package/examples/deskforge-app/node_modules/@types/node/readline/promises.d.ts +162 -0
- package/examples/deskforge-app/node_modules/@types/node/readline.d.ts +589 -0
- package/examples/deskforge-app/node_modules/@types/node/repl.d.ts +430 -0
- package/examples/deskforge-app/node_modules/@types/node/sea.d.ts +153 -0
- package/examples/deskforge-app/node_modules/@types/node/stream/consumers.d.ts +38 -0
- package/examples/deskforge-app/node_modules/@types/node/stream/promises.d.ts +90 -0
- package/examples/deskforge-app/node_modules/@types/node/stream/web.d.ts +533 -0
- package/examples/deskforge-app/node_modules/@types/node/stream.d.ts +1698 -0
- package/examples/deskforge-app/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/examples/deskforge-app/node_modules/@types/node/test.d.ts +1787 -0
- package/examples/deskforge-app/node_modules/@types/node/timers/promises.d.ts +108 -0
- package/examples/deskforge-app/node_modules/@types/node/timers.d.ts +286 -0
- package/examples/deskforge-app/node_modules/@types/node/tls.d.ts +1259 -0
- package/examples/deskforge-app/node_modules/@types/node/trace_events.d.ts +197 -0
- package/examples/deskforge-app/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
- package/examples/deskforge-app/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
- package/examples/deskforge-app/node_modules/@types/node/ts5.6/index.d.ts +93 -0
- package/examples/deskforge-app/node_modules/@types/node/tty.d.ts +208 -0
- package/examples/deskforge-app/node_modules/@types/node/url.d.ts +964 -0
- package/examples/deskforge-app/node_modules/@types/node/util.d.ts +2331 -0
- package/examples/deskforge-app/node_modules/@types/node/v8.d.ts +809 -0
- package/examples/deskforge-app/node_modules/@types/node/vm.d.ts +1001 -0
- package/examples/deskforge-app/node_modules/@types/node/wasi.d.ts +181 -0
- package/examples/deskforge-app/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
- package/examples/deskforge-app/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/examples/deskforge-app/node_modules/@types/node/web-globals/events.d.ts +97 -0
- package/examples/deskforge-app/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
- package/examples/deskforge-app/node_modules/@types/node/worker_threads.d.ts +715 -0
- package/examples/deskforge-app/node_modules/@types/node/zlib.d.ts +598 -0
- package/examples/deskforge-app/node_modules/undici-types/LICENSE +21 -0
- package/examples/deskforge-app/node_modules/undici-types/README.md +6 -0
- package/examples/deskforge-app/node_modules/undici-types/agent.d.ts +31 -0
- package/examples/deskforge-app/node_modules/undici-types/api.d.ts +43 -0
- package/examples/deskforge-app/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/examples/deskforge-app/node_modules/undici-types/cache.d.ts +36 -0
- package/examples/deskforge-app/node_modules/undici-types/client.d.ts +108 -0
- package/examples/deskforge-app/node_modules/undici-types/connector.d.ts +34 -0
- package/examples/deskforge-app/node_modules/undici-types/content-type.d.ts +21 -0
- package/examples/deskforge-app/node_modules/undici-types/cookies.d.ts +28 -0
- package/examples/deskforge-app/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- package/examples/deskforge-app/node_modules/undici-types/dispatcher.d.ts +256 -0
- package/examples/deskforge-app/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- package/examples/deskforge-app/node_modules/undici-types/errors.d.ts +149 -0
- package/examples/deskforge-app/node_modules/undici-types/eventsource.d.ts +61 -0
- package/examples/deskforge-app/node_modules/undici-types/fetch.d.ts +209 -0
- package/examples/deskforge-app/node_modules/undici-types/file.d.ts +39 -0
- package/examples/deskforge-app/node_modules/undici-types/filereader.d.ts +54 -0
- package/examples/deskforge-app/node_modules/undici-types/formdata.d.ts +108 -0
- package/examples/deskforge-app/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/examples/deskforge-app/node_modules/undici-types/global-origin.d.ts +7 -0
- package/examples/deskforge-app/node_modules/undici-types/handlers.d.ts +15 -0
- package/examples/deskforge-app/node_modules/undici-types/header.d.ts +4 -0
- package/examples/deskforge-app/node_modules/undici-types/index.d.ts +71 -0
- package/examples/deskforge-app/node_modules/undici-types/interceptors.d.ts +17 -0
- package/examples/deskforge-app/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/examples/deskforge-app/node_modules/undici-types/mock-client.d.ts +25 -0
- package/examples/deskforge-app/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/examples/deskforge-app/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/examples/deskforge-app/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/examples/deskforge-app/node_modules/undici-types/package.json +55 -0
- package/examples/deskforge-app/node_modules/undici-types/patch.d.ts +33 -0
- package/examples/deskforge-app/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/examples/deskforge-app/node_modules/undici-types/pool.d.ts +39 -0
- package/examples/deskforge-app/node_modules/undici-types/proxy-agent.d.ts +28 -0
- package/examples/deskforge-app/node_modules/undici-types/readable.d.ts +65 -0
- package/examples/deskforge-app/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/examples/deskforge-app/node_modules/undici-types/retry-handler.d.ts +116 -0
- package/examples/deskforge-app/node_modules/undici-types/util.d.ts +18 -0
- package/examples/deskforge-app/node_modules/undici-types/webidl.d.ts +228 -0
- package/examples/deskforge-app/node_modules/undici-types/websocket.d.ts +150 -0
- package/examples/deskforge-app/package.json +19 -0
- package/examples/deskforge-app/src/screens/Details.ts +20 -0
- package/examples/deskforge-app/src/screens/Home.ts +19 -0
- package/examples/deskforge-app/src/screens/index.ts +2 -0
- package/examples/deskforge-app/src/ui/Responsive.ts +88 -0
- package/examples/deskforge-app/src/ui/index.ts +1 -0
- package/examples/deskforge-app/tsconfig.json +24 -0
- package/examples/notekeeper/dist/app.d.ts +1 -0
- package/examples/notekeeper/dist/app.js +96 -0
- package/examples/notekeeper/dist/app.js.map +1 -0
- package/examples/notekeeper/dist/components/noteCard.d.ts +1 -0
- package/examples/notekeeper/dist/components/noteCard.js +124 -0
- package/examples/notekeeper/dist/components/noteCard.js.map +1 -0
- package/examples/notekeeper/dist/hooks/useNotes.d.ts +14 -0
- package/examples/notekeeper/dist/hooks/useNotes.js +127 -0
- package/examples/notekeeper/dist/hooks/useNotes.js.map +1 -0
- package/examples/notekeeper/dist/notekeeper.png +0 -0
- package/examples/notekeeper/dist/state/appState.d.ts +11 -0
- package/examples/notekeeper/dist/state/appState.js +125 -0
- package/examples/notekeeper/dist/state/appState.js.map +1 -0
- package/examples/notekeeper/package.json +19 -0
- package/examples/notekeeper/src/README.md +10 -0
- package/examples/notekeeper/src/app.ts +98 -0
- package/examples/notekeeper/src/components/noteCard.ts +147 -0
- package/examples/notekeeper/src/hooks/useNotes.ts +169 -0
- package/examples/notekeeper/src/state/appState.ts +142 -0
- package/examples/notekeeper/tsconfig.json +16 -0
- package/examples/tsconfig.json +34 -0
- package/local-app/addlibrary.ts +7 -0
- package/local-app/app.ts +29 -0
- package/local-app/package.json +13 -0
- package/local-app/screens/Home.ts +20 -0
- package/local-app/tsconfig.json +8 -0
- package/package.json +30 -0
- package/packages/ai/dist/brain.d.ts +32 -0
- package/packages/ai/dist/brain.d.ts.map +1 -0
- package/packages/ai/dist/brain.js +94 -0
- package/packages/ai/dist/brain.js.map +1 -0
- package/packages/ai/dist/index.d.ts +5 -0
- package/packages/ai/dist/index.d.ts.map +1 -0
- package/packages/ai/dist/index.js +27 -0
- package/packages/ai/dist/index.js.map +1 -0
- package/packages/ai/dist/nodes/logic.d.ts +23 -0
- package/packages/ai/dist/nodes/logic.d.ts.map +1 -0
- package/packages/ai/dist/nodes/logic.js +55 -0
- package/packages/ai/dist/nodes/logic.js.map +1 -0
- package/packages/ai/dist/nodes/memory.d.ts +28 -0
- package/packages/ai/dist/nodes/memory.d.ts.map +1 -0
- package/packages/ai/dist/nodes/memory.js +93 -0
- package/packages/ai/dist/nodes/memory.js.map +1 -0
- package/packages/ai/dist/nodes/perception.d.ts +21 -0
- package/packages/ai/dist/nodes/perception.d.ts.map +1 -0
- package/packages/ai/dist/nodes/perception.js +28 -0
- package/packages/ai/dist/nodes/perception.js.map +1 -0
- package/packages/ai/package.json +30 -0
- package/packages/ai/src/brain.ts +209 -0
- package/packages/ai/src/index.ts +14 -0
- package/packages/ai/src/nodes/logic.ts +109 -0
- package/packages/ai/src/nodes/memory.ts +172 -0
- package/packages/ai/src/nodes/perception.ts +90 -0
- package/packages/ai/tsconfig.json +17 -0
- package/packages/background/dist/background.d.ts +42 -0
- package/packages/background/dist/background.d.ts.map +1 -0
- package/packages/background/dist/background.js +149 -0
- package/packages/background/dist/background.js.map +1 -0
- package/packages/background/dist/index.d.ts +2 -0
- package/packages/background/dist/index.d.ts.map +1 -0
- package/packages/background/dist/index.js +20 -0
- package/packages/background/dist/index.js.map +1 -0
- package/packages/background/package.json +30 -0
- package/packages/background/src/background.ts +263 -0
- package/packages/background/src/index.ts +4 -0
- package/packages/background/tsconfig.json +17 -0
- package/packages/bridge/dist/bridge.d.ts +22 -0
- package/packages/bridge/dist/bridge.d.ts.map +1 -0
- package/packages/bridge/dist/bridge.js +44 -0
- package/packages/bridge/dist/bridge.js.map +1 -0
- package/packages/bridge/dist/c.d.ts +10 -0
- package/packages/bridge/dist/c.d.ts.map +1 -0
- package/packages/bridge/dist/c.js +23 -0
- package/packages/bridge/dist/c.js.map +1 -0
- package/packages/bridge/dist/dotnet.d.ts +11 -0
- package/packages/bridge/dist/dotnet.d.ts.map +1 -0
- package/packages/bridge/dist/dotnet.js +26 -0
- package/packages/bridge/dist/dotnet.js.map +1 -0
- package/packages/bridge/dist/go.d.ts +10 -0
- package/packages/bridge/dist/go.d.ts.map +1 -0
- package/packages/bridge/dist/go.js +27 -0
- package/packages/bridge/dist/go.js.map +1 -0
- package/packages/bridge/dist/http.d.ts +22 -0
- package/packages/bridge/dist/http.d.ts.map +1 -0
- package/packages/bridge/dist/http.js +110 -0
- package/packages/bridge/dist/http.js.map +1 -0
- package/packages/bridge/dist/index.d.ts +5 -0
- package/packages/bridge/dist/index.d.ts.map +1 -0
- package/packages/bridge/dist/index.js +27 -0
- package/packages/bridge/dist/index.js.map +1 -0
- package/packages/bridge/dist/kotlin.d.ts +11 -0
- package/packages/bridge/dist/kotlin.d.ts.map +1 -0
- package/packages/bridge/dist/kotlin.js +25 -0
- package/packages/bridge/dist/kotlin.js.map +1 -0
- package/packages/bridge/dist/php.d.ts +11 -0
- package/packages/bridge/dist/php.d.ts.map +1 -0
- package/packages/bridge/dist/php.js +28 -0
- package/packages/bridge/dist/php.js.map +1 -0
- package/packages/bridge/dist/process.d.ts +27 -0
- package/packages/bridge/dist/process.d.ts.map +1 -0
- package/packages/bridge/dist/process.js +101 -0
- package/packages/bridge/dist/process.js.map +1 -0
- package/packages/bridge/dist/python.d.ts +15 -0
- package/packages/bridge/dist/python.d.ts.map +1 -0
- package/packages/bridge/dist/python.js +34 -0
- package/packages/bridge/dist/python.js.map +1 -0
- package/packages/bridge/dist/rust.d.ts +10 -0
- package/packages/bridge/dist/rust.d.ts.map +1 -0
- package/packages/bridge/dist/rust.js +24 -0
- package/packages/bridge/dist/rust.js.map +1 -0
- package/packages/bridge/dist/swift.d.ts +11 -0
- package/packages/bridge/dist/swift.d.ts.map +1 -0
- package/packages/bridge/dist/swift.js +26 -0
- package/packages/bridge/dist/swift.js.map +1 -0
- package/packages/bridge/package.json +30 -0
- package/packages/bridge/src/bridge.ts +38 -0
- package/packages/bridge/src/c.ts +41 -0
- package/packages/bridge/src/dotnet.ts +50 -0
- package/packages/bridge/src/go.ts +48 -0
- package/packages/bridge/src/http.ts +198 -0
- package/packages/bridge/src/index.ts +14 -0
- package/packages/bridge/src/kotlin.ts +48 -0
- package/packages/bridge/src/php.ts +59 -0
- package/packages/bridge/src/process.ts +174 -0
- package/packages/bridge/src/python.ts +69 -0
- package/packages/bridge/src/rust.ts +43 -0
- package/packages/bridge/src/swift.ts +50 -0
- package/packages/bridge/tsconfig.json +18 -0
- package/packages/cli/dist/commands/build.d.ts +17 -0
- package/packages/cli/dist/commands/build.d.ts.map +1 -0
- package/packages/cli/dist/commands/build.js +79 -0
- package/packages/cli/dist/commands/build.js.map +1 -0
- package/packages/cli/dist/commands/create.d.ts +11 -0
- package/packages/cli/dist/commands/create.d.ts.map +1 -0
- package/packages/cli/dist/commands/create.js +287 -0
- package/packages/cli/dist/commands/create.js.map +1 -0
- package/packages/cli/dist/commands/lib/add.d.ts +3 -0
- package/packages/cli/dist/commands/lib/add.d.ts.map +1 -0
- package/packages/cli/dist/commands/lib/add.js +39 -0
- package/packages/cli/dist/commands/lib/add.js.map +1 -0
- package/packages/cli/dist/commands/lib/list.d.ts +3 -0
- package/packages/cli/dist/commands/lib/list.d.ts.map +1 -0
- package/packages/cli/dist/commands/lib/list.js +29 -0
- package/packages/cli/dist/commands/lib/list.js.map +1 -0
- package/packages/cli/dist/commands/lib/remove.d.ts +3 -0
- package/packages/cli/dist/commands/lib/remove.d.ts.map +1 -0
- package/packages/cli/dist/commands/lib/remove.js +30 -0
- package/packages/cli/dist/commands/lib/remove.js.map +1 -0
- package/packages/cli/dist/commands/lib/restore.d.ts +3 -0
- package/packages/cli/dist/commands/lib/restore.d.ts.map +1 -0
- package/packages/cli/dist/commands/lib/restore.js +49 -0
- package/packages/cli/dist/commands/lib/restore.js.map +1 -0
- package/packages/cli/dist/commands/lib/search.d.ts +3 -0
- package/packages/cli/dist/commands/lib/search.d.ts.map +1 -0
- package/packages/cli/dist/commands/lib/search.js +30 -0
- package/packages/cli/dist/commands/lib/search.js.map +1 -0
- package/packages/cli/dist/commands/start.d.ts +10 -0
- package/packages/cli/dist/commands/start.d.ts.map +1 -0
- package/packages/cli/dist/commands/start.js +88 -0
- package/packages/cli/dist/commands/start.js.map +1 -0
- package/packages/cli/dist/index.d.ts +3 -0
- package/packages/cli/dist/index.d.ts.map +1 -0
- package/packages/cli/dist/index.js +193 -0
- package/packages/cli/dist/index.js.map +1 -0
- package/packages/cli/dist/registry/client.d.ts +24 -0
- package/packages/cli/dist/registry/client.d.ts.map +1 -0
- package/packages/cli/dist/registry/client.js +73 -0
- package/packages/cli/dist/registry/client.js.map +1 -0
- package/packages/cli/dist/registry/installer.d.ts +16 -0
- package/packages/cli/dist/registry/installer.d.ts.map +1 -0
- package/packages/cli/dist/registry/installer.js +135 -0
- package/packages/cli/dist/registry/installer.js.map +1 -0
- package/packages/cli/dist/registry/manifest.d.ts +13 -0
- package/packages/cli/dist/registry/manifest.d.ts.map +1 -0
- package/packages/cli/dist/registry/manifest.js +100 -0
- package/packages/cli/dist/registry/manifest.js.map +1 -0
- package/packages/cli/package.json +36 -0
- package/packages/cli/src/commands/build.ts +138 -0
- package/packages/cli/src/commands/create.ts +363 -0
- package/packages/cli/src/commands/lib/add.ts +56 -0
- package/packages/cli/src/commands/lib/list.ts +42 -0
- package/packages/cli/src/commands/lib/remove.ts +39 -0
- package/packages/cli/src/commands/lib/restore.ts +65 -0
- package/packages/cli/src/commands/lib/search.ts +45 -0
- package/packages/cli/src/commands/start.ts +117 -0
- package/packages/cli/src/index.ts +224 -0
- package/packages/cli/src/registry/client.ts +153 -0
- package/packages/cli/src/registry/installer.ts +197 -0
- package/packages/cli/src/registry/manifest.ts +145 -0
- package/packages/cli/test/create.test.js +22 -0
- package/packages/cli/tsconfig.json +18 -0
- package/packages/core/dist/animation/easing.d.ts +23 -0
- package/packages/core/dist/animation/easing.d.ts.map +1 -0
- package/packages/core/dist/animation/easing.js +91 -0
- package/packages/core/dist/animation/easing.js.map +1 -0
- package/packages/core/dist/animation/index.d.ts +4 -0
- package/packages/core/dist/animation/index.d.ts.map +1 -0
- package/packages/core/dist/animation/index.js +26 -0
- package/packages/core/dist/animation/index.js.map +1 -0
- package/packages/core/dist/animation/interpolate.d.ts +7 -0
- package/packages/core/dist/animation/interpolate.d.ts.map +1 -0
- package/packages/core/dist/animation/interpolate.js +83 -0
- package/packages/core/dist/animation/interpolate.js.map +1 -0
- package/packages/core/dist/animation/spring.d.ts +21 -0
- package/packages/core/dist/animation/spring.d.ts.map +1 -0
- package/packages/core/dist/animation/spring.js +79 -0
- package/packages/core/dist/animation/spring.js.map +1 -0
- package/packages/core/dist/component/component.d.ts +6 -0
- package/packages/core/dist/component/component.d.ts.map +1 -0
- package/packages/core/dist/component/component.js +14 -0
- package/packages/core/dist/component/component.js.map +1 -0
- package/packages/core/dist/component/index.d.ts +2 -0
- package/packages/core/dist/component/index.d.ts.map +1 -0
- package/packages/core/dist/component/index.js +18 -0
- package/packages/core/dist/component/index.js.map +1 -0
- package/packages/core/dist/index.d.ts +6 -0
- package/packages/core/dist/index.d.ts.map +1 -0
- package/packages/core/dist/index.js +30 -0
- package/packages/core/dist/index.js.map +1 -0
- package/packages/core/dist/scheduler/index.d.ts +2 -0
- package/packages/core/dist/scheduler/index.d.ts.map +1 -0
- package/packages/core/dist/scheduler/index.js +20 -0
- package/packages/core/dist/scheduler/index.js.map +1 -0
- package/packages/core/dist/scheduler/scheduler.d.ts +12 -0
- package/packages/core/dist/scheduler/scheduler.d.ts.map +1 -0
- package/packages/core/dist/scheduler/scheduler.js +61 -0
- package/packages/core/dist/scheduler/scheduler.js.map +1 -0
- package/packages/core/dist/tree/diff.d.ts +17 -0
- package/packages/core/dist/tree/diff.d.ts.map +1 -0
- package/packages/core/dist/tree/diff.js +67 -0
- package/packages/core/dist/tree/diff.js.map +1 -0
- package/packages/core/dist/tree/index.d.ts +4 -0
- package/packages/core/dist/tree/index.d.ts.map +1 -0
- package/packages/core/dist/tree/index.js +23 -0
- package/packages/core/dist/tree/index.js.map +1 -0
- package/packages/core/dist/tree/node.d.ts +13 -0
- package/packages/core/dist/tree/node.d.ts.map +1 -0
- package/packages/core/dist/tree/node.js +59 -0
- package/packages/core/dist/tree/node.js.map +1 -0
- package/packages/core/dist/tree/tree.d.ts +11 -0
- package/packages/core/dist/tree/tree.d.ts.map +1 -0
- package/packages/core/dist/tree/tree.js +43 -0
- package/packages/core/dist/tree/tree.js.map +1 -0
- package/packages/core/package.json +30 -0
- package/packages/core/src/animation/easing.d.ts +22 -0
- package/packages/core/src/animation/easing.js +91 -0
- package/packages/core/src/animation/easing.js.map +1 -0
- package/packages/core/src/animation/easing.ts +88 -0
- package/packages/core/src/animation/index.d.ts +3 -0
- package/packages/core/src/animation/index.js +26 -0
- package/packages/core/src/animation/index.js.map +1 -0
- package/packages/core/src/animation/index.ts +12 -0
- package/packages/core/src/animation/interpolate.d.ts +6 -0
- package/packages/core/src/animation/interpolate.js +83 -0
- package/packages/core/src/animation/interpolate.js.map +1 -0
- package/packages/core/src/animation/interpolate.ts +107 -0
- package/packages/core/src/animation/spring.d.ts +20 -0
- package/packages/core/src/animation/spring.js +79 -0
- package/packages/core/src/animation/spring.js.map +1 -0
- package/packages/core/src/animation/spring.ts +118 -0
- package/packages/core/src/component/component.d.ts +5 -0
- package/packages/core/src/component/component.js +14 -0
- package/packages/core/src/component/component.js.map +1 -0
- package/packages/core/src/component/component.ts +22 -0
- package/packages/core/src/component/index.d.ts +1 -0
- package/packages/core/src/component/index.js +18 -0
- package/packages/core/src/component/index.js.map +1 -0
- package/packages/core/src/component/index.ts +1 -0
- package/packages/core/src/index.d.ts +5 -0
- package/packages/core/src/index.js +30 -0
- package/packages/core/src/index.js.map +1 -0
- package/packages/core/src/index.ts +18 -0
- package/packages/core/src/scheduler/index.d.ts +1 -0
- package/packages/core/src/scheduler/index.d.ts.map +1 -0
- package/packages/core/src/scheduler/index.js +20 -0
- package/packages/core/src/scheduler/index.js.map +1 -0
- package/packages/core/src/scheduler/index.ts +4 -0
- package/packages/core/src/scheduler/scheduler.d.ts +11 -0
- package/packages/core/src/scheduler/scheduler.d.ts.map +1 -0
- package/packages/core/src/scheduler/scheduler.js +61 -0
- package/packages/core/src/scheduler/scheduler.js.map +1 -0
- package/packages/core/src/scheduler/scheduler.ts +76 -0
- package/packages/core/src/tree/diff.d.ts +16 -0
- package/packages/core/src/tree/diff.js +67 -0
- package/packages/core/src/tree/diff.js.map +1 -0
- package/packages/core/src/tree/diff.ts +125 -0
- package/packages/core/src/tree/index.d.ts +3 -0
- package/packages/core/src/tree/index.js +23 -0
- package/packages/core/src/tree/index.js.map +1 -0
- package/packages/core/src/tree/index.ts +7 -0
- package/packages/core/src/tree/node.d.ts +12 -0
- package/packages/core/src/tree/node.d.ts.map +1 -0
- package/packages/core/src/tree/node.js +59 -0
- package/packages/core/src/tree/node.js.map +1 -0
- package/packages/core/src/tree/node.ts +96 -0
- package/packages/core/src/tree/tree.d.ts +10 -0
- package/packages/core/src/tree/tree.d.ts.map +1 -0
- package/packages/core/src/tree/tree.js +43 -0
- package/packages/core/src/tree/tree.js.map +1 -0
- package/packages/core/src/tree/tree.ts +64 -0
- package/packages/core/tsconfig.json +18 -0
- package/packages/db/dist/adapters/mongodb.d.ts +17 -0
- package/packages/db/dist/adapters/mongodb.d.ts.map +1 -0
- package/packages/db/dist/adapters/mongodb.js +64 -0
- package/packages/db/dist/adapters/mongodb.js.map +1 -0
- package/packages/db/dist/adapters/mysql.d.ts +15 -0
- package/packages/db/dist/adapters/mysql.d.ts.map +1 -0
- package/packages/db/dist/adapters/mysql.js +37 -0
- package/packages/db/dist/adapters/mysql.js.map +1 -0
- package/packages/db/dist/adapters/postgres.d.ts +15 -0
- package/packages/db/dist/adapters/postgres.d.ts.map +1 -0
- package/packages/db/dist/adapters/postgres.js +38 -0
- package/packages/db/dist/adapters/postgres.js.map +1 -0
- package/packages/db/dist/adapters/sqlite.d.ts +24 -0
- package/packages/db/dist/adapters/sqlite.d.ts.map +1 -0
- package/packages/db/dist/adapters/sqlite.js +56 -0
- package/packages/db/dist/adapters/sqlite.js.map +1 -0
- package/packages/db/dist/db.d.ts +45 -0
- package/packages/db/dist/db.d.ts.map +1 -0
- package/packages/db/dist/db.js +111 -0
- package/packages/db/dist/db.js.map +1 -0
- package/packages/db/dist/index.d.ts +7 -0
- package/packages/db/dist/index.d.ts.map +1 -0
- package/packages/db/dist/index.js +31 -0
- package/packages/db/dist/index.js.map +1 -0
- package/packages/db/dist/query.d.ts +26 -0
- package/packages/db/dist/query.d.ts.map +1 -0
- package/packages/db/dist/query.js +71 -0
- package/packages/db/dist/query.js.map +1 -0
- package/packages/db/package.json +30 -0
- package/packages/db/src/adapters/mongodb.ts +130 -0
- package/packages/db/src/adapters/mysql.ts +78 -0
- package/packages/db/src/adapters/postgres.ts +80 -0
- package/packages/db/src/adapters/sqlite.ts +99 -0
- package/packages/db/src/db.ts +175 -0
- package/packages/db/src/index.ts +20 -0
- package/packages/db/src/query.ts +154 -0
- package/packages/db/tsconfig.json +17 -0
- package/packages/device/README.md +21 -0
- package/packages/device/dist/camera.d.ts +28 -0
- package/packages/device/dist/camera.d.ts.map +1 -0
- package/packages/device/dist/camera.js +42 -0
- package/packages/device/dist/camera.js.map +1 -0
- package/packages/device/dist/contacts.d.ts +19 -0
- package/packages/device/dist/contacts.d.ts.map +1 -0
- package/packages/device/dist/contacts.js +40 -0
- package/packages/device/dist/contacts.js.map +1 -0
- package/packages/device/dist/index.d.ts +33 -0
- package/packages/device/dist/index.d.ts.map +1 -0
- package/packages/device/dist/index.js +35 -0
- package/packages/device/dist/index.js.map +1 -0
- package/packages/device/dist/media.d.ts +60 -0
- package/packages/device/dist/media.d.ts.map +1 -0
- package/packages/device/dist/media.js +129 -0
- package/packages/device/dist/media.js.map +1 -0
- package/packages/device/dist/sensors.d.ts +17 -0
- package/packages/device/dist/sensors.d.ts.map +1 -0
- package/packages/device/dist/sensors.js +32 -0
- package/packages/device/dist/sensors.js.map +1 -0
- package/packages/device/package.json +30 -0
- package/packages/device/src/camera.ts +65 -0
- package/packages/device/src/contacts.ts +57 -0
- package/packages/device/src/index.ts +20 -0
- package/packages/device/src/media.ts +194 -0
- package/packages/device/src/sensors.ts +51 -0
- package/packages/device/test/api.test.js +21 -0
- package/packages/device/tsconfig.json +9 -0
- package/packages/file/dist/file.d.ts +55 -0
- package/packages/file/dist/file.d.ts.map +1 -0
- package/packages/file/dist/file.js +114 -0
- package/packages/file/dist/file.js.map +1 -0
- package/packages/file/dist/index.d.ts +2 -0
- package/packages/file/dist/index.d.ts.map +1 -0
- package/packages/file/dist/index.js +20 -0
- package/packages/file/dist/index.js.map +1 -0
- package/packages/file/package.json +30 -0
- package/packages/file/src/file.ts +209 -0
- package/packages/file/src/index.ts +4 -0
- package/packages/file/tsconfig.json +17 -0
- package/packages/i18n/dist/i18n.d.ts +33 -0
- package/packages/i18n/dist/i18n.d.ts.map +1 -0
- package/packages/i18n/dist/i18n.js +149 -0
- package/packages/i18n/dist/i18n.js.map +1 -0
- package/packages/i18n/dist/index.d.ts +2 -0
- package/packages/i18n/dist/index.d.ts.map +1 -0
- package/packages/i18n/dist/index.js +20 -0
- package/packages/i18n/dist/index.js.map +1 -0
- package/packages/i18n/package.json +30 -0
- package/packages/i18n/src/i18n.ts +225 -0
- package/packages/i18n/src/index.ts +4 -0
- package/packages/i18n/tsconfig.json +17 -0
- package/packages/logger/dist/index.d.ts +2 -0
- package/packages/logger/dist/index.d.ts.map +1 -0
- package/packages/logger/dist/index.js +20 -0
- package/packages/logger/dist/index.js.map +1 -0
- package/packages/logger/dist/logger.d.ts +50 -0
- package/packages/logger/dist/logger.d.ts.map +1 -0
- package/packages/logger/dist/logger.js +147 -0
- package/packages/logger/dist/logger.js.map +1 -0
- package/packages/logger/package.json +30 -0
- package/packages/logger/src/index.ts +4 -0
- package/packages/logger/src/logger.ts +240 -0
- package/packages/logger/tsconfig.json +17 -0
- package/packages/network/dist/discovery.d.ts +20 -0
- package/packages/network/dist/discovery.d.ts.map +1 -0
- package/packages/network/dist/discovery.js +58 -0
- package/packages/network/dist/discovery.js.map +1 -0
- package/packages/network/dist/index.d.ts +3 -0
- package/packages/network/dist/index.d.ts.map +1 -0
- package/packages/network/dist/index.js +23 -0
- package/packages/network/dist/index.js.map +1 -0
- package/packages/network/dist/transfer.d.ts +40 -0
- package/packages/network/dist/transfer.d.ts.map +1 -0
- package/packages/network/dist/transfer.js +73 -0
- package/packages/network/dist/transfer.js.map +1 -0
- package/packages/network/package.json +30 -0
- package/packages/network/src/discovery.ts +107 -0
- package/packages/network/src/index.ts +8 -0
- package/packages/network/src/transfer.ts +182 -0
- package/packages/network/tsconfig.json +17 -0
- package/packages/notifications/dist/alert.d.ts +34 -0
- package/packages/notifications/dist/alert.d.ts.map +1 -0
- package/packages/notifications/dist/alert.js +99 -0
- package/packages/notifications/dist/alert.js.map +1 -0
- package/packages/notifications/dist/email.d.ts +41 -0
- package/packages/notifications/dist/email.d.ts.map +1 -0
- package/packages/notifications/dist/email.js +51 -0
- package/packages/notifications/dist/email.js.map +1 -0
- package/packages/notifications/dist/index.d.ts +84 -0
- package/packages/notifications/dist/index.d.ts.map +1 -0
- package/packages/notifications/dist/index.js +52 -0
- package/packages/notifications/dist/index.js.map +1 -0
- package/packages/notifications/dist/notify.d.ts +36 -0
- package/packages/notifications/dist/notify.d.ts.map +1 -0
- package/packages/notifications/dist/notify.js +62 -0
- package/packages/notifications/dist/notify.js.map +1 -0
- package/packages/notifications/dist/push.d.ts +49 -0
- package/packages/notifications/dist/push.d.ts.map +1 -0
- package/packages/notifications/dist/push.js +76 -0
- package/packages/notifications/dist/push.js.map +1 -0
- package/packages/notifications/dist/sms.d.ts +34 -0
- package/packages/notifications/dist/sms.d.ts.map +1 -0
- package/packages/notifications/dist/sms.js +44 -0
- package/packages/notifications/dist/sms.js.map +1 -0
- package/packages/notifications/dist/storage.d.ts +30 -0
- package/packages/notifications/dist/storage.d.ts.map +1 -0
- package/packages/notifications/dist/storage.js +93 -0
- package/packages/notifications/dist/storage.js.map +1 -0
- package/packages/notifications/dist/toast.d.ts +47 -0
- package/packages/notifications/dist/toast.d.ts.map +1 -0
- package/packages/notifications/dist/toast.js +138 -0
- package/packages/notifications/dist/toast.js.map +1 -0
- package/packages/notifications/dist/users.d.ts +36 -0
- package/packages/notifications/dist/users.d.ts.map +1 -0
- package/packages/notifications/dist/users.js +87 -0
- package/packages/notifications/dist/users.js.map +1 -0
- package/packages/notifications/notifications.db +0 -0
- package/packages/notifications/package.json +33 -0
- package/packages/notifications/src/alert.ts +133 -0
- package/packages/notifications/src/email.ts +127 -0
- package/packages/notifications/src/index.ts +44 -0
- package/packages/notifications/src/notify.ts +126 -0
- package/packages/notifications/src/push.ts +145 -0
- package/packages/notifications/src/sms.ts +97 -0
- package/packages/notifications/src/storage.ts +109 -0
- package/packages/notifications/src/toast.ts +186 -0
- package/packages/notifications/src/types/better-sqlite3.d.ts +5 -0
- package/packages/notifications/src/users.ts +121 -0
- package/packages/notifications/test/notifications.test.js +41 -0
- package/packages/notifications/test/storage.test.js +34 -0
- package/packages/notifications/tsconfig.json +19 -0
- package/packages/payments/dist/gateways/momo.d.ts +25 -0
- package/packages/payments/dist/gateways/momo.d.ts.map +1 -0
- package/packages/payments/dist/gateways/momo.js +44 -0
- package/packages/payments/dist/gateways/momo.js.map +1 -0
- package/packages/payments/dist/gateways/paystack.d.ts +24 -0
- package/packages/payments/dist/gateways/paystack.d.ts.map +1 -0
- package/packages/payments/dist/gateways/paystack.js +51 -0
- package/packages/payments/dist/gateways/paystack.js.map +1 -0
- package/packages/payments/dist/index.d.ts +4 -0
- package/packages/payments/dist/index.d.ts.map +1 -0
- package/packages/payments/dist/index.js +25 -0
- package/packages/payments/dist/index.js.map +1 -0
- package/packages/payments/dist/payment.d.ts +42 -0
- package/packages/payments/dist/payment.d.ts.map +1 -0
- package/packages/payments/dist/payment.js +124 -0
- package/packages/payments/dist/payment.js.map +1 -0
- package/packages/payments/package.json +30 -0
- package/packages/payments/src/gateways/momo.ts +97 -0
- package/packages/payments/src/gateways/paystack.ts +102 -0
- package/packages/payments/src/index.ts +11 -0
- package/packages/payments/src/payment.ts +229 -0
- package/packages/payments/tsconfig.json +17 -0
- package/packages/renderer/README.md +188 -0
- package/packages/renderer/dist/canvas.d.ts +24 -0
- package/packages/renderer/dist/canvas.d.ts.map +1 -0
- package/packages/renderer/dist/canvas.js +38 -0
- package/packages/renderer/dist/canvas.js.map +1 -0
- package/packages/renderer/dist/context.d.ts +34 -0
- package/packages/renderer/dist/context.d.ts.map +1 -0
- package/packages/renderer/dist/context.js +45 -0
- package/packages/renderer/dist/context.js.map +1 -0
- package/packages/renderer/dist/dirty-region.d.ts +43 -0
- package/packages/renderer/dist/dirty-region.d.ts.map +1 -0
- package/packages/renderer/dist/dirty-region.js +106 -0
- package/packages/renderer/dist/dirty-region.js.map +1 -0
- package/packages/renderer/dist/engine.d.ts +57 -0
- package/packages/renderer/dist/engine.d.ts.map +1 -0
- package/packages/renderer/dist/engine.js +95 -0
- package/packages/renderer/dist/engine.js.map +1 -0
- package/packages/renderer/dist/example.d.ts +14 -0
- package/packages/renderer/dist/example.d.ts.map +1 -0
- package/packages/renderer/dist/example.js +160 -0
- package/packages/renderer/dist/example.js.map +1 -0
- package/packages/renderer/dist/filters.d.ts +23 -0
- package/packages/renderer/dist/filters.d.ts.map +1 -0
- package/packages/renderer/dist/filters.js +41 -0
- package/packages/renderer/dist/filters.js.map +1 -0
- package/packages/renderer/dist/icons.d.ts +7 -0
- package/packages/renderer/dist/icons.d.ts.map +1 -0
- package/packages/renderer/dist/icons.js +31 -0
- package/packages/renderer/dist/icons.js.map +1 -0
- package/packages/renderer/dist/index.d.ts +16 -0
- package/packages/renderer/dist/index.d.ts.map +1 -0
- package/packages/renderer/dist/index.js +34 -0
- package/packages/renderer/dist/index.js.map +1 -0
- package/packages/renderer/dist/painter.d.ts +27 -0
- package/packages/renderer/dist/painter.d.ts.map +1 -0
- package/packages/renderer/dist/painter.js +221 -0
- package/packages/renderer/dist/painter.js.map +1 -0
- package/packages/renderer/dist/renderer.d.ts +72 -0
- package/packages/renderer/dist/renderer.d.ts.map +1 -0
- package/packages/renderer/dist/renderer.js +120 -0
- package/packages/renderer/dist/renderer.js.map +1 -0
- package/packages/renderer/dist/svg-export.d.ts +52 -0
- package/packages/renderer/dist/svg-export.d.ts.map +1 -0
- package/packages/renderer/dist/svg-export.js +159 -0
- package/packages/renderer/dist/svg-export.js.map +1 -0
- package/packages/renderer/package.json +34 -0
- package/packages/renderer/src/canvas.d.ts +23 -0
- package/packages/renderer/src/canvas.js +38 -0
- package/packages/renderer/src/canvas.js.map +1 -0
- package/packages/renderer/src/canvas.ts +70 -0
- package/packages/renderer/src/context.d.ts +33 -0
- package/packages/renderer/src/context.js +45 -0
- package/packages/renderer/src/context.js.map +1 -0
- package/packages/renderer/src/context.ts +83 -0
- package/packages/renderer/src/dirty-region.d.ts +42 -0
- package/packages/renderer/src/dirty-region.js +106 -0
- package/packages/renderer/src/dirty-region.js.map +1 -0
- package/packages/renderer/src/dirty-region.ts +125 -0
- package/packages/renderer/src/engine.d.ts +56 -0
- package/packages/renderer/src/engine.js +95 -0
- package/packages/renderer/src/engine.js.map +1 -0
- package/packages/renderer/src/engine.ts +131 -0
- package/packages/renderer/src/example.ts +184 -0
- package/packages/renderer/src/filters.d.ts +22 -0
- package/packages/renderer/src/filters.js +41 -0
- package/packages/renderer/src/filters.js.map +1 -0
- package/packages/renderer/src/filters.ts +63 -0
- package/packages/renderer/src/icons.ts +33 -0
- package/packages/renderer/src/index.d.ts +15 -0
- package/packages/renderer/src/index.js +34 -0
- package/packages/renderer/src/index.js.map +1 -0
- package/packages/renderer/src/index.ts +19 -0
- package/packages/renderer/src/painter.d.ts +26 -0
- package/packages/renderer/src/painter.js +127 -0
- package/packages/renderer/src/painter.js.map +1 -0
- package/packages/renderer/src/painter.ts +269 -0
- package/packages/renderer/src/renderer.d.ts +71 -0
- package/packages/renderer/src/renderer.js +120 -0
- package/packages/renderer/src/renderer.js.map +1 -0
- package/packages/renderer/src/renderer.ts +171 -0
- package/packages/renderer/src/svg-export.d.ts +47 -0
- package/packages/renderer/src/svg-export.js +125 -0
- package/packages/renderer/src/svg-export.js.map +1 -0
- package/packages/renderer/src/svg-export.ts +270 -0
- package/packages/renderer/test/renderer.test.js +41 -0
- package/packages/renderer/tsconfig.json +10 -0
- package/packages/router/dist/app.d.ts +10 -0
- package/packages/router/dist/app.d.ts.map +1 -0
- package/packages/router/dist/app.js +12 -0
- package/packages/router/dist/app.js.map +1 -0
- package/packages/router/dist/file-router.d.ts +36 -0
- package/packages/router/dist/file-router.d.ts.map +1 -0
- package/packages/router/dist/file-router.js +145 -0
- package/packages/router/dist/file-router.js.map +1 -0
- package/packages/router/dist/index.d.ts +6 -0
- package/packages/router/dist/index.d.ts.map +1 -0
- package/packages/router/dist/index.js +24 -0
- package/packages/router/dist/index.js.map +1 -0
- package/packages/router/dist/manifest.d.ts +10 -0
- package/packages/router/dist/manifest.d.ts.map +1 -0
- package/packages/router/dist/manifest.js +26 -0
- package/packages/router/dist/manifest.js.map +1 -0
- package/packages/router/dist/router.d.ts +31 -0
- package/packages/router/dist/router.d.ts.map +1 -0
- package/packages/router/dist/router.js +112 -0
- package/packages/router/dist/router.js.map +1 -0
- package/packages/router/dist/screen.d.ts +31 -0
- package/packages/router/dist/screen.d.ts.map +1 -0
- package/packages/router/dist/screen.js +34 -0
- package/packages/router/dist/screen.js.map +1 -0
- package/packages/router/package.json +30 -0
- package/packages/router/src/app.ts +16 -0
- package/packages/router/src/file-router.ts +181 -0
- package/packages/router/src/index.d.ts +2 -0
- package/packages/router/src/index.js +23 -0
- package/packages/router/src/index.js.map +1 -0
- package/packages/router/src/index.ts +7 -0
- package/packages/router/src/manifest.ts +27 -0
- package/packages/router/src/router.d.ts +30 -0
- package/packages/router/src/router.js +112 -0
- package/packages/router/src/router.js.map +1 -0
- package/packages/router/src/router.ts +161 -0
- package/packages/router/src/screen.d.ts +24 -0
- package/packages/router/src/screen.js +18 -0
- package/packages/router/src/screen.js.map +1 -0
- package/packages/router/src/screen.ts +68 -0
- package/packages/router/test/router.test.js +30 -0
- package/packages/router/tsconfig.json +17 -0
- package/packages/security/dist/biometric.d.ts +27 -0
- package/packages/security/dist/biometric.d.ts.map +1 -0
- package/packages/security/dist/biometric.js +63 -0
- package/packages/security/dist/biometric.js.map +1 -0
- package/packages/security/dist/index.d.ts +2 -0
- package/packages/security/dist/index.d.ts.map +1 -0
- package/packages/security/dist/index.js +21 -0
- package/packages/security/dist/index.js.map +1 -0
- package/packages/security/package.json +30 -0
- package/packages/security/src/biometric.ts +121 -0
- package/packages/security/src/index.ts +5 -0
- package/packages/security/tsconfig.json +17 -0
- package/packages/state/dist/computed.d.ts +10 -0
- package/packages/state/dist/computed.d.ts.map +1 -0
- package/packages/state/dist/computed.js +55 -0
- package/packages/state/dist/computed.js.map +1 -0
- package/packages/state/dist/context.d.ts +9 -0
- package/packages/state/dist/context.d.ts.map +1 -0
- package/packages/state/dist/context.js +36 -0
- package/packages/state/dist/context.js.map +1 -0
- package/packages/state/dist/core/src/animation/easing.d.ts +23 -0
- package/packages/state/dist/core/src/animation/easing.d.ts.map +1 -0
- package/packages/state/dist/core/src/animation/easing.js +91 -0
- package/packages/state/dist/core/src/animation/easing.js.map +1 -0
- package/packages/state/dist/core/src/animation/index.d.ts +4 -0
- package/packages/state/dist/core/src/animation/index.d.ts.map +1 -0
- package/packages/state/dist/core/src/animation/index.js +26 -0
- package/packages/state/dist/core/src/animation/index.js.map +1 -0
- package/packages/state/dist/core/src/animation/interpolate.d.ts +7 -0
- package/packages/state/dist/core/src/animation/interpolate.d.ts.map +1 -0
- package/packages/state/dist/core/src/animation/interpolate.js +83 -0
- package/packages/state/dist/core/src/animation/interpolate.js.map +1 -0
- package/packages/state/dist/core/src/animation/spring.d.ts +21 -0
- package/packages/state/dist/core/src/animation/spring.d.ts.map +1 -0
- package/packages/state/dist/core/src/animation/spring.js +79 -0
- package/packages/state/dist/core/src/animation/spring.js.map +1 -0
- package/packages/state/dist/core/src/component/component.d.ts +6 -0
- package/packages/state/dist/core/src/component/component.d.ts.map +1 -0
- package/packages/state/dist/core/src/component/component.js +14 -0
- package/packages/state/dist/core/src/component/component.js.map +1 -0
- package/packages/state/dist/core/src/component/index.d.ts +2 -0
- package/packages/state/dist/core/src/component/index.d.ts.map +1 -0
- package/packages/state/dist/core/src/component/index.js +18 -0
- package/packages/state/dist/core/src/component/index.js.map +1 -0
- package/packages/state/dist/core/src/index.d.ts +6 -0
- package/packages/state/dist/core/src/index.d.ts.map +1 -0
- package/packages/state/dist/core/src/index.js +30 -0
- package/packages/state/dist/core/src/index.js.map +1 -0
- package/packages/state/dist/core/src/scheduler/index.d.ts +2 -0
- package/packages/state/dist/core/src/scheduler/index.d.ts.map +1 -0
- package/packages/state/dist/core/src/scheduler/index.js +20 -0
- package/packages/state/dist/core/src/scheduler/index.js.map +1 -0
- package/packages/state/dist/core/src/scheduler/scheduler.d.ts +12 -0
- package/packages/state/dist/core/src/scheduler/scheduler.d.ts.map +1 -0
- package/packages/state/dist/core/src/scheduler/scheduler.js +61 -0
- package/packages/state/dist/core/src/scheduler/scheduler.js.map +1 -0
- package/packages/state/dist/core/src/tree/diff.d.ts +17 -0
- package/packages/state/dist/core/src/tree/diff.d.ts.map +1 -0
- package/packages/state/dist/core/src/tree/diff.js +67 -0
- package/packages/state/dist/core/src/tree/diff.js.map +1 -0
- package/packages/state/dist/core/src/tree/index.d.ts +4 -0
- package/packages/state/dist/core/src/tree/index.d.ts.map +1 -0
- package/packages/state/dist/core/src/tree/index.js +23 -0
- package/packages/state/dist/core/src/tree/index.js.map +1 -0
- package/packages/state/dist/core/src/tree/node.d.ts +13 -0
- package/packages/state/dist/core/src/tree/node.d.ts.map +1 -0
- package/packages/state/dist/core/src/tree/node.js +59 -0
- package/packages/state/dist/core/src/tree/node.js.map +1 -0
- package/packages/state/dist/core/src/tree/tree.d.ts +11 -0
- package/packages/state/dist/core/src/tree/tree.d.ts.map +1 -0
- package/packages/state/dist/core/src/tree/tree.js +43 -0
- package/packages/state/dist/core/src/tree/tree.js.map +1 -0
- package/packages/state/dist/effect.d.ts +13 -0
- package/packages/state/dist/effect.d.ts.map +1 -0
- package/packages/state/dist/effect.js +74 -0
- package/packages/state/dist/effect.js.map +1 -0
- package/packages/state/dist/events/dispatch.d.ts +9 -0
- package/packages/state/dist/events/dispatch.d.ts.map +1 -0
- package/packages/state/dist/events/dispatch.js +64 -0
- package/packages/state/dist/events/dispatch.js.map +1 -0
- package/packages/state/dist/events/event.d.ts +18 -0
- package/packages/state/dist/events/event.d.ts.map +1 -0
- package/packages/state/dist/events/event.js +28 -0
- package/packages/state/dist/events/event.js.map +1 -0
- package/packages/state/dist/events/hittest.d.ts +15 -0
- package/packages/state/dist/events/hittest.d.ts.map +1 -0
- package/packages/state/dist/events/hittest.js +56 -0
- package/packages/state/dist/events/hittest.js.map +1 -0
- package/packages/state/dist/events/index.d.ts +6 -0
- package/packages/state/dist/events/index.d.ts.map +1 -0
- package/packages/state/dist/events/index.js +30 -0
- package/packages/state/dist/events/index.js.map +1 -0
- package/packages/state/dist/events/ingestion.d.ts +25 -0
- package/packages/state/dist/events/ingestion.d.ts.map +1 -0
- package/packages/state/dist/events/ingestion.js +61 -0
- package/packages/state/dist/events/ingestion.js.map +1 -0
- package/packages/state/dist/events/propagation.d.ts +9 -0
- package/packages/state/dist/events/propagation.d.ts.map +1 -0
- package/packages/state/dist/events/propagation.js +58 -0
- package/packages/state/dist/events/propagation.js.map +1 -0
- package/packages/state/dist/index.d.ts +10 -0
- package/packages/state/dist/index.d.ts.map +1 -0
- package/packages/state/dist/index.js +38 -0
- package/packages/state/dist/index.js.map +1 -0
- package/packages/state/dist/reducer.d.ts +18 -0
- package/packages/state/dist/reducer.d.ts.map +1 -0
- package/packages/state/dist/reducer.js +44 -0
- package/packages/state/dist/reducer.js.map +1 -0
- package/packages/state/dist/ref.d.ts +9 -0
- package/packages/state/dist/ref.d.ts.map +1 -0
- package/packages/state/dist/ref.js +33 -0
- package/packages/state/dist/ref.js.map +1 -0
- package/packages/state/dist/state/src/computed.d.ts +10 -0
- package/packages/state/dist/state/src/computed.d.ts.map +1 -0
- package/packages/state/dist/state/src/computed.js +55 -0
- package/packages/state/dist/state/src/computed.js.map +1 -0
- package/packages/state/dist/state/src/context.d.ts +9 -0
- package/packages/state/dist/state/src/context.d.ts.map +1 -0
- package/packages/state/dist/state/src/context.js +36 -0
- package/packages/state/dist/state/src/context.js.map +1 -0
- package/packages/state/dist/state/src/effect.d.ts +13 -0
- package/packages/state/dist/state/src/effect.d.ts.map +1 -0
- package/packages/state/dist/state/src/effect.js +74 -0
- package/packages/state/dist/state/src/effect.js.map +1 -0
- package/packages/state/dist/state/src/events/dispatch.d.ts +9 -0
- package/packages/state/dist/state/src/events/dispatch.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/dispatch.js +64 -0
- package/packages/state/dist/state/src/events/dispatch.js.map +1 -0
- package/packages/state/dist/state/src/events/event.d.ts +18 -0
- package/packages/state/dist/state/src/events/event.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/event.js +28 -0
- package/packages/state/dist/state/src/events/event.js.map +1 -0
- package/packages/state/dist/state/src/events/hittest.d.ts +16 -0
- package/packages/state/dist/state/src/events/hittest.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/hittest.js +56 -0
- package/packages/state/dist/state/src/events/hittest.js.map +1 -0
- package/packages/state/dist/state/src/events/index.d.ts +6 -0
- package/packages/state/dist/state/src/events/index.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/index.js +30 -0
- package/packages/state/dist/state/src/events/index.js.map +1 -0
- package/packages/state/dist/state/src/events/ingestion.d.ts +25 -0
- package/packages/state/dist/state/src/events/ingestion.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/ingestion.js +61 -0
- package/packages/state/dist/state/src/events/ingestion.js.map +1 -0
- package/packages/state/dist/state/src/events/propagation.d.ts +10 -0
- package/packages/state/dist/state/src/events/propagation.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/propagation.js +58 -0
- package/packages/state/dist/state/src/events/propagation.js.map +1 -0
- package/packages/state/dist/state/src/index.d.ts +9 -0
- package/packages/state/dist/state/src/index.d.ts.map +1 -0
- package/packages/state/dist/state/src/index.js +36 -0
- package/packages/state/dist/state/src/index.js.map +1 -0
- package/packages/state/dist/state/src/reducer.d.ts +18 -0
- package/packages/state/dist/state/src/reducer.d.ts.map +1 -0
- package/packages/state/dist/state/src/reducer.js +44 -0
- package/packages/state/dist/state/src/reducer.js.map +1 -0
- package/packages/state/dist/state/src/ref.d.ts +9 -0
- package/packages/state/dist/state/src/ref.d.ts.map +1 -0
- package/packages/state/dist/state/src/ref.js +33 -0
- package/packages/state/dist/state/src/ref.js.map +1 -0
- package/packages/state/dist/state/src/state.d.ts +10 -0
- package/packages/state/dist/state/src/state.d.ts.map +1 -0
- package/packages/state/dist/state/src/state.js +70 -0
- package/packages/state/dist/state/src/state.js.map +1 -0
- package/packages/state/dist/state/src/store.d.ts +19 -0
- package/packages/state/dist/state/src/store.d.ts.map +1 -0
- package/packages/state/dist/state/src/store.js +42 -0
- package/packages/state/dist/state/src/store.js.map +1 -0
- package/packages/state/dist/state/src/watch.d.ts +15 -0
- package/packages/state/dist/state/src/watch.d.ts.map +1 -0
- package/packages/state/dist/state/src/watch.js +79 -0
- package/packages/state/dist/state/src/watch.js.map +1 -0
- package/packages/state/dist/state.d.ts +10 -0
- package/packages/state/dist/state.d.ts.map +1 -0
- package/packages/state/dist/state.js +69 -0
- package/packages/state/dist/state.js.map +1 -0
- package/packages/state/dist/store.d.ts +19 -0
- package/packages/state/dist/store.d.ts.map +1 -0
- package/packages/state/dist/store.js +42 -0
- package/packages/state/dist/store.js.map +1 -0
- package/packages/state/dist/watch.d.ts +15 -0
- package/packages/state/dist/watch.d.ts.map +1 -0
- package/packages/state/dist/watch.js +79 -0
- package/packages/state/dist/watch.js.map +1 -0
- package/packages/state/package.json +30 -0
- package/packages/state/src/computed.ts +75 -0
- package/packages/state/src/context.ts +56 -0
- package/packages/state/src/effect.ts +100 -0
- package/packages/state/src/events/dispatch.ts +79 -0
- package/packages/state/src/events/event.ts +97 -0
- package/packages/state/src/events/hittest.ts +95 -0
- package/packages/state/src/events/index.ts +18 -0
- package/packages/state/src/events/ingestion.ts +102 -0
- package/packages/state/src/events/propagation.ts +83 -0
- package/packages/state/src/index.ts +32 -0
- package/packages/state/src/reducer.ts +87 -0
- package/packages/state/src/ref.ts +41 -0
- package/packages/state/src/state.ts +97 -0
- package/packages/state/src/store.ts +79 -0
- package/packages/state/src/watch.ts +131 -0
- package/packages/state/test/api.test.js +16 -0
- package/packages/state/tsconfig.json +17 -0
- package/packages/states/src/computed.ts +0 -0
- package/packages/states/src/state.ts +0 -0
- package/packages/states/tsconfig.json +0 -0
- package/packages/theme/dist/animate.d.ts +72 -0
- package/packages/theme/dist/animate.d.ts.map +1 -0
- package/packages/theme/dist/animate.js +154 -0
- package/packages/theme/dist/animate.js.map +1 -0
- package/packages/theme/dist/index.d.ts +7 -0
- package/packages/theme/dist/index.d.ts.map +1 -0
- package/packages/theme/dist/index.js +32 -0
- package/packages/theme/dist/index.js.map +1 -0
- package/packages/theme/dist/style.d.ts +55 -0
- package/packages/theme/dist/style.d.ts.map +1 -0
- package/packages/theme/dist/style.js +29 -0
- package/packages/theme/dist/style.js.map +1 -0
- package/packages/theme/dist/stylesheet.d.ts +8 -0
- package/packages/theme/dist/stylesheet.d.ts.map +1 -0
- package/packages/theme/dist/stylesheet.js +22 -0
- package/packages/theme/dist/stylesheet.js.map +1 -0
- package/packages/theme/dist/theme.d.ts +23 -0
- package/packages/theme/dist/theme.d.ts.map +1 -0
- package/packages/theme/dist/theme.js +109 -0
- package/packages/theme/dist/theme.js.map +1 -0
- package/packages/theme/dist/tokens.d.ts +116 -0
- package/packages/theme/dist/tokens.d.ts.map +1 -0
- package/packages/theme/dist/tokens.js +127 -0
- package/packages/theme/dist/tokens.js.map +1 -0
- package/packages/theme/dist/variant.d.ts +17 -0
- package/packages/theme/dist/variant.d.ts.map +1 -0
- package/packages/theme/dist/variant.js +35 -0
- package/packages/theme/dist/variant.js.map +1 -0
- package/packages/theme/package.json +30 -0
- package/packages/theme/src/animate.ts +207 -0
- package/packages/theme/src/index.ts +21 -0
- package/packages/theme/src/style.ts +109 -0
- package/packages/theme/src/stylesheet.ts +40 -0
- package/packages/theme/src/theme.ts +145 -0
- package/packages/theme/src/tokens.ts +303 -0
- package/packages/theme/src/variant.ts +68 -0
- package/packages/theme/tsconfig.json +17 -0
- package/packages/ui/dist/charts/BarChart.d.ts +23 -0
- package/packages/ui/dist/charts/BarChart.d.ts.map +1 -0
- package/packages/ui/dist/charts/BarChart.js +34 -0
- package/packages/ui/dist/charts/BarChart.js.map +1 -0
- package/packages/ui/dist/charts/LineChart.d.ts +27 -0
- package/packages/ui/dist/charts/LineChart.d.ts.map +1 -0
- package/packages/ui/dist/charts/LineChart.js +35 -0
- package/packages/ui/dist/charts/LineChart.js.map +1 -0
- package/packages/ui/dist/charts/index.d.ts +3 -0
- package/packages/ui/dist/charts/index.d.ts.map +1 -0
- package/packages/ui/dist/charts/index.js +21 -0
- package/packages/ui/dist/charts/index.js.map +1 -0
- package/packages/ui/dist/conditional/If.d.ts +4 -0
- package/packages/ui/dist/conditional/If.d.ts.map +1 -0
- package/packages/ui/dist/conditional/If.js +25 -0
- package/packages/ui/dist/conditional/If.js.map +1 -0
- package/packages/ui/dist/data/List.d.ts +18 -0
- package/packages/ui/dist/data/List.d.ts.map +1 -0
- package/packages/ui/dist/data/List.js +27 -0
- package/packages/ui/dist/data/List.js.map +1 -0
- package/packages/ui/dist/data/Table.d.ts +3 -0
- package/packages/ui/dist/data/Table.d.ts.map +1 -0
- package/packages/ui/dist/data/Table.js +21 -0
- package/packages/ui/dist/data/Table.js.map +1 -0
- package/packages/ui/dist/data/index.d.ts +34 -0
- package/packages/ui/dist/data/index.d.ts.map +1 -0
- package/packages/ui/dist/data/index.js +30 -0
- package/packages/ui/dist/data/index.js.map +1 -0
- package/packages/ui/dist/display/Avatar.d.ts +18 -0
- package/packages/ui/dist/display/Avatar.d.ts.map +1 -0
- package/packages/ui/dist/display/Avatar.js +53 -0
- package/packages/ui/dist/display/Avatar.js.map +1 -0
- package/packages/ui/dist/display/Badge.d.ts +17 -0
- package/packages/ui/dist/display/Badge.d.ts.map +1 -0
- package/packages/ui/dist/display/Badge.js +31 -0
- package/packages/ui/dist/display/Badge.js.map +1 -0
- package/packages/ui/dist/display/Card.d.ts +20 -0
- package/packages/ui/dist/display/Card.d.ts.map +1 -0
- package/packages/ui/dist/display/Card.js +35 -0
- package/packages/ui/dist/display/Card.js.map +1 -0
- package/packages/ui/dist/display/Icon.d.ts +14 -0
- package/packages/ui/dist/display/Icon.d.ts.map +1 -0
- package/packages/ui/dist/display/Icon.js +23 -0
- package/packages/ui/dist/display/Icon.js.map +1 -0
- package/packages/ui/dist/display/Image.d.ts +22 -0
- package/packages/ui/dist/display/Image.d.ts.map +1 -0
- package/packages/ui/dist/display/Image.js +30 -0
- package/packages/ui/dist/display/Image.js.map +1 -0
- package/packages/ui/dist/display/index.d.ts +6 -0
- package/packages/ui/dist/display/index.d.ts.map +1 -0
- package/packages/ui/dist/display/index.js +24 -0
- package/packages/ui/dist/display/index.js.map +1 -0
- package/packages/ui/dist/feedback/EmptyState.d.ts +16 -0
- package/packages/ui/dist/feedback/EmptyState.d.ts.map +1 -0
- package/packages/ui/dist/feedback/EmptyState.js +25 -0
- package/packages/ui/dist/feedback/EmptyState.js.map +1 -0
- package/packages/ui/dist/feedback/Skeleton.d.ts +15 -0
- package/packages/ui/dist/feedback/Skeleton.d.ts.map +1 -0
- package/packages/ui/dist/feedback/Skeleton.js +24 -0
- package/packages/ui/dist/feedback/Skeleton.js.map +1 -0
- package/packages/ui/dist/feedback/Spinner.d.ts +13 -0
- package/packages/ui/dist/feedback/Spinner.d.ts.map +1 -0
- package/packages/ui/dist/feedback/Spinner.js +35 -0
- package/packages/ui/dist/feedback/Spinner.js.map +1 -0
- package/packages/ui/dist/feedback/index.d.ts +4 -0
- package/packages/ui/dist/feedback/index.d.ts.map +1 -0
- package/packages/ui/dist/feedback/index.js +22 -0
- package/packages/ui/dist/feedback/index.js.map +1 -0
- package/packages/ui/dist/index.d.ts +11 -0
- package/packages/ui/dist/index.d.ts.map +1 -0
- package/packages/ui/dist/index.js +40 -0
- package/packages/ui/dist/index.js.map +1 -0
- package/packages/ui/dist/input/Button.d.ts +26 -0
- package/packages/ui/dist/input/Button.d.ts.map +1 -0
- package/packages/ui/dist/input/Button.js +39 -0
- package/packages/ui/dist/input/Button.js.map +1 -0
- package/packages/ui/dist/input/Checkbox.d.ts +16 -0
- package/packages/ui/dist/input/Checkbox.d.ts.map +1 -0
- package/packages/ui/dist/input/Checkbox.js +25 -0
- package/packages/ui/dist/input/Checkbox.js.map +1 -0
- package/packages/ui/dist/input/Dropdown.d.ts +27 -0
- package/packages/ui/dist/input/Dropdown.d.ts.map +1 -0
- package/packages/ui/dist/input/Dropdown.js +30 -0
- package/packages/ui/dist/input/Dropdown.js.map +1 -0
- package/packages/ui/dist/input/Input.d.ts +34 -0
- package/packages/ui/dist/input/Input.d.ts.map +1 -0
- package/packages/ui/dist/input/Input.js +43 -0
- package/packages/ui/dist/input/Input.js.map +1 -0
- package/packages/ui/dist/input/SearchBar.d.ts +20 -0
- package/packages/ui/dist/input/SearchBar.d.ts.map +1 -0
- package/packages/ui/dist/input/SearchBar.js +31 -0
- package/packages/ui/dist/input/SearchBar.js.map +1 -0
- package/packages/ui/dist/input/Slider.d.ts +22 -0
- package/packages/ui/dist/input/Slider.d.ts.map +1 -0
- package/packages/ui/dist/input/Slider.js +32 -0
- package/packages/ui/dist/input/Slider.js.map +1 -0
- package/packages/ui/dist/input/Toggle.d.ts +17 -0
- package/packages/ui/dist/input/Toggle.d.ts.map +1 -0
- package/packages/ui/dist/input/Toggle.js +29 -0
- package/packages/ui/dist/input/Toggle.js.map +1 -0
- package/packages/ui/dist/input/index.d.ts +8 -0
- package/packages/ui/dist/input/index.d.ts.map +1 -0
- package/packages/ui/dist/input/index.js +26 -0
- package/packages/ui/dist/input/index.js.map +1 -0
- package/packages/ui/dist/layout/Box.d.ts +25 -0
- package/packages/ui/dist/layout/Box.d.ts.map +1 -0
- package/packages/ui/dist/layout/Box.js +34 -0
- package/packages/ui/dist/layout/Box.js.map +1 -0
- package/packages/ui/dist/layout/Column.d.ts +30 -0
- package/packages/ui/dist/layout/Column.d.ts.map +1 -0
- package/packages/ui/dist/layout/Column.js +32 -0
- package/packages/ui/dist/layout/Column.js.map +1 -0
- package/packages/ui/dist/layout/Divider.d.ts +14 -0
- package/packages/ui/dist/layout/Divider.d.ts.map +1 -0
- package/packages/ui/dist/layout/Divider.js +23 -0
- package/packages/ui/dist/layout/Divider.js.map +1 -0
- package/packages/ui/dist/layout/Grid.d.ts +17 -0
- package/packages/ui/dist/layout/Grid.d.ts.map +1 -0
- package/packages/ui/dist/layout/Grid.js +26 -0
- package/packages/ui/dist/layout/Grid.js.map +1 -0
- package/packages/ui/dist/layout/Row.d.ts +28 -0
- package/packages/ui/dist/layout/Row.d.ts.map +1 -0
- package/packages/ui/dist/layout/Row.js +29 -0
- package/packages/ui/dist/layout/Row.js.map +1 -0
- package/packages/ui/dist/layout/ScrollView.d.ts +18 -0
- package/packages/ui/dist/layout/ScrollView.d.ts.map +1 -0
- package/packages/ui/dist/layout/ScrollView.js +25 -0
- package/packages/ui/dist/layout/ScrollView.js.map +1 -0
- package/packages/ui/dist/layout/Spacer.d.ts +9 -0
- package/packages/ui/dist/layout/Spacer.d.ts.map +1 -0
- package/packages/ui/dist/layout/Spacer.js +21 -0
- package/packages/ui/dist/layout/Spacer.js.map +1 -0
- package/packages/ui/dist/layout/Stack.d.ts +14 -0
- package/packages/ui/dist/layout/Stack.d.ts.map +1 -0
- package/packages/ui/dist/layout/Stack.js +25 -0
- package/packages/ui/dist/layout/Stack.js.map +1 -0
- package/packages/ui/dist/layout/index.d.ts +9 -0
- package/packages/ui/dist/layout/index.d.ts.map +1 -0
- package/packages/ui/dist/layout/index.js +27 -0
- package/packages/ui/dist/layout/index.js.map +1 -0
- package/packages/ui/dist/navigation/BottomNav.d.ts +23 -0
- package/packages/ui/dist/navigation/BottomNav.d.ts.map +1 -0
- package/packages/ui/dist/navigation/BottomNav.js +25 -0
- package/packages/ui/dist/navigation/BottomNav.js.map +1 -0
- package/packages/ui/dist/navigation/Drawer.d.ts +18 -0
- package/packages/ui/dist/navigation/Drawer.d.ts.map +1 -0
- package/packages/ui/dist/navigation/Drawer.js +29 -0
- package/packages/ui/dist/navigation/Drawer.js.map +1 -0
- package/packages/ui/dist/navigation/TabBar.d.ts +22 -0
- package/packages/ui/dist/navigation/TabBar.d.ts.map +1 -0
- package/packages/ui/dist/navigation/TabBar.js +26 -0
- package/packages/ui/dist/navigation/TabBar.js.map +1 -0
- package/packages/ui/dist/navigation/index.d.ts +4 -0
- package/packages/ui/dist/navigation/index.d.ts.map +1 -0
- package/packages/ui/dist/navigation/index.js +22 -0
- package/packages/ui/dist/navigation/index.js.map +1 -0
- package/packages/ui/dist/overlay/Dialog.d.ts +31 -0
- package/packages/ui/dist/overlay/Dialog.d.ts.map +1 -0
- package/packages/ui/dist/overlay/Dialog.js +81 -0
- package/packages/ui/dist/overlay/Dialog.js.map +1 -0
- package/packages/ui/dist/overlay/Modal.d.ts +19 -0
- package/packages/ui/dist/overlay/Modal.d.ts.map +1 -0
- package/packages/ui/dist/overlay/Modal.js +31 -0
- package/packages/ui/dist/overlay/Modal.js.map +1 -0
- package/packages/ui/dist/overlay/Sheet.d.ts +20 -0
- package/packages/ui/dist/overlay/Sheet.d.ts.map +1 -0
- package/packages/ui/dist/overlay/Sheet.js +31 -0
- package/packages/ui/dist/overlay/Sheet.js.map +1 -0
- package/packages/ui/dist/overlay/index.d.ts +4 -0
- package/packages/ui/dist/overlay/index.d.ts.map +1 -0
- package/packages/ui/dist/overlay/index.js +22 -0
- package/packages/ui/dist/overlay/index.js.map +1 -0
- package/packages/ui/dist/typography/Code.d.ts +18 -0
- package/packages/ui/dist/typography/Code.d.ts.map +1 -0
- package/packages/ui/dist/typography/Code.js +29 -0
- package/packages/ui/dist/typography/Code.js.map +1 -0
- package/packages/ui/dist/typography/Heading.d.ts +14 -0
- package/packages/ui/dist/typography/Heading.d.ts.map +1 -0
- package/packages/ui/dist/typography/Heading.js +39 -0
- package/packages/ui/dist/typography/Heading.js.map +1 -0
- package/packages/ui/dist/typography/Markdown.d.ts +14 -0
- package/packages/ui/dist/typography/Markdown.d.ts.map +1 -0
- package/packages/ui/dist/typography/Markdown.js +27 -0
- package/packages/ui/dist/typography/Markdown.js.map +1 -0
- package/packages/ui/dist/typography/Text.d.ts +25 -0
- package/packages/ui/dist/typography/Text.d.ts.map +1 -0
- package/packages/ui/dist/typography/Text.js +34 -0
- package/packages/ui/dist/typography/Text.js.map +1 -0
- package/packages/ui/dist/typography/index.d.ts +5 -0
- package/packages/ui/dist/typography/index.d.ts.map +1 -0
- package/packages/ui/dist/typography/index.js +23 -0
- package/packages/ui/dist/typography/index.js.map +1 -0
- package/packages/ui/package.json +35 -0
- package/packages/ui/src/charts/BarChart.ts +86 -0
- package/packages/ui/src/charts/LineChart.ts +98 -0
- package/packages/ui/src/charts/index.ts +5 -0
- package/packages/ui/src/conditional/If.ts +30 -0
- package/packages/ui/src/data/List.ts +72 -0
- package/packages/ui/src/data/Table.ts +5 -0
- package/packages/ui/src/data/index.ts +111 -0
- package/packages/ui/src/display/Avatar.ts +93 -0
- package/packages/ui/src/display/Badge.ts +72 -0
- package/packages/ui/src/display/Card.ts +82 -0
- package/packages/ui/src/display/Icon.ts +75 -0
- package/packages/ui/src/display/Image.ts +80 -0
- package/packages/ui/src/display/index.ts +8 -0
- package/packages/ui/src/feedback/EmptyState.ts +56 -0
- package/packages/ui/src/feedback/Skeleton.ts +53 -0
- package/packages/ui/src/feedback/Spinner.ts +61 -0
- package/packages/ui/src/feedback/index.ts +6 -0
- package/packages/ui/src/index.ts +33 -0
- package/packages/ui/src/input/Button.ts +104 -0
- package/packages/ui/src/input/Checkbox.ts +58 -0
- package/packages/ui/src/input/Dropdown.ts +92 -0
- package/packages/ui/src/input/Input.ts +138 -0
- package/packages/ui/src/input/SearchBar.ts +77 -0
- package/packages/ui/src/input/Slider.ts +82 -0
- package/packages/ui/src/input/Toggle.ts +65 -0
- package/packages/ui/src/input/index.ts +10 -0
- package/packages/ui/src/layout/Box.ts +94 -0
- package/packages/ui/src/layout/Column.ts +86 -0
- package/packages/ui/src/layout/Divider.ts +50 -0
- package/packages/ui/src/layout/Grid.ts +62 -0
- package/packages/ui/src/layout/Row.ts +77 -0
- package/packages/ui/src/layout/ScrollView.ts +64 -0
- package/packages/ui/src/layout/Spacer.ts +34 -0
- package/packages/ui/src/layout/Stack.ts +54 -0
- package/packages/ui/src/layout/index.ts +11 -0
- package/packages/ui/src/navigation/BottomNav.ts +73 -0
- package/packages/ui/src/navigation/Drawer.ts +72 -0
- package/packages/ui/src/navigation/TabBar.ts +73 -0
- package/packages/ui/src/navigation/index.ts +6 -0
- package/packages/ui/src/overlay/Dialog.ts +124 -0
- package/packages/ui/src/overlay/Modal.ts +76 -0
- package/packages/ui/src/overlay/Sheet.ts +79 -0
- package/packages/ui/src/overlay/index.ts +6 -0
- package/packages/ui/src/typography/Code.ts +88 -0
- package/packages/ui/src/typography/Heading.ts +70 -0
- package/packages/ui/src/typography/Markdown.ts +56 -0
- package/packages/ui/src/typography/Text.ts +104 -0
- package/packages/ui/src/typography/index.ts +7 -0
- package/packages/ui/tsconfig.json +18 -0
- package/packages/updater/dist/index.d.ts +2 -0
- package/packages/updater/dist/index.d.ts.map +1 -0
- package/packages/updater/dist/index.js +20 -0
- package/packages/updater/dist/index.js.map +1 -0
- package/packages/updater/dist/updater.d.ts +49 -0
- package/packages/updater/dist/updater.d.ts.map +1 -0
- package/packages/updater/dist/updater.js +119 -0
- package/packages/updater/dist/updater.js.map +1 -0
- package/packages/updater/package.json +30 -0
- package/packages/updater/src/index.ts +4 -0
- package/packages/updater/src/updater.ts +254 -0
- package/packages/updater/tsconfig.json +17 -0
- package/prompt-app/addlibrary.ts +7 -0
- package/prompt-app/app.dtx +27 -0
- package/prompt-app/package.json +13 -0
- package/prompt-app/screens/Home.dtx +20 -0
- package/prompt-app/tsconfig.json +8 -0
- package/tools/build/build.js +38 -0
- package/tools/build/publish.js +39 -0
- package/tools/build/test.js +24 -0
- package/ts-app/addlibrary.ts +7 -0
- package/ts-app/app.ts +29 -0
- package/ts-app/package.json +13 -0
- package/ts-app/screens/Home.ts +20 -0
- package/ts-app/tsconfig.json +8 -0
- package/tsconfig.json +13 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export namespace util {
|
|
2
|
+
/**
|
|
3
|
+
* Retrieves a header name and returns its lowercase value.
|
|
4
|
+
* @param value Header name
|
|
5
|
+
*/
|
|
6
|
+
export function headerNameToString(value: string | Buffer): string;
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Receives a header object and returns the parsed value.
|
|
10
|
+
* @param headers Header object
|
|
11
|
+
* @param obj Object to specify a proxy object. Used to assign parsed values.
|
|
12
|
+
* @returns If `obj` is specified, it is equivalent to `obj`.
|
|
13
|
+
*/
|
|
14
|
+
export function parseHeaders(
|
|
15
|
+
headers: (Buffer | string | (Buffer | string)[])[],
|
|
16
|
+
obj?: Record<string, string | string[]>
|
|
17
|
+
): Record<string, string | string[]>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
// These types are not exported, and are only used internally
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Take in an unknown value and return one that is of type T
|
|
5
|
+
*/
|
|
6
|
+
type Converter<T> = (object: unknown) => T
|
|
7
|
+
|
|
8
|
+
type SequenceConverter<T> = (object: unknown, iterable?: IterableIterator<T>) => T[]
|
|
9
|
+
|
|
10
|
+
type RecordConverter<K extends string, V> = (object: unknown) => Record<K, V>
|
|
11
|
+
|
|
12
|
+
interface ConvertToIntOpts {
|
|
13
|
+
clamp?: boolean
|
|
14
|
+
enforceRange?: boolean
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
interface WebidlErrors {
|
|
18
|
+
exception (opts: { header: string, message: string }): TypeError
|
|
19
|
+
/**
|
|
20
|
+
* @description Throw an error when conversion from one type to another has failed
|
|
21
|
+
*/
|
|
22
|
+
conversionFailed (opts: {
|
|
23
|
+
prefix: string
|
|
24
|
+
argument: string
|
|
25
|
+
types: string[]
|
|
26
|
+
}): TypeError
|
|
27
|
+
/**
|
|
28
|
+
* @description Throw an error when an invalid argument is provided
|
|
29
|
+
*/
|
|
30
|
+
invalidArgument (opts: {
|
|
31
|
+
prefix: string
|
|
32
|
+
value: string
|
|
33
|
+
type: string
|
|
34
|
+
}): TypeError
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
interface WebidlUtil {
|
|
38
|
+
/**
|
|
39
|
+
* @see https://tc39.es/ecma262/#sec-ecmascript-data-types-and-values
|
|
40
|
+
*/
|
|
41
|
+
Type (object: unknown):
|
|
42
|
+
| 'Undefined'
|
|
43
|
+
| 'Boolean'
|
|
44
|
+
| 'String'
|
|
45
|
+
| 'Symbol'
|
|
46
|
+
| 'Number'
|
|
47
|
+
| 'BigInt'
|
|
48
|
+
| 'Null'
|
|
49
|
+
| 'Object'
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* @see https://webidl.spec.whatwg.org/#abstract-opdef-converttoint
|
|
53
|
+
*/
|
|
54
|
+
ConvertToInt (
|
|
55
|
+
V: unknown,
|
|
56
|
+
bitLength: number,
|
|
57
|
+
signedness: 'signed' | 'unsigned',
|
|
58
|
+
opts?: ConvertToIntOpts
|
|
59
|
+
): number
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* @see https://webidl.spec.whatwg.org/#abstract-opdef-converttoint
|
|
63
|
+
*/
|
|
64
|
+
IntegerPart (N: number): number
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Stringifies {@param V}
|
|
68
|
+
*/
|
|
69
|
+
Stringify (V: any): string
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Mark a value as uncloneable for Node.js.
|
|
73
|
+
* This is only effective in some newer Node.js versions.
|
|
74
|
+
*/
|
|
75
|
+
markAsUncloneable (V: any): void
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
interface WebidlConverters {
|
|
79
|
+
/**
|
|
80
|
+
* @see https://webidl.spec.whatwg.org/#es-DOMString
|
|
81
|
+
*/
|
|
82
|
+
DOMString (V: unknown, prefix: string, argument: string, opts?: {
|
|
83
|
+
legacyNullToEmptyString: boolean
|
|
84
|
+
}): string
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* @see https://webidl.spec.whatwg.org/#es-ByteString
|
|
88
|
+
*/
|
|
89
|
+
ByteString (V: unknown, prefix: string, argument: string): string
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* @see https://webidl.spec.whatwg.org/#es-USVString
|
|
93
|
+
*/
|
|
94
|
+
USVString (V: unknown): string
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* @see https://webidl.spec.whatwg.org/#es-boolean
|
|
98
|
+
*/
|
|
99
|
+
boolean (V: unknown): boolean
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* @see https://webidl.spec.whatwg.org/#es-any
|
|
103
|
+
*/
|
|
104
|
+
any <Value>(V: Value): Value
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* @see https://webidl.spec.whatwg.org/#es-long-long
|
|
108
|
+
*/
|
|
109
|
+
['long long'] (V: unknown): number
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* @see https://webidl.spec.whatwg.org/#es-unsigned-long-long
|
|
113
|
+
*/
|
|
114
|
+
['unsigned long long'] (V: unknown): number
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* @see https://webidl.spec.whatwg.org/#es-unsigned-long
|
|
118
|
+
*/
|
|
119
|
+
['unsigned long'] (V: unknown): number
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* @see https://webidl.spec.whatwg.org/#es-unsigned-short
|
|
123
|
+
*/
|
|
124
|
+
['unsigned short'] (V: unknown, opts?: ConvertToIntOpts): number
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* @see https://webidl.spec.whatwg.org/#idl-ArrayBuffer
|
|
128
|
+
*/
|
|
129
|
+
ArrayBuffer (V: unknown): ArrayBufferLike
|
|
130
|
+
ArrayBuffer (V: unknown, opts: { allowShared: false }): ArrayBuffer
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* @see https://webidl.spec.whatwg.org/#es-buffer-source-types
|
|
134
|
+
*/
|
|
135
|
+
TypedArray (
|
|
136
|
+
V: unknown,
|
|
137
|
+
TypedArray: NodeJS.TypedArray | ArrayBufferLike
|
|
138
|
+
): NodeJS.TypedArray | ArrayBufferLike
|
|
139
|
+
TypedArray (
|
|
140
|
+
V: unknown,
|
|
141
|
+
TypedArray: NodeJS.TypedArray | ArrayBufferLike,
|
|
142
|
+
opts?: { allowShared: false }
|
|
143
|
+
): NodeJS.TypedArray | ArrayBuffer
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* @see https://webidl.spec.whatwg.org/#es-buffer-source-types
|
|
147
|
+
*/
|
|
148
|
+
DataView (V: unknown, opts?: { allowShared: boolean }): DataView
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* @see https://webidl.spec.whatwg.org/#BufferSource
|
|
152
|
+
*/
|
|
153
|
+
BufferSource (
|
|
154
|
+
V: unknown,
|
|
155
|
+
opts?: { allowShared: boolean }
|
|
156
|
+
): NodeJS.TypedArray | ArrayBufferLike | DataView
|
|
157
|
+
|
|
158
|
+
['sequence<ByteString>']: SequenceConverter<string>
|
|
159
|
+
|
|
160
|
+
['sequence<sequence<ByteString>>']: SequenceConverter<string[]>
|
|
161
|
+
|
|
162
|
+
['record<ByteString, ByteString>']: RecordConverter<string, string>
|
|
163
|
+
|
|
164
|
+
[Key: string]: (...args: any[]) => unknown
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
export interface Webidl {
|
|
168
|
+
errors: WebidlErrors
|
|
169
|
+
util: WebidlUtil
|
|
170
|
+
converters: WebidlConverters
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* @description Performs a brand-check on {@param V} to ensure it is a
|
|
174
|
+
* {@param cls} object.
|
|
175
|
+
*/
|
|
176
|
+
brandCheck <Interface>(V: unknown, cls: Interface, opts?: { strict?: boolean }): asserts V is Interface
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* @see https://webidl.spec.whatwg.org/#es-sequence
|
|
180
|
+
* @description Convert a value, V, to a WebIDL sequence type.
|
|
181
|
+
*/
|
|
182
|
+
sequenceConverter <Type>(C: Converter<Type>): SequenceConverter<Type>
|
|
183
|
+
|
|
184
|
+
illegalConstructor (): never
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* @see https://webidl.spec.whatwg.org/#es-to-record
|
|
188
|
+
* @description Convert a value, V, to a WebIDL record type.
|
|
189
|
+
*/
|
|
190
|
+
recordConverter <K extends string, V>(
|
|
191
|
+
keyConverter: Converter<K>,
|
|
192
|
+
valueConverter: Converter<V>
|
|
193
|
+
): RecordConverter<K, V>
|
|
194
|
+
|
|
195
|
+
/**
|
|
196
|
+
* Similar to {@link Webidl.brandCheck} but allows skipping the check if third party
|
|
197
|
+
* interfaces are allowed.
|
|
198
|
+
*/
|
|
199
|
+
interfaceConverter <Interface>(cls: Interface): (
|
|
200
|
+
V: unknown,
|
|
201
|
+
opts?: { strict: boolean }
|
|
202
|
+
) => asserts V is typeof cls
|
|
203
|
+
|
|
204
|
+
// TODO(@KhafraDev): a type could likely be implemented that can infer the return type
|
|
205
|
+
// from the converters given?
|
|
206
|
+
/**
|
|
207
|
+
* Converts a value, V, to a WebIDL dictionary types. Allows limiting which keys are
|
|
208
|
+
* allowed, values allowed, optional and required keys. Auto converts the value to
|
|
209
|
+
* a type given a converter.
|
|
210
|
+
*/
|
|
211
|
+
dictionaryConverter (converters: {
|
|
212
|
+
key: string,
|
|
213
|
+
defaultValue?: () => unknown,
|
|
214
|
+
required?: boolean,
|
|
215
|
+
converter: (...args: unknown[]) => unknown,
|
|
216
|
+
allowedValues?: unknown[]
|
|
217
|
+
}[]): (V: unknown) => Record<string, unknown>
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* @see https://webidl.spec.whatwg.org/#idl-nullable-type
|
|
221
|
+
* @description allows a type, V, to be null
|
|
222
|
+
*/
|
|
223
|
+
nullableConverter <T>(
|
|
224
|
+
converter: Converter<T>
|
|
225
|
+
): (V: unknown) => ReturnType<typeof converter> | null
|
|
226
|
+
|
|
227
|
+
argumentLengthCheck (args: { length: number }, min: number, context: string): void
|
|
228
|
+
}
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
|
|
3
|
+
import type { Blob } from 'buffer'
|
|
4
|
+
import type { MessagePort } from 'worker_threads'
|
|
5
|
+
import {
|
|
6
|
+
EventInit,
|
|
7
|
+
EventListenerOptions,
|
|
8
|
+
AddEventListenerOptions,
|
|
9
|
+
EventListenerOrEventListenerObject
|
|
10
|
+
} from './patch'
|
|
11
|
+
import Dispatcher from './dispatcher'
|
|
12
|
+
import { HeadersInit } from './fetch'
|
|
13
|
+
|
|
14
|
+
export type BinaryType = 'blob' | 'arraybuffer'
|
|
15
|
+
|
|
16
|
+
interface WebSocketEventMap {
|
|
17
|
+
close: CloseEvent
|
|
18
|
+
error: ErrorEvent
|
|
19
|
+
message: MessageEvent
|
|
20
|
+
open: Event
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
interface WebSocket extends EventTarget {
|
|
24
|
+
binaryType: BinaryType
|
|
25
|
+
|
|
26
|
+
readonly bufferedAmount: number
|
|
27
|
+
readonly extensions: string
|
|
28
|
+
|
|
29
|
+
onclose: ((this: WebSocket, ev: WebSocketEventMap['close']) => any) | null
|
|
30
|
+
onerror: ((this: WebSocket, ev: WebSocketEventMap['error']) => any) | null
|
|
31
|
+
onmessage: ((this: WebSocket, ev: WebSocketEventMap['message']) => any) | null
|
|
32
|
+
onopen: ((this: WebSocket, ev: WebSocketEventMap['open']) => any) | null
|
|
33
|
+
|
|
34
|
+
readonly protocol: string
|
|
35
|
+
readonly readyState: number
|
|
36
|
+
readonly url: string
|
|
37
|
+
|
|
38
|
+
close(code?: number, reason?: string): void
|
|
39
|
+
send(data: string | ArrayBufferLike | Blob | ArrayBufferView): void
|
|
40
|
+
|
|
41
|
+
readonly CLOSED: number
|
|
42
|
+
readonly CLOSING: number
|
|
43
|
+
readonly CONNECTING: number
|
|
44
|
+
readonly OPEN: number
|
|
45
|
+
|
|
46
|
+
addEventListener<K extends keyof WebSocketEventMap>(
|
|
47
|
+
type: K,
|
|
48
|
+
listener: (this: WebSocket, ev: WebSocketEventMap[K]) => any,
|
|
49
|
+
options?: boolean | AddEventListenerOptions
|
|
50
|
+
): void
|
|
51
|
+
addEventListener(
|
|
52
|
+
type: string,
|
|
53
|
+
listener: EventListenerOrEventListenerObject,
|
|
54
|
+
options?: boolean | AddEventListenerOptions
|
|
55
|
+
): void
|
|
56
|
+
removeEventListener<K extends keyof WebSocketEventMap>(
|
|
57
|
+
type: K,
|
|
58
|
+
listener: (this: WebSocket, ev: WebSocketEventMap[K]) => any,
|
|
59
|
+
options?: boolean | EventListenerOptions
|
|
60
|
+
): void
|
|
61
|
+
removeEventListener(
|
|
62
|
+
type: string,
|
|
63
|
+
listener: EventListenerOrEventListenerObject,
|
|
64
|
+
options?: boolean | EventListenerOptions
|
|
65
|
+
): void
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export declare const WebSocket: {
|
|
69
|
+
prototype: WebSocket
|
|
70
|
+
new (url: string | URL, protocols?: string | string[] | WebSocketInit): WebSocket
|
|
71
|
+
readonly CLOSED: number
|
|
72
|
+
readonly CLOSING: number
|
|
73
|
+
readonly CONNECTING: number
|
|
74
|
+
readonly OPEN: number
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
interface CloseEventInit extends EventInit {
|
|
78
|
+
code?: number
|
|
79
|
+
reason?: string
|
|
80
|
+
wasClean?: boolean
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
interface CloseEvent extends Event {
|
|
84
|
+
readonly code: number
|
|
85
|
+
readonly reason: string
|
|
86
|
+
readonly wasClean: boolean
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export declare const CloseEvent: {
|
|
90
|
+
prototype: CloseEvent
|
|
91
|
+
new (type: string, eventInitDict?: CloseEventInit): CloseEvent
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
interface MessageEventInit<T = any> extends EventInit {
|
|
95
|
+
data?: T
|
|
96
|
+
lastEventId?: string
|
|
97
|
+
origin?: string
|
|
98
|
+
ports?: (typeof MessagePort)[]
|
|
99
|
+
source?: typeof MessagePort | null
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
interface MessageEvent<T = any> extends Event {
|
|
103
|
+
readonly data: T
|
|
104
|
+
readonly lastEventId: string
|
|
105
|
+
readonly origin: string
|
|
106
|
+
readonly ports: ReadonlyArray<typeof MessagePort>
|
|
107
|
+
readonly source: typeof MessagePort | null
|
|
108
|
+
initMessageEvent(
|
|
109
|
+
type: string,
|
|
110
|
+
bubbles?: boolean,
|
|
111
|
+
cancelable?: boolean,
|
|
112
|
+
data?: any,
|
|
113
|
+
origin?: string,
|
|
114
|
+
lastEventId?: string,
|
|
115
|
+
source?: typeof MessagePort | null,
|
|
116
|
+
ports?: (typeof MessagePort)[]
|
|
117
|
+
): void;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
export declare const MessageEvent: {
|
|
121
|
+
prototype: MessageEvent
|
|
122
|
+
new<T>(type: string, eventInitDict?: MessageEventInit<T>): MessageEvent<T>
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
interface ErrorEventInit extends EventInit {
|
|
126
|
+
message?: string
|
|
127
|
+
filename?: string
|
|
128
|
+
lineno?: number
|
|
129
|
+
colno?: number
|
|
130
|
+
error?: any
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
interface ErrorEvent extends Event {
|
|
134
|
+
readonly message: string
|
|
135
|
+
readonly filename: string
|
|
136
|
+
readonly lineno: number
|
|
137
|
+
readonly colno: number
|
|
138
|
+
readonly error: any
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export declare const ErrorEvent: {
|
|
142
|
+
prototype: ErrorEvent
|
|
143
|
+
new (type: string, eventInitDict?: ErrorEventInit): ErrorEvent
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
interface WebSocketInit {
|
|
147
|
+
protocols?: string | string[],
|
|
148
|
+
dispatcher?: Dispatcher,
|
|
149
|
+
headers?: HeadersInit
|
|
150
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@deskforge/deskforge-app",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"main": "dist/App.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "tsc -p ./tsconfig.json",
|
|
8
|
+
"start": "npm run build && node dist/App.js"
|
|
9
|
+
},
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@deskforge/core": "1.0.0",
|
|
12
|
+
"@deskforge/router": "1.0.0",
|
|
13
|
+
"@deskforge/renderer": "1.0.0"
|
|
14
|
+
},
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"typescript": "^5.0.0",
|
|
17
|
+
"@types/node": "^20.11.0"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Screen as RouterScreen, type ScreenParams } from '@deskforge/router'
|
|
2
|
+
import { Screen, Text, View } from '../ui/Responsive'
|
|
3
|
+
|
|
4
|
+
export default function DetailsScreen(params: ScreenParams = {}) {
|
|
5
|
+
const noteId = String(params.noteId ?? 'unknown')
|
|
6
|
+
|
|
7
|
+
return Screen({ style: { background: '#f8fafc', padding: 24 } })
|
|
8
|
+
.add(
|
|
9
|
+
View({ style: { background: '#ffffff', borderRadius: 24, padding: 24 } }),
|
|
10
|
+
Text('Details Screen', { style: { fontSize: 28, fontWeight: '700' } }),
|
|
11
|
+
Text(`Selected note ID: ${noteId}`, { style: { color: '#4b5563', fontSize: 16 } }),
|
|
12
|
+
Text('This screen demonstrates params passed through navigation.', { style: { color: '#6b7280', fontSize: 14 } }),
|
|
13
|
+
)
|
|
14
|
+
.build()
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export const DetailsRoute = RouterScreen(
|
|
18
|
+
DetailsScreen,
|
|
19
|
+
{ title: 'Details', layout: 'app' },
|
|
20
|
+
)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Screen as RouterScreen, type ScreenParams } from '@deskforge/router'
|
|
2
|
+
import { Screen, Text, View } from '../ui/Responsive'
|
|
3
|
+
|
|
4
|
+
export default function HomeScreen(params: ScreenParams = {}) {
|
|
5
|
+
return Screen({ style: { background: '#f8fafc', padding: 24 } })
|
|
6
|
+
.add(
|
|
7
|
+
View({ style: { background: '#ffffff', borderRadius: 24, padding: 24 } }),
|
|
8
|
+
Text('Home Screen', { style: { fontSize: 28, fontWeight: '700' } }),
|
|
9
|
+
Text('This is an Expo-style example app with screen-based navigation.', { style: { color: '#4b5563', fontSize: 16 } }),
|
|
10
|
+
Text(`Screen params: ${JSON.stringify(params)}`, { style: { color: '#6b7280', fontSize: 14 } }),
|
|
11
|
+
Text('In a full DeskForge app, this button would call Router.go(\'details\', { noteId: 42 })', { style: { color: '#6b7280', fontSize: 14 } }),
|
|
12
|
+
)
|
|
13
|
+
.build()
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export const HomeRoute = RouterScreen(
|
|
17
|
+
HomeScreen,
|
|
18
|
+
{ title: 'Home', layout: 'app' },
|
|
19
|
+
)
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { createNode } from '@deskforge/core'
|
|
2
|
+
import type { DFNode } from '@deskforge/core'
|
|
3
|
+
|
|
4
|
+
export interface Renderable {
|
|
5
|
+
toNode(): DFNode
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export interface ResponsiveOptions {
|
|
9
|
+
style?: Record<string, unknown>
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
interface ComponentProps {
|
|
13
|
+
style?: Record<string, unknown>
|
|
14
|
+
children?: Array<DFNode | Renderable | string | number>
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
interface BoxLike {
|
|
18
|
+
(props?: ComponentProps, children?: Array<DFNode | Renderable | string | number>): DFNode
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
function createText(value: string | number, props: ComponentProps = {}): DFNode {
|
|
22
|
+
return createNode('text', {
|
|
23
|
+
text: String(value),
|
|
24
|
+
fill: '#111827',
|
|
25
|
+
font: '16px sans-serif',
|
|
26
|
+
style: props.style,
|
|
27
|
+
})
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
function createView(props: ComponentProps = {}, children: Array<DFNode | Renderable | string | number> = []): DFNode {
|
|
31
|
+
return createNode('view', {
|
|
32
|
+
fill: 'transparent',
|
|
33
|
+
style: props.style,
|
|
34
|
+
}, children.map(normalizeNode))
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function normalizeNode(item: DFNode | Renderable | string | number): DFNode {
|
|
38
|
+
if (typeof item === 'string' || typeof item === 'number') {
|
|
39
|
+
return createText(item)
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
if (item && typeof item === 'object' && 'toNode' in item) {
|
|
43
|
+
return (item as Renderable).toNode()
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
return item as DFNode
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
function createContainer(type: 'screen' | 'window', options: ResponsiveOptions = {}) {
|
|
50
|
+
const children: Array<DFNode | Renderable | string | number> = []
|
|
51
|
+
const root = createNode(
|
|
52
|
+
'view',
|
|
53
|
+
{
|
|
54
|
+
style: {
|
|
55
|
+
background: options.style?.background ?? (type === 'window' ? '#f7f8fb' : '#f8fafc'),
|
|
56
|
+
padding: options.style?.padding ?? 24,
|
|
57
|
+
borderRadius: options.style?.borderRadius ?? (type === 'window' ? 32 : 24),
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
[],
|
|
61
|
+
)
|
|
62
|
+
|
|
63
|
+
const container = {
|
|
64
|
+
add(...items: Array<DFNode | Renderable | string | number>) {
|
|
65
|
+
children.push(...items)
|
|
66
|
+
root.children = children.map(normalizeNode)
|
|
67
|
+
return container
|
|
68
|
+
},
|
|
69
|
+
build() {
|
|
70
|
+
return root
|
|
71
|
+
},
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
return container
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
function Screen(options: ResponsiveOptions = {}) {
|
|
78
|
+
return createContainer('screen', options)
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
function Window(options: ResponsiveOptions = {}) {
|
|
82
|
+
return createContainer('window', options)
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
const Text = createText
|
|
86
|
+
const View: BoxLike = (props = {}, children = []) => createView(props, children)
|
|
87
|
+
|
|
88
|
+
export { Screen, Window, Text, View }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Responsive'
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2020",
|
|
4
|
+
"module": "Node16",
|
|
5
|
+
"moduleResolution": "Node16",
|
|
6
|
+
"rootDir": "../..",
|
|
7
|
+
"outDir": "./dist",
|
|
8
|
+
"strict": true,
|
|
9
|
+
"declaration": true,
|
|
10
|
+
"sourceMap": true,
|
|
11
|
+
"skipLibCheck": true,
|
|
12
|
+
"types": ["node"],
|
|
13
|
+
"paths": {
|
|
14
|
+
"@deskforge/core": ["../../packages/core/src/index"],
|
|
15
|
+
"@deskforge/core/*": ["../../packages/core/src/*"],
|
|
16
|
+
"@deskforge/router": ["../../packages/router/src/index"],
|
|
17
|
+
"@deskforge/router/*": ["../../packages/router/src/*"],
|
|
18
|
+
"@deskforge/renderer": ["../../packages/renderer/src/index"],
|
|
19
|
+
"@deskforge/renderer/*": ["../../packages/renderer/src/*"]
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"include": ["App.ts", "src/**/*"],
|
|
23
|
+
"exclude": ["node_modules", "dist"]
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// app.ts
|
|
3
|
+
// Minimal NoteKeeper example application entry.
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
const core_1 = require("@deskforge/core");
|
|
6
|
+
const renderer_1 = require("@deskforge/renderer");
|
|
7
|
+
async function main() {
|
|
8
|
+
const root = (0, core_1.createNode)('view', {
|
|
9
|
+
x: 0,
|
|
10
|
+
y: 0,
|
|
11
|
+
width: 800,
|
|
12
|
+
height: 600,
|
|
13
|
+
fill: '#f7f8fb'
|
|
14
|
+
}, [
|
|
15
|
+
(0, core_1.createNode)('rect', {
|
|
16
|
+
x: 20,
|
|
17
|
+
y: 20,
|
|
18
|
+
width: 760,
|
|
19
|
+
height: 140,
|
|
20
|
+
fill: '#2563eb',
|
|
21
|
+
radius: 24
|
|
22
|
+
}),
|
|
23
|
+
(0, core_1.createNode)('text', {
|
|
24
|
+
x: 40,
|
|
25
|
+
y: 60,
|
|
26
|
+
text: 'DeskForge NoteKeeper',
|
|
27
|
+
font: 'bold 32px sans-serif',
|
|
28
|
+
fill: '#ffffff'
|
|
29
|
+
}),
|
|
30
|
+
(0, core_1.createNode)('text', {
|
|
31
|
+
x: 40,
|
|
32
|
+
y: 110,
|
|
33
|
+
text: 'A lightweight app framework powered by DeskForge',
|
|
34
|
+
font: '16px sans-serif',
|
|
35
|
+
fill: '#dbeafe'
|
|
36
|
+
}),
|
|
37
|
+
(0, core_1.createNode)('rect', {
|
|
38
|
+
x: 20,
|
|
39
|
+
y: 200,
|
|
40
|
+
width: 220,
|
|
41
|
+
height: 60,
|
|
42
|
+
fill: '#10b981',
|
|
43
|
+
radius: 18
|
|
44
|
+
}),
|
|
45
|
+
(0, core_1.createNode)('text', {
|
|
46
|
+
x: 52,
|
|
47
|
+
y: 240,
|
|
48
|
+
text: 'Create Note',
|
|
49
|
+
font: '16px sans-serif',
|
|
50
|
+
fill: '#ffffff'
|
|
51
|
+
}),
|
|
52
|
+
(0, core_1.createNode)('rect', {
|
|
53
|
+
x: 20,
|
|
54
|
+
y: 280,
|
|
55
|
+
width: 760,
|
|
56
|
+
height: 260,
|
|
57
|
+
fill: '#ffffff',
|
|
58
|
+
radius: 20,
|
|
59
|
+
stroke: '#e5e7eb'
|
|
60
|
+
}),
|
|
61
|
+
(0, core_1.createNode)('text', {
|
|
62
|
+
x: 40,
|
|
63
|
+
y: 320,
|
|
64
|
+
text: 'Welcome to the DeskForge example app.',
|
|
65
|
+
font: '18px sans-serif',
|
|
66
|
+
fill: '#111827'
|
|
67
|
+
}),
|
|
68
|
+
(0, core_1.createNode)('text', {
|
|
69
|
+
x: 40,
|
|
70
|
+
y: 355,
|
|
71
|
+
text: 'Render engine, reactive state, and UI framework are all wired up.',
|
|
72
|
+
font: '14px sans-serif',
|
|
73
|
+
fill: '#4b5563'
|
|
74
|
+
}),
|
|
75
|
+
(0, core_1.createNode)('text', {
|
|
76
|
+
x: 40,
|
|
77
|
+
y: 390,
|
|
78
|
+
text: 'Build with `npm run build` and run with `npm run start`.',
|
|
79
|
+
font: '14px sans-serif',
|
|
80
|
+
fill: '#4b5563'
|
|
81
|
+
})
|
|
82
|
+
]);
|
|
83
|
+
const renderer = new renderer_1.Renderer({
|
|
84
|
+
width: 800,
|
|
85
|
+
height: 600,
|
|
86
|
+
backgroundColor: '#f7f8fb'
|
|
87
|
+
});
|
|
88
|
+
renderer.renderNode(root);
|
|
89
|
+
await renderer.saveAs('./dist/notekeeper.png');
|
|
90
|
+
console.log('Rendered NoteKeeper app to dist/notekeeper.png');
|
|
91
|
+
}
|
|
92
|
+
main().catch(err => {
|
|
93
|
+
console.error(err);
|
|
94
|
+
process.exit(1);
|
|
95
|
+
});
|
|
96
|
+
//# sourceMappingURL=app.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.js","sourceRoot":"","sources":["../src/app.ts"],"names":[],"mappings":";AAAA,SAAS;AACT,gDAAgD;;AAEhD,0CAA4C;AAC5C,kDAA8C;AAE9C,KAAK,UAAU,IAAI;IACjB,MAAM,IAAI,GAAG,IAAA,iBAAU,EAAC,MAAM,EAAE;QAC9B,CAAC,EAAE,CAAC;QACJ,CAAC,EAAE,CAAC;QACJ,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,GAAG;QACX,IAAI,EAAE,SAAS;KAChB,EAAE;QACD,IAAA,iBAAU,EAAC,MAAM,EAAE;YACjB,CAAC,EAAE,EAAE;YACL,CAAC,EAAE,EAAE;YACL,KAAK,EAAE,GAAG;YACV,MAAM,EAAE,GAAG;YACX,IAAI,EAAE,SAAS;YACf,MAAM,EAAE,EAAE;SACX,CAAC;QACF,IAAA,iBAAU,EAAC,MAAM,EAAE;YACjB,CAAC,EAAE,EAAE;YACL,CAAC,EAAE,EAAE;YACL,IAAI,EAAE,sBAAsB;YAC5B,IAAI,EAAE,sBAAsB;YAC5B,IAAI,EAAE,SAAS;SAChB,CAAC;QACF,IAAA,iBAAU,EAAC,MAAM,EAAE;YACjB,CAAC,EAAE,EAAE;YACL,CAAC,EAAE,GAAG;YACN,IAAI,EAAE,kDAAkD;YACxD,IAAI,EAAE,iBAAiB;YACvB,IAAI,EAAE,SAAS;SAChB,CAAC;QACF,IAAA,iBAAU,EAAC,MAAM,EAAE;YACjB,CAAC,EAAE,EAAE;YACL,CAAC,EAAE,GAAG;YACN,KAAK,EAAE,GAAG;YACV,MAAM,EAAE,EAAE;YACV,IAAI,EAAE,SAAS;YACf,MAAM,EAAE,EAAE;SACX,CAAC;QACF,IAAA,iBAAU,EAAC,MAAM,EAAE;YACjB,CAAC,EAAE,EAAE;YACL,CAAC,EAAE,GAAG;YACN,IAAI,EAAE,aAAa;YACnB,IAAI,EAAE,iBAAiB;YACvB,IAAI,EAAE,SAAS;SAChB,CAAC;QACF,IAAA,iBAAU,EAAC,MAAM,EAAE;YACjB,CAAC,EAAE,EAAE;YACL,CAAC,EAAE,GAAG;YACN,KAAK,EAAE,GAAG;YACV,MAAM,EAAE,GAAG;YACX,IAAI,EAAE,SAAS;YACf,MAAM,EAAE,EAAE;YACV,MAAM,EAAE,SAAS;SAClB,CAAC;QACF,IAAA,iBAAU,EAAC,MAAM,EAAE;YACjB,CAAC,EAAE,EAAE;YACL,CAAC,EAAE,GAAG;YACN,IAAI,EAAE,uCAAuC;YAC7C,IAAI,EAAE,iBAAiB;YACvB,IAAI,EAAE,SAAS;SAChB,CAAC;QACF,IAAA,iBAAU,EAAC,MAAM,EAAE;YACjB,CAAC,EAAE,EAAE;YACL,CAAC,EAAE,GAAG;YACN,IAAI,EAAE,mEAAmE;YACzE,IAAI,EAAE,iBAAiB;YACvB,IAAI,EAAE,SAAS;SAChB,CAAC;QACF,IAAA,iBAAU,EAAC,MAAM,EAAE;YACjB,CAAC,EAAE,EAAE;YACL,CAAC,EAAE,GAAG;YACN,IAAI,EAAE,0DAA0D;YAChE,IAAI,EAAE,iBAAiB;YACvB,IAAI,EAAE,SAAS;SAChB,CAAC;KACH,CAAC,CAAA;IAEF,MAAM,QAAQ,GAAG,IAAI,mBAAQ,CAAC;QAC5B,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,GAAG;QACX,eAAe,EAAE,SAAS;KAC3B,CAAC,CAAA;IAEF,QAAQ,CAAC,UAAU,CAAC,IAAI,CAAC,CAAA;IACzB,MAAM,QAAQ,CAAC,MAAM,CAAC,uBAAuB,CAAC,CAAA;IAC9C,OAAO,CAAC,GAAG,CAAC,gDAAgD,CAAC,CAAA;AAC/D,CAAC;AAED,IAAI,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE;IACjB,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;IAClB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;AACjB,CAAC,CAAC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const NoteCard: any;
|