@lobb-js/lobb-ext-storage 0.8.3 → 0.9.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.
Files changed (43) hide show
  1. package/dist/extension.types.d.ts +25 -0
  2. package/dist/extension.types.js +1 -0
  3. package/dist/index.d.ts +2 -0
  4. package/dist/index.js +25 -0
  5. package/dist/lib/components/childrenFileExplorer.svelte +12 -0
  6. package/dist/lib/components/childrenFileExplorer.svelte.d.ts +14 -0
  7. package/dist/lib/components/explorerNotSupported.svelte +13 -0
  8. package/dist/lib/components/explorerNotSupported.svelte.d.ts +14 -0
  9. package/dist/lib/components/fileExplorer.svelte +399 -0
  10. package/dist/lib/components/fileExplorer.svelte.d.ts +22 -0
  11. package/dist/lib/components/fileIcon.svelte +45 -0
  12. package/dist/lib/components/fileIcon.svelte.d.ts +14 -0
  13. package/dist/lib/components/fileManagerBreadCrumbs.svelte +50 -0
  14. package/dist/lib/components/fileManagerBreadCrumbs.svelte.d.ts +14 -0
  15. package/dist/lib/components/foreignKeyComponent.svelte +44 -0
  16. package/dist/lib/components/foreignKeyComponent.svelte.d.ts +14 -0
  17. package/dist/lib/components/pages/fileExplorerPage.svelte +66 -0
  18. package/dist/lib/components/pages/fileExplorerPage.svelte.d.ts +14 -0
  19. package/dist/lib/index.d.ts +0 -0
  20. package/dist/lib/index.js +2 -0
  21. package/dist/lib/utils.d.ts +12 -0
  22. package/dist/lib/utils.js +5 -0
  23. package/dist/tests/fileManager.spec.d.ts +1 -0
  24. package/dist/tests/fileManager.spec.js +18 -0
  25. package/dist/tests/package.json +1 -0
  26. package/dist/tests/playwright.config.cjs +27 -0
  27. package/dist/tests/playwright.config.d.cts +2 -0
  28. package/package.json +8 -4
  29. package/.vscode/settings.json +0 -5
  30. package/CHANGELOG.md +0 -216
  31. package/lobb.ts +0 -54
  32. package/scripts/postpublish.sh +0 -12
  33. package/scripts/prepublish.sh +0 -17
  34. package/studio/app.html +0 -12
  35. package/studio/routes/+layout.svelte +0 -7
  36. package/studio/routes/+layout.ts +0 -1
  37. package/studio/routes/[...path]/+page.svelte +0 -6
  38. package/svelte.config.js +0 -24
  39. package/todo.md +0 -36
  40. package/tsconfig.app.json +0 -27
  41. package/tsconfig.json +0 -13
  42. package/tsconfig.node.json +0 -26
  43. package/vite.config.ts +0 -8
package/tsconfig.app.json DELETED
@@ -1,27 +0,0 @@
1
- {
2
- "extends": "@tsconfig/svelte/tsconfig.json",
3
- "compilerOptions": {
4
- "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
5
- "target": "ES2022",
6
- "useDefineForClassFields": true,
7
- "module": "ESNext",
8
- "types": ["svelte", "vite/client"],
9
- "noEmit": true,
10
- "allowArbitraryExtensions": true,
11
- /**
12
- * Typecheck JS in `.svelte` and `.js` files by default.
13
- * Disable checkJs if you'd like to use dynamic types in JS.
14
- * Note that setting allowJs false does not prevent the use
15
- * of JS in `.svelte` files.
16
- */
17
- "allowJs": true,
18
- "checkJs": true,
19
- "moduleDetection": "force",
20
- "baseUrl": ".",
21
- "paths": {
22
- "$lib": ["./studio/lib"],
23
- "$lib/*": ["./studio/lib/*"]
24
- }
25
- },
26
- "include": ["studio/**/*.ts", "studio/**/*.js", "studio/**/*.svelte"]
27
- }
package/tsconfig.json DELETED
@@ -1,13 +0,0 @@
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
- }
@@ -1,26 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
4
- "target": "ES2023",
5
- "lib": ["ES2023"],
6
- "module": "ESNext",
7
- "types": ["node"],
8
- "skipLibCheck": true,
9
-
10
- /* Bundler mode */
11
- "moduleResolution": "bundler",
12
- "allowImportingTsExtensions": true,
13
- "verbatimModuleSyntax": true,
14
- "moduleDetection": "force",
15
- "noEmit": true,
16
-
17
- /* Linting */
18
- "strict": true,
19
- "noUnusedLocals": true,
20
- "noUnusedParameters": true,
21
- "erasableSyntaxOnly": true,
22
- "noFallthroughCasesInSwitch": true,
23
- "noUncheckedSideEffectImports": true
24
- },
25
- "include": ["vite.config.ts"]
26
- }
package/vite.config.ts DELETED
@@ -1,8 +0,0 @@
1
- import { sveltekit } from '@sveltejs/kit/vite';
2
- import { defineConfig } from 'vite';
3
- import tailwindcss from "@tailwindcss/vite";
4
- import { lobbStudioPlugins } from '@lobb-js/studio/vite-plugins';
5
-
6
- export default defineConfig({
7
- plugins: [tailwindcss(), sveltekit(), ...lobbStudioPlugins()],
8
- });