File

core/common/ApplicationOptions.ts

Index

Properties

Properties

Optional brandingCssVars
Type : BrandingCssVars

Object with properties that will be converted to CSS custom variables.

Optional brandingEntry
Type : string | boolean

Path to the branding entry file. (Set it to false to disable any styling. You can handle the styling then on your own e.g. in an angular.json file using ng-cli)

Optional brandingUrl
Type : string

URL to *.css file which will replace default branding.

Optional breadcrumbs
Type : boolean

Enable or disable breadcrumbs in the header for groups and devices (default: false).

Optional companyName
Type : string

Name of company handling support requests from app users (displayed in notification message).

Optional contentSecurityPolicy
Type : string

CSP string to be applied to index.html by replacing default values.

Optional contextHelp
Type : boolean | string

Allows to enable or disable context help, or to override the default base URL used to load its contents. By default, the context help uses the same base URL as defined in the docsBaseUrl option (if this option is undefined, then the following value will be used: https://www.cumulocity.com/guides/{{version}}). Alternatively, if a string is provided here, it'll be used as the base URL and any {{ version }} placeholder will be replaced with the relevant docs version.

contextPath
Type : string

Application context path (saved to the server).

Optional cookieBanner
Type : CookieBannerConfiguration

Cookie Banner configuration

Optional cookiePreferences
Type : CookiePreferencesConfiguration

Cookie preferences configuration. Here you can enable or disable cookie categories

Optional copy
Type : []

Additional assets to copy to the build output. See https://github.com/webpack-contrib/copy-webpack-plugin for more information about the patterns to add here.

Optional disableOnlyRootsQuery
Type : boolean

By default, cockpit and devicemanagement use the onlyRoots query to resolve root nodes. This could lead to performance issues, if a customer has a lot of root nodes. Therefore you can disable the use of this query with this flag.

Optional disableTracking
Type : boolean

Disable user tracking

Optional docs
Type : Docs

Documentation links settings.

Optional docsBaseUrl
Type : string

Base URL for documentation links (include {{ version }} placeholder, if you want versioned links).

Optional dynamicOptionsUrl
Type : string

URL to dynamically fetched options.

Optional entryModule
Type : string

Entry module for Angular compiler (only used with lazy loaded routes), e.g. 'app.module.ts#AppModule'.

Optional exports
Type : PluginsExports[]

NgModule export for plugins.

Optional extraCssUrls
Type : string[]

Array of URLs to additional *.css files to be loaded at runtime.

Optional faviconUrl
Type : string

URL to favicon.

Optional forceSetup
Type : boolean

Allows to force showing the setup wizard.

Optional gainsightKey
Type : string

A key for the product experience software Gainsight.

Optional globalTitle
Type : string

HTML page title.

Optional guideHrefTemplate
Type : string

URL template for documentation links (default: '${docsBaseUrl}${partialUrl}').

Optional hideNavigator
Type : boolean

Collapse navigator on initial load.

Optional hidePlatformInformation
Type : boolean

Hides the "Platform information" in the right drawer, will overrule the "hidePowered" option

Optional hidePowered
Type : boolean

Hide "powered by" and version info at the bottom of the navigator and in the right drawer.

Optional i18nExtra
Type : I18nExtra

Allows for adding custom translations. It is an optional property.

Its keys are language codes (https://cumulocity.com/guides/users-guide/getting-started/#a-name-languages-a-available-languages) and its values are objects with key-value pairs, where the key is the original string in English and the value - its translation.

  • Home: "Startseite"

For example you can add the translation of your custom cookie banner configured in the branding settings:

"i18nExtra": {
  "de": {
    "About cookies on Cumulocity IoT": "Informationen zu Cookies in Cumulocity IoT",
    "Click Agree and Proceed to accept cookies and go directly to the platform or click on Privacy Policy to see detailed descriptions of the used cookies.": "Klicken Sie auf Zustimmen und fortfahren, um Cookies zu akzeptieren und direkt zur Plattform zu gelangen, oder klicken Sie auf Datenschutzrichtlinie, um detaillierte Beschreibungen der verwendeten Cookies anzuzeigen."
  }
}
Optional icon
Type : Icon

Application icon to be displayed in app switcher and header bar.

Optional indexTemplate
Type : string

Path to custom index.html (otherwise default one will be used).

Optional isSetup
Type : boolean

Indicates if the application needs to show the setup wizard.

key
Type : string

Application key (saved to the server).

Optional languages
Type : Languages

Allows for adding or overriding languages available in the application.

Its keys are language codes and its values are objects with the following properties:

  • name: English name of the language,
  • nativeName: native name of the language,
  • url: full URL to JSON file with compiled translations; if not defined, translations will be loaded from ${localePath}/${langCode}.json.

Example:

"languages": {
  "de": {
    "name": "German",
    "nativeName": "Deutsch",
    "url": "/apps/public/ui-assets/de.json"
  }
}
Optional localePath
Type : string

Path to the folder from which *.po files will be loaded.

Optional loginExtraLink
Type : LoginExtraLink | LoginExtraLink[]

Additional link(s) to display on login screen.

Optional mapNominatimUrl
Type : string

The URL used to lookup geo coordinates for a user provided address via nominatim API. Can be set to empty to disable the find address feature on the location tab. Uses: https://nominatim.openstreetmap.org/search?format=json&q={searchTerm} if not set.

Optional mapWidgetHideMaxDeviceOnMapHint
Type : boolean

Allows to hide the hint that there are more devices with geo coordinates then displayed on the map widget and maps in general.

Optional mapWidgetPageSize
Type : number

Allows to adjust the default pagesize of 100 items of the map widget and maps in general.

Optional mapWidgetRealtimeDisabled
Type : boolean

Disables realtime updates on the map widget and maps in general.

name
Type : string

Application name (saved to the server).

Optional newsletter
Type : boolean

Show or hide a newsletter subscription checkbox in edit user modal.

Optional noAppSwitcher
Type : boolean

Hide application in app switcher (saved to the server).

Optional noLogin
Type : boolean

By default a WebSDK app requires the user to be logged in. In case you would like to develop just a static application, that does not require any kind of access to the backend, you can use this flag to disable the login screen. NOTE: not all WebSDK components support this, some might require the user to be logged in and won't work.

Optional noPlugins
Type : boolean

Allows to opt out of supporting/loading plugins for this application.

Optional noVersionWarning
Type : boolean

Allows to opt out of the version warning which is shown in the dev tools.

Optional remotes
Type : RemotePlugins

List of imported remote plugins.

Optional rightDrawer
Type : boolean

Enable or disable the right drawer.

Optional rootNodeModulesPath
Type : string

Path to the root node_modules dir (useful when working in monorepo setup, e.g. yarn workspaces).

Optional sensorPhone
Type : boolean

Enables cloud sensor wizard

Optional source
Type : string | number | IApplication

The package source a application origins from as IApplication or simply the id of the source

Optional storageLimitationFeatureEnabled
Type : boolean

Enable or disable storage limitation feature.

Optional supportUrl
Type : boolean | string

URL to support page (set to false to hide the link).

Optional supportUserString
Type : string

Replacement string for user field in audit logs for actions performed by a support user (available placeholders: {{support_user}}, {{supported_user}}).

Optional tabsHorizontal
Type : boolean

Show tabs horizontally or vertically.

Optional tsConfigPath
Type : string

Path to tsccnfig.json file if TypeScript is used (default: ./tsconfig.json).

Optional upgrade
Type : boolean

Set to true if the application is hybrid and uses Angular and AngularJS simultaneously.

Optional version
Type : string

The version of the application

Optional webSdkVersion
Type : string

The version of the used Web SDK version

results matching ""

    No results matching ""