@c8y/options 1024.15.0 → 1024.15.7

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.15.0",
3
+ "version": "1024.15.7",
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.15.0"
20
+ "@c8y/client": "1024.15.7"
21
21
  }
22
22
  }
@@ -465,7 +465,17 @@ export interface LoginExtraLink {
465
465
  }
466
466
 
467
467
  export interface Icon {
468
+ /**
469
+ * Icon from the `c8y-icon-*` or `dlt-c8y-icon-*` collections, for example `c8y-icon-tools`.
470
+ * A name without a prefix, for example `rest-api`, is resolved as a `dlt-c8y-icon-*` icon.
471
+ */
468
472
  class?: string;
473
+ /**
474
+ * Custom image, applied as a CSS `background-image`. The value has to be a complete
475
+ * `url(...)` expression, not a plain path, for example `url('/apps/my-app/assets/app-icon.svg')`.
476
+ * Use a path that is absolute on the server or a data URI, and make sure that the image is
477
+ * copied to the build output.
478
+ */
469
479
  url?: string;
470
480
  }
471
481