@@ -35,7 +35,6 @@ import 'package:angular_components/model/date/date.dart';
3535import 'package:angular_components/model/date/date_formatter.dart' ;
3636import 'package:angular_components/model/observable/observable.dart' ;
3737import 'package:angular_components/utils/angular/managed_zone/interface.dart' ;
38- import 'package:angular_components/utils/angular/properties/properties.dart' ;
3938import 'package:angular_components/utils/browser/dom_service/dom_service.dart' ;
4039import 'package:angular_components/utils/showhide/showhide.dart' ;
4140
@@ -90,8 +89,8 @@ class DateRangeEditorComponent implements OnInit, AfterViewInit, Focusable {
9089 /// This is useful for reducing visual noise during popup open/close
9190 /// animations. Defaults to true.
9291 @Input ()
93- set allowHighlightUpdates (value) {
94- _allowHighlightUpdates = getBool ( value) ;
92+ set allowHighlightUpdates (bool value) {
93+ _allowHighlightUpdates = value;
9594 }
9695
9796 bool get allowHighlightUpdates => _allowHighlightUpdates;
@@ -103,8 +102,8 @@ class DateRangeEditorComponent implements OnInit, AfterViewInit, Focusable {
103102 ///
104103 /// Defaults to `true` .
105104 @Input ()
106- set supportsComparison (value) {
107- _supportsComparison = getBool ( value) ;
105+ set supportsComparison (bool value) {
106+ _supportsComparison = value;
108107 }
109108
110109 bool get supportsComparison => _supportsComparison;
@@ -117,8 +116,8 @@ class DateRangeEditorComponent implements OnInit, AfterViewInit, Focusable {
117116
118117 /// Whether to enable compact calendar styles.
119118 @Input ()
120- set compact (value) {
121- _compact = getBool ( value) ;
119+ set compact (bool value) {
120+ _compact = value;
122121 }
123122
124123 bool get compact => _compact;
@@ -130,8 +129,8 @@ class DateRangeEditorComponent implements OnInit, AfterViewInit, Focusable {
130129 ///
131130 /// Defaults to `true` .
132131 @Input ()
133- set supportsDaysInputs (value) {
134- _supportsDaysInputs = getBool ( value) ;
132+ set supportsDaysInputs (bool value) {
133+ _supportsDaysInputs = value;
135134 }
136135
137136 bool get supportsDaysInputs => _supportsDaysInputs;
@@ -211,8 +210,8 @@ class DateRangeEditorComponent implements OnInit, AfterViewInit, Focusable {
211210 bool get isCalendarCreated => _isCalendarCreated ?? false ;
212211
213212 @Input ('calendarCreated' )
214- set isCalendarCreated (value) {
215- _isCalendarCreated = getBool ( value) ;
213+ set isCalendarCreated (bool value) {
214+ _isCalendarCreated = value;
216215 }
217216
218217 /// Whether or not this date range picker supports clearing date range.
0 commit comments