Skip to content

Commit

Permalink
### 3.0.109-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele Panico committed Feb 1, 2024
1 parent adbdabf commit b60dffe
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 15 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# chat21-ionic ver 3.0

### 3.0.109 in PROD

### 3.0.109-rc.1
- added: BASE_LOGO_GRAY resource key
- bug-fixed: body texarea into email modal has 0px height
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@chat21/chat21-ionic",
"author": "Tiledesk SRL",
"version": "3.0.109-rc.1",
"version": "3.0.109-rc.2",
"license": "MIT License",
"homepage": "https://tiledesk.com/",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/app/utils/BrandResources.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class BrandResources {
document.body.style.setProperty('--base-brand-color', this.brand['BRAND_COLOR']);

/** LOGOS_ITEMS */
Object.keys(LOGOS_ITEMS).forEach(key => { LOGOS_ITEMS[key].icon = this.brand[key]; LOGOS_ITEMS[key].label = this.brand['BRAND_NAME']})
Object.keys(LOGOS_ITEMS).forEach(key => { LOGOS_ITEMS[key].icon = this.brand[key];})

/** BRAND_BASE_INFO */
Object.keys(BRAND_BASE_INFO).forEach(key => BRAND_BASE_INFO[key] = this.brand[key])
Expand Down
24 changes: 12 additions & 12 deletions src/app/utils/utils-resources.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
export const LOGOS_ITEMS: { [key: string] : { label: string, icon: string }} ={
COMPANY_LOGO: {label: 'Tiledesk', icon: 'assets/logos/tiledesk_logo.svg'},
COMPANY_LOGO_NO_TEXT: {label: 'Tiledesk', icon: 'assets/logos/tiledesk_logo_no_text.svg'},
BASE_LOGO: {label: 'Tiledesk', icon: 'assets/logos/tiledesk_logo.svg'},
BASE_LOGO_NO_TEXT: {label: 'Tiledesk', icon: 'assets/logos/tiledesk_logo_no_text.svg'},
BASE_LOGO_WHITE: { label: 'Tiledesk', icon: '"assets/logos/tiledesk-logo_new_white.svg'},
BASE_LOGO_WHITE_NO_TEXT: { label: 'Tiledesk', icon: '"assets/logos/tiledesk-logo_new_white.svg'},
BASE_LOGO_GRAY: { label: 'Tiledesk', icon: 'https://support-pre.tiledesk.com/dashboard/assets/img/logos/tiledesk-logo_new_gray.svg'}
}

export const BRAND_BASE_INFO: { [key: string] : any} ={
export const BRAND_BASE_INFO: { [key: string] : string} ={
COMPANY_NAME: "Tiledesk",
BRAND_NAME: "Tiledesk",
COMPANY_SITE_NAME:"tiledesk.com",
COMPANY_SITE_URL:"https://www.tiledesk.com",
CONTACT_US_EMAIL: "[email protected]",
FAVICON: "https://tiledesk.com/wp-content/uploads/2022/07/tiledesk_v13-300x300.png",
META_TITLE:"Design Studio"
META_TITLE:"Tiledesk - Open Source Live Chat"
}

export const LOGOS_ITEMS: { [key: string] : { label: string, icon: string }} ={
COMPANY_LOGO: {label: BRAND_BASE_INFO.COMPANY_NAME, icon: 'assets/logos/tiledesk_logo.svg'},
COMPANY_LOGO_NO_TEXT: {label: BRAND_BASE_INFO.COMPANY_NAME, icon: 'assets/logos/tiledesk_logo_no_text.svg'},
BASE_LOGO: {label: BRAND_BASE_INFO.BRAND_NAME, icon: 'assets/logos/tiledesk_logo.svg'},
BASE_LOGO_NO_TEXT: {label: BRAND_BASE_INFO.BRAND_NAME, icon: 'assets/logos/tiledesk_logo_no_text.svg'},
BASE_LOGO_WHITE: { label: BRAND_BASE_INFO.BRAND_NAME, icon: '"assets/logos/tiledesk-logo_new_white.svg'},
BASE_LOGO_WHITE_NO_TEXT: { label: BRAND_BASE_INFO.BRAND_NAME, icon: '"assets/logos/tiledesk-logo_new_white.svg'},
BASE_LOGO_GRAY: { label: BRAND_BASE_INFO.BRAND_NAME, icon: 'https://support-pre.tiledesk.com/dashboard/assets/img/logos/tiledesk-logo_new_gray.svg'}
}

export const MEDIA: { [key: string]: { src: string, text: string, description: string}}= {
Expand Down

0 comments on commit b60dffe

Please sign in to comment.