++ Animation fixed in Home pic.

++"Dark Mode"
This commit is contained in:
Surya Paolo
2022-11-23 23:57:21 +01:00
parent 46bf74e9e2
commit fab0dbbb72
17 changed files with 722 additions and 232 deletions

View File

@@ -119,6 +119,7 @@ export interface IMyElem {
container?: string
container2?: string
container3?: string
container4?: string
span?: boolean
transition?: boolean
align?: number
@@ -150,8 +151,17 @@ export interface IMyElem {
styleadd?: string
list?: IImgGallery[]
listcards?: IMyCard[]
elemsText?: IElemText[]
}
export interface IElemText {
_id: string
text: string
color?: string
size?: string
class?: string
anim?: IAnim
}
export interface IMyPage {
_id?: string
author_username?: string
@@ -180,7 +190,7 @@ export interface IMyPage {
active?: boolean
inmenu?: boolean
color?: string
colorsub?: string
elemsText?: IElemText[]
onlyif_logged?: boolean
only_residenti?: boolean
only_consiglio?: boolean
@@ -202,6 +212,7 @@ export interface IConfPages {
font?: string
col_toolbar?: string
col_bgfooter?: string
show_darkopt: boolean
}
export interface IFooterMobile {
show_buttHome: boolean
@@ -259,7 +270,7 @@ export interface ISites {
keywords?: string
contacts?: IContacts
footer_mobile?: IFooterMobile
confpages?: IConfPages
confpages: IConfPages
}
export interface INewsToSent {
@@ -405,7 +416,7 @@ export interface IGlobalState {
catgrps: ICatGrp[],
provinces: IProvince[],
datastat?: INotData
site?: ISites,
site: ISites,
mygroups: IMyGroup[],
selElem?: IMyElem,
editOn?: boolean,
@@ -1101,4 +1112,5 @@ export interface IAnim {
name: string,
clduration: string,
cldelay: string,
timingtype: string,
}