@ichicraft/widgets-widget-base 1.8.11 → 1.8.13
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 +9 -0
- package/lib/types/index.d.ts +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,6 +9,15 @@ 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.13 - 2023-06-08
|
|
13
|
+
|
|
14
|
+
- Removed the deprecated `resolved` property from `ICPersona` interface
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## 1.8.12 - 2023-04-04
|
|
18
|
+
|
|
19
|
+
- Changed `openFilePicker` function to return more details of the picked file in the shape of `FilePickerFileProps`
|
|
20
|
+
|
|
12
21
|
## 1.8.11 - 2023-04-03
|
|
13
22
|
|
|
14
23
|
- Changed `openFilePicker` function to return more details of the picked file in the shape of `FilePickerFileProps`
|
package/lib/types/index.d.ts
CHANGED
|
@@ -513,7 +513,6 @@ export interface ICPersona {
|
|
|
513
513
|
displayName: string;
|
|
514
514
|
id: string;
|
|
515
515
|
type?: ICPersonaType;
|
|
516
|
-
resolved?: boolean;
|
|
517
516
|
}
|
|
518
517
|
/**
|
|
519
518
|
* Tells the severity of the command bar item, resulting in
|
|
@@ -634,6 +633,10 @@ export interface FilePickerFileProps {
|
|
|
634
633
|
* Unique identifier of the file item in SharePoint, in the shape of a Guid.
|
|
635
634
|
*/
|
|
636
635
|
uniqueId: string;
|
|
636
|
+
/**
|
|
637
|
+
* Unique identifier of the list in SharePoint, in the shape of a Guid.
|
|
638
|
+
*/
|
|
639
|
+
listId: string;
|
|
637
640
|
/**
|
|
638
641
|
* Unique identifier of the site in SharePoint, in the shape of a Guid.
|
|
639
642
|
*/
|
package/package.json
CHANGED