3.0.0-alpha.0
Major Changes
-
#1581
7eb4d5147056e1e3252e387e5a718df7e593909e
Thanks @matthiashader! - Component Updates and EnhancementsNew Variants for Card Components:
- ix-action-card, ix-card, and ix-push-card:
- The
insight
andnotification
variants have been replaced byoutline
andfilled
.
- The
Property Updates:
- ix-chip:
- The
color
property has been replaced bychipColor
.
- The
- ix-event-list:
- The
color
attribute has been replaced byitemColor
.
- The
- ix-icon-button:
- The
color
attribute has been replaced byiconColor
. - Size
32
has been removed.
- The
- ix-pill:
- The
color
attribute has been replaced bypillColor
.
- The
- ix-typography:
- The
color
attribute has been replaced bytextColor
.
- The
- ix-select:
- The
selectedIndices
attribute has been replaced byvalue
. - The
itemSelectionChange
event has been replaced byvalueChange
.
- The
- ix-select-item:
- The type of the
value
property type has been updated tostring
.
- The type of the
Date and Time Picker Enhancements:
- ix-date-picker:
- Removed attributes:
individual
andeventDelimiter
. - The
textSelectedDate
property has been replaced byi18nDone
. - The
done
event has been replaced bydateSelect
.
- Removed attributes:
- ix-datetime-picker:
- The
textSelectedDate
property has been replaced byi18nDone
. - The
done
event has been replaced bydateSelect
. - Removed the
eventDelimiter
property.
- The
- ix-time-picker:
- Removed attributes:
individual
andshowTimeReference
.
- Removed attributes:
Removed Features:
- ix-menu:
- Removed the
maxVisibleMenuItems
attribute.
- Removed the
- ix-menu-item:
- The
tabIcon
attribute has been removed and replaced withicon
.
- The
Other Changes:
- ix-modal:
- The
keyboard
attribute has been replaced bycloseOnEscape
.
- The
- ix-action-card, ix-card, and ix-push-card:
-
#1700
2e2972260eafb1a87b84e5a705e3c932b15b8467
Thanks @jul-lam! - The ix-tooltip is working as expected when utilized for an ix-dropdown-item inside an ix-dropdown. The tooltip is now displayed outside the dropdown without breaking its layout.Fixes #1618
-
#1238
8803f3185b8a183926576d9f28894f9e1aa92ec3
Thanks @danielleroux! - feat: reduce bundle size in combination with icons -
#1742
8b757805d65f62e9296e6d1abd67a8f0b30099f3
Thanks @matthiashader! - Adapt the event signature of thedateSelect
event of theix-date-picker
to reflect undefined values. -
#1578
dd8b3eb28eb162f30c5fef27b369036b3bd6dd8b
Thanks @danielleroux! - RemovedevDependency
andpeerDependency
to bootstrap. For more information checkout BREAKING_CHANGES.md -
#1758
f6fd42a74b42ff0f9f2ffd2b4c2a49fbb4402760
Thanks @danielleroux! - Prevent global styling forinput
andtextarea
. If you still want to use the legacy styling provide aclass="ix-form-control"
toinput
ortextarea
.
Prevent global styling forlabel
. If you still want to use the legacy styling provide aclass="ix-form-label"
tolabel
.Fixes #1398
-
#1457
3d62fffdc107bfc92b2ecad8437662dc7c03796f
Thanks @matthiashader! - fix(core/pane-layout): remove absolute positioning -
#1330
c9c5bf0451998ce94a57247b974e00176f294437
Thanks @github-actions! - The VariantMapping that mapped legacy font classes to current ones was removed. -
#1394
24f3ad61ab275bf7c9bbd7e9ee84f6b4f7d3b5ff
Thanks @AndreasBerliner! - refactor: replace internal comments with annotations -
#1758
f6fd42a74b42ff0f9f2ffd2b4c2a49fbb4402760
Thanks @danielleroux! - Change default width frominput.ix-from-control
fromwidth: 100%
towidth: auto
-
#1743
4bdec91e4a837e487caa4a25407f24eb37616531
Thanks @lzeiml! - ix-date-picker: Week numbers are now hidden by default inside the ix-date-picker. They can be shown by setting showWeekNumbers to true.
ix-datetime-picker: Week numbers are now hidden by default inside the ix-date-picker. They can be shown by setting showWeekNumbers to true.
ix-date-dropdown: Week numbers are now hidden by default inside the ix-date-picker. They can be shown by setting showWeekNumbers to true.
ix-date-input: Week numbers are now hidden by default inside the ix-date-picker. They can be shown by setting showWeekNumbers to true. -
#1742
db785bb8a4cc0654104cb24d420b7a1e2d45fdba
Thanks @matthiashader! -ix-date-dropdown
: Adapt the typesDateDropdownOption
andDateRangeChangeEvent
to reflect the changed signature of theix-date-picker
'sdateSelect
event. -
#1742
db785bb8a4cc0654104cb24d420b7a1e2d45fdba
Thanks @matthiashader! -ix-date-input
: Adapt thevalue
property and thevalueChange
event to reflect the changed signature of thedate-picker
'sdateSelect
event. -
#1613
b3846c925ec4f03fd5d26b0b66042185b766f099
Thanks @jul-lam! - ix-application now utilizes full viewport height and full viewport width -
#1273
e8f825f7f494c8cc05dcce075afcff77839f8096
Thanks @nuke-ellington! - fix(core/checkbox): allow multiline labels and align checkbox at the top
Minor Changes
-
#1737
149dfbd6518e94da9e966d06ea2292c8e96772ce
Thanks @matthiashader! -ix-message-bar
: Add new typescritical
,success
,primary
, andneutral
, and deprecate typedanger
.
Additionally, add newNotificationColor
colorscolor-critical
,color-alarm
,color-neutral
, andcolor-primary
. -
#1697
9e13a08340efc9cb7dd1f0ef7d56481c8b5dcbbe
Thanks @AndreasBerliner! -ix-chip
andix-pill
: Add propertytooltip-text
to display anix-tooltip
with customizable text. -
#1676
4685dc2c2b0de0961b464d305f633e1115a5926a
Thanks @nuke-ellington! -ix-flip-tile
: Expsoseindex
property to allow setting of displayed content and addtoggle
event. -
#1688
5a12c6ac20e80a77f9fd3ad9aaffd66468f72b40
Thanks @matthiashader! -ix-message-bar
: EventclosedChange
can now be prevented viaevent.preventDefault()
.
An additional event is added to get notified after the close animation of theix-message-bar
is finished. -
#1676
4685dc2c2b0de0961b464d305f633e1115a5926a
Thanks @nuke-ellington! -ix-menu
: AddopenSettings
andopenAbout
events. EventexpandChange
can now be prevented viaevent.preventDefault()
. -
#1758
d20b43d5f5bd5291b5125b120d2bb2d72286acfd
Thanks @danielleroux! - Add new global class.ix-table
and.ix-table-striped
to display a simple html table -
#1676
4685dc2c2b0de0961b464d305f633e1115a5926a
Thanks @nuke-ellington! -ìx-drawer
: Eventsopen
anddrawerClose
can now be prevented viaevent.preventDefault()
. -
#1676
4685dc2c2b0de0961b464d305f633e1115a5926a
Thanks @nuke-ellington! - AddtabChange
event toix-menu-settings
andix-menu-about
. -
#1760
ac163467de8fc4d943f5366415492a9a02748999
Thanks @nuke-ellington! - ix-datetime-picker: Time selection headline can now be translated via propertyi18nTime
.
Patch Changes
-
#1706
e8bd3b6301d7553e6a02b79e2925aa0595b674ca
Thanks @lzeiml! - ix-menu-category: Dynamically added items are now instantly visible. This is achieved by adjusting the max-height everytime an item gets added.Fixes #1606
-
#1683
aa63b4fd901bc50e98877826699412affa127ae7
Thanks @ridvandmrc! -active=false
of theix-chip
will now show the chip as not interactable.Fixed #1656
-
#1681
5b56d90813239cb34d28b4c20255392b9dd1d66f
Thanks @jul-lam! - Update@floating-ui/dom
dependency to fix a wrong placement of theix-dropdown
if the dropdown is placed inside adialog
-element with animations in certain environments. -
#1708
96c8f78e4d3d4d304b1d5a41504d5b24401ea461
Thanks @lzeiml! - ix-radio: Now doesn't change height/layout anymore when clicked. This is achieved by changing the way one of the component's divs is rendered.
ix-checkbox: Now doesn't change height/layout anymore when clicked. This is achieved by changing the way one of the component's SVGs is rendered.Fixes #1702
-
#1699
093c78352916a193e7f2cbfab692362c4ba0de9a
Thanks @danielleroux! - Update classic theme colors to match latest figma specs -
#1561
699958d387c1044b50def5071369f27de49f56ef
Thanks @ridvandmrc! - Update slot references for ix-input-group. -
#1687
2d4e3b8cdb756dff44627941adfea6a0230ccf26
Thanks @matthiashader! - Fix issue ofix-button
which prevent a form get submitted twice in row. -
#1330
b5e2da18f871d6189c064a72bd9b29a82d0685eb
Thanks @github-actions! - fix(core): semver from stencil/core to minor -
#1691
8726afc094adf2ddb4f8e927c6a42aa8dc0ed589
Thanks @nuke-ellington! -ix-workflow-step
: change icon for 'done' state to be different from the one shown for 'success' state to pervent confusion. -
#1682
f41b5d60299cb874cec9730394038dd4c2df8a60
Thanks @danielleroux! - Prevent input elements like (ix-input
,ix-number-input
,ix-date-input
,ix-select
,ix-textarea
) to showrequired
validation error without any user interaction.If the class
ix-invalid
is applied programmatically an error message is still shown even without a user interaction. -
#1561
699958d387c1044b50def5071369f27de49f56ef
Thanks @ridvandmrc! - ix-drawer: Allow nested content to calculate it's layout properly by setting drawer width explicitly. -
#1769
dacbced83d226380c256d868620ee640996cf229
Thanks @nuke-ellington! - Refactor return type offocusInput
method ofIxInputFieldComponent
interface toPromise<void>
.