hazo_admin 0.3.2 → 0.5.0

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.
Files changed (42) hide show
  1. package/CHANGE_LOG.md +17 -0
  2. package/README.md +115 -2
  3. package/SETUP_CHECKLIST.md +4 -1
  4. package/config/hazo_admin_config.ini.sample +11 -0
  5. package/dist/api/index.d.ts +4 -0
  6. package/dist/api/index.d.ts.map +1 -1
  7. package/dist/api/index.js +174 -0
  8. package/dist/components/admin_app.d.ts.map +1 -1
  9. package/dist/components/admin_app.js +3 -0
  10. package/dist/components/admin_kinds.d.ts.map +1 -1
  11. package/dist/components/admin_kinds.js +9 -1
  12. package/dist/components/admin_nav.d.ts +2 -2
  13. package/dist/components/admin_nav.d.ts.map +1 -1
  14. package/dist/components/admin_nav.js +12 -0
  15. package/dist/components/issues_panel/index.d.ts +6 -0
  16. package/dist/components/issues_panel/index.d.ts.map +1 -0
  17. package/dist/components/issues_panel/index.js +130 -0
  18. package/dist/index.client.d.ts +4 -0
  19. package/dist/index.client.d.ts.map +1 -1
  20. package/dist/index.client.js +4 -0
  21. package/dist/index.d.ts +2 -0
  22. package/dist/index.d.ts.map +1 -1
  23. package/dist/index.js +1 -0
  24. package/dist/issues/archive_handler.d.ts +29 -0
  25. package/dist/issues/archive_handler.d.ts.map +1 -0
  26. package/dist/issues/archive_handler.js +35 -0
  27. package/dist/issues/index.d.ts +8 -0
  28. package/dist/issues/index.d.ts.map +1 -0
  29. package/dist/issues/index.js +4 -0
  30. package/dist/issues/registry.client.d.ts +32 -0
  31. package/dist/issues/registry.client.d.ts.map +1 -0
  32. package/dist/issues/registry.client.js +15 -0
  33. package/dist/issues/registry.d.ts +45 -0
  34. package/dist/issues/registry.d.ts.map +1 -0
  35. package/dist/issues/registry.js +11 -0
  36. package/dist/issues/routing.d.ts +17 -0
  37. package/dist/issues/routing.d.ts.map +1 -0
  38. package/dist/issues/routing.js +43 -0
  39. package/dist/issues/store.d.ts +61 -0
  40. package/dist/issues/store.d.ts.map +1 -0
  41. package/dist/issues/store.js +227 -0
  42. package/package.json +9 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hazo_admin",
3
- "version": "0.3.2",
3
+ "version": "0.5.0",
4
4
  "description": "Standard site-admin package — auth-gated admin shell + panel kit + drop-in /admin preset",
5
5
  "type": "module",
6
6
  "module": "./dist/index.js",
@@ -38,6 +38,7 @@
38
38
  },
39
39
  "files": [
40
40
  "dist",
41
+ "config/*.ini.sample",
41
42
  "README.md",
42
43
  "CHANGE_LOG.md",
43
44
  "SETUP_CHECKLIST.md"
@@ -55,7 +56,7 @@
55
56
  "react": "^18.0.0 || ^19.0.0",
56
57
  "react-dom": "^18.0.0 || ^19.0.0",
57
58
  "next": "^14.0.0 || ^16.0.0",
58
- "hazo_auth": "^10.2.0",
59
+ "hazo_auth": "^10.2.0 || ^10.3.0",
59
60
  "hazo_logs": "^2.0.2",
60
61
  "hazo_debug": "^3.1.1",
61
62
  "hazo_connect": "^3.7.0",
@@ -69,6 +70,7 @@
69
70
  "hazo_secure": "^1.2.0",
70
71
  "hazo_blog": "^0.2.0",
71
72
  "hazo_testing": "^0.3.1",
73
+ "hazo_notify": "^6.1.0",
72
74
  "lucide-react": "^0.553.0"
73
75
  },
74
76
  "peerDependenciesMeta": {
@@ -113,6 +115,9 @@
113
115
  },
114
116
  "hazo_testing": {
115
117
  "optional": true
118
+ },
119
+ "hazo_notify": {
120
+ "optional": true
116
121
  }
117
122
  },
118
123
  "devDependencies": {
@@ -126,8 +131,8 @@
126
131
  "@types/react": "^19.0.0",
127
132
  "@types/react-dom": "^19.0.0",
128
133
  "hazo_core": "^1.2.0",
129
- "hazo_ui": "^4.0.0",
130
- "hazo_auth": "^10.2.0",
134
+ "hazo_ui": "^4.3.1",
135
+ "hazo_auth": "^10.3.0",
131
136
  "hazo_testing": "^0.3.1",
132
137
  "react": "^19.0.0",
133
138
  "react-dom": "^19.0.0",