@i2analyze/notebook-sdk 1.8.0-dev.4 → 1.8.0-dev.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.
@@ -697,7 +697,7 @@ export declare namespace app {
697
697
  /**
698
698
  * Sets or resets the label of the node group.
699
699
  *
700
- * @param label - The label to set, or `undefined` to reset the label to the default.
700
+ * @param label - The label to set, or `undefined` to indicate there is no label.
701
701
  * @returns The node group, with its label set to the specified value.
702
702
  * @i2since 1.8
703
703
  */
@@ -723,12 +723,12 @@ export declare namespace app {
723
723
  /**
724
724
  * Sets or resets the image for the node group.
725
725
  *
726
- * @param href - The URL of the image to use.
726
+ * @param href - The URL of the image to use, or 'undefined' to indicate there is no image.
727
727
  * @param description - A description of the image.
728
728
  * @returns The node group, with its image set to the specified URL and description.
729
729
  * @i2since 1.8
730
730
  */
731
- setImage(href: string, description?: string): this;
731
+ setImage(href: string | undefined, description?: string): this;
732
732
  /**
733
733
  * Adds nodes to the group.
734
734
  * @param nodes - The nodes to add to the group.
@@ -5748,20 +5748,20 @@ export declare namespace visual {
5748
5748
  */
5749
5749
  export interface INodeGroupStyle extends IElementStyleBase {
5750
5750
  /**
5751
- * Gets the image to display for the node group.
5751
+ * Gets the image to display for the node group, or undefined if there is no image.
5752
5752
  * @i2since 1.8
5753
5753
  */
5754
- readonly image: IImageSetting;
5754
+ readonly image?: IImageSetting;
5755
5755
  /**
5756
- * Gets the border color of the node group, or undefined if there is no explicit border color.
5756
+ * Gets the border color of the node group.
5757
5757
  * @i2since 1.8
5758
5758
  */
5759
5759
  readonly borderColor: IElementSetting<string | undefined>;
5760
5760
  /**
5761
- * Gets the fill color of the node group, or undefined if there is no explicit fill color.
5761
+ * Gets the border width of the node group.
5762
5762
  * @i2since 1.8
5763
5763
  */
5764
- readonly fillColor: IElementSetting<string | undefined>;
5764
+ readonly borderWidth: IElementSetting<number | undefined>;
5765
5765
  }
5766
5766
  }
5767
5767
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@i2analyze/notebook-sdk",
3
- "version": "1.8.0-dev.4",
3
+ "version": "1.8.0-dev.5",
4
4
  "description": "i2 Notebook SDK",
5
5
  "license": "MIT",
6
6
  "publishConfig": {