aloha-vue 1.0.176 → 1.0.178
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
|
@@ -81,6 +81,7 @@ export default {
|
|
|
81
81
|
|
|
82
82
|
const {
|
|
83
83
|
filterBoolean,
|
|
84
|
+
filterDate,
|
|
84
85
|
} = AFiltersAPI();
|
|
85
86
|
|
|
86
87
|
const modelValuesForCurrentFilter = computed(() => {
|
|
@@ -93,6 +94,11 @@ export default {
|
|
|
93
94
|
label: filterBoolean(model.value),
|
|
94
95
|
}];
|
|
95
96
|
}
|
|
97
|
+
if (filter.value.type === "date") {
|
|
98
|
+
return [{
|
|
99
|
+
label: filterDate(model.value),
|
|
100
|
+
}];
|
|
101
|
+
}
|
|
96
102
|
if (filter.value.type === "select" ||
|
|
97
103
|
filter.value.type === "radio") {
|
|
98
104
|
const LABEL = get(filterDataKey.value, `${ model.value }.${ AKeyLabel }`);
|
|
@@ -714,14 +714,14 @@ export default {
|
|
|
714
714
|
type: "button",
|
|
715
715
|
ariaLabel: this.ariaLabelForButtonNextMonth,
|
|
716
716
|
innerHTML: "›",
|
|
717
|
-
onClick: () => this.handleIconMonth(
|
|
717
|
+
onClick: () => this.handleIconMonth(1),
|
|
718
718
|
}),
|
|
719
719
|
this.panel !== "TIME" && h("button", {
|
|
720
720
|
class: "pux_datepicker__icon_next_year pux_datepicker__calendar__tab",
|
|
721
721
|
type: "button",
|
|
722
722
|
ariaLabel: this.ariaLabelForButtonNextYear,
|
|
723
|
-
innerHTML: "&
|
|
724
|
-
onClick: () => this.handleIconYear(
|
|
723
|
+
innerHTML: "»",
|
|
724
|
+
onClick: () => this.handleIconYear(1),
|
|
725
725
|
}),
|
|
726
726
|
]),
|
|
727
727
|
]),
|