@ember-eui/core 5.11.1 → 5.11.3
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/addon/components/eui-field-number/index.hbs +3 -1
- package/addon/components/eui-super-date-picker/date-popover/datetime-picker.hbs +1 -1
- package/addon/components/eui-super-date-picker/date-popover/datetime-picker.ts +4 -0
- package/addon/components/eui-super-date-picker/eui-quick-select-popover/eui-quick-select.hbs +1 -1
- package/addon/utils/css-mappings/eui-avatar.ts +2 -0
- package/package.json +2 -2
|
@@ -241,6 +241,10 @@ export default class DatetimePicker extends Component<DatetimePickerArgs> {
|
|
|
241
241
|
// }
|
|
242
242
|
// }
|
|
243
243
|
|
|
244
|
+
@action setYear(year: string) {
|
|
245
|
+
this.year = parseInt(year);
|
|
246
|
+
}
|
|
247
|
+
|
|
244
248
|
@action setMonth(month: string) {
|
|
245
249
|
this.monthMoment.month(parseInt(month));
|
|
246
250
|
this.updateDate();
|
package/addon/components/eui-super-date-picker/eui-quick-select-popover/eui-quick-select.hbs
CHANGED
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
aria-describedby={{concat this.timeSelectionId " " legendId}}
|
|
107
107
|
aria-label={{valueLabel}}
|
|
108
108
|
@value={{this.timeValue}}
|
|
109
|
-
|
|
109
|
+
{{on "input" (pick "target.value" (set this "timeValue"))}}
|
|
110
110
|
/>
|
|
111
111
|
</Token>
|
|
112
112
|
</EuiI18n>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember-eui/core",
|
|
3
|
-
"version": "5.11.
|
|
3
|
+
"version": "5.11.3",
|
|
4
4
|
"description": "Ember Components for Elastic UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon",
|
|
@@ -186,5 +186,5 @@
|
|
|
186
186
|
"volta": {
|
|
187
187
|
"extends": "../../package.json"
|
|
188
188
|
},
|
|
189
|
-
"gitHead": "
|
|
189
|
+
"gitHead": "e71ace0a99d5ed541a4e9d7aa372e32514b34c66"
|
|
190
190
|
}
|