@c8y/options 1021.70.1 → 1021.71.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": "1021.70.1",
3
+ "version": "1021.71.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": "1021.70.1"
20
+ "@c8y/client": "1021.71.0"
21
21
  }
22
22
  }
@@ -30,6 +30,14 @@ export interface ApplicationOptions {
30
30
  * 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)
31
31
  */
32
32
  brandingEntry?: string | boolean;
33
+ /**
34
+ * Enables all beta features in the application.
35
+ */
36
+ enableAllBetaFeatures?: boolean;
37
+ /**
38
+ * Hides the beta preview section in the right drawer.
39
+ */
40
+ hideBetaPreview?: boolean;
33
41
  /**
34
42
  * URL to dynamically fetched options.
35
43
  * If set to `true` or left undefined, an URL will be used based on the applications contextPath.
package/src/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export type * from './ApplicationOptions';
2
2
  export type * from './c8y-schema-loader';
3
+ export type * from './markdown-file-loader';
@@ -0,0 +1,4 @@
1
+ declare module '*.md' {
2
+ declare type _schema = string;
3
+ export = _schema;
4
+ }