@vaadin/time-picker 23.0.4 → 23.1.0-alpha2

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/time-picker",
3
- "version": "23.0.4",
3
+ "version": "23.1.0-alpha2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,18 +34,18 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@polymer/polymer": "^3.0.0",
37
- "@vaadin/combo-box": "^23.0.4",
38
- "@vaadin/component-base": "^23.0.4",
39
- "@vaadin/field-base": "^23.0.4",
40
- "@vaadin/input-container": "^23.0.4",
41
- "@vaadin/vaadin-lumo-styles": "^23.0.4",
42
- "@vaadin/vaadin-material-styles": "^23.0.4",
43
- "@vaadin/vaadin-themable-mixin": "^23.0.4"
37
+ "@vaadin/combo-box": "23.1.0-alpha2",
38
+ "@vaadin/component-base": "23.1.0-alpha2",
39
+ "@vaadin/field-base": "23.1.0-alpha2",
40
+ "@vaadin/input-container": "23.1.0-alpha2",
41
+ "@vaadin/vaadin-lumo-styles": "23.1.0-alpha2",
42
+ "@vaadin/vaadin-material-styles": "23.1.0-alpha2",
43
+ "@vaadin/vaadin-themable-mixin": "23.1.0-alpha2"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@esm-bundle/chai": "^4.3.4",
47
47
  "@vaadin/testing-helpers": "^0.3.2",
48
48
  "sinon": "^9.2.0"
49
49
  },
50
- "gitHead": "d8db2046661c42fb5aac09ed683b500bf4613b26"
50
+ "gitHead": "6842dcb8b163d4512fae8d3d12a6559077a4aee6"
51
51
  }
@@ -39,7 +39,7 @@ class TimePickerComboBox extends ComboBoxMixin(ThemableMixin(PolymerElement)) {
39
39
  _item-id-path="[[itemIdPath]]"
40
40
  _item-label-path="[[itemLabelPath]]"
41
41
  loading="[[loading]]"
42
- theme="[[theme]]"
42
+ theme="[[_theme]]"
43
43
  ></vaadin-time-picker-dropdown>
44
44
  `;
45
45
  }
@@ -27,7 +27,7 @@ class TimePickerDropdown extends ComboBoxDropdown {
27
27
  hidden$="[[_isOverlayHidden(_items.*, loading)]]"
28
28
  loading$="[[loading]]"
29
29
  opened="{{_overlayOpened}}"
30
- theme$="[[theme]]"
30
+ theme$="[[_theme]]"
31
31
  position-target="[[positionTarget]]"
32
32
  no-vertical-overlap
33
33
  ></vaadin-time-picker-overlay>
@@ -108,7 +108,7 @@ class TimePicker extends PatternMixin(InputControlMixin(ThemableMixin(ElementMix
108
108
  readonly="[[readonly]]"
109
109
  auto-open-disabled="[[autoOpenDisabled]]"
110
110
  position-target="[[_inputContainer]]"
111
- theme$="[[theme]]"
111
+ theme$="[[_theme]]"
112
112
  on-change="__onChange"
113
113
  >
114
114
  <vaadin-input-container
@@ -116,7 +116,7 @@ class TimePicker extends PatternMixin(InputControlMixin(ThemableMixin(ElementMix
116
116
  readonly="[[readonly]]"
117
117
  disabled="[[disabled]]"
118
118
  invalid="[[invalid]]"
119
- theme$="[[theme]]"
119
+ theme$="[[_theme]]"
120
120
  >
121
121
  <slot name="prefix" slot="prefix"></slot>
122
122
  <slot name="input"></slot>