Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to dev, this PR will be updated.
dev
is currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exit
ondev
.Releases
@itwin/[email protected]
Major Changes
iui-transfer-list-listbox-label
andiui-input-container
classes were removed.iui-tooltip-container
andiui-tooltip-visible
classes. The display is now toggled using thehidden
HTML attribute, and the positioning should be managed using custom JS/CSS.Minor Changes
iui-input-group-wrapper
class to allow inline labels for input groups.iui-input-grid
class for outer input styling.input
andselect
.data-iui-padded
attribute.iui-status-message
class to wrap StatusMessage icon and content.@itwin/[email protected]
Major Changes
iconDisplayStyle
prop fromLabeledInput
andLabeledTextarea
components.svgIcon
is now added inline. Users must useStatusMessage
to add custom icon to the message.inputStyle
andinputClassName
props fromLabeledInput
; style and className props are being passed down to input. AddedwrapperProps
,labelProps
,messageProps
,messageIconProps
,inputWrapperProps
to pass props to sub elements.selectStyle
andselectClassName
props fromLabeledSelect
; style and className props are being passed down to textarea. AddedwrapperProps
,labelProps
,messageProps
,messageIconProps
to pass props to sub elements.textareaStyle
andtextareaClassName
props fromLabeledTextarea
; style and className props are being passed down to textarea. AddedwrapperProps
,labelProps
,messageProps
,messageIconProps
to pass props to sub elements.Minor Changes
#1355: Added
status
prop toInput
,Textarea
andSelect
.#1510: Added
domProps
to allow Toast's DOM customisation.#1355: Added two new components for building complex input layouts.
InputGrid
for the "outer" layout (label, inputs and statusMessage)InputWithDecorations
for the "inner" layout (start icon/button, end icon/button)LabeledInput
,LabeledSelect
,LabeledTextarea
and tableDatePickerInput
have been updated to make use of these new components internally.#1531: Selected options in Select/ComboBox will now have a checkmark.
#1355: Added new
padded
prop toIcon
.#1466: Adding the ability for every DOM node inside DatePicker component to have a custom className passed to it.
#1523: Added
ariaStrategy
prop to Tooltip. Can be used to change how the tooltip is associated with the trigger element.Patch Changes