@myko/ui-svelte 4.2.0-canary.10

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.
Files changed (31) hide show
  1. package/.prettierignore +4 -0
  2. package/.prettierrc +15 -0
  3. package/README.md +58 -0
  4. package/package.json +64 -0
  5. package/src/app.d.ts +13 -0
  6. package/src/app.html +12 -0
  7. package/src/lib/components/ConnectionStats.svelte +83 -0
  8. package/src/lib/components/Logs.svelte +37 -0
  9. package/src/lib/components/Query.svelte +34 -0
  10. package/src/lib/components/Report.svelte +25 -0
  11. package/src/lib/components/Search.svelte +85 -0
  12. package/src/lib/components/ServerView.svelte +95 -0
  13. package/src/lib/components/state/resolutions.ts +137 -0
  14. package/src/lib/components/state/viewstate.svelte.ts +375 -0
  15. package/src/lib/components/state/windback.svelte.ts +88 -0
  16. package/src/lib/components/transactions/EntityHistory.svelte +173 -0
  17. package/src/lib/components/transactions/TimeStrip.svelte +268 -0
  18. package/src/lib/components/transactions/TransactionDetails.svelte +26 -0
  19. package/src/lib/components/transactions/TransactionEvent.svelte +87 -0
  20. package/src/lib/components/transactions/TransactionEventGroup.svelte +56 -0
  21. package/src/lib/components/transactions/Transactions.svelte +111 -0
  22. package/src/lib/components/transactions/TransactonView.svelte +24 -0
  23. package/src/lib/components/windback/WindbackFrame.svelte +65 -0
  24. package/src/lib/components/windback/index.ts +1 -0
  25. package/src/lib/index.ts +26 -0
  26. package/src/lib/services/svelte-client.svelte.ts +863 -0
  27. package/src/routes/+page.svelte +3 -0
  28. package/static/favicon.png +0 -0
  29. package/svelte.config.js +18 -0
  30. package/tsconfig.json +13 -0
  31. package/vite.config.ts +6 -0
@@ -0,0 +1,3 @@
1
+ <h1>Welcome to your library project</h1>
2
+ <p>Create your package using @sveltejs/package and preview/showcase your work with SvelteKit</p>
3
+ <p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
Binary file
@@ -0,0 +1,18 @@
1
+ import adapter from '@sveltejs/adapter-auto';
2
+ import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
3
+
4
+ /** @type {import('@sveltejs/kit').Config} */
5
+ const config = {
6
+ // Consult https://svelte.dev/docs/kit/integrations
7
+ // for more information about preprocessors
8
+ preprocess: vitePreprocess({script: true}),
9
+
10
+ kit: {
11
+ // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
12
+ // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
13
+ // See https://svelte.dev/docs/kit/adapters for more information about adapters.
14
+ adapter: adapter()
15
+ }
16
+ };
17
+
18
+ export default config;
package/tsconfig.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "extends": "./.svelte-kit/tsconfig.json",
3
+ "compilerOptions": {
4
+ "allowJs": true,
5
+ "checkJs": true,
6
+ "esModuleInterop": true,
7
+ "forceConsistentCasingInFileNames": true,
8
+ "resolveJsonModule": true,
9
+ "skipLibCheck": true,
10
+ "sourceMap": true,
11
+ "strict": true
12
+ }
13
+ }
package/vite.config.ts ADDED
@@ -0,0 +1,6 @@
1
+ import { sveltekit } from '@sveltejs/kit/vite';
2
+ import { defineConfig } from 'vite';
3
+
4
+ export default defineConfig({
5
+ plugins: [sveltekit()]
6
+ });