@ttoss/react-auth-core 0.4.29 → 0.4.30
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.cjs +1102 -0
- package/dist/index.d.cts +154 -126
- package/dist/index.d.mts +213 -0
- package/dist/index.mjs +1059 -0
- package/i18n/compiled/en.json +4 -4
- package/package.json +19 -19
- package/dist/esm/index.js +0 -1064
- package/dist/index.d.ts +0 -185
- package/dist/index.js +0 -1130
package/i18n/compiled/en.json
CHANGED
|
@@ -259,7 +259,8 @@
|
|
|
259
259
|
],
|
|
260
260
|
"fOOwej": [
|
|
261
261
|
{
|
|
262
|
-
"
|
|
262
|
+
"type": 6,
|
|
263
|
+
"value": "max_files",
|
|
263
264
|
"options": {
|
|
264
265
|
"one": {
|
|
265
266
|
"value": [
|
|
@@ -292,9 +293,8 @@
|
|
|
292
293
|
]
|
|
293
294
|
}
|
|
294
295
|
},
|
|
295
|
-
"
|
|
296
|
-
"
|
|
297
|
-
"value": "max_files"
|
|
296
|
+
"offset": 0,
|
|
297
|
+
"pluralType": "cardinal"
|
|
298
298
|
}
|
|
299
299
|
],
|
|
300
300
|
"gy0Ynb": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/react-auth-core",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.30",
|
|
4
4
|
"description": "Core authentication components and abstractions for React apps.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"React",
|
|
@@ -37,33 +37,33 @@
|
|
|
37
37
|
"@jest/globals": "^29.7.0",
|
|
38
38
|
"@types/react": "^19.2.14",
|
|
39
39
|
"jest": "^30.3.0",
|
|
40
|
-
"react": "^19.2.
|
|
41
|
-
"
|
|
42
|
-
"@ttoss/components": "^2.14.
|
|
43
|
-
"@ttoss/
|
|
44
|
-
"@ttoss/
|
|
45
|
-
"@ttoss/i18n-cli": "^0.8.
|
|
46
|
-
"@ttoss/logger": "^0.8.
|
|
47
|
-
"@ttoss/react-i18n": "^2.2.
|
|
48
|
-
"@ttoss/react-notifications": "^2.7.
|
|
49
|
-
"@ttoss/test-utils": "^4.2.
|
|
50
|
-
"@ttoss/ui": "^6.9.
|
|
40
|
+
"react": "^19.2.6",
|
|
41
|
+
"tsdown": "^0.22.0",
|
|
42
|
+
"@ttoss/components": "^2.14.21",
|
|
43
|
+
"@ttoss/config": "^1.37.13",
|
|
44
|
+
"@ttoss/forms": "^0.43.25",
|
|
45
|
+
"@ttoss/i18n-cli": "^0.8.13",
|
|
46
|
+
"@ttoss/logger": "^0.8.13",
|
|
47
|
+
"@ttoss/react-i18n": "^2.2.14",
|
|
48
|
+
"@ttoss/react-notifications": "^2.7.21",
|
|
49
|
+
"@ttoss/test-utils": "^4.2.13",
|
|
50
|
+
"@ttoss/ui": "^6.9.20"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"react": ">=16.8.0",
|
|
54
|
-
"@ttoss/forms": "^0.43.
|
|
55
|
-
"@ttoss/
|
|
56
|
-
"@ttoss/
|
|
57
|
-
"@ttoss/react-notifications": "^2.7.
|
|
58
|
-
"@ttoss/ui": "^6.9.
|
|
59
|
-
"@ttoss/
|
|
54
|
+
"@ttoss/forms": "^0.43.25",
|
|
55
|
+
"@ttoss/components": "^2.14.21",
|
|
56
|
+
"@ttoss/logger": "^0.8.13",
|
|
57
|
+
"@ttoss/react-notifications": "^2.7.21",
|
|
58
|
+
"@ttoss/ui": "^6.9.20",
|
|
59
|
+
"@ttoss/react-i18n": "^2.2.14"
|
|
60
60
|
},
|
|
61
61
|
"publishConfig": {
|
|
62
62
|
"access": "public",
|
|
63
63
|
"provenance": true
|
|
64
64
|
},
|
|
65
65
|
"scripts": {
|
|
66
|
-
"build": "
|
|
66
|
+
"build": "tsdown",
|
|
67
67
|
"i18n": "ttoss-i18n",
|
|
68
68
|
"test": "jest --projects tests/unit"
|
|
69
69
|
}
|