@progress/kendo-angular-dateinputs 23.0.0-develop.1 → 23.0.0-develop.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -256,22 +256,18 @@ export declare class DateInputComponent implements OnInit, AfterViewInit, Contro
256
256
  */
257
257
  hasPopup: string;
258
258
  /**
259
- * Specifies the size of the component.
260
- *
261
- * @default undefined
259
+ * Specifies the size of the component. The default value is set by the Kendo theme.
262
260
  *
263
261
  */
264
262
  set size(size: DateInputSize);
265
263
  get size(): DateInputSize;
266
264
  /**
267
- * Specifies the border radius of the component.
268
- * @default 'medium'
265
+ * Specifies the border radius of the component. The default value is set by the Kendo theme.
269
266
  */
270
267
  set rounded(rounded: DateInputRounded);
271
268
  get rounded(): DateInputRounded;
272
269
  /**
273
- * Specifies the fillMode of the component.
274
- * @default undefined
270
+ * Specifies the fillMode of the component. The default value is set by the Kendo theme.
275
271
  */
276
272
  set fillMode(fillMode: DateInputFillMode);
277
273
  get fillMode(): DateInputFillMode;
@@ -397,21 +397,17 @@ export declare class DatePickerComponent extends MultiTabStop implements Control
397
397
  */
398
398
  weekNumber: boolean;
399
399
  /**
400
- * Sets the size of the component.
401
- * @default undefined
400
+ * Sets the size of the component. The default value is set by the Kendo theme.
402
401
  */
403
402
  set size(size: DateInputSize);
404
403
  get size(): DateInputSize;
405
404
  /**
406
- * Specifies the border radius of the component.
407
- * @default undefined
405
+ * Specifies the border radius of the component. The default value is set by the Kendo theme.
408
406
  */
409
407
  set rounded(rounded: DateInputRounded);
410
408
  get rounded(): DateInputRounded;
411
409
  /**
412
- * Specifies the fillMode of the component.
413
- *
414
- * @default undefined
410
+ * Specifies the fillMode of the component. The default value is set by the Kendo theme.
415
411
  */
416
412
  set fillMode(fillMode: DateInputFillMode);
417
413
  get fillMode(): DateInputFillMode;
@@ -393,20 +393,18 @@ export declare class DateTimePickerComponent extends MultiTabStop implements OnI
393
393
  set defaultTab(tab: DateTimePickerActiveTab);
394
394
  get defaultTab(): DateTimePickerActiveTab;
395
395
  /**
396
- * Specifies the size of the component.
397
- *
398
- * @default undefined
396
+ * Specifies the size of the component. The default value is set by the Kendo theme.
399
397
  */
400
398
  set size(size: DateInputSize);
401
399
  get size(): DateInputSize;
402
400
  /**
403
- * Specifies the border radius of the component.
401
+ * Specifies the border radius of the component. The default value is set by the Kendo theme.
404
402
  *
405
403
  */
406
404
  set rounded(rounded: DateInputRounded);
407
405
  get rounded(): DateInputRounded;
408
406
  /**
409
- * Specifies the fill mode of the component.
407
+ * Specifies the fill mode of the component. The default value is set by the Kendo theme.
410
408
  *
411
409
  */
412
410
  set fillMode(fillMode: DateInputFillMode);
@@ -37,7 +37,7 @@ const packageMetadata = {
37
37
  productCode: 'KENDOUIANGULAR',
38
38
  productCodes: ['KENDOUIANGULAR'],
39
39
  publishDate: 0,
40
- version: '23.0.0-develop.1',
40
+ version: '23.0.0-develop.11',
41
41
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
42
42
  };
43
43
 
@@ -1758,15 +1758,12 @@ class ViewComponent {
1758
1758
  this.focusedCellId.emit(context.id);
1759
1759
  }
1760
1760
  const { isRangeEnd, isRangeStart } = context;
