Skip to content

Commit e850c24

Browse files
authored
Merge pull request #1993 from IgniteUI/mkirova/fix-date-range-attr
chore(*): Update DateRange attributes for proper gen for blazor.
2 parents 361e013 + 1699ced commit e850c24

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/date-range-picker/date-range-picker.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,13 @@ import { styles as shared } from './themes/shared/date-range-picker.common.css.j
6666
import { all } from './themes/themes.js';
6767
import { dateRangeValidators, isCompleteDateRange } from './validators.js';
6868

69+
/* jsonAPIPlainObject */
6970
export interface DateRangeValue {
7071
start: Date | null;
7172
end: Date | null;
7273
}
7374

75+
/* jsonAPIPlainObject */
7476
export interface CustomDateRange {
7577
label: string;
7678
dateRange: DateRangeValue;
@@ -306,7 +308,7 @@ export default class IgcDateRangePickerComponent extends FormAssociatedRequiredM
306308

307309
// #region General properties
308310

309-
/* @tsTwoWayProperty(true, "igcChange", "detail", false) */
311+
/* @tsTwoWayProperty(true, "igcChange", "detail", false, true) */
310312
/**
311313
* The value of the picker
312314
* @attr

0 commit comments

Comments
 (0)