forked from MapComplete/MapComplete
Fix subtle buttons
This commit is contained in:
parent
909c3bc3f8
commit
48ef5e37ed
7 changed files with 73 additions and 71 deletions
|
@ -8,7 +8,22 @@ import { ExtractImages } from "./Conversion/FixImages"
|
|||
import ExtraLinkConfig from "./ExtraLinkConfig"
|
||||
import { Utils } from "../../Utils"
|
||||
import used_languages from "../../assets/generated/used_languages.json"
|
||||
export default class LayoutConfig {
|
||||
|
||||
/**
|
||||
* Minimal information about a theme
|
||||
**/
|
||||
export class LayoutInformation {
|
||||
id: string
|
||||
icon: string
|
||||
title: any
|
||||
shortDescription: any
|
||||
definition?: any
|
||||
mustHaveLanguage?: boolean
|
||||
hideFromOverview?: boolean
|
||||
keywords?: any[]
|
||||
}
|
||||
|
||||
export default class LayoutConfig implements LayoutInformation {
|
||||
public static readonly defaultSocialImage = "assets/SocialImage.png"
|
||||
public readonly id: string
|
||||
public readonly credits?: string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue