@qwik.dev/core 2.0.0-alpha.7 → 2.0.0-alpha.9

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 (38) hide show
  1. package/bindings/qwik.darwin-arm64.node +0 -0
  2. package/bindings/qwik.darwin-x64.node +0 -0
  3. package/bindings/qwik.linux-x64-gnu.node +0 -0
  4. package/bindings/qwik.win32-x64-msvc.node +0 -0
  5. package/bindings/qwik_wasm_bg.wasm +0 -0
  6. package/dist/build/package.json +1 -1
  7. package/dist/cli.cjs +2 -2
  8. package/dist/core-internal.d.ts +245 -20
  9. package/dist/core.cjs +7280 -7339
  10. package/dist/core.cjs.map +1 -1
  11. package/dist/core.min.mjs +1 -1
  12. package/dist/core.mjs +7273 -7339
  13. package/dist/core.mjs.map +1 -1
  14. package/dist/core.prod.cjs +1646 -1735
  15. package/dist/core.prod.mjs +2737 -2849
  16. package/dist/insights/index.qwik.cjs +1854 -1958
  17. package/dist/insights/index.qwik.mjs +1854 -1958
  18. package/dist/insights/insights.d.ts +1 -1
  19. package/dist/loader/package.json +1 -1
  20. package/dist/optimizer.cjs +65 -18
  21. package/dist/optimizer.d.ts +1 -1
  22. package/dist/optimizer.mjs +62 -18
  23. package/dist/prefetch/package.json +1 -1
  24. package/dist/server.cjs +42 -41
  25. package/dist/server.mjs +42 -41
  26. package/dist/starters/features/auth/package.json +1 -1
  27. package/dist/starters/features/tailwind/package.json +2 -2
  28. package/dist/starters/features/tailwind-v3/.vscode/settings.json +3 -0
  29. package/dist/starters/features/tailwind-v3/package.json +21 -0
  30. package/dist/starters/features/tailwind-v3/postcss.config.cjs +6 -0
  31. package/dist/starters/features/tailwind-v3/src/global.css +7 -0
  32. package/dist/starters/features/tailwind-v3/tailwind.config.js +8 -0
  33. package/dist/testing/index.cjs +3723 -3615
  34. package/dist/testing/index.d.ts +2 -1
  35. package/dist/testing/index.mjs +3995 -3888
  36. package/dist/testing/package.json +1 -1
  37. package/package.json +3 -3
  38. package/public.d.ts +6 -0
@@ -121,13 +121,14 @@ declare interface TestPlatform extends CorePlatform {
121
121
  *
122
122
  * @public
123
123
  */
124
- export declare function trigger(root: Element, queryOrElement: string | Element | keyof HTMLElementTagNameMap | null, eventNameCamel: string, eventPayload?: any): Promise<void>;
124
+ export declare function trigger(root: Element, queryOrElement: string | Element | keyof HTMLElementTagNameMap | null, eventName: string, eventPayload?: any): Promise<void>;
125
125
 
126
126
  /** @public */
127
127
  export declare function vnode_fromJSX(jsx: JSXOutput): {
128
128
  vParent: _ElementVNode;
129
129
  vNode: _VNode | null;
130
130
  document: _QDocument;
131
+ container: ClientContainer;
131
132
  };
132
133
 
133
134
  /** @public */