@quilted/quilt 0.5.77 → 0.5.80
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/CHANGELOG.md +20 -0
- package/build/cjs/index.cjs +2 -2
- package/build/esm/index.mjs +1 -1
- package/build/esnext/index.esnext +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/typescript/App.d.ts.map +1 -1
- package/build/typescript/email.d.ts.map +1 -1
- package/build/typescript/env.d.ts.map +1 -1
- package/build/typescript/global.d.ts.map +1 -1
- package/build/typescript/html.d.ts.map +1 -1
- package/build/typescript/http-handlers/index.d.ts.map +1 -1
- package/build/typescript/http-handlers/node.d.ts.map +1 -1
- package/build/typescript/http.d.ts.map +1 -1
- package/build/typescript/index.d.ts +3 -2
- package/build/typescript/index.d.ts.map +1 -1
- package/build/typescript/magic/app.d.ts.map +1 -1
- package/build/typescript/magic/asset-loader.d.ts.map +1 -1
- package/build/typescript/magic/http-handler.d.ts.map +1 -1
- package/build/typescript/matchers.d.ts.map +1 -1
- package/build/typescript/polyfills/base.d.ts.map +1 -1
- package/build/typescript/polyfills/crypto.d.ts.map +1 -1
- package/build/typescript/polyfills/fetch.d.ts.map +1 -1
- package/build/typescript/polyfills/noop.d.ts.map +1 -1
- package/build/typescript/react/index.d.ts.map +1 -1
- package/build/typescript/react/jsx-runtime.d.ts.map +1 -1
- package/build/typescript/react/server.d.ts.map +1 -1
- package/build/typescript/react/test-utils.d.ts.map +1 -1
- package/build/typescript/server/ServerContext.d.ts.map +1 -1
- package/build/typescript/server/http-handler.d.ts.map +1 -1
- package/build/typescript/server/index.d.ts +1 -1
- package/build/typescript/server/index.d.ts.map +1 -1
- package/build/typescript/server/render.d.ts.map +1 -1
- package/build/typescript/static/StaticContext.d.ts.map +1 -1
- package/build/typescript/static/index.d.ts.map +1 -1
- package/build/typescript/static/render.d.ts.map +1 -1
- package/build/typescript/testing.d.ts.map +1 -1
- package/build/typescript/utilities/react.d.ts.map +1 -1
- package/build/typescript/workers/index.d.ts.map +1 -1
- package/build/typescript/workers/worker.d.ts.map +1 -1
- package/package.json +23 -23
- package/quilt.project.ts +26 -22
- package/{src → source}/App.tsx +0 -0
- package/{src → source}/email.ts +0 -0
- package/{src → source}/env.ts +0 -0
- package/{src → source}/global.ts +0 -0
- package/{src → source}/html.ts +0 -0
- package/{src → source}/http-handlers/index.ts +0 -0
- package/{src → source}/http-handlers/node.ts +0 -0
- package/{src → source}/http.ts +0 -0
- package/{src → source}/index.ts +14 -7
- package/{src → source}/magic/app.ts +0 -0
- package/{src → source}/magic/asset-loader.ts +0 -0
- package/{src → source}/magic/http-handler.ts +0 -0
- package/{src → source}/matchers.ts +0 -0
- package/{src → source}/polyfills/README.md +0 -0
- package/{src → source}/polyfills/base.ts +0 -0
- package/{src → source}/polyfills/crypto.ts +0 -0
- package/{src → source}/polyfills/fetch.ts +0 -0
- package/{src → source}/polyfills/noop.ts +0 -0
- package/{src → source}/react/index.ts +0 -0
- package/{src → source}/react/jsx-runtime.ts +0 -0
- package/{src → source}/react/server.ts +0 -0
- package/{src → source}/react/test-utils.ts +0 -0
- package/{src → source}/server/ServerContext.tsx +0 -0
- package/{src → source}/server/http-handler.tsx +0 -0
- package/{src → source}/server/index.ts +6 -1
- package/{src → source}/server/render.tsx +0 -0
- package/{src → source}/static/StaticContext.tsx +0 -0
- package/{src → source}/static/index.tsx +0 -0
- package/{src → source}/static/render.tsx +0 -0
- package/{src → source}/testing.ts +0 -0
- package/{src → source}/utilities/react.tsx +0 -0
- package/{src → source}/workers/index.ts +0 -0
- package/{src → source}/workers/worker.ts +0 -0
- package/tsconfig.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @quilted/quilt
|
|
2
2
|
|
|
3
|
+
## 0.5.80
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`4087f361`](https://github.com/lemonmade/quilt/commit/4087f361cd1a1bb8aa0d3334beb737569178bdb2) Thanks [@lemonmade](https://github.com/lemonmade)! - Re-export more react-server-render types
|
|
8
|
+
|
|
9
|
+
## 0.5.79
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`ea331646`](https://github.com/lemonmade/quilt/commit/ea3316461bc42fe799e402a5635dd118e4a7e4a0) Thanks [@lemonmade](https://github.com/lemonmade)! - Improve GraphQL fetch naming and type exports
|
|
14
|
+
|
|
15
|
+
## 0.5.78
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [`eb9f7d42`](https://github.com/lemonmade/quilt/commit/eb9f7d4271010a8edfd683d825e9d49cb8969c8e) Thanks [@lemonmade](https://github.com/lemonmade)! - Improve usefulness of GraphQL client
|
|
20
|
+
|
|
21
|
+
* [#241](https://github.com/lemonmade/quilt/pull/241) [`04555fea`](https://github.com/lemonmade/quilt/commit/04555fea5652c30b27f146e10003e32fa16d66e8) Thanks [@lemonmade](https://github.com/lemonmade)! - Add react-query GraphQL hooks
|
|
22
|
+
|
|
3
23
|
## 0.5.77
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/build/cjs/index.cjs
CHANGED
|
@@ -43,9 +43,9 @@ Object.defineProperty(exports, 'createGraphQL', {
|
|
|
43
43
|
enumerable: true,
|
|
44
44
|
get: function () { return reactGraphql.createGraphQL; }
|
|
45
45
|
});
|
|
46
|
-
Object.defineProperty(exports, '
|
|
46
|
+
Object.defineProperty(exports, 'createGraphQLHttpFetch', {
|
|
47
47
|
enumerable: true,
|
|
48
|
-
get: function () { return reactGraphql.
|
|
48
|
+
get: function () { return reactGraphql.createGraphQLHttpFetch; }
|
|
49
49
|
});
|
|
50
50
|
Object.defineProperty(exports, 'useGraphQL', {
|
|
51
51
|
enumerable: true,
|
package/build/esm/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { createAsyncLoader } from '@quilted/async';
|
|
2
2
|
export { createAsyncComponent, useAsync, useAsyncAsset, usePreload } from '@quilted/react-async';
|
|
3
|
-
export { GraphQLContext, createGraphQL,
|
|
3
|
+
export { GraphQLContext, createGraphQL, createGraphQLHttpFetch, useGraphQL, useMutation, useQuery } from '@quilted/react-graphql';
|
|
4
4
|
export { useIdleCallback } from '@quilted/react-idle';
|
|
5
5
|
export { ServerAction, useServerAction } from '@quilted/react-server-render';
|
|
6
6
|
export { PerformanceContext, usePerformance, usePerformanceNavigation } from '@quilted/react-performance';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { createAsyncLoader } from '@quilted/async';
|
|
2
2
|
export { createAsyncComponent, useAsync, useAsyncAsset, usePreload } from '@quilted/react-async';
|
|
3
|
-
export { GraphQLContext, createGraphQL,
|
|
3
|
+
export { GraphQLContext, createGraphQL, createGraphQLHttpFetch, useGraphQL, useMutation, useQuery } from '@quilted/react-graphql';
|
|
4
4
|
export { useIdleCallback } from '@quilted/react-idle';
|
|
5
5
|
export { ServerAction, useServerAction } from '@quilted/react-server-render';
|
|
6
6
|
export { PerformanceContext, usePerformance, usePerformanceNavigation } from '@quilted/react-performance';
|