@ichicraft/widgets-widget-base 1.16.5 → 1.16.6
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 -2
- 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.16.6 - 2026-06-03
|
|
13
|
+
|
|
14
|
+
- Replaced unused `design.header.activeTextColor` with `design.header.subTextColor`
|
|
15
|
+
|
|
12
16
|
## 1.16.5 - 2026-06-01
|
|
13
17
|
|
|
14
18
|
- Added `BuddyRenderOptions` interface, passed by the host to `BaseWidget.renderBuddy` to describe the slot the widget is about to render into.
|
package/lib/types/index.d.ts
CHANGED
|
@@ -494,8 +494,8 @@ export interface WidgetDesignContext {
|
|
|
494
494
|
textColor: string;
|
|
495
495
|
/** Icon color used in the header. */
|
|
496
496
|
iconColor: string;
|
|
497
|
-
/** Text color used in the header
|
|
498
|
-
|
|
497
|
+
/** Text color used in the header for secondary/supporting text (e.g. a subtitle or subline). */
|
|
498
|
+
subTextColor: string;
|
|
499
499
|
/** Icon color used in the header when an element is in the active or hover state. */
|
|
500
500
|
activeIconColor: string;
|
|
501
501
|
};
|
package/package.json
CHANGED