This repository has been archived by the owner on Jun 5, 2023. It is now read-only.
Releases: valentingavran/anglify
Releases · valentingavran/anglify
v0.46.3
v0.46.2
v0.46.1
v0.46.0
⚠️ BREAKING CHANGES
- Components can no longer be used as tooltip content. TemplateRef can still be used
🔬 Code Refactoring
- replace all deprecated ComponentFactoryResolver occurrences (8addeb3)
🚀 Features
v0.45.1
🐛 Bug Fixes
- Autocomplete: disabling via FormControls works now (07c188d)
- Autocomplete: use itemValueKey always (not only when multiple) (41f5865)
- Combobox: disabling via FormControls works now (ae8d662)
- Combobox: use itemValueKey always (not only when multiple) (bf09eb0)
- Select: disabling via FormControls works now (c866d14)
- Select: use itemValueKey always (not only when multiple) (e4a2d10)
📝 Docs
- update docs (96705f5)
v0.45.0
⚠️ BREAKING CHANGES
- Combobox: If the
multiple
property is set totrue
, then an array of selected items is
returned. Ifmultiple
isfalse
, then the selected item is no longer returned as an array. - Autocomplete: If the
multiple
property is set totrue
, then an array of selected items is
returned. Ifmultiple
isfalse
, then the selected item is no longer returned as an array. - Select: If the
multiple
property is set totrue
, then an array of selected items is
returned. Ifmultiple
isfalse
, then the selected item is no longer returned as an array.
🔬 Code Refactoring
v0.44.0
⚠️ BREAKING CHANGES
- The badge property
bordered
is now calledborder
. - The
customFilterFn
property of theDataTableSettings
token is now called
customFilter
. - The
defaultSet
&defaultSize
properties of theIconSettings
token are now
callediconSet
&size
. - New setting tokens were introduced and some existing ones were split in certain cases
- Access modifiers of all components have been updated. Only properties which are
essential for the developer and which can be used safely are nowpublic
. - Menu: The menu items are no longer passed in the
default
slot but in theitems
slot.
The activator is now passed in thedefault
slot instead of theactivator
slot. - Menu: The menu component has been rewritten, therefore some input properties and the
settings token have changed.
📝 Docs
- Menu: add menu playground (f0b54c4)
🚀 Features
- Autocomplete, Combobox, Select: add menu flip support (2531309)
🛠 Other Commits
- remove unused component tests (will be treated later) (8ae92d7)
🔬 Code Refactoring
v0.43.0
⚠️ BREAKING CHANGES
- The Autocomplete, Combobox & Select components have been completely rewritten.
This has changed the way they are used - the simple input element (used by TextFields etc.) no longer has the
alwaysFloatingLabel property. - Input: The internal CSS class
.anglify-input
was renamed to.anglify-input-container
.
📝 Docs
- improve copy code example button styling (9877746)
🔬 Code Refactoring
v0.42.0
⚠️ BREAKING CHANGES
- ExpansionPanels: support for FormControls was dropped. Only form inputs must
support FormControls. Theactive
property was also removed. The active item should from now on be
set and controlled via thevalue
property. - BottomNavigation: support for FormControls was dropped. Only form inputs must
support FormControls. Theactive
property was also removed. The active item should from now on be
set and controlled via thevalue
property. - ItemGroup: support for FormControls was dropped. Only form inputs must
support FormControls. - ListItemGroup: support for FormControls was dropped. Only form inputs must
support FormControls. - Tabs: The
active
property was removed from the Tab component. From now on, the active
item should be set and controlled via thevalue
property.
🛠 Other Commits
- create primitives library & kitchensink application (e9f8559)
🚀 Features
- Checkbox: add focusable input property (500196d)
- ListItem: add highlight property (f4be8b7)
- Menu: add focusActivatorOnClose input property (b60e22e)
🔬 Code Refactoring
- BottomNavigation: remove FormControl support & active property (0497275)
- DataTable: use new menu internally instead of legacy directive (5368fb1)
- ExpansionPanels: remove FormControl support & active property (18275c4)
- ItemGroup: remove FormControl support (cb9d680)
- ListItemGroup: remove FormControl support (eb4ce65)
- Tabs: remove active input property (455604d)
🐛 Bug Fixes
- button: center loading state on block (1f94972)