nextia 7.0.6 → 7.0.8

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/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "nextia",
3
3
  "description": "Create fast web applications",
4
- "version": "7.0.6",
4
+ "version": "7.0.8",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "engines": {
8
- "node": ">22"
8
+ "node": ">=22"
9
9
  },
10
10
  "author": {
11
11
  "name": "Sinuhe Maceda",
@@ -42,8 +42,8 @@
42
42
  },
43
43
  "devDependencies": {
44
44
  "@vitejs/plugin-react": "6.0.1",
45
- "@vitest/coverage-v8": "4.1.2",
45
+ "@vitest/coverage-v8": "4.1.3",
46
46
  "jsdom": "29.0.2",
47
- "vitest": "4.1.2"
47
+ "vitest": "4.1.3"
48
48
  }
49
49
  }
package/src/lib/fx.js CHANGED
@@ -193,8 +193,8 @@ function useFx(functions = { initialState: {} }) {
193
193
  fx: { ...commonActions, ...actions },
194
194
  //
195
195
  context: pagesFx?.context,
196
- icons: pagesFx?.icons,
197
- i18n: pagesFx?.i18n
196
+ iconsFile: pagesFx?.iconsFile,
197
+ i18nFile: pagesFx?.i18nFile
198
198
  }
199
199
 
200
200
  return Object.freeze(props)
package/src/lib/ui.js CHANGED
@@ -21,12 +21,18 @@ function Link({ children, href, value = {}, ...props }) {
21
21
  }
22
22
 
23
23
  function I18n({ value, args = [] }) {
24
- const { context, i18n } = useFx()
24
+ const { context, i18nFile } = useFx()
25
25
 
26
- if (i18n) {
26
+ if (i18nFile) {
27
27
  try {
28
- let text = value.split('.').reduce((ac, el) => ac[el], i18n)
29
- text = text[i18n.locales.indexOf(context.state.i18n.currentLocale)]
28
+ let text = value.split('.').reduce((ac, el) => ac[el], i18nFile)
29
+
30
+ text =
31
+ text[
32
+ i18nFile.locales.indexOf(
33
+ context.state?.i18n || i18nFile.defaultLocale
34
+ )
35
+ ]
30
36
 
31
37
  if (args) {
32
38
  text = text.replace(
@@ -59,20 +65,20 @@ function Icon({
59
65
  strokeLinejoin = 'round',
60
66
  ...props
61
67
  }) {
62
- const { icons } = useFx()
68
+ const { iconsFile } = useFx()
63
69
  const ref = useRef()
64
70
 
65
71
  useEffect(() => {
66
- if (icons) {
72
+ if (iconsFile) {
67
73
  const svg = new DOMParser()
68
- .parseFromString(icons, 'image/svg+xml')
74
+ .parseFromString(iconsFile, 'image/svg+xml')
69
75
  .documentElement.getElementById(id)
70
76
 
71
77
  if (svg) {
72
78
  ref.current.innerHTML = svg.innerHTML
73
79
  }
74
80
  }
75
- }, [id, icons])
81
+ }, [id, iconsFile])
76
82
 
77
83
  return createElement('svg', {
78
84
  xmlns: 'http://www.w3.org/2000/svg',