Skip to content
This repository was archived by the owner on May 20, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ const materialTreeLeftPaddingToken =
],
templateUrl: 'material_tree_group.html',
styleUrls: ['material_tree_group.scss.css'],
changeDetection: ChangeDetectionStrategy.OnPush,
)
class MaterialTreeGroupComponent<T> extends MaterialTreeNode<T>
implements OnDestroy {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import 'package:angular_components/model/selection/selection_model.dart';
directives: [DynamicComponent, NgFor, NgIf],
templateUrl: 'material_tree_group_flat_list.html',
styleUrls: ['material_tree_group_flat_list.scss.css'],
changeDetection: ChangeDetectionStrategy.OnPush,
)
class MaterialTreeGroupFlatListComponent<T> extends MaterialTreeNode<T> {
MaterialTreeGroupFlatListComponent(
Expand Down Expand Up @@ -50,7 +49,6 @@ class MaterialTreeGroupFlatListComponent<T> extends MaterialTreeNode<T> {
],
templateUrl: 'material_tree_group_flat_radio.html',
styleUrls: ['material_tree_group_flat_radio.scss.css'],
changeDetection: ChangeDetectionStrategy.OnPush,
)
class MaterialTreeGroupFlatRadioComponent<T> extends MaterialTreeNode<T> {
final DropdownHandle _dropdownHandle;
Expand Down Expand Up @@ -91,7 +89,6 @@ class MaterialTreeGroupFlatRadioComponent<T> extends MaterialTreeNode<T> {
],
templateUrl: 'material_tree_group_flat_check.html',
styleUrls: ['material_tree_group_flat_check.scss.css'],
changeDetection: ChangeDetectionStrategy.OnPush,
)
class MaterialTreeGroupFlatCheckComponent<T> extends MaterialTreeNode<T> {
final DropdownHandle _dropdownHandle;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ import 'material_tree_impl.dart';
templateUrl: 'material_tree_dropdown.html',
styleUrls: ['material_tree_dropdown.scss.css'],
visibility: Visibility.all, // injected by clients,
changeDetection: ChangeDetectionStrategy.OnPush,
)
class MaterialTreeDropdownComponent<T>
with DropdownHandle, MaterialTreeRoot<T>, SelectionContainer<T>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import 'package:angular_components/utils/async/async.dart';
selector: 'material-tree-filter',
directives: [materialInputDirectives, NgIf],
templateUrl: 'material_tree_filter.html',
changeDetection: ChangeDetectionStrategy.OnPush,
)
class MaterialTreeFilterComponent {
final StreamController _onFocusController =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import 'material_tree_root.dart';
],
viewProviders: [ExistingProvider(MaterialTreeRoot, MaterialTreeComponent)],
templateUrl: 'material_tree_impl.html',
changeDetection: ChangeDetectionStrategy.OnPush,
)
class MaterialTreeComponent<T> with MaterialTreeRoot<T>, SelectionContainer<T> {
/// Whether to hide check-marks in a single select dropdown
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import 'package:angular_components/material_progress/material_progress.dart';
directives: [MaterialProgressComponent, NgIf],
// TODO(google): Change preserveWhitespace to false to improve codesize.
preserveWhitespace: true,
changeDetection: ChangeDetectionStrategy.OnPush,
)
class DelayedContentComponent implements OnInit {
bool resolved = true;
Expand Down