Animations, Policy, Toolbar Colors

This commit is contained in:
Surya Paolo
2022-11-23 10:27:36 +01:00
parent 358bdd5d1e
commit 46bf74e9e2
48 changed files with 1852 additions and 630 deletions

View File

@@ -145,8 +145,8 @@ export interface IMyElem {
class2?: string
class3?: string
class4?: string
class_anim?: string
class_anim2?: string
anim?: IAnim
anim2?: IAnim
styleadd?: string
list?: IImgGallery[]
listcards?: IMyCard[]
@@ -198,17 +198,41 @@ export interface IOption {
options: number
}
export interface IConfPages {
font?: string
col_toolbar?: string
col_bgfooter?: string
}
export interface IFooterMobile {
show_buttHome: boolean
show_profile: boolean
}
export interface IContacts {
facebook?: string
instagram?: string
whatsapp?: string
telegram?: string
youtube?: string
email?: string
address?: string
map?: string
facebook: string
instagram: string
whatsapp: string
whatsapp_home: boolean
telegram: string
youtube: string
email: string
address: string
map: string
info2: string
cell: string
}
export interface IPolicy {
show: boolean
owneremail: string
siteName: string
ownerDataName: string
managerData: string
includeData: string
url: string
lastdataupdate: string
country: string
}
export interface ISites {
_id?: string
attiva?: boolean
@@ -230,9 +254,12 @@ export interface ISites {
telegram_support_chat?: string
pathreg_add?: string
confsite: IOption
policy?: IPolicy
description?: string
keywords?: string
contacts?: IContacts
footer_mobile?: IFooterMobile
confpages?: IConfPages
}
export interface INewsToSent {
@@ -1070,3 +1097,8 @@ export interface IAccount {
totTransato: number
regulation_ok: boolean
}
export interface IAnim {
name: string,
clduration: string,
cldelay: string,
}