tambah akses permision button dan keycloak
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
/*Revenue Projects*/
|
||||
type RevenueProjects={
|
||||
img: string;
|
||||
leadname: string;
|
||||
designation: string;
|
||||
projectname: string;
|
||||
statuscolor: string;
|
||||
statustext: string;
|
||||
money: string;
|
||||
};
|
||||
|
||||
/*Performance*/
|
||||
type Performance={
|
||||
icon: string;
|
||||
subtitle: string;
|
||||
title: string;
|
||||
color: string;
|
||||
};
|
||||
|
||||
|
||||
export type{RevenueProjects,Performance}
|
||||
@@ -0,0 +1,45 @@
|
||||
|
||||
|
||||
/*Revenue Forecast Projects*/
|
||||
type RevenueForecast={
|
||||
icon: string;
|
||||
subtext: string;
|
||||
profit: string;
|
||||
bgcolor:string;
|
||||
color: string;
|
||||
};
|
||||
|
||||
/*Annual Profit*/
|
||||
type AnnualProfit={
|
||||
title: string;
|
||||
subtitle: string;
|
||||
price: string;
|
||||
percent:string;
|
||||
color: string;
|
||||
};
|
||||
|
||||
/*Sales from Locations*/
|
||||
type SalesFromLocation={
|
||||
name: string;
|
||||
percentage:string;
|
||||
color: string;
|
||||
};
|
||||
|
||||
// Daily Activities
|
||||
type DailyActivities = {
|
||||
title: string;
|
||||
subtitle: string;
|
||||
textcolor: string;
|
||||
boldtext: boolean;
|
||||
line: boolean;
|
||||
link: string;
|
||||
url: string;
|
||||
};
|
||||
|
||||
/*User cards*/
|
||||
type userCard ={
|
||||
img: string;
|
||||
};
|
||||
|
||||
|
||||
export type{RevenueForecast ,AnnualProfit, SalesFromLocation,DailyActivities,userCard}
|
||||
@@ -0,0 +1,11 @@
|
||||
/*Revenue Forecast Projects*/
|
||||
type Iconcard={
|
||||
bg: string;
|
||||
icon: string;
|
||||
color:string;
|
||||
title:string;
|
||||
price:string;
|
||||
link:string;
|
||||
};
|
||||
|
||||
export type{Iconcard}
|
||||
Reference in New Issue
Block a user