@ichicraft/widgets-widget-base 1.13.0 → 1.13.1
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 +3 -0
- package/lib/types/index.d.ts +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,6 +9,9 @@ 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.13.1 - 2025-03-11
|
|
13
|
+
- Added new interface `ICSite`, used to represent a SharePoint site object in code
|
|
14
|
+
|
|
12
15
|
## 1.13.0 - 2025-02-17
|
|
13
16
|
- Fixed an issue with detecting external users in `UserHelper`
|
|
14
17
|
- Changed target JavaScript version to `ES6`
|
package/lib/types/index.d.ts
CHANGED
|
@@ -649,6 +649,14 @@ export interface ICPersona {
|
|
|
649
649
|
type?: ICPersonaType;
|
|
650
650
|
objectId?: string;
|
|
651
651
|
}
|
|
652
|
+
/**
|
|
653
|
+
* A type that represents a SharePoint site
|
|
654
|
+
*/
|
|
655
|
+
export interface ICSite {
|
|
656
|
+
id: string;
|
|
657
|
+
displayName?: string;
|
|
658
|
+
url?: string;
|
|
659
|
+
}
|
|
652
660
|
/**
|
|
653
661
|
* Tells the severity of the command bar item, resulting in
|
|
654
662
|
* distinguishable presentation of the item
|
package/package.json
CHANGED