@c8y/options 1024.14.1 → 1024.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@c8y/options",
3
- "version": "1024.14.1",
3
+ "version": "1024.15.0",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Cumulocity",
6
6
  "description": "Cumulocity application options",
@@ -17,6 +17,6 @@
17
17
  "options"
18
18
  ],
19
19
  "peerDependencies": {
20
- "@c8y/client": "1024.14.1"
20
+ "@c8y/client": "1024.15.0"
21
21
  }
22
22
  }
@@ -153,7 +153,11 @@ export interface ApplicationOptions {
153
153
  companyName?: string;
154
154
  /** URL template for documentation links (default: `'${docsBaseUrl}${partialUrl}'`). */
155
155
  guideHrefTemplate?: string;
156
- /** Base URL for documentation links (include `{{ version }}` placeholder, if you want versioned links). */
156
+ /**
157
+ * Base URL for documentation links (include `{{ version }}` placeholder, if you want versioned
158
+ * links). Set it to `null` or to an empty string to hide all documentation links, or to `'/'` to
159
+ * link to documentation served from the same host as the application.
160
+ */
157
161
  docsBaseUrl?: string;
158
162
  /** CSP string to be applied to `index.html` by replacing default values. */
159
163
  contentSecurityPolicy?: string;