fimo-react 0.21.0-experimental.2 → 0.21.0-staging.6

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.
@@ -1,4 +1,4 @@
1
- import type { FimoLocaleResolution } from 'fimo/config';
1
+ import type { FimoLocaleResolution } from 'fimo/i18n';
2
2
  import React from 'react';
3
3
  export type FimoLocaleContextValue = Pick<FimoLocaleResolution, 'locale' | 'defaultLocale' | 'locales' | 'routePath' | 'pathname' | 'dir'>;
4
4
  export declare function FimoLocaleProvider({ value, children }: {
@@ -1,7 +1,7 @@
1
1
  export { useLocale } from './i18n-context.js';
2
- export { localizeFimoPath, resolveFimoLocale } from 'fimo/config';
2
+ export { localizeFimoPath, resolveFimoLocale } from 'fimo/i18n';
3
3
  export type { FimoLocaleContextValue } from './i18n-context.js';
4
- export type { FimoLocaleResolution } from 'fimo/config';
4
+ export type { FimoLocaleResolution } from 'fimo/i18n';
5
5
  export { DataSourcesProvider } from './content/DataSourcesProvider.js';
6
6
  export { RefreshContentProvider } from './content/RefreshContentProvider.js';
7
7
  export { parseCollectionResponse } from 'fimo/content';
@@ -2,7 +2,7 @@ import { createFormClient } from 'fimo/forms';
2
2
  import { viteContentRuntime } from './content/vite-runtime.js';
3
3
  // Locale
4
4
  export { useLocale } from './i18n-context.js';
5
- export { localizeFimoPath, resolveFimoLocale } from 'fimo/config';
5
+ export { localizeFimoPath, resolveFimoLocale } from 'fimo/i18n';
6
6
  // Content
7
7
  export { DataSourcesProvider } from './content/DataSourcesProvider.js';
8
8
  export { RefreshContentProvider } from './content/RefreshContentProvider.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fimo-react",
3
- "version": "0.21.0-experimental.2",
3
+ "version": "0.21.0-staging.6",
4
4
  "description": "Fimo React runtime: content clients, labels, and source-tracked primitives.",
5
5
  "files": [
6
6
  "dist/",
@@ -43,21 +43,21 @@
43
43
  "test:watch": "vitest"
44
44
  },
45
45
  "devDependencies": {
46
- "@fimo/tsconfig": "0.21.0-experimental.2",
46
+ "@fimo/tsconfig": "0.21.0-staging.6",
47
47
  "@tanstack/react-query": "^5.80.6",
48
- "@types/node": "^22.15.29",
49
- "@types/react": "^19.2.14",
50
- "@types/react-dom": "^19.2.3",
51
- "fimo": "0.21.0-experimental.2",
52
- "react": "^19.2.4",
53
- "react-dom": "^19.2.4",
48
+ "@types/node": "22.18.6",
49
+ "@types/react": "19.2.14",
50
+ "@types/react-dom": "19.2.3",
51
+ "fimo": "0.21.0-staging.6",
52
+ "react": "19.2.4",
53
+ "react-dom": "19.2.4",
54
54
  "typescript": "7.0.2",
55
55
  "vite": "^8.0.13",
56
- "vitest": "^4.1.6"
56
+ "vitest": "4.1.10"
57
57
  },
58
58
  "peerDependencies": {
59
59
  "@tanstack/react-query": "^5.80.6",
60
- "fimo": ">=0.14.0-0",
60
+ "fimo": "0.21.0-staging.6",
61
61
  "react": "^18.2.0 || ^19.0.0",
62
62
  "react-dom": "^18.2.0 || ^19.0.0"
63
63
  },