@vaadin/date-time-picker 23.1.0-beta1 → 23.1.0-beta2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/date-time-picker",
3
- "version": "23.1.0-beta1",
3
+ "version": "23.1.0-beta2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,19 +34,19 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@polymer/polymer": "^3.0.0",
37
- "@vaadin/component-base": "23.1.0-beta1",
38
- "@vaadin/custom-field": "23.1.0-beta1",
39
- "@vaadin/date-picker": "23.1.0-beta1",
40
- "@vaadin/field-base": "23.1.0-beta1",
41
- "@vaadin/time-picker": "23.1.0-beta1",
42
- "@vaadin/vaadin-lumo-styles": "23.1.0-beta1",
43
- "@vaadin/vaadin-material-styles": "23.1.0-beta1",
44
- "@vaadin/vaadin-themable-mixin": "23.1.0-beta1"
37
+ "@vaadin/component-base": "23.1.0-beta2",
38
+ "@vaadin/custom-field": "23.1.0-beta2",
39
+ "@vaadin/date-picker": "23.1.0-beta2",
40
+ "@vaadin/field-base": "23.1.0-beta2",
41
+ "@vaadin/time-picker": "23.1.0-beta2",
42
+ "@vaadin/vaadin-lumo-styles": "23.1.0-beta2",
43
+ "@vaadin/vaadin-material-styles": "23.1.0-beta2",
44
+ "@vaadin/vaadin-themable-mixin": "23.1.0-beta2"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@esm-bundle/chai": "^4.3.4",
48
48
  "@vaadin/testing-helpers": "^0.3.2",
49
49
  "sinon": "^13.0.2"
50
50
  },
51
- "gitHead": "8be43cf83102a6b9ccf309687446e590ce0164e8"
51
+ "gitHead": "f11f9245a0b5e6bf912725a501c27c24b74e7c8d"
52
52
  }
@@ -539,7 +539,7 @@ class DateTimePicker extends FieldMixin(
539
539
  this.__syncI18n(this, newDatePicker, datePickerI18nProps);
540
540
  }
541
541
 
542
- // min and max are always synchronized from date time picker (host) to inner fields because time picker
542
+ // Min and max are always synchronized from date time picker (host) to inner fields because time picker
543
543
  // min and max need to be dynamically set depending on currently selected date instead of simple propagation
544
544
  newDatePicker.min = this.__formatDateISO(this.__minDateTime, this.__defaultDateMinMaxValue);
545
545
  newDatePicker.max = this.__formatDateISO(this.__maxDateTime, this.__defaultDateMinMaxValue);
@@ -579,7 +579,7 @@ class DateTimePicker extends FieldMixin(
579
579
  this.__syncI18n(this, newTimePicker, timePickerI18nProps);
580
580
  }
581
581
 
582
- // min and max are always synchronized from parent to slotted because time picker min and max
582
+ // Min and max are always synchronized from parent to slotted because time picker min and max
583
583
  // need to be dynamically set depending on currently selected date instead of simple propagation
584
584
  this.__updateTimePickerMinMax();
585
585
  newTimePicker.required = this.required;