Releases: WebFiori/ui
Releases · WebFiori/ui
Version 1.9.7 Stable
- Fixed a bug in copying text when adding multiple text nodes in the same level.
- Added new feature: The ability to remove child using its ID.
Version 1.9.6 Stable
- Fixed a bug in parsing attributes.
- Added new feature to the class
HTMLDoc
which is the ability to get multiple children with specific attribute value.
Version 1.9.5 Stable
- Fixed many bug when reading HTML file and loading slots.
- Modified how browser cache invalidation works.
- More tests to cover more use cases.
- Updated PHP docs to follow new standard.
Version 1.9.4 Stable
- Added support for loading custom .html files into PHP objects. The syntax also supports slots.
- Added a way to allow the developer to specify if the node is a void node or not.
- Fixed a small bug in settings attribute values.
Version 1.9.3 Stable
- Added support for chaining everywhere.
- Added short hand functions to add some elements directly to the body of a node.
Version 1.9.2 Stable
v1.9.2 Update README.md
Version 1.9.1 Stable
v1.9.1 Update Stack.php
Version 1.9.0 Stable
Merge pull request #7 from usernane/dev Dev
Version 1.8.9 Stable
New Features:
- Added support for empty attributes (attributes without values such as
disabled
).
Fixes and Improvements:
- Added a way to supply list items in the constructor of the class
OrderedList
and the classUnorderedList
. - Fixed small bug in the class
CodeSinppit
Other Changes:
- Renamed class
LinkNode
toAnchor
.
Version 1.8.8 Stable
New Features:
- Now its possible to loop throgh child nodes of HTMLNode instance using foreach loop.
- Added new method that can be used to apply class name to multiple children.
- Added support for using 'count()' to count number of children of HTMLNode instance.
Fixes:
- Fix to a bug which can happen in case of parsing HTML from text to HTMLNode object.