@qds.dev/code 0.9.1 → 0.9.7

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/lib-types/src/debug.d.ts +1 -0
  2. package/lib-types/src/index.d.ts +2 -0
  3. package/lib-types/src/preview/bundler/bundled-config.d.ts +33 -0
  4. package/lib-types/src/preview/bundler/bundled.d.ts +3 -0
  5. package/lib-types/src/preview/bundler/bundled.unit.d.ts +1 -0
  6. package/lib-types/src/preview/bundler/client-events-listener.d.ts +1 -0
  7. package/lib-types/src/preview/bundler/index.d.ts +34 -0
  8. package/lib-types/src/preview/bundler/repl-bundler-worker.d.ts +30 -0
  9. package/lib-types/src/preview/bundler/repl-ssr-worker.d.ts +27 -0
  10. package/lib-types/src/preview/bundler/rollup-plugins.d.ts +5 -0
  11. package/lib-types/src/preview/bundler/rollup-plugins.unit.d.ts +1 -0
  12. package/lib-types/src/preview/constants.d.ts +5 -0
  13. package/lib-types/src/preview/index.d.ts +19 -0
  14. package/lib-types/src/preview/mocks/browser.d.ts +2 -0
  15. package/lib-types/src/preview/preview-sw.d.ts +20 -0
  16. package/lib-types/src/preview/preview-sw.unit.d.ts +1 -0
  17. package/lib-types/src/preview/register-preview-sw.d.ts +2 -0
  18. package/lib-types/src/preview/register-preview-sw.unit.d.ts +1 -0
  19. package/lib-types/src/preview/repl-editor.d.ts +1 -0
  20. package/lib-types/src/preview/repl-helpers-node.d.ts +4 -0
  21. package/lib-types/src/preview/repl-helpers.unit.d.ts +1 -0
  22. package/lib-types/src/preview/test-extend.d.ts +9 -0
  23. package/lib-types/src/preview/types.d.ts +70 -0
  24. package/lib-types/tsconfig.tsbuildinfo +1 -1
  25. package/package.json +11 -7
  26. package/LICENSE +0 -21
  27. package/lib/node_modules/.pnpm/@emnapi_core@1.7.1/node_modules/@emnapi/core/dist/emnapi-core.esm-bundler.qwik.mjs +0 -5533
  28. package/lib/node_modules/.pnpm/@emnapi_runtime@1.8.1/node_modules/@emnapi/runtime/dist/emnapi.esm-bundler.qwik.mjs +0 -1225
  29. package/lib/node_modules/.pnpm/@emnapi_wasi-threads@1.1.0/node_modules/@emnapi/wasi-threads/dist/wasi-threads.esm-bundler.qwik.mjs +0 -619
  30. package/lib/node_modules/.pnpm/@napi-rs_wasm-runtime@1.1.1/node_modules/@napi-rs/wasm-runtime/dist/fs.qwik.mjs +0 -14854
  31. package/lib/node_modules/.pnpm/@napi-rs_wasm-runtime@1.1.1/node_modules/@napi-rs/wasm-runtime/fs-proxy.qwik.mjs +0 -109
  32. package/lib/node_modules/.pnpm/@napi-rs_wasm-runtime@1.1.1/node_modules/@napi-rs/wasm-runtime/runtime.qwik.mjs +0 -4
  33. package/lib/node_modules/.pnpm/@qwik.dev_core@2.0.0-beta.15_vite@7.1.5_@types_node@24.9.0_jiti@2.6.1_lightningcss@1.30.1_ter_sl453hnfnrysgqsj6ikt4cdmnq/node_modules/@qwik.dev/core/dist/qwikloader.qwik.mjs +0 -152
  34. package/lib/node_modules/.pnpm/@rolldown_browser@1.0.0-beta.59/node_modules/@rolldown/browser/dist/index.browser.qwik.mjs +0 -13
  35. package/lib/node_modules/.pnpm/@rolldown_browser@1.0.0-beta.59/node_modules/@rolldown/browser/dist/normalize-string-or-regex-BB1FWNyl.qwik.mjs +0 -789
  36. package/lib/node_modules/.pnpm/@rolldown_browser@1.0.0-beta.59/node_modules/@rolldown/browser/dist/rolldown-binding.wasi-browser.qwik.mjs +0 -107
  37. package/lib/node_modules/.pnpm/@rolldown_browser@1.0.0-beta.59/node_modules/@rolldown/browser/dist/rolldown-build-Bfw5c2c3.qwik.mjs +0 -4157
  38. package/lib/node_modules/.pnpm/@tybys_wasm-util@0.10.1/node_modules/@tybys/wasm-util/dist/wasm-util.esm-bundler.qwik.mjs +0 -1968
  39. package/lib/node_modules/.pnpm/magic-regexp@0.10.0/node_modules/magic-regexp/dist/index.qwik.mjs +0 -10
  40. package/lib/node_modules/.pnpm/magic-regexp@0.10.0/node_modules/magic-regexp/dist/shared/magic-regexp.DKp_q_HX.qwik.mjs +0 -95
  41. package/lib/node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.es6.qwik.mjs +0 -34
  42. package/lib/vite/repl-plugin.qwik.mjs +0 -31
  43. package/lib-types/src/vite/repl-plugin.d.ts +0 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qds.dev/code",
3
- "version": "0.9.1",
3
+ "version": "0.9.7",
4
4
  "private": false,
5
5
  "description": "Code playground and preview components for Qwik Design System",
6
6
  "type": "module",
@@ -26,6 +26,12 @@
26
26
  },
27
27
  "./package.json": "./package.json"
28
28
  },
29
+ "scripts": {
30
+ "build": "pnpm run build.lib & pnpm run build.types",
31
+ "build.lib": "rolldown -c rolldown.config.ts",
32
+ "build.types": "tsc --emitDeclarationOnly --outDir ./lib-types",
33
+ "postbuild": "pnpm -C ../../docs run build.repl-sw"
34
+ },
29
35
  "devDependencies": {
30
36
  "@qwik.dev/core": "2.0.0-beta.23",
31
37
  "msw": "^2.12.7",
@@ -43,10 +49,8 @@
43
49
  "magic-regexp": "^0.10.0"
44
50
  },
45
51
  "sideEffects": false,
46
- "scripts": {
47
- "build": "pnpm run build.lib & pnpm run build.types",
48
- "build.lib": "rolldown -c rolldown.config.ts",
49
- "build.types": "tsc --emitDeclarationOnly --outDir ./lib-types",
50
- "postbuild": "pnpm -C ../../docs run build.repl-sw"
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "https://github.com/kunai-consulting/qwik-design-system"
51
55
  }
52
- }
56
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Kunai Consulting
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.