@cupcodev/ui 1.2.6 → 1.2.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/dist/index.cjs +1316 -1382
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1316 -1382
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1663,6 +1663,8 @@ declare const decodeJwt: (token?: string) => Record<string, unknown> | null;
|
|
|
1663
1663
|
type UserPresenceStatus = "online" | "away" | "busy" | "lunch" | "call" | "coding" | "designing" | "offline";
|
|
1664
1664
|
type AuthUser = {
|
|
1665
1665
|
sub?: string;
|
|
1666
|
+
id?: string;
|
|
1667
|
+
userId?: string;
|
|
1666
1668
|
name?: string;
|
|
1667
1669
|
email?: string;
|
|
1668
1670
|
picture?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1663,6 +1663,8 @@ declare const decodeJwt: (token?: string) => Record<string, unknown> | null;
|
|
|
1663
1663
|
type UserPresenceStatus = "online" | "away" | "busy" | "lunch" | "call" | "coding" | "designing" | "offline";
|
|
1664
1664
|
type AuthUser = {
|
|
1665
1665
|
sub?: string;
|
|
1666
|
+
id?: string;
|
|
1667
|
+
userId?: string;
|
|
1666
1668
|
name?: string;
|
|
1667
1669
|
email?: string;
|
|
1668
1670
|
picture?: string;
|