@goplusvn/core 0.1.28 → 0.1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.30 — Gỡ menu "Thiết bị & phiên đăng nhập" khỏi UserDropdown
4
+
5
+ Trang phiên đăng nhập chuyển thành trang QUẢN TRỊ (gate quyền) — lối vào đúng
6
+ là sidebar navigation của app (resource-filtered), không phải dropdown cá nhân.
7
+
8
+ ## 0.1.29 — Footer: link "Goplus.vn" trỏ về https://goplus.vn
9
+
10
+ Trước trỏ nhầm github.com/Qualiora (template gốc).
11
+
3
12
  ## 0.1.28 — Auth Bridge: core hết khóa cứng NextAuth (nền cho Better Auth)
4
13
 
5
14
  `@goerp/core/ui` xuất `AuthBridgeProvider` + `useAuthBridge`/`useAuthSession`/
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@goplusvn/core",
3
3
  "description": "GoPlusVN Platform Kit - ERP kernel: layout, RBAC, CRUD, multi-tenant, system pages",
4
- "version": "0.1.28",
4
+ "version": "0.1.30",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "registry": "https://registry.npmjs.org",
@@ -25,7 +25,7 @@ export function Footer() {
25
25
  <p className="text-xs leading-tight text-muted-foreground">
26
26
  Make with ❤ by{" "}
27
27
  <a
28
- href="https://github.com/Qualiora"
28
+ href="https://goplus.vn"
29
29
  target="_blank"
30
30
  rel="noopener noreferrer"
31
31
  className={cn(
@@ -2,7 +2,8 @@
2
2
 
3
3
  import Link from "next/link";
4
4
  import { useAuthBridge, useSafeAuthSession } from "../auth/auth-bridge";
5
- import { LogOut, User, UserCog } from "lucide-react";
5
+ import { LogOut, User, UserCog,
6
+ } from "lucide-react";
6
7
 
7
8
  import type { DictionaryType } from "../../hooks";
8
9
  import type { LocaleType } from "../../types";