- cataloghi...
- fix: condividi su Telegram non funzionava errore sull'immagine
This commit is contained in:
@@ -684,24 +684,53 @@ export interface IMyCard {
|
||||
link?: string
|
||||
}
|
||||
|
||||
export interface ISize {
|
||||
width?: string
|
||||
height?: string
|
||||
}
|
||||
|
||||
export interface IBorder {
|
||||
top?: string
|
||||
bottom?: string
|
||||
left?: string
|
||||
right?: string
|
||||
}
|
||||
export interface IDimensioni {
|
||||
size?: ISize
|
||||
margini?: IBorder
|
||||
padding?: IBorder
|
||||
}
|
||||
|
||||
export interface IElementiPagina {
|
||||
pagina: IDimensioni
|
||||
riga: IDimensioni
|
||||
}
|
||||
|
||||
export interface IElementiScheda {
|
||||
pagina: IDimensioni
|
||||
riga: IDimensioni
|
||||
scheda_prodotto: IDimensioni
|
||||
immagine_prodotto: IDimensioni
|
||||
}
|
||||
|
||||
export interface IMyScheda {
|
||||
_id: string,
|
||||
idapp: string,
|
||||
isTemplate: boolean,
|
||||
name: string,
|
||||
widthscheda?: string
|
||||
_id?: string,
|
||||
idapp?: string,
|
||||
isTemplate?: boolean,
|
||||
name?: string,
|
||||
line_height?: number
|
||||
widthpag?: number
|
||||
width?: number
|
||||
height?: number
|
||||
numschede_perRiga?: number
|
||||
numschede_perCol?: number
|
||||
margine_top?: number
|
||||
margine_pagina?: string
|
||||
margine_riga?: string
|
||||
text?: string
|
||||
posiz_text?: number
|
||||
|
||||
dimensioni: IElementiScheda
|
||||
|
||||
bgimg?: string
|
||||
bgimg_printable?: string
|
||||
bgSize?: string
|
||||
bgSize_printable?: string
|
||||
|
||||
productTypes?: number[]
|
||||
excludeproductTypes?: number[]
|
||||
editore?: string[]
|
||||
@@ -709,8 +738,6 @@ export interface IMyScheda {
|
||||
sort?: number
|
||||
arrProdottiSpeciali?: string[]
|
||||
|
||||
// In Memoria:
|
||||
arrProdToShow?: IProduct[][]
|
||||
}
|
||||
|
||||
export interface ISchedaSingola {
|
||||
@@ -718,6 +745,9 @@ export interface ISchedaSingola {
|
||||
scheda?: IMyScheda,
|
||||
order?: number,
|
||||
numSchede?: number,
|
||||
|
||||
// In Memoria
|
||||
arrProdToShow?: IProduct[][]
|
||||
}
|
||||
|
||||
export interface ICatalogo {
|
||||
@@ -728,15 +758,14 @@ export interface ICatalogo {
|
||||
Categoria: string[]
|
||||
Editore: string[]
|
||||
pdf: boolean
|
||||
printable?: boolean
|
||||
|
||||
dimensioni: IElementiPagina,
|
||||
|
||||
backgroundimage?: string
|
||||
backgroundimage_printable?: string
|
||||
widthpag?: number
|
||||
widthpagPrintable?: number
|
||||
width?: string
|
||||
height?: string
|
||||
printable?: boolean
|
||||
margine_paginaPrintable?: string
|
||||
margine_rigaPrintable?: string
|
||||
backgroundSize?: string
|
||||
backgroundSize_printable?: string
|
||||
|
||||
first_page_img?: string
|
||||
first_page_html?: string
|
||||
|
||||
Reference in New Issue
Block a user