@@ -8,14 +8,35 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
88
99### Added
1010
11+ - ` <ActivityControlWidget /> `
12+ - Add parameter ` active ` to activity control action to set the ` active ` state of its button.
13+ - action now can have a ` active ` and ` notification ` property
1114- ` <ApplicationViewability /> `
1215 - component for hiding elements in specific media
1316- ` <InlineText /> `
1417 - force children to get displayed as inline content
15- - ` <NotAvailable /> `
16- - simple placeholder element that can be used to display info about missing data
18+ - ` <DecoupledOverlay /> `
19+ - similar to ` ContextOverlay ` component but not directly linked to a React element, it specifies the target in the DOM to get connected lazy
1720- ` <StringPreviewContentBlobToggler /> `
1821 - ` useOnly ` property: specify if only parts of the content should be used for the shortened preview, this property replaces ` firstNonEmptyLineOnly `
22+ - ` <ContextOverlay /> `
23+ - ` paddingSize ` property to add easily some white space
24+ - ` <CodeEditor /> `
25+ - toolbar in ` markdown ` mode provides a user config menu for the editor appearance
26+ - ` <RadioButton /> `
27+ - ` hideIndicator ` property: hide the radio inout indicator but click on children can be processed via ` onChange ` event
28+ - ` <ColorField /> `
29+ - input component for colors
30+ - uses a subset from the configured color palette by default, but it also allows to enter custom colors
31+ - CSS custom properties
32+ - beside the color palette we now mirror the most important layout configuration variables as CSS custom properties
33+ - new icons:
34+ - ` state-confirmed-all `
35+ - ` state-declined-all `
36+ - ` <MultiSuggestField /> `
37+ - ` MultiSuggestFieldSelectionProps ` provides ` newlyRemoved ` for callbacks set when removing a selected item
38+ - ` <NotAvailable /> `
39+ - simple placeholder element that can be used to display info about missing data
1940- ` <ContentBlobToggler /> `
2041 - ` forceInline ` property: force inline rendering
2142- ` <ContextMenu /> `
@@ -25,20 +46,50 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
2546 - Following optional BlueprintJs properties are forwarded now to override default behaviour: ` noResults ` , ` createNewItemRenderer ` and ` itemRenderer `
2647 - ` isValidNewOption ` property: Checks if an input string is or can be turned into a valid new option.
2748
49+
2850### Fixed
2951
3052- ` <Tag /> `
3153 - create more whitespace inside ` small ` tag
3254 - reduce visual impact of border
3355- ` <StringPreviewContentBlobToggler /> `
3456 - take Markdown rendering into account before testing the maximum preview length
57+ - ` <CodeEditor /> `
58+ - fix ` disabled ` property update
59+ - ` <VisualTour /> `
60+ - fix color of buttons to move to previous/next step
61+ - take Markdown rendering into account before testing the maximum preview length
3562- ` <NodeContent /> `
3663 - header-menu items are vertically centered now
64+ - ` <Link /> `
65+ - stabilize font size for on hover state
66+ - use correct font sizes when ` size ` property is set
67+ - ` Typography `
68+ - adjust displaying fallback symbols in different browsers
69+ - ` <CodeMirror /> `
70+ - use the latest provided ` onChange ` function
71+ - ` <TextField /> ` , ` <TextArea /> `
72+ - fix emoji false-positives in invisible character detection
73+ - ` <MultiSuggestField /> `
74+ - ` onSelection ` now sets ` newlySelected ` only for add actions and no longer sets it to the last element
75+ - border of the BlueprintJS ` Tag ` elements were fixed
76+ - ` <Button /> `
77+ - badge is correctly displayed when ` badge={0} `
78+ - Focus outlines
79+ - we use again bold focus outlines for input elements
80+ - they are also used for clickable elements that are focused via keyboard (tab navigation)
3781- ` <MultiSelect /> ` :
3882 - border of the BlueprintJS ` Tag ` elements were fixed
3983
4084### Changed
4185
86+ - ` <MultiSelect /> ` :
87+ - Change default filter predicate to match multi-word queries.
88+ - ` <EdgeDefault /> `
89+ - reduce stroke width to only 1px
90+ - ` <CodeMirror /> `
91+ - ` wrapLines ` and ` preventLineNumber ` do not use ` false ` default value but if not set then it will be interpreted as ` false `
92+ - in this way it can be overwritten by new user config for the markdown mode
4293- automatically hide user interaction elements in print view
4394 - all application header components except ` <WorkspaceHeader /> `
4495 - ` <CardActions /> ` and ` <CardOptions /> `
@@ -59,7 +110,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
59110- ` <ContextMenu /> `
60111 - ` togglerLarge ` : replaced by the more versatile ` togglerSize ` property
61112- ` <MultiSelect /> `
62- - ` searchPreficate ` : replaced by the, in some cases, more efficient ` searchListPredicate `
113+ - ` searchPredicate ` : replaced by the, in some cases, more efficient ` searchListPredicate `
63114
64115## [ 25.0.0] - 2025-12-01
65116
0 commit comments