@ichicraft/widgets-widget-base 1.15.2 → 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 +4 -0
- package/lib/types/index.d.ts +2 -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.15.3 - 2025-12-09
|
|
13
|
+
|
|
14
|
+
- Added property `isIndeterminate` to `ICTerm` interface, used to represent a term's indeterminate checkmark state.
|
|
15
|
+
|
|
12
16
|
## 1.15.2 - 2025-11-21
|
|
13
17
|
|
|
14
18
|
- Added new interface `ICTerm`, used to represent a SharePoint Taxonomy Term object in code
|
package/lib/types/index.d.ts
CHANGED
|
@@ -702,6 +702,8 @@ export interface ICTerm {
|
|
|
702
702
|
path?: string;
|
|
703
703
|
termSetId: string;
|
|
704
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;
|
|
705
707
|
}
|
|
706
708
|
/**
|
|
707
709
|
* Tells the severity of the command bar item, resulting in
|
package/package.json
CHANGED