@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 +4 -0
- package/lib/types/index.d.ts +2 -1
- package/lib/types/index.js +1 -0
- package/package.json +1 -1
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.
|
package/lib/types/index.d.ts
CHANGED
package/lib/types/index.js
CHANGED
|
@@ -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