@ichicraft/widgets-widget-base 1.15.1 → 1.15.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 +8 -0
- package/lib/types/index.d.ts +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,6 +9,14 @@ 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.15.3 - 2025-12-09
|
|
13
|
+
|
|
14
|
+
- Added property `isIndeterminate` to `ICTerm` interface, used to represent a term's indeterminate checkmark state.
|
|
15
|
+
|
|
16
|
+
## 1.15.2 - 2025-11-21
|
|
17
|
+
|
|
18
|
+
- Added new interface `ICTerm`, used to represent a SharePoint Taxonomy Term object in code
|
|
19
|
+
|
|
12
20
|
## 1.15.1 - 2025-09-30
|
|
13
21
|
|
|
14
22
|
- Added new interface `ICTeam`, used to represent a Microsoft Teams team object in code
|
package/lib/types/index.d.ts
CHANGED
|
@@ -693,6 +693,18 @@ export interface ICTeam {
|
|
|
693
693
|
displayName?: string;
|
|
694
694
|
url?: string;
|
|
695
695
|
}
|
|
696
|
+
/**
|
|
697
|
+
* Represents a SharePoint Taxonomy Term.
|
|
698
|
+
*/
|
|
699
|
+
export interface ICTerm {
|
|
700
|
+
id: string;
|
|
701
|
+
displayName?: string;
|
|
702
|
+
path?: string;
|
|
703
|
+
termSetId: string;
|
|
704
|
+
termSetDisplayName?: string;
|
|
705
|
+
/** Was this term checked in an indeterminate state? Used e.g. when you only want to select the term itself, not its children. */
|
|
706
|
+
isIndeterminate?: boolean;
|
|
707
|
+
}
|
|
696
708
|
/**
|
|
697
709
|
* Tells the severity of the command bar item, resulting in
|
|
698
710
|
* distinguishable presentation of the item
|
package/package.json
CHANGED