@ichicraft/widgets-widget-base 1.11.2 → 1.11.3
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 +5 -1
- package/lib/types/index.d.ts +7 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,9 +9,13 @@ 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.11.3 - 2024-11-05
|
|
13
|
+
|
|
14
|
+
- Added `fileName` property to `FilePickerFileProps` interface.
|
|
15
|
+
|
|
12
16
|
## 1.11.2 - 2024-10-21
|
|
13
17
|
|
|
14
|
-
-
|
|
18
|
+
- Added optional `objectId` property to the `ICPersona` interface.
|
|
15
19
|
|
|
16
20
|
## 1.11.1 - 2024-10-17
|
|
17
21
|
|
package/lib/types/index.d.ts
CHANGED
|
@@ -841,15 +841,19 @@ export interface FilePickerOptions {
|
|
|
841
841
|
}
|
|
842
842
|
export interface FilePickerFileProps {
|
|
843
843
|
/**
|
|
844
|
-
*
|
|
844
|
+
* Name of the selected file (including extension).
|
|
845
|
+
*/
|
|
846
|
+
fileName: string;
|
|
847
|
+
/**
|
|
848
|
+
* Unique identifier of the file item in SharePoint, in the form of a Guid.
|
|
845
849
|
*/
|
|
846
850
|
uniqueId: string;
|
|
847
851
|
/**
|
|
848
|
-
* Unique identifier of the list in SharePoint, in the
|
|
852
|
+
* Unique identifier of the list in SharePoint, in the form of a Guid.
|
|
849
853
|
*/
|
|
850
854
|
listId: string;
|
|
851
855
|
/**
|
|
852
|
-
* Unique identifier of the site in SharePoint, in the
|
|
856
|
+
* Unique identifier of the site in SharePoint, in the form of a Guid.
|
|
853
857
|
*/
|
|
854
858
|
siteId: string;
|
|
855
859
|
}
|
package/package.json
CHANGED