@ichicraft/widgets-widget-base 1.14.4 → 1.14.5

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/README.md CHANGED
@@ -9,6 +9,10 @@ All notable changes to this project will be documented here.
9
9
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
10
10
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
11
11
 
12
+ ## 1.14.5 - 2025-08-07
13
+
14
+ - Added `imageUrl` property to the `CommandBarTab` interface, to support displaying images in widget header tabs.
15
+
12
16
  ## 1.14.4 - 2025-08-01
13
17
 
14
18
  - Added `releaseType` property to the `WidgetManifestConfig` interface, to indicate the current stage of the release lifecycle a widget is in.
@@ -800,6 +800,10 @@ export interface CommandBarTab {
800
800
  * Optional icon to display before the label.
801
801
  */
802
802
  iconName?: string;
803
+ /**
804
+ * Optional image to display before the label.
805
+ */
806
+ imageUrl?: string;
803
807
  /**
804
808
  * Optional tooltip to display when hovering over the tab.
805
809
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ichicraft/widgets-widget-base",
3
- "version": "1.14.4",
3
+ "version": "1.14.5",
4
4
  "description": "Part of the Widget Development Kit for building widgets for Ichicraft Boards",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",