@ichicraft/widgets-widget-base 1.8.15 → 1.8.16

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.8.16 - 2023-09-26
13
+
14
+ - Added `Custom` value to `ICPersonaType` enum, to support a custom ICPersona.
15
+
12
16
  ## 1.8.15 - 2023-09-01
13
17
 
14
18
  - Added `thumbnailUrl` property to `WidgetManifestConfig` interface, as a non-translatable substitute of the newly deprecated `preview_small` property from `WidgetImages` interface.
@@ -510,7 +510,8 @@ export interface WidgetDebugServeConfig {
510
510
  export declare enum ICPersonaType {
511
511
  User = 0,
512
512
  SPGroup = 1,
513
- Other = 2
513
+ Other = 2,
514
+ Custom = 3
514
515
  }
515
516
  export interface ICPersona {
516
517
  displayName: string;
@@ -17,6 +17,7 @@ var ICPersonaType;
17
17
  ICPersonaType[ICPersonaType["User"] = 0] = "User";
18
18
  ICPersonaType[ICPersonaType["SPGroup"] = 1] = "SPGroup";
19
19
  ICPersonaType[ICPersonaType["Other"] = 2] = "Other";
20
+ ICPersonaType[ICPersonaType["Custom"] = 3] = "Custom";
20
21
  })(ICPersonaType = exports.ICPersonaType || (exports.ICPersonaType = {}));
21
22
  /**
22
23
  * Tells the severity of the command bar item, resulting in
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ichicraft/widgets-widget-base",
3
- "version": "1.8.15",
3
+ "version": "1.8.16",
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",