1761
- const isEndActive = this.activeRangeEnd === 'end' && isRangeEnd;
1762
- const isStartActive = this.activeRangeEnd === 'start' && isRangeStart;
1763
1761
  return stringifyClassObject({
1764
1762
  'k-range-end': !context.isOtherMonth && isRangeEnd,
1765
1763
  'k-range-mid': !context.isOtherMonth && context.isRangeMid,
1766
1764
  'k-range-split-end': !context.isOtherMonth && context.isRangeSplitEnd,
1767
1765
  'k-range-split-start': !context.isOtherMonth && context.isRangeSplitStart,
1768
1766
  'k-range-start': !context.isOtherMonth && isRangeStart,
1769
- 'k-active': isStartActive || isEndActive,
1770
1767
  'k-focus': !context.isOtherMonth && this.isActive && context.isFocused,
1771
1768
  'k-selected': !context.isOtherMonth && (context.isSelected || isRangeStart || isRangeEnd),
1772
1769
  'k-today': !context.isOtherMonth && context.isToday,
@@ -8826,9 +8823,7 @@ class DateInputComponent {
8826
8823
  */
8827
8824
  hasPopup;
8828
8825
  /**
8829
- * Specifies the size of the component.
8830
- *
8831
- * @default undefined
8826
+ * Specifies the size of the component. The default value is set by the Kendo theme.
8832
8827
  *
8833
8828
  */
8834
8829
  set size(size) {
@@ -8842,8 +8837,7 @@ class DateInputComponent {
8842
8837
  return this._size;
8843
8838
  }
8844
8839
  /**
8845
- * Specifies the border radius of the component.
8846
- * @default 'medium'
8840
+ * Specifies the border radius of the component. The default value is set by the Kendo theme.
8847
8841
  */
8848
8842
  set rounded(rounded) {
8849
8843
  this.renderer.removeClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
@@ -8856,8 +8850,7 @@ class DateInputComponent {
8856
8850
  return this._rounded;
8857
8851
  }
8858
8852
  /**
8859
- * Specifies the fillMode of the component.
8860
- * @default undefined
8853
+ * Specifies the fillMode of the component. The default value is set by the Kendo theme.
8861
8854
  */
8862
8855
  set fillMode(fillMode) {
8863
8856
  this.renderer.removeClass(this.wrapper.nativeElement, getFillModeClass('input', this.fillMode));
@@ -10330,8 +10323,7 @@ class DatePickerComponent extends MultiTabStop {
10330
10323
  */
10331
10324
  weekNumber = false;
10332
10325
  /**
10333
- * Sets the size of the component.
10334
- * @default undefined
10326
+ * Sets the size of the component. The default value is set by the Kendo theme.
10335
10327
  */
10336
10328
  set size(size) {
10337
10329
  this.renderer.removeClass(this.wrapper.nativeElement, getSizeClass('input', this.size));
@@ -10346,8 +10338,7 @@ class DatePickerComponent extends MultiTabStop {
10346
10338
  return this._size;
10347
10339
  }
10348
10340
  /**
10349
- * Specifies the border radius of the component.
10350
- * @default undefined
10341
+ * Specifies the border radius of the component. The default value is set by the Kendo theme.
10351
10342
  */
10352
10343
  set rounded(rounded) {
10353
10344
  this.renderer.removeClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
@@ -10360,9 +10351,7 @@ class DatePickerComponent extends MultiTabStop {
10360
10351
  return this._rounded;
10361
10352
  }
10362
10353
  /**
10363
- * Specifies the fillMode of the component.
10364
- *
10365
- * @default undefined
10354
+ * Specifies the fillMode of the component. The default value is set by the Kendo theme.
10366
10355
  */
10367
10356
  set fillMode(fillMode) {
10368
10357
  this.renderer.removeClass(this.wrapper.nativeElement, getFillModeClass('input', this.fillMode));
@@ -13935,8 +13924,7 @@ class TimePickerComponent extends MultiTabStop {
13935
13924
  return this._value;
13936
13925
  }
13937
13926
  /**
13938
- * Sets the size of the component.
13939
- * @default undefined
13927
+ * Sets the size of the component. The default value is set by the Kendo theme.
13940
13928
  */
13941
13929
  set size(size) {
13942
13930
  this.renderer.removeClass(this.wrapper.nativeElement, getSizeClass('input', this.size));
@@ -13951,8 +13939,7 @@ class TimePickerComponent extends MultiTabStop {
13951
13939
  return this._size;
13952
13940
  }
13953
13941
  /**
13954
- * Sets the rounded styling of the component.
13955
- * @default undefined
13942
+ * Sets the rounded styling of the component. The default value is set by the Kendo theme.
13956
13943
  *
13957
13944
  */
13958
13945
  set rounded(rounded) {
@@ -13966,8 +13953,7 @@ class TimePickerComponent extends MultiTabStop {
13966
13953
  return this._rounded;
13967
13954
  }
13968
13955
  /**
13969
- * Sets the fillMode of the component.
13970
- * @default undefined
13956
+ * Sets the fillMode of the component. The default value is set by the Kendo theme.
13971
13957
  */
13972
13958
  set fillMode(fillMode) {
13973
13959
  this.renderer.removeClass(this.wrapper.nativeElement, getFillModeClass('input', this.fillMode));
@@ -15849,9 +15835,7 @@ class DateTimePickerComponent extends MultiTabStop {
15849
15835
  return this._defaultTab;
15850
15836
  }
15851
15837
  /**
15852
- * Specifies the size of the component.
15853
- *
15854
- * @default undefined
15838
+ * Specifies the size of the component. The default value is set by the Kendo theme.
15855
15839
  */
15856
15840
  set size(size) {
15857
15841
  this.renderer.removeClass(this.wrapper.nativeElement, getSizeClass('input', this.size));
@@ -15866,7 +15850,7 @@ class DateTimePickerComponent extends MultiTabStop {
15866
15850
  return this._size;
15867
15851
  }
15868
15852
  /**
15869
- * Specifies the border radius of the component.
15853
+ * Specifies the border radius of the component. The default value is set by the Kendo theme.
15870
15854
  *
15871
15855
  */
15872
15856
  set rounded(rounded) {
@@ -15880,7 +15864,7 @@ class DateTimePickerComponent extends MultiTabStop {
15880
15864
  return this._rounded;
15881
15865
  }
15882
15866
  /**
15883
- * Specifies the fill mode of the component.
15867
+ * Specifies the fill mode of the component. The default value is set by the Kendo theme.
15884
15868
  *
15885
15869
  */
15886
15870
  set fillMode(fillMode) {
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1770286957,
11
- "version": "23.0.0-develop.1",
10
+ "publishDate": 1770728351,
11
+ "version": "23.0.0-develop.11",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dateinputs",
3
- "version": "23.0.0-develop.1",
3
+ "version": "23.0.0-develop.11",
4
4
  "description": "Kendo UI for Angular Date Inputs Package - Everything you need to add date selection functionality to apps (DatePicker, TimePicker, DateInput, DateRangePicker, DateTimePicker, Calendar, and MultiViewCalendar).",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -79,7 +79,7 @@
79
79
  "package": {
80
80
  "productName": "Kendo UI for Angular",
81
81
  "productCode": "KENDOUIANGULAR",
82
- "publishDate": 1770286957,
82
+ "publishDate": 1770728351,
83
83
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
84
84
  }
85
85
  },
@@ -90,19 +90,19 @@
90
90
  "@angular/forms": "19 - 21",
91
91
  "@angular/platform-browser": "19 - 21",
92
92
  "@progress/kendo-licensing": "^1.10.0",
93
- "@progress/kendo-angular-buttons": "23.0.0-develop.1",
94
- "@progress/kendo-angular-common": "23.0.0-develop.1",
95
- "@progress/kendo-angular-utils": "23.0.0-develop.1",
96
- "@progress/kendo-angular-intl": "23.0.0-develop.1",
97
- "@progress/kendo-angular-l10n": "23.0.0-develop.1",
98
- "@progress/kendo-angular-icons": "23.0.0-develop.1",
99
- "@progress/kendo-angular-popup": "23.0.0-develop.1",
100
- "@progress/kendo-angular-navigation": "23.0.0-develop.1",
93
+ "@progress/kendo-angular-buttons": "23.0.0-develop.11",
94
+ "@progress/kendo-angular-common": "23.0.0-develop.11",
95
+ "@progress/kendo-angular-utils": "23.0.0-develop.11",
96
+ "@progress/kendo-angular-intl": "23.0.0-develop.11",
97
+ "@progress/kendo-angular-l10n": "23.0.0-develop.11",
98
+ "@progress/kendo-angular-icons": "23.0.0-develop.11",
99
+ "@progress/kendo-angular-popup": "23.0.0-develop.11",
100
+ "@progress/kendo-angular-navigation": "23.0.0-develop.11",
101
101
  "rxjs": "^6.5.3 || ^7.0.0"
102
102
  },
103
103
  "dependencies": {
104
104
  "tslib": "^2.3.1",
105
- "@progress/kendo-angular-schematics": "23.0.0-develop.1",
105
+ "@progress/kendo-angular-schematics": "23.0.0-develop.11",
106
106
  "@progress/kendo-common": "^1.0.1",
107
107
  "@progress/kendo-date-math": "^1.1.0",
108
108
  "@progress/kendo-dateinputs-common": "^0.4.7"
@@ -230,21 +230,18 @@ export declare class TimePickerComponent extends MultiTabStop implements Control
230
230
  set value(value: Date | null);
231
231
  get value(): Date | null;
232
232
  /**
233
- * Sets the size of the component.
234
- * @default undefined
233
+ * Sets the size of the component. The default value is set by the Kendo theme.
235
234
  */
236
235
  set size(size: DateInputSize);
237
236
  get size(): DateInputSize;
238
237
  /**
239
- * Sets the rounded styling of the component.
240
- * @default undefined
238
+ * Sets the rounded styling of the component. The default value is set by the Kendo theme.
241
239
  *
242
240
  */
243
241
  set rounded(rounded: DateInputRounded);
244
242
  get rounded(): DateInputRounded;
245
243
  /**
246
- * Sets the fillMode of the component.
247
- * @default undefined
244
+ * Sets the fillMode of the component. The default value is set by the Kendo theme.
248
245
  */
249
246
  set fillMode(fillMode: DateInputFillMode);
250
247
  get fillMode(): DateInputFillMode;