- Item always expands when matching search filter.
- Build bundles.
- 100% code coverage.
export interface TreeviewHeaderTemplateContext {
config: TreeviewConfig;
item: TreeviewItem;
onCollapseExpand: () => void;
onCheckedChange: (checked: boolean) => void;
onFilterTextChange: (text: string) => void;
}
- Changes on interface of Treeview
export interface TreeviewItemTemplateContext {
item: TreeviewItem;
onCollapseExpand: () => void;
onCheckedChange: () => void;
}
- Changes on TreeviewConfig
export class TreeviewConfig {
hasAllCheckBox = true;
hasFilter = false;
hasCollapseExpand = false;
maxHeight = 500;
}
- Example for ngx-dropdown-treeview-select component.
- Expose DropdownDirective from DropdownTreeviewComponent.
- Support Bootstrap 4 beta.
- Support tri-state checkbox.
- Support configuration property to decouple parent and child.
- Rename ngOutletContext (deprecated) to ngTemplateOutletContext.
- Upgrade to Bootstrap 4 Final.
- Allow to toggle on checkbox's label.
- Update NPM packages to fix security problem from "zkat / ssri".
- Upgrade to Angular 10.
- Upgrade Bootstrap to 4.5.1
- Remove fontawesome
- Fix error ExpressionChangedAfterItHasBeenCheckedError