@sudobility/building_blocks 0.0.74 → 0.0.76
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/browser-ponyfill-Bi0tvFyy.js +557 -0
- package/dist/browser-ponyfill-Bi0tvFyy.js.map +1 -0
- package/dist/components/api/ApiContext.d.ts +52 -0
- package/dist/components/api/index.d.ts +4 -0
- package/dist/components/app/SudobilityApp.d.ts +140 -0
- package/dist/components/app/SudobilityAppWithFirebaseAuth.d.ts +80 -0
- package/dist/components/app/SudobilityAppWithFirebaseAuthAndEntities.d.ts +94 -0
- package/dist/components/app/index.d.ts +6 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/subscription/LazySubscriptionProvider.d.ts +21 -0
- package/dist/components/subscription/SafeSubscriptionContext.d.ts +21 -0
- package/dist/components/subscription/SubscriptionProviderWrapper.d.ts +13 -0
- package/dist/components/subscription/index.d.ts +3 -0
- package/dist/i18n/index.d.ts +48 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +12463 -1848
- package/dist/index.js.map +1 -1
- package/package.json +28 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sudobility/building_blocks",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.76",
|
|
4
4
|
"description": "Higher-level shared UI building blocks for Sudobility apps",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -35,11 +35,16 @@
|
|
|
35
35
|
"@heroicons/react": "^2.0.0",
|
|
36
36
|
"@sudobility/components": "^5.0.1",
|
|
37
37
|
"@sudobility/design": "^1.1.18",
|
|
38
|
+
"@tanstack/react-query": "^5.0.0",
|
|
38
39
|
"class-variance-authority": "^0.7.0",
|
|
39
40
|
"clsx": "^2.0.0",
|
|
40
41
|
"firebase": "^11.0.0 || ^12.0.0",
|
|
42
|
+
"i18next": "^23.0.0 || ^24.0.0 || ^25.0.0",
|
|
41
43
|
"react": "^18.0.0 || ^19.0.0",
|
|
42
44
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
45
|
+
"react-helmet-async": "^2.0.0",
|
|
46
|
+
"react-i18next": "^14.0.0 || ^15.0.0 || ^16.0.0",
|
|
47
|
+
"react-router-dom": "^6.0.0 || ^7.0.0",
|
|
43
48
|
"tailwind-merge": "^2.0.0 || ^3.0.0"
|
|
44
49
|
},
|
|
45
50
|
"peerDependenciesMeta": {
|
|
@@ -49,6 +54,12 @@
|
|
|
49
54
|
"@sudobility/auth_lib": {
|
|
50
55
|
"optional": true
|
|
51
56
|
},
|
|
57
|
+
"@sudobility/di": {
|
|
58
|
+
"optional": true
|
|
59
|
+
},
|
|
60
|
+
"@sudobility/entity_client": {
|
|
61
|
+
"optional": true
|
|
62
|
+
},
|
|
52
63
|
"firebase": {
|
|
53
64
|
"optional": true
|
|
54
65
|
},
|
|
@@ -71,12 +82,18 @@
|
|
|
71
82
|
"devDependencies": {
|
|
72
83
|
"@eslint/js": "^9.38.0",
|
|
73
84
|
"@heroicons/react": "^2.2.0",
|
|
85
|
+
"@sudobility/auth-components": "^1.0.7",
|
|
86
|
+
"@sudobility/auth_lib": "^0.0.21",
|
|
74
87
|
"@sudobility/components": "^5.0.1",
|
|
75
88
|
"@sudobility/design": "^1.1.18",
|
|
76
|
-
"
|
|
89
|
+
"@sudobility/devops-components": "^2.0.16",
|
|
90
|
+
"@sudobility/di": "^1.5.25",
|
|
91
|
+
"@sudobility/di_web": "^0.1.79",
|
|
92
|
+
"@sudobility/entity_client": "^0.0.17",
|
|
77
93
|
"@sudobility/subscription-components": "^1.0.24",
|
|
78
94
|
"@sudobility/subscription_lib": "^0.0.10",
|
|
79
95
|
"@sudobility/types": "^1.9.48",
|
|
96
|
+
"@tanstack/react-query": "^5.80.0",
|
|
80
97
|
"@testing-library/dom": "^10.4.1",
|
|
81
98
|
"@testing-library/jest-dom": "^6.9.1",
|
|
82
99
|
"@testing-library/react": "^16.3.0",
|
|
@@ -92,11 +109,15 @@
|
|
|
92
109
|
"eslint-plugin-prettier": "^5.5.4",
|
|
93
110
|
"eslint-plugin-react-hooks": "^7.0.0",
|
|
94
111
|
"eslint-plugin-react-refresh": "^0.4.0",
|
|
112
|
+
"firebase": "^12.4.0",
|
|
113
|
+
"i18next": "^25.8.0",
|
|
95
114
|
"jsdom": "^26.1.0",
|
|
96
115
|
"prettier": "^3.6.2",
|
|
97
116
|
"react": "^19.0.0",
|
|
98
117
|
"react-dom": "^19.0.0",
|
|
99
118
|
"react-helmet-async": "^2.0.5",
|
|
119
|
+
"react-i18next": "^16.5.3",
|
|
120
|
+
"react-router-dom": "^7.0.0",
|
|
100
121
|
"tailwind-merge": "^3.0.0",
|
|
101
122
|
"typescript": "~5.9.3",
|
|
102
123
|
"vite": "^6.3.5",
|
|
@@ -110,5 +131,9 @@
|
|
|
110
131
|
"type": "git",
|
|
111
132
|
"url": "https://github.com/sudobility/building_blocks.git"
|
|
112
133
|
},
|
|
113
|
-
"license": "MIT"
|
|
134
|
+
"license": "MIT",
|
|
135
|
+
"dependencies": {
|
|
136
|
+
"i18next-browser-languagedetector": "^8.2.0",
|
|
137
|
+
"i18next-http-backend": "^3.0.2"
|
|
138
|
+
}
|
|
114
139
|
}
|