@hybr1d-tech/charizard 0.7.93 → 0.7.94
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.d.ts +11 -10
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3044,15 +3044,6 @@ export declare const useBreadcrumbs: (breadcrumbs: Breadcrumb_2[]) => void;
|
|
|
3044
3044
|
|
|
3045
3045
|
export declare const useBreadcrumbsStore: UseBoundStore<StoreApi<BreadcrumbsStore>>;
|
|
3046
3046
|
|
|
3047
|
-
export declare interface User {
|
|
3048
|
-
first_name: string;
|
|
3049
|
-
last_name: string;
|
|
3050
|
-
work_email: string;
|
|
3051
|
-
profile_img_url: string;
|
|
3052
|
-
id: string;
|
|
3053
|
-
middle_name?: string | null;
|
|
3054
|
-
}
|
|
3055
|
-
|
|
3056
3047
|
export declare enum USER_CHIP_STATUS {
|
|
3057
3048
|
DEFAULT = "default",
|
|
3058
3049
|
NEUTRAL = "neutral",
|
|
@@ -3076,7 +3067,17 @@ export declare function UsersChip({ status, users }: UsersChipProps): JSX_2.Elem
|
|
|
3076
3067
|
|
|
3077
3068
|
declare interface UsersChipProps {
|
|
3078
3069
|
status?: USER_CHIP_STATUS;
|
|
3079
|
-
users: Array<
|
|
3070
|
+
users: Array<Partial<UsersChipUser>>;
|
|
3071
|
+
}
|
|
3072
|
+
|
|
3073
|
+
export declare interface UsersChipUser {
|
|
3074
|
+
first_name: string;
|
|
3075
|
+
last_name: string;
|
|
3076
|
+
work_email: string;
|
|
3077
|
+
profile_img_url: string;
|
|
3078
|
+
id: string;
|
|
3079
|
+
middle_name?: string | null;
|
|
3080
|
+
user_position?: string | null;
|
|
3080
3081
|
}
|
|
3081
3082
|
|
|
3082
3083
|
export { }
|