@fougere/svelte 0.8.4-alpha.0 → 0.9.0-alpha.1
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/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/src/index.ts +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** `@fougere/svelte` — the four primitives, in Svelte, for any host that renders it. */
|
|
2
|
-
export { useQuery, useCommand
|
|
2
|
+
export { useQuery, useCommand } from './useFougereData.js';
|
|
3
3
|
export { useFormFor, type FormOptions } from './useFormFor.js';
|
|
4
|
-
export { useCurrentUser
|
|
4
|
+
export { useCurrentUser } from './useCurrentUser.js';
|
|
5
5
|
export { fetcher, CALL_ENDPOINT } from '@fougere/app/client';
|
|
6
6
|
export type { CallInput, EntityClass, FormEntity, FormField, SessionView, } from '@fougere/app/client';
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,wFAAwF;AACxF,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,wFAAwF;AACxF,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAE,KAAK,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC/D,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAE7D,YAAY,EACV,SAAS,EACT,WAAW,EACX,UAAU,EACV,SAAS,EACT,WAAW,GACZ,MAAM,qBAAqB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** `@fougere/svelte` — the four primitives, in Svelte, for any host that renders it. */
|
|
2
2
|
export { useQuery, useCommand } from './useFougereData.js';
|
|
3
3
|
export { useFormFor } from './useFormFor.js';
|
|
4
|
-
export { useCurrentUser
|
|
4
|
+
export { useCurrentUser } from './useCurrentUser.js';
|
|
5
5
|
export { fetcher, CALL_ENDPOINT } from '@fougere/app/client';
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,wFAAwF;AACxF,OAAO,EAAE,QAAQ,EAAE,UAAU,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,wFAAwF;AACxF,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAoB,MAAM,iBAAiB,CAAC;AAC/D,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fougere/svelte",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0-alpha.1",
|
|
4
4
|
"description": "Fougere's four primitives as Svelte stores — host-independent.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fougere",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"src"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@fougere/app": "0.
|
|
34
|
-
"@fougere/core": "0.
|
|
33
|
+
"@fougere/app": "0.9.0-alpha.1",
|
|
34
|
+
"@fougere/core": "0.9.0-alpha.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"svelte": "^5.53.4",
|
|
38
38
|
"vitest": "^4.1.0",
|
|
39
|
-
"@fougere/schema": "0.
|
|
39
|
+
"@fougere/schema": "0.9.0-alpha.1"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"svelte": "^5.0.0"
|
package/src/index.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** `@fougere/svelte` — the four primitives, in Svelte, for any host that renders it. */
|
|
2
|
-
export { useQuery, useCommand
|
|
2
|
+
export { useQuery, useCommand } from './useFougereData.js';
|
|
3
3
|
export { useFormFor, type FormOptions } from './useFormFor.js';
|
|
4
|
-
export { useCurrentUser
|
|
4
|
+
export { useCurrentUser } from './useCurrentUser.js';
|
|
5
5
|
export { fetcher, CALL_ENDPOINT } from '@fougere/app/client';
|
|
6
6
|
|
|
7
7
|
export type {
|