vuetify 2.5.13 → 2.6.1
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/dist/json/attributes.json +188 -0
- package/dist/json/tags.json +86 -20
- package/dist/json/web-types.json +697 -139
- package/dist/vuetify.css +136 -5
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +927 -304
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VAutocomplete/VAutocomplete.js +1 -0
- package/es5/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/es5/components/VBanner/VBanner.js +3 -2
- package/es5/components/VBanner/VBanner.js.map +1 -1
- package/es5/components/VBottomSheet/VBottomSheet.js +1 -4
- package/es5/components/VBottomSheet/VBottomSheet.js.map +1 -1
- package/es5/components/VCalendar/VCalendar.js +2 -2
- package/es5/components/VCalendar/VCalendar.js.map +1 -1
- package/es5/components/VCalendar/VCalendarDaily.js +16 -8
- package/es5/components/VCalendar/VCalendarDaily.js.map +1 -1
- package/es5/components/VCalendar/VCalendarWeekly.js +14 -10
- package/es5/components/VCalendar/VCalendarWeekly.js.map +1 -1
- package/es5/components/VCalendar/mixins/calendar-with-events.js +19 -20
- package/es5/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/es5/components/VCalendar/mixins/mouse.js +13 -4
- package/es5/components/VCalendar/mixins/mouse.js.map +1 -1
- package/es5/components/VDataTable/MobileRow.js +2 -2
- package/es5/components/VDataTable/MobileRow.js.map +1 -1
- package/es5/components/VDataTable/Row.js +25 -9
- package/es5/components/VDataTable/Row.js.map +1 -1
- package/es5/components/VDataTable/VDataTableHeaderDesktop.js +1 -1
- package/es5/components/VDataTable/VDataTableHeaderDesktop.js.map +1 -1
- package/es5/components/VDatePicker/mixins/date-picker-table.js +13 -3
- package/es5/components/VDatePicker/mixins/date-picker-table.js.map +1 -1
- package/es5/components/VDialog/VDialog.js +4 -10
- package/es5/components/VDialog/VDialog.js.map +1 -1
- package/es5/components/VInput/VInput.js +3 -1
- package/es5/components/VInput/VInput.js.map +1 -1
- package/es5/components/VItemGroup/VItemGroup.js +8 -4
- package/es5/components/VItemGroup/VItemGroup.js.map +1 -1
- package/es5/components/VMenu/VMenu.js +1 -1
- package/es5/components/VMenu/VMenu.js.map +1 -1
- package/es5/components/VOtpInput/VOtpInput.js +375 -0
- package/es5/components/VOtpInput/VOtpInput.js.map +1 -0
- package/es5/components/VOtpInput/index.js +20 -0
- package/es5/components/VOtpInput/index.js.map +1 -0
- package/es5/components/VRadioGroup/VRadioGroup.js +1 -3
- package/es5/components/VRadioGroup/VRadioGroup.js.map +1 -1
- package/es5/components/VSlideGroup/VSlideGroup.js +8 -1
- package/es5/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/es5/components/VSnackbar/VSnackbar.js +4 -8
- package/es5/components/VSnackbar/VSnackbar.js.map +1 -1
- package/es5/components/VTabs/VTab.js +3 -2
- package/es5/components/VTabs/VTab.js.map +1 -1
- package/es5/components/VTextField/VTextField.js +6 -1
- package/es5/components/VTextField/VTextField.js.map +1 -1
- package/es5/components/VTooltip/VTooltip.js +0 -1
- package/es5/components/VTooltip/VTooltip.js.map +1 -1
- package/es5/components/VTreeview/VTreeview.js +2 -1
- package/es5/components/VTreeview/VTreeview.js.map +1 -1
- package/es5/components/VTreeview/VTreeviewNode.js +3 -1
- package/es5/components/VTreeview/VTreeviewNode.js.map +1 -1
- package/es5/components/index.js +13 -0
- package/es5/components/index.js.map +1 -1
- package/es5/directives/click-outside/index.js +3 -1
- package/es5/directives/click-outside/index.js.map +1 -1
- package/es5/directives/intersect/index.js +8 -5
- package/es5/directives/intersect/index.js.map +1 -1
- package/es5/directives/mutate/index.js +3 -2
- package/es5/directives/mutate/index.js.map +1 -1
- package/es5/directives/resize/index.js +3 -1
- package/es5/directives/resize/index.js.map +1 -1
- package/es5/directives/ripple/index.js +0 -7
- package/es5/directives/ripple/index.js.map +1 -1
- package/es5/directives/scroll/index.js.map +1 -1
- package/es5/framework.js +1 -1
- package/es5/locale/da.js +77 -0
- package/es5/locale/da.js.map +1 -0
- package/es5/locale/index.js +8 -0
- package/es5/locale/index.js.map +1 -1
- package/es5/locale/it.js +6 -6
- package/es5/locale/it.js.map +1 -1
- package/es5/mixins/intersectable/index.js +6 -0
- package/es5/mixins/intersectable/index.js.map +1 -1
- package/es5/mixins/routable/index.js +2 -5
- package/es5/mixins/routable/index.js.map +1 -1
- package/es5/util/helpers.js +13 -6
- package/es5/util/helpers.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +1 -0
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VBanner/VBanner.js +3 -2
- package/lib/components/VBanner/VBanner.js.map +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.js +1 -4
- package/lib/components/VBottomSheet/VBottomSheet.js.map +1 -1
- package/lib/components/VCalendar/VCalendar.js +2 -2
- package/lib/components/VCalendar/VCalendar.js.map +1 -1
- package/lib/components/VCalendar/VCalendarDaily.js +20 -8
- package/lib/components/VCalendar/VCalendarDaily.js.map +1 -1
- package/lib/components/VCalendar/VCalendarWeekly.js +10 -2
- package/lib/components/VCalendar/VCalendarWeekly.js.map +1 -1
- package/lib/components/VCalendar/mixins/calendar-with-events.js +6 -3
- package/lib/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/lib/components/VCalendar/mixins/mouse.js +9 -4
- package/lib/components/VCalendar/mixins/mouse.js.map +1 -1
- package/lib/components/VDataTable/MobileRow.js +2 -2
- package/lib/components/VDataTable/MobileRow.js.map +1 -1
- package/lib/components/VDataTable/Row.js +15 -8
- package/lib/components/VDataTable/Row.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaderDesktop.js +1 -1
- package/lib/components/VDataTable/VDataTableHeaderDesktop.js.map +1 -1
- package/lib/components/VDatePicker/mixins/date-picker-table.js +12 -2
- package/lib/components/VDatePicker/mixins/date-picker-table.js.map +1 -1
- package/lib/components/VDialog/VDialog.js +4 -10
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VInput/VInput.js +2 -0
- package/lib/components/VInput/VInput.js.map +1 -1
- package/lib/components/VItemGroup/VItemGroup.js +7 -5
- package/lib/components/VItemGroup/VItemGroup.js.map +1 -1
- package/lib/components/VMenu/VMenu.js +1 -1
- package/lib/components/VMenu/VMenu.js.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.js +342 -0
- package/lib/components/VOtpInput/VOtpInput.js.map +1 -0
- package/lib/components/VOtpInput/index.js +4 -0
- package/lib/components/VOtpInput/index.js.map +1 -0
- package/lib/components/VRadioGroup/VRadioGroup.js +2 -4
- package/lib/components/VRadioGroup/VRadioGroup.js.map +1 -1
- package/lib/components/VSlideGroup/VSlideGroup.js +9 -1
- package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.js +4 -8
- package/lib/components/VSnackbar/VSnackbar.js.map +1 -1
- package/lib/components/VTabs/VTab.js +3 -2
- package/lib/components/VTabs/VTab.js.map +1 -1
- package/lib/components/VTextField/VTextField.js +8 -1
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/components/VTooltip/VTooltip.js +0 -1
- package/lib/components/VTooltip/VTooltip.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.js +2 -1
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewNode.js +3 -1
- package/lib/components/VTreeview/VTreeviewNode.js.map +1 -1
- package/lib/components/index.js +1 -0
- package/lib/components/index.js.map +1 -1
- package/lib/directives/click-outside/index.js +3 -1
- package/lib/directives/click-outside/index.js.map +1 -1
- package/lib/directives/intersect/index.js +7 -5
- package/lib/directives/intersect/index.js.map +1 -1
- package/lib/directives/mutate/index.js +3 -2
- package/lib/directives/mutate/index.js.map +1 -1
- package/lib/directives/resize/index.js +3 -1
- package/lib/directives/resize/index.js.map +1 -1
- package/lib/directives/ripple/index.js +0 -7
- package/lib/directives/ripple/index.js.map +1 -1
- package/lib/directives/scroll/index.js.map +1 -1
- package/lib/framework.js +1 -1
- package/lib/locale/da.js +70 -0
- package/lib/locale/da.js.map +1 -0
- package/lib/locale/index.js +1 -0
- package/lib/locale/index.js.map +1 -1
- package/lib/locale/it.js +6 -6
- package/lib/locale/it.js.map +1 -1
- package/lib/mixins/intersectable/index.js +4 -0
- package/lib/mixins/intersectable/index.js.map +1 -1
- package/lib/mixins/routable/index.js +3 -5
- package/lib/mixins/routable/index.js.map +1 -1
- package/lib/util/helpers.js +13 -6
- package/lib/util/helpers.js.map +1 -1
- package/package.json +2 -2
- package/src/components/VAutocomplete/VAutocomplete.ts +2 -0
- package/src/components/VAutocomplete/__tests__/VAutocomplete3.spec.ts +16 -0
- package/src/components/VBanner/VBanner.ts +16 -10
- package/src/components/VBottomSheet/VBottomSheet.ts +1 -4
- package/src/components/VCalendar/VCalendar.ts +3 -2
- package/src/components/VCalendar/VCalendarCategory.sass +67 -0
- package/src/components/VCalendar/VCalendarDaily.ts +9 -8
- package/src/components/VCalendar/VCalendarWeekly.ts +4 -2
- package/src/components/VCalendar/_variables.scss +4 -0
- package/src/components/VCalendar/mixins/calendar-with-events.ts +4 -3
- package/src/components/VCalendar/mixins/mouse.ts +10 -4
- package/src/components/VDataTable/MobileRow.ts +2 -2
- package/src/components/VDataTable/Row.ts +23 -16
- package/src/components/VDataTable/VDataTableHeaderDesktop.ts +1 -1
- package/src/components/VDatePicker/__tests__/VDatePicker.date.spec.ts +16 -0
- package/src/components/VDatePicker/__tests__/VDatePicker.month.spec.ts +16 -0
- package/src/components/VDatePicker/mixins/date-picker-table.ts +24 -2
- package/src/components/VDialog/VDialog.ts +4 -10
- package/src/components/VInput/VInput.sass +8 -0
- package/src/components/VInput/VInput.ts +2 -0
- package/src/components/VItemGroup/VItemGroup.ts +5 -3
- package/src/components/VItemGroup/__tests__/VItemGroup.spec.ts +19 -2
- package/src/components/VMenu/VMenu.ts +1 -1
- package/src/components/VOtpInput/VOtpInput.sass +37 -0
- package/src/components/VOtpInput/VOtpInput.ts +322 -0
- package/src/components/VOtpInput/__tests__/VOtpInput.spec.ts +294 -0
- package/src/components/VOtpInput/_variables.scss +4 -0
- package/src/components/VOtpInput/index.ts +4 -0
- package/src/components/VRadioGroup/VRadioGroup.ts +0 -4
- package/src/components/VSlideGroup/VSlideGroup.ts +14 -1
- package/src/components/VSnackbar/VSnackbar.ts +3 -7
- package/src/components/VSnackbar/__tests__/VSnackbar.spec.ts +4 -1
- package/src/components/VStepper/VStepper.sass +4 -4
- package/src/components/VTabs/VTab.ts +10 -2
- package/src/components/VTextField/VTextField.ts +8 -3
- package/src/components/VTooltip/VTooltip.sass +4 -1
- package/src/components/VTooltip/VTooltip.ts +0 -1
- package/src/components/VTooltip/_variables.scss +1 -0
- package/src/components/VTreeview/VTreeview.ts +2 -1
- package/src/components/VTreeview/VTreeviewNode.ts +3 -1
- package/src/components/index.ts +1 -0
- package/src/directives/click-outside/index.ts +2 -2
- package/src/directives/intersect/index.ts +6 -5
- package/src/directives/mutate/index.ts +2 -3
- package/src/directives/resize/index.ts +2 -2
- package/src/directives/ripple/VRipple.sass +4 -1
- package/src/directives/ripple/index.ts +0 -7
- package/src/directives/scroll/index.ts +1 -1
- package/src/globals.d.ts +5 -5
- package/src/locale/da.ts +69 -0
- package/src/locale/index.ts +1 -0
- package/src/locale/it.ts +6 -6
- package/src/mixins/intersectable/index.ts +6 -0
- package/src/mixins/routable/index.ts +1 -4
- package/src/styles/settings/_variables.scss +4 -3
- package/src/util/__tests__/__snapshots__/helpers.spec.ts.snap +11 -0
- package/src/util/__tests__/helpers.spec.ts +17 -0
- package/src/util/helpers.ts +14 -7
- package/src/directives/ripple/_variables.scss +0 -6
package/dist/vuetify.js
CHANGED
|
@@ -1252,6 +1252,7 @@ var defaultMenuProps = __assign(__assign({}, _VSelect_VSelect__WEBPACK_IMPORTED_
|
|
|
1252
1252
|
var value = target.value; // If typing and menu is not currently active
|
|
1253
1253
|
|
|
1254
1254
|
if (target.value) this.activateMenu();
|
|
1255
|
+
if (!this.multiple && value === '') this.deleteCurrentItem();
|
|
1255
1256
|
this.internalSearch = value;
|
|
1256
1257
|
this.badInput = target.validity && target.validity.badInput;
|
|
1257
1258
|
},
|
|
@@ -1870,7 +1871,7 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
1870
1871
|
}
|
|
1871
1872
|
},
|
|
1872
1873
|
render: function render(h) {
|
|
1873
|
-
|
|
1874
|
+
var data = {
|
|
1874
1875
|
staticClass: 'v-banner',
|
|
1875
1876
|
attrs: this.attrs$,
|
|
1876
1877
|
class: this.classes,
|
|
@@ -1879,7 +1880,8 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
1879
1880
|
name: 'show',
|
|
1880
1881
|
value: this.isActive
|
|
1881
1882
|
}]
|
|
1882
|
-
}
|
|
1883
|
+
};
|
|
1884
|
+
return h(_transitions__WEBPACK_IMPORTED_MODULE_4__["VExpandTransition"], [h('div', this.outlined ? data : this.setBackgroundColor(this.color, data), [this.genWrapper()])]);
|
|
1883
1885
|
}
|
|
1884
1886
|
}));
|
|
1885
1887
|
|
|
@@ -2132,10 +2134,7 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
2132
2134
|
name: 'v-bottom-sheet',
|
|
2133
2135
|
props: {
|
|
2134
2136
|
inset: Boolean,
|
|
2135
|
-
maxWidth:
|
|
2136
|
-
type: [String, Number],
|
|
2137
|
-
default: 'auto'
|
|
2138
|
-
},
|
|
2137
|
+
maxWidth: [String, Number],
|
|
2139
2138
|
transition: {
|
|
2140
2139
|
type: String,
|
|
2141
2140
|
default: 'bottom-sheet-transition'
|
|
@@ -3173,13 +3172,13 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
3173
3172
|
value: this.updateEventVisibility
|
|
3174
3173
|
}],
|
|
3175
3174
|
on: __assign(__assign({}, this.$listeners), {
|
|
3176
|
-
'click:date': function clickDate(day) {
|
|
3175
|
+
'click:date': function clickDate(day, e) {
|
|
3177
3176
|
if (_this.$listeners.input) {
|
|
3178
3177
|
_this.$emit('input', day.date);
|
|
3179
3178
|
}
|
|
3180
3179
|
|
|
3181
3180
|
if (_this.$listeners['click:date']) {
|
|
3182
|
-
_this.$emit('click:date', day);
|
|
3181
|
+
_this.$emit('click:date', day, e);
|
|
3183
3182
|
}
|
|
3184
3183
|
}
|
|
3185
3184
|
}),
|
|
@@ -3560,8 +3559,10 @@ var __spread = undefined && undefined.__spread || function () {
|
|
|
3560
3559
|
key: day.date,
|
|
3561
3560
|
staticClass: 'v-calendar-daily_head-day',
|
|
3562
3561
|
class: this.getRelativeClasses(day),
|
|
3563
|
-
on: this.getDefaultMouseEventHandlers(':day', function (
|
|
3564
|
-
return
|
|
3562
|
+
on: this.getDefaultMouseEventHandlers(':day', function (nativeEvent) {
|
|
3563
|
+
return __assign({
|
|
3564
|
+
nativeEvent: nativeEvent
|
|
3565
|
+
}, _this.getSlotScope(day));
|
|
3565
3566
|
})
|
|
3566
3567
|
}, __spread([this.genHeadWeekday(day), this.genHeadDayLabel(day)], this.genDayHeader(day, index)));
|
|
3567
3568
|
},
|
|
@@ -3606,8 +3607,10 @@ var __spread = undefined && undefined.__spread || function () {
|
|
|
3606
3607
|
prevent: true,
|
|
3607
3608
|
result: false
|
|
3608
3609
|
}
|
|
3609
|
-
}, function (
|
|
3610
|
-
return
|
|
3610
|
+
}, function (nativeEvent) {
|
|
3611
|
+
return __assign({
|
|
3612
|
+
nativeEvent: nativeEvent
|
|
3613
|
+
}, day);
|
|
3611
3614
|
})
|
|
3612
3615
|
}, this.dayFormatter(day, false));
|
|
3613
3616
|
},
|
|
@@ -3646,8 +3649,10 @@ var __spread = undefined && undefined.__spread || function () {
|
|
|
3646
3649
|
key: day.date,
|
|
3647
3650
|
staticClass: 'v-calendar-daily__day',
|
|
3648
3651
|
class: this.getRelativeClasses(day),
|
|
3649
|
-
on: this.getDefaultMouseEventHandlers(':time', function (
|
|
3650
|
-
return
|
|
3652
|
+
on: this.getDefaultMouseEventHandlers(':time', function (nativeEvent) {
|
|
3653
|
+
return __assign({
|
|
3654
|
+
nativeEvent: nativeEvent
|
|
3655
|
+
}, _this.getSlotScope(_this.getTimestampAtEvent(nativeEvent, day)));
|
|
3651
3656
|
})
|
|
3652
3657
|
}, __spread(this.genDayIntervals(index), this.genDayBody(day)));
|
|
3653
3658
|
},
|
|
@@ -3687,8 +3692,10 @@ var __spread = undefined && undefined.__spread || function () {
|
|
|
3687
3692
|
style: {
|
|
3688
3693
|
width: width
|
|
3689
3694
|
},
|
|
3690
|
-
on: this.getDefaultMouseEventHandlers(':interval', function (
|
|
3691
|
-
return
|
|
3695
|
+
on: this.getDefaultMouseEventHandlers(':interval', function (nativeEvent) {
|
|
3696
|
+
return __assign({
|
|
3697
|
+
nativeEvent: nativeEvent
|
|
3698
|
+
}, _this.getTimestampAtEvent(nativeEvent, _this.parsedStart));
|
|
3692
3699
|
})
|
|
3693
3700
|
};
|
|
3694
3701
|
return this.$createElement('div', data, this.genIntervalLabels());
|
|
@@ -3979,8 +3986,10 @@ var __spread = undefined && undefined.__spread || function () {
|
|
|
3979
3986
|
key: day.date,
|
|
3980
3987
|
staticClass: 'v-calendar-weekly__day',
|
|
3981
3988
|
class: this.getRelativeClasses(day, outside),
|
|
3982
|
-
on: this.getDefaultMouseEventHandlers(':day', function (
|
|
3983
|
-
return
|
|
3989
|
+
on: this.getDefaultMouseEventHandlers(':day', function (nativeEvent) {
|
|
3990
|
+
return __assign({
|
|
3991
|
+
nativeEvent: nativeEvent
|
|
3992
|
+
}, day);
|
|
3984
3993
|
})
|
|
3985
3994
|
}, __spread([this.genDayLabel(day)], Object(_util_helpers__WEBPACK_IMPORTED_MODULE_3__["getSlot"])(this, 'day', function () {
|
|
3986
3995
|
return __assign({
|
|
@@ -4016,8 +4025,10 @@ var __spread = undefined && undefined.__spread || function () {
|
|
|
4016
4025
|
prevent: true,
|
|
4017
4026
|
result: false
|
|
4018
4027
|
}
|
|
4019
|
-
}, function (
|
|
4020
|
-
return
|
|
4028
|
+
}, function (nativeEvent) {
|
|
4029
|
+
return __assign({
|
|
4030
|
+
nativeEvent: nativeEvent
|
|
4031
|
+
}, day);
|
|
4021
4032
|
})
|
|
4022
4033
|
}, hasMonth ? this.monthFormatter(day, this.shortMonths) + ' ' + this.dayFormatter(day, false) : this.dayFormatter(day, false));
|
|
4023
4034
|
},
|
|
@@ -4585,8 +4596,6 @@ var MINUTES_IN_DAY = 1440;
|
|
|
4585
4596
|
});
|
|
4586
4597
|
},
|
|
4587
4598
|
genMore: function genMore(day) {
|
|
4588
|
-
var _this = this;
|
|
4589
|
-
|
|
4590
4599
|
var _a;
|
|
4591
4600
|
|
|
4592
4601
|
var eventHeight = this.eventHeight;
|
|
@@ -4604,11 +4613,11 @@ var MINUTES_IN_DAY = 1440;
|
|
|
4604
4613
|
name: 'ripple',
|
|
4605
4614
|
value: (_a = this.eventRipple) !== null && _a !== void 0 ? _a : true
|
|
4606
4615
|
}],
|
|
4607
|
-
on: {
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
}
|
|
4611
|
-
},
|
|
4616
|
+
on: this.getDefaultMouseEventHandlers(':more', function (nativeEvent) {
|
|
4617
|
+
return __assign({
|
|
4618
|
+
nativeEvent: nativeEvent
|
|
4619
|
+
}, day);
|
|
4620
|
+
}),
|
|
4612
4621
|
style: {
|
|
4613
4622
|
display: 'none',
|
|
4614
4623
|
height: eventHeight + "px",
|
|
@@ -4986,9 +4995,18 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
4986
4995
|
|
|
4987
4996
|
|
|
4988
4997
|
if (e && 'touches' in e) {
|
|
4989
|
-
var
|
|
4998
|
+
var classSeparator_1 = ' ';
|
|
4999
|
+
var eventTargetClasses_1 = (_a = e.currentTarget) === null || _a === void 0 ? void 0 : _a.className.split(classSeparator_1);
|
|
5000
|
+
var currentTargets = document.elementsFromPoint(e.changedTouches[0].clientX, e.changedTouches[0].clientY); // Get "the same kind" current hovering target by checking
|
|
5001
|
+
// If element has the same class of initial touch start element (which has touch event listener registered)
|
|
5002
|
+
|
|
5003
|
+
var currentTarget = currentTargets.find(function (t) {
|
|
5004
|
+
return t.className.split(classSeparator_1).some(function (c) {
|
|
5005
|
+
return eventTargetClasses_1.includes(c);
|
|
5006
|
+
});
|
|
5007
|
+
});
|
|
4990
5008
|
|
|
4991
|
-
if (currentTarget && !((
|
|
5009
|
+
if (currentTarget && !((_b = e.target) === null || _b === void 0 ? void 0 : _b.isSameNode(currentTarget))) {
|
|
4992
5010
|
currentTarget.dispatchEvent(new TouchEvent(e.type, {
|
|
4993
5011
|
changedTouches: e.changedTouches,
|
|
4994
5012
|
targetTouches: e.targetTouches,
|
|
@@ -4998,7 +5016,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
4998
5016
|
}
|
|
4999
5017
|
}
|
|
5000
5018
|
|
|
5001
|
-
_this.$emit(event, getEvent(e));
|
|
5019
|
+
_this.$emit(event, getEvent(e), e);
|
|
5002
5020
|
}
|
|
5003
5021
|
|
|
5004
5022
|
return eventOptions.result;
|
|
@@ -10773,8 +10791,8 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
10773
10791
|
var children = [];
|
|
10774
10792
|
var value = Object(_util_helpers__WEBPACK_IMPORTED_MODULE_1__["getObjectValueByPath"])(props.item, header.value);
|
|
10775
10793
|
var slotName = header.value;
|
|
10776
|
-
var scopedSlot = data.scopedSlots && data.scopedSlots[slotName];
|
|
10777
|
-
var regularSlot = computedSlots[slotName];
|
|
10794
|
+
var scopedSlot = data.scopedSlots && data.scopedSlots.hasOwnProperty(slotName) && data.scopedSlots[slotName];
|
|
10795
|
+
var regularSlot = computedSlots.hasOwnProperty(slotName) && computedSlots[slotName];
|
|
10778
10796
|
|
|
10779
10797
|
if (scopedSlot) {
|
|
10780
10798
|
children.push(scopedSlot({
|
|
@@ -10824,10 +10842,52 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10824
10842
|
/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "vue");
|
|
10825
10843
|
/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(vue__WEBPACK_IMPORTED_MODULE_0__);
|
|
10826
10844
|
/* harmony import */ var _util_helpers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../util/helpers */ "./src/util/helpers.ts");
|
|
10827
|
-
|
|
10845
|
+
var __read = undefined && undefined.__read || function (o, n) {
|
|
10846
|
+
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
10847
|
+
if (!m) return o;
|
|
10848
|
+
var i = m.call(o),
|
|
10849
|
+
r,
|
|
10850
|
+
ar = [],
|
|
10851
|
+
e;
|
|
10852
|
+
|
|
10853
|
+
try {
|
|
10854
|
+
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) {
|
|
10855
|
+
ar.push(r.value);
|
|
10856
|
+
}
|
|
10857
|
+
} catch (error) {
|
|
10858
|
+
e = {
|
|
10859
|
+
error: error
|
|
10860
|
+
};
|
|
10861
|
+
} finally {
|
|
10862
|
+
try {
|
|
10863
|
+
if (r && !r.done && (m = i["return"])) m.call(i);
|
|
10864
|
+
} finally {
|
|
10865
|
+
if (e) throw e.error;
|
|
10866
|
+
}
|
|
10867
|
+
}
|
|
10868
|
+
|
|
10869
|
+
return ar;
|
|
10870
|
+
};
|
|
10871
|
+
|
|
10872
|
+
var __spread = undefined && undefined.__spread || function () {
|
|
10873
|
+
for (var ar = [], i = 0; i < arguments.length; i++) {
|
|
10874
|
+
ar = ar.concat(__read(arguments[i]));
|
|
10875
|
+
}
|
|
10876
|
+
|
|
10877
|
+
return ar;
|
|
10878
|
+
}; // Types
|
|
10879
|
+
|
|
10880
|
+
|
|
10828
10881
|
// Utils
|
|
10829
10882
|
|
|
10830
10883
|
|
|
10884
|
+
|
|
10885
|
+
function needsTd(slot) {
|
|
10886
|
+
var _a;
|
|
10887
|
+
|
|
10888
|
+
return slot.length !== 1 || !['td', 'th'].includes((_a = slot[0]) === null || _a === void 0 ? void 0 : _a.tag);
|
|
10889
|
+
}
|
|
10890
|
+
|
|
10831
10891
|
/* harmony default export */ __webpack_exports__["default"] = (vue__WEBPACK_IMPORTED_MODULE_0___default.a.extend({
|
|
10832
10892
|
name: 'row',
|
|
10833
10893
|
functional: true,
|
|
@@ -10846,29 +10906,29 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10846
10906
|
var children = [];
|
|
10847
10907
|
var value = Object(_util_helpers__WEBPACK_IMPORTED_MODULE_1__["getObjectValueByPath"])(props.item, header.value);
|
|
10848
10908
|
var slotName = header.value;
|
|
10849
|
-
var scopedSlot = data.scopedSlots && data.scopedSlots[slotName];
|
|
10850
|
-
var regularSlot = computedSlots[slotName];
|
|
10909
|
+
var scopedSlot = data.scopedSlots && data.scopedSlots.hasOwnProperty(slotName) && data.scopedSlots[slotName];
|
|
10910
|
+
var regularSlot = computedSlots.hasOwnProperty(slotName) && computedSlots[slotName];
|
|
10851
10911
|
|
|
10852
10912
|
if (scopedSlot) {
|
|
10853
|
-
children.push(scopedSlot({
|
|
10913
|
+
children.push.apply(children, __spread(Object(_util_helpers__WEBPACK_IMPORTED_MODULE_1__["wrapInArray"])(scopedSlot({
|
|
10854
10914
|
item: props.item,
|
|
10855
10915
|
isMobile: false,
|
|
10856
10916
|
header: header,
|
|
10857
10917
|
index: props.index,
|
|
10858
10918
|
value: value
|
|
10859
|
-
}));
|
|
10919
|
+
}))));
|
|
10860
10920
|
} else if (regularSlot) {
|
|
10861
|
-
children.push(regularSlot);
|
|
10921
|
+
children.push.apply(children, __spread(Object(_util_helpers__WEBPACK_IMPORTED_MODULE_1__["wrapInArray"])(regularSlot)));
|
|
10862
10922
|
} else {
|
|
10863
10923
|
children.push(value == null ? value : String(value));
|
|
10864
10924
|
}
|
|
10865
10925
|
|
|
10866
10926
|
var textAlign = "text-" + (header.align || 'start');
|
|
10867
|
-
return h('td', {
|
|
10927
|
+
return needsTd(children) ? h('td', {
|
|
10868
10928
|
class: [textAlign, header.cellClass, {
|
|
10869
10929
|
'v-data-table__divider': header.divider
|
|
10870
10930
|
}]
|
|
10871
|
-
}, children);
|
|
10931
|
+
}, children) : children;
|
|
10872
10932
|
});
|
|
10873
10933
|
return h('tr', data, columns);
|
|
10874
10934
|
}
|
|
@@ -11927,7 +11987,7 @@ var __spread = undefined && undefined.__spread || function () {
|
|
|
11927
11987
|
return this.$createElement('th', data, [this.genSelectAll()]);
|
|
11928
11988
|
}
|
|
11929
11989
|
|
|
11930
|
-
children.push(this.$scopedSlots
|
|
11990
|
+
children.push(this.$scopedSlots.hasOwnProperty(header.value) ? this.$scopedSlots[header.value]({
|
|
11931
11991
|
header: header
|
|
11932
11992
|
}) : this.$createElement('span', [header.text]));
|
|
11933
11993
|
|
|
@@ -14153,7 +14213,7 @@ var __spread = undefined && undefined.__spread || function () {
|
|
|
14153
14213
|
this.wheelThrottle = Object(_util_helpers__WEBPACK_IMPORTED_MODULE_9__["throttle"])(this.wheel, 250);
|
|
14154
14214
|
},
|
|
14155
14215
|
methods: {
|
|
14156
|
-
genButtonClasses: function genButtonClasses(isAllowed, isFloating, isSelected, isCurrent) {
|
|
14216
|
+
genButtonClasses: function genButtonClasses(isAllowed, isFloating, isSelected, isCurrent, isFirst, isLast) {
|
|
14157
14217
|
return __assign({
|
|
14158
14218
|
'v-size--default': !isFloating,
|
|
14159
14219
|
'v-date-picker-table__current': isCurrent,
|
|
@@ -14162,7 +14222,9 @@ var __spread = undefined && undefined.__spread || function () {
|
|
|
14162
14222
|
'v-btn--text': isSelected === isCurrent,
|
|
14163
14223
|
'v-btn--rounded': isFloating,
|
|
14164
14224
|
'v-btn--disabled': !isAllowed || this.disabled,
|
|
14165
|
-
'v-btn--outlined': isCurrent && !isSelected
|
|
14225
|
+
'v-btn--outlined': isCurrent && !isSelected,
|
|
14226
|
+
'v-date-picker--first-in-range': isFirst,
|
|
14227
|
+
'v-date-picker--last-in-range': isLast
|
|
14166
14228
|
}, this.themeClasses);
|
|
14167
14229
|
},
|
|
14168
14230
|
genButtonEvents: function genButtonEvents(value, isAllowed, mouseEventType) {
|
|
@@ -14185,9 +14247,17 @@ var __spread = undefined && undefined.__spread || function () {
|
|
|
14185
14247
|
var isCurrent = value === this.current;
|
|
14186
14248
|
var setColor = isSelected ? this.setBackgroundColor : this.setTextColor;
|
|
14187
14249
|
var color = (isSelected || isCurrent) && (this.color || 'accent');
|
|
14250
|
+
var isFirst = false;
|
|
14251
|
+
var isLast = false;
|
|
14252
|
+
|
|
14253
|
+
if (this.range && !!this.value && Array.isArray(this.value)) {
|
|
14254
|
+
isFirst = value === this.value[0];
|
|
14255
|
+
isLast = value === this.value[this.value.length - 1];
|
|
14256
|
+
}
|
|
14257
|
+
|
|
14188
14258
|
return this.$createElement('button', setColor(color, {
|
|
14189
14259
|
staticClass: 'v-btn',
|
|
14190
|
-
class: this.genButtonClasses(isAllowed && !isOtherMonth, isFloating, isSelected, isCurrent),
|
|
14260
|
+
class: this.genButtonClasses(isAllowed && !isOtherMonth, isFloating, isSelected, isCurrent, isFirst, isLast),
|
|
14191
14261
|
attrs: {
|
|
14192
14262
|
type: 'button'
|
|
14193
14263
|
},
|
|
@@ -14741,10 +14811,7 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_10__["default"])(_
|
|
|
14741
14811
|
disabled: Boolean,
|
|
14742
14812
|
fullscreen: Boolean,
|
|
14743
14813
|
light: Boolean,
|
|
14744
|
-
maxWidth:
|
|
14745
|
-
type: [String, Number],
|
|
14746
|
-
default: 'none'
|
|
14747
|
-
},
|
|
14814
|
+
maxWidth: [String, Number],
|
|
14748
14815
|
noClickAnimation: Boolean,
|
|
14749
14816
|
origin: {
|
|
14750
14817
|
type: String,
|
|
@@ -14760,10 +14827,7 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_10__["default"])(_
|
|
|
14760
14827
|
type: [String, Boolean],
|
|
14761
14828
|
default: 'dialog-transition'
|
|
14762
14829
|
},
|
|
14763
|
-
width:
|
|
14764
|
-
type: [String, Number],
|
|
14765
|
-
default: 'auto'
|
|
14766
|
-
}
|
|
14830
|
+
width: [String, Number]
|
|
14767
14831
|
},
|
|
14768
14832
|
data: function data() {
|
|
14769
14833
|
return {
|
|
@@ -14993,8 +15057,8 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_10__["default"])(_
|
|
|
14993
15057
|
|
|
14994
15058
|
if (!this.fullscreen) {
|
|
14995
15059
|
data.style = __assign(__assign({}, data.style), {
|
|
14996
|
-
maxWidth:
|
|
14997
|
-
width:
|
|
15060
|
+
maxWidth: Object(_util_helpers__WEBPACK_IMPORTED_MODULE_12__["convertToUnit"])(this.maxWidth),
|
|
15061
|
+
width: Object(_util_helpers__WEBPACK_IMPORTED_MODULE_12__["convertToUnit"])(this.width)
|
|
14998
15062
|
});
|
|
14999
15063
|
}
|
|
15000
15064
|
|
|
@@ -17721,6 +17785,7 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_8__["default"])(_m
|
|
|
17721
17785
|
dense: Boolean,
|
|
17722
17786
|
height: [Number, String],
|
|
17723
17787
|
hideDetails: [Boolean, String],
|
|
17788
|
+
hideSpinButtons: Boolean,
|
|
17724
17789
|
hint: String,
|
|
17725
17790
|
id: String,
|
|
17726
17791
|
label: String,
|
|
@@ -17747,7 +17812,8 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_8__["default"])(_m
|
|
|
17747
17812
|
// <v-switch loading>.loading === '' so we can't just cast to boolean
|
|
17748
17813
|
'v-input--is-loading': this.loading !== false && this.loading != null,
|
|
17749
17814
|
'v-input--is-readonly': this.isReadonly,
|
|
17750
|
-
'v-input--dense': this.dense
|
|
17815
|
+
'v-input--dense': this.dense,
|
|
17816
|
+
'v-input--hide-spin-buttons': this.hideSpinButtons
|
|
17751
17817
|
}, this.themeClasses);
|
|
17752
17818
|
},
|
|
17753
17819
|
computedId: function computedId() {
|
|
@@ -18087,10 +18153,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18087
18153
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BaseItemGroup", function() { return BaseItemGroup; });
|
|
18088
18154
|
/* harmony import */ var _VItemGroup_sass__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./VItemGroup.sass */ "./src/components/VItemGroup/VItemGroup.sass");
|
|
18089
18155
|
/* harmony import */ var _VItemGroup_sass__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_VItemGroup_sass__WEBPACK_IMPORTED_MODULE_0__);
|
|
18090
|
-
/* harmony import */ var
|
|
18091
|
-
/* harmony import */ var
|
|
18092
|
-
/* harmony import */ var
|
|
18093
|
-
/* harmony import */ var
|
|
18156
|
+
/* harmony import */ var _mixins_comparable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../mixins/comparable */ "./src/mixins/comparable/index.ts");
|
|
18157
|
+
/* harmony import */ var _mixins_proxyable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../mixins/proxyable */ "./src/mixins/proxyable/index.ts");
|
|
18158
|
+
/* harmony import */ var _mixins_themeable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../mixins/themeable */ "./src/mixins/themeable/index.ts");
|
|
18159
|
+
/* harmony import */ var _util_mixins__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../util/mixins */ "./src/util/mixins.ts");
|
|
18160
|
+
/* harmony import */ var _util_console__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../util/console */ "./src/util/console.ts");
|
|
18094
18161
|
var __assign = undefined && undefined.__assign || function () {
|
|
18095
18162
|
__assign = Object.assign || function (t) {
|
|
18096
18163
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -18108,13 +18175,15 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
18108
18175
|
}; // Styles
|
|
18109
18176
|
|
|
18110
18177
|
|
|
18178
|
+
// Mixins
|
|
18179
|
+
|
|
18111
18180
|
|
|
18112
18181
|
|
|
18113
18182
|
// Utilities
|
|
18114
18183
|
|
|
18115
18184
|
|
|
18116
18185
|
|
|
18117
|
-
var BaseItemGroup = Object(
|
|
18186
|
+
var BaseItemGroup = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_4__["default"])(_mixins_comparable__WEBPACK_IMPORTED_MODULE_1__["default"], _mixins_proxyable__WEBPACK_IMPORTED_MODULE_2__["default"], _mixins_themeable__WEBPACK_IMPORTED_MODULE_3__["default"]).extend({
|
|
18118
18187
|
name: 'base-item-group',
|
|
18119
18188
|
props: {
|
|
18120
18189
|
activeClass: {
|
|
@@ -18170,7 +18239,7 @@ var BaseItemGroup = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_3__["default"])
|
|
|
18170
18239
|
|
|
18171
18240
|
if (!this.multiple) {
|
|
18172
18241
|
return function (v) {
|
|
18173
|
-
return _this.internalValue
|
|
18242
|
+
return _this.valueComparator(_this.internalValue, v);
|
|
18174
18243
|
};
|
|
18175
18244
|
}
|
|
18176
18245
|
|
|
@@ -18178,7 +18247,9 @@ var BaseItemGroup = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_3__["default"])
|
|
|
18178
18247
|
|
|
18179
18248
|
if (Array.isArray(internalValue)) {
|
|
18180
18249
|
return function (v) {
|
|
18181
|
-
return internalValue.
|
|
18250
|
+
return internalValue.some(function (intern) {
|
|
18251
|
+
return _this.valueComparator(intern, v);
|
|
18252
|
+
});
|
|
18182
18253
|
};
|
|
18183
18254
|
}
|
|
18184
18255
|
|
|
@@ -18193,7 +18264,7 @@ var BaseItemGroup = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_3__["default"])
|
|
|
18193
18264
|
},
|
|
18194
18265
|
created: function created() {
|
|
18195
18266
|
if (this.multiple && !Array.isArray(this.internalValue)) {
|
|
18196
|
-
Object(
|
|
18267
|
+
Object(_util_console__WEBPACK_IMPORTED_MODULE_5__["consoleWarn"])('Model must be bound to an array if the multiple property is true.', this);
|
|
18197
18268
|
}
|
|
18198
18269
|
},
|
|
18199
18270
|
methods: {
|
|
@@ -18203,7 +18274,7 @@ var BaseItemGroup = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_3__["default"])
|
|
|
18203
18274
|
};
|
|
18204
18275
|
},
|
|
18205
18276
|
getValue: function getValue(item, i) {
|
|
18206
|
-
return item.value
|
|
18277
|
+
return item.value === undefined ? i : item.value;
|
|
18207
18278
|
},
|
|
18208
18279
|
onClick: function onClick(item) {
|
|
18209
18280
|
this.updateInternalValue(this.getValue(item, this.items.indexOf(item)));
|
|
@@ -19955,7 +20026,7 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_12__["default"])(_
|
|
|
19955
20026
|
},
|
|
19956
20027
|
getTiles: function getTiles() {
|
|
19957
20028
|
if (!this.$refs.content) return;
|
|
19958
|
-
this.tiles = Array.from(this.$refs.content.querySelectorAll('.v-list-item'));
|
|
20029
|
+
this.tiles = Array.from(this.$refs.content.querySelectorAll('.v-list-item, .v-divider, .v-subheader'));
|
|
19959
20030
|
},
|
|
19960
20031
|
mouseEnterHandler: function mouseEnterHandler() {
|
|
19961
20032
|
var _this = this;
|
|
@@ -20633,6 +20704,450 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
20633
20704
|
|
|
20634
20705
|
/***/ }),
|
|
20635
20706
|
|
|
20707
|
+
/***/ "./src/components/VOtpInput/VOtpInput.sass":
|
|
20708
|
+
/*!*************************************************!*\
|
|
20709
|
+
!*** ./src/components/VOtpInput/VOtpInput.sass ***!
|
|
20710
|
+
\*************************************************/
|
|
20711
|
+
/*! no static exports found */
|
|
20712
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
20713
|
+
|
|
20714
|
+
// extracted by mini-css-extract-plugin
|
|
20715
|
+
|
|
20716
|
+
/***/ }),
|
|
20717
|
+
|
|
20718
|
+
/***/ "./src/components/VOtpInput/VOtpInput.ts":
|
|
20719
|
+
/*!***********************************************!*\
|
|
20720
|
+
!*** ./src/components/VOtpInput/VOtpInput.ts ***!
|
|
20721
|
+
\***********************************************/
|
|
20722
|
+
/*! exports provided: default */
|
|
20723
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
20724
|
+
|
|
20725
|
+
"use strict";
|
|
20726
|
+
__webpack_require__.r(__webpack_exports__);
|
|
20727
|
+
/* harmony import */ var _VTextField_VTextField_sass__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../VTextField/VTextField.sass */ "./src/components/VTextField/VTextField.sass");
|
|
20728
|
+
/* harmony import */ var _VTextField_VTextField_sass__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_VTextField_VTextField_sass__WEBPACK_IMPORTED_MODULE_0__);
|
|
20729
|
+
/* harmony import */ var _VOtpInput_sass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./VOtpInput.sass */ "./src/components/VOtpInput/VOtpInput.sass");
|
|
20730
|
+
/* harmony import */ var _VOtpInput_sass__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_VOtpInput_sass__WEBPACK_IMPORTED_MODULE_1__);
|
|
20731
|
+
/* harmony import */ var _VInput__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../VInput */ "./src/components/VInput/index.ts");
|
|
20732
|
+
/* harmony import */ var _VTextField_VTextField__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../VTextField/VTextField */ "./src/components/VTextField/VTextField.ts");
|
|
20733
|
+
/* harmony import */ var _directives_ripple__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../directives/ripple */ "./src/directives/ripple/index.ts");
|
|
20734
|
+
/* harmony import */ var _util_helpers__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../util/helpers */ "./src/util/helpers.ts");
|
|
20735
|
+
/* harmony import */ var _util_console__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../util/console */ "./src/util/console.ts");
|
|
20736
|
+
/* harmony import */ var _util_mixins__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../util/mixins */ "./src/util/mixins.ts");
|
|
20737
|
+
var __assign = undefined && undefined.__assign || function () {
|
|
20738
|
+
__assign = Object.assign || function (t) {
|
|
20739
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
20740
|
+
s = arguments[i];
|
|
20741
|
+
|
|
20742
|
+
for (var p in s) {
|
|
20743
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
20744
|
+
}
|
|
20745
|
+
}
|
|
20746
|
+
|
|
20747
|
+
return t;
|
|
20748
|
+
};
|
|
20749
|
+
|
|
20750
|
+
return __assign.apply(this, arguments);
|
|
20751
|
+
};
|
|
20752
|
+
|
|
20753
|
+
var __read = undefined && undefined.__read || function (o, n) {
|
|
20754
|
+
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
20755
|
+
if (!m) return o;
|
|
20756
|
+
var i = m.call(o),
|
|
20757
|
+
r,
|
|
20758
|
+
ar = [],
|
|
20759
|
+
e;
|
|
20760
|
+
|
|
20761
|
+
try {
|
|
20762
|
+
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) {
|
|
20763
|
+
ar.push(r.value);
|
|
20764
|
+
}
|
|
20765
|
+
} catch (error) {
|
|
20766
|
+
e = {
|
|
20767
|
+
error: error
|
|
20768
|
+
};
|
|
20769
|
+
} finally {
|
|
20770
|
+
try {
|
|
20771
|
+
if (r && !r.done && (m = i["return"])) m.call(i);
|
|
20772
|
+
} finally {
|
|
20773
|
+
if (e) throw e.error;
|
|
20774
|
+
}
|
|
20775
|
+
}
|
|
20776
|
+
|
|
20777
|
+
return ar;
|
|
20778
|
+
};
|
|
20779
|
+
|
|
20780
|
+
var __spread = undefined && undefined.__spread || function () {
|
|
20781
|
+
for (var ar = [], i = 0; i < arguments.length; i++) {
|
|
20782
|
+
ar = ar.concat(__read(arguments[i]));
|
|
20783
|
+
}
|
|
20784
|
+
|
|
20785
|
+
return ar;
|
|
20786
|
+
}; // Styles
|
|
20787
|
+
|
|
20788
|
+
|
|
20789
|
+
|
|
20790
|
+
// Extensions
|
|
20791
|
+
|
|
20792
|
+
|
|
20793
|
+
// Directives
|
|
20794
|
+
|
|
20795
|
+
// Utilities
|
|
20796
|
+
|
|
20797
|
+
|
|
20798
|
+
// Types
|
|
20799
|
+
|
|
20800
|
+
|
|
20801
|
+
var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_7__["default"])(_VInput__WEBPACK_IMPORTED_MODULE_2__["default"]);
|
|
20802
|
+
/* @vue/component */
|
|
20803
|
+
|
|
20804
|
+
/* harmony default export */ __webpack_exports__["default"] = (baseMixins.extend().extend({
|
|
20805
|
+
name: 'v-otp-input',
|
|
20806
|
+
directives: {
|
|
20807
|
+
ripple: _directives_ripple__WEBPACK_IMPORTED_MODULE_4__["default"]
|
|
20808
|
+
},
|
|
20809
|
+
inheritAttrs: false,
|
|
20810
|
+
props: {
|
|
20811
|
+
length: {
|
|
20812
|
+
type: [Number, String],
|
|
20813
|
+
default: 6
|
|
20814
|
+
},
|
|
20815
|
+
type: {
|
|
20816
|
+
type: String,
|
|
20817
|
+
default: 'text'
|
|
20818
|
+
},
|
|
20819
|
+
plain: Boolean
|
|
20820
|
+
},
|
|
20821
|
+
data: function data() {
|
|
20822
|
+
return {
|
|
20823
|
+
badInput: false,
|
|
20824
|
+
initialValue: null,
|
|
20825
|
+
isBooted: false,
|
|
20826
|
+
otp: []
|
|
20827
|
+
};
|
|
20828
|
+
},
|
|
20829
|
+
computed: {
|
|
20830
|
+
outlined: function outlined() {
|
|
20831
|
+
return !this.plain;
|
|
20832
|
+
},
|
|
20833
|
+
classes: function classes() {
|
|
20834
|
+
return __assign(__assign(__assign({}, _VInput__WEBPACK_IMPORTED_MODULE_2__["default"].options.computed.classes.call(this)), _VTextField_VTextField__WEBPACK_IMPORTED_MODULE_3__["default"].options.computed.classes.call(this)), {
|
|
20835
|
+
'v-otp-input--plain': this.plain
|
|
20836
|
+
});
|
|
20837
|
+
},
|
|
20838
|
+
isDirty: function isDirty() {
|
|
20839
|
+
return _VInput__WEBPACK_IMPORTED_MODULE_2__["default"].options.computed.isDirty.call(this) || this.badInput;
|
|
20840
|
+
}
|
|
20841
|
+
},
|
|
20842
|
+
watch: {
|
|
20843
|
+
isFocused: 'updateValue',
|
|
20844
|
+
value: function value(val) {
|
|
20845
|
+
this.lazyValue = val;
|
|
20846
|
+
}
|
|
20847
|
+
},
|
|
20848
|
+
created: function created() {
|
|
20849
|
+
var _a;
|
|
20850
|
+
/* istanbul ignore next */
|
|
20851
|
+
|
|
20852
|
+
|
|
20853
|
+
if (this.$attrs.hasOwnProperty('browser-autocomplete')) {
|
|
20854
|
+
Object(_util_console__WEBPACK_IMPORTED_MODULE_6__["breaking"])('browser-autocomplete', 'autocomplete', this);
|
|
20855
|
+
}
|
|
20856
|
+
|
|
20857
|
+
this.otp = ((_a = this.internalValue) === null || _a === void 0 ? void 0 : _a.split('')) || [];
|
|
20858
|
+
},
|
|
20859
|
+
mounted: function mounted() {
|
|
20860
|
+
var _this = this;
|
|
20861
|
+
|
|
20862
|
+
requestAnimationFrame(function () {
|
|
20863
|
+
return _this.isBooted = true;
|
|
20864
|
+
});
|
|
20865
|
+
},
|
|
20866
|
+
methods: {
|
|
20867
|
+
/** @public */
|
|
20868
|
+
focus: function focus(e, otpIdx) {
|
|
20869
|
+
this.onFocus(e, otpIdx || 0);
|
|
20870
|
+
},
|
|
20871
|
+
genInputSlot: function genInputSlot(otpIdx) {
|
|
20872
|
+
var _this = this;
|
|
20873
|
+
|
|
20874
|
+
return this.$createElement('div', this.setBackgroundColor(this.backgroundColor, {
|
|
20875
|
+
staticClass: 'v-input__slot',
|
|
20876
|
+
style: {
|
|
20877
|
+
height: Object(_util_helpers__WEBPACK_IMPORTED_MODULE_5__["convertToUnit"])(this.height)
|
|
20878
|
+
},
|
|
20879
|
+
on: {
|
|
20880
|
+
click: function click() {
|
|
20881
|
+
return _this.onClick(otpIdx);
|
|
20882
|
+
},
|
|
20883
|
+
mousedown: function mousedown(e) {
|
|
20884
|
+
return _this.onMouseDown(e, otpIdx);
|
|
20885
|
+
},
|
|
20886
|
+
mouseup: function mouseup(e) {
|
|
20887
|
+
return _this.onMouseUp(e, otpIdx);
|
|
20888
|
+
}
|
|
20889
|
+
}
|
|
20890
|
+
}), [this.genDefaultSlot(otpIdx)]);
|
|
20891
|
+
},
|
|
20892
|
+
genControl: function genControl(otpIdx) {
|
|
20893
|
+
return this.$createElement('div', {
|
|
20894
|
+
staticClass: 'v-input__control'
|
|
20895
|
+
}, [this.genInputSlot(otpIdx)]);
|
|
20896
|
+
},
|
|
20897
|
+
genDefaultSlot: function genDefaultSlot(otpIdx) {
|
|
20898
|
+
return [this.genFieldset(), this.genTextFieldSlot(otpIdx)];
|
|
20899
|
+
},
|
|
20900
|
+
genContent: function genContent() {
|
|
20901
|
+
var _this = this;
|
|
20902
|
+
|
|
20903
|
+
return Array.from({
|
|
20904
|
+
length: +this.length
|
|
20905
|
+
}, function (_, i) {
|
|
20906
|
+
return _this.$createElement('div', _this.setTextColor(_this.validationState, {
|
|
20907
|
+
staticClass: 'v-input',
|
|
20908
|
+
class: _this.classes
|
|
20909
|
+
}), [_this.genControl(i)]);
|
|
20910
|
+
});
|
|
20911
|
+
},
|
|
20912
|
+
genFieldset: function genFieldset() {
|
|
20913
|
+
return this.$createElement('fieldset', {
|
|
20914
|
+
attrs: {
|
|
20915
|
+
'aria-hidden': true
|
|
20916
|
+
}
|
|
20917
|
+
}, [this.genLegend()]);
|
|
20918
|
+
},
|
|
20919
|
+
genLegend: function genLegend() {
|
|
20920
|
+
var span = this.$createElement('span', {
|
|
20921
|
+
domProps: {
|
|
20922
|
+
innerHTML: '​'
|
|
20923
|
+
}
|
|
20924
|
+
});
|
|
20925
|
+
return this.$createElement('legend', {
|
|
20926
|
+
style: {
|
|
20927
|
+
width: '0px'
|
|
20928
|
+
}
|
|
20929
|
+
}, [span]);
|
|
20930
|
+
},
|
|
20931
|
+
genInput: function genInput(otpIdx) {
|
|
20932
|
+
var _this = this;
|
|
20933
|
+
|
|
20934
|
+
var listeners = Object.assign({}, this.listeners$);
|
|
20935
|
+
delete listeners.change; // Change should not be bound externally
|
|
20936
|
+
|
|
20937
|
+
return this.$createElement('input', {
|
|
20938
|
+
style: {},
|
|
20939
|
+
domProps: {
|
|
20940
|
+
value: this.otp[otpIdx],
|
|
20941
|
+
min: this.type === 'number' ? 0 : null
|
|
20942
|
+
},
|
|
20943
|
+
attrs: __assign(__assign({}, this.attrs$), {
|
|
20944
|
+
disabled: this.isDisabled,
|
|
20945
|
+
readonly: this.isReadonly,
|
|
20946
|
+
type: this.type,
|
|
20947
|
+
id: this.computedId + "--" + otpIdx,
|
|
20948
|
+
class: "otp-field-box--" + otpIdx,
|
|
20949
|
+
maxlength: 1
|
|
20950
|
+
}),
|
|
20951
|
+
on: Object.assign(listeners, {
|
|
20952
|
+
blur: this.onBlur,
|
|
20953
|
+
input: function input(e) {
|
|
20954
|
+
return _this.onInput(e, otpIdx);
|
|
20955
|
+
},
|
|
20956
|
+
focus: function focus(e) {
|
|
20957
|
+
return _this.onFocus(e, otpIdx);
|
|
20958
|
+
},
|
|
20959
|
+
paste: function paste(e) {
|
|
20960
|
+
return _this.onPaste(e, otpIdx);
|
|
20961
|
+
},
|
|
20962
|
+
keydown: this.onKeyDown,
|
|
20963
|
+
keyup: function keyup(e) {
|
|
20964
|
+
return _this.onKeyUp(e, otpIdx);
|
|
20965
|
+
}
|
|
20966
|
+
}),
|
|
20967
|
+
ref: 'input',
|
|
20968
|
+
refInFor: true
|
|
20969
|
+
});
|
|
20970
|
+
},
|
|
20971
|
+
genTextFieldSlot: function genTextFieldSlot(otpIdx) {
|
|
20972
|
+
return this.$createElement('div', {
|
|
20973
|
+
staticClass: 'v-text-field__slot'
|
|
20974
|
+
}, [this.genInput(otpIdx)]);
|
|
20975
|
+
},
|
|
20976
|
+
onBlur: function onBlur(e) {
|
|
20977
|
+
var _this = this;
|
|
20978
|
+
|
|
20979
|
+
this.isFocused = false;
|
|
20980
|
+
e && this.$nextTick(function () {
|
|
20981
|
+
return _this.$emit('blur', e);
|
|
20982
|
+
});
|
|
20983
|
+
},
|
|
20984
|
+
onClick: function onClick(otpIdx) {
|
|
20985
|
+
if (this.isFocused || this.isDisabled || !this.$refs.input[otpIdx]) return;
|
|
20986
|
+
this.onFocus(undefined, otpIdx);
|
|
20987
|
+
},
|
|
20988
|
+
onFocus: function onFocus(e, otpIdx) {
|
|
20989
|
+
e === null || e === void 0 ? void 0 : e.preventDefault();
|
|
20990
|
+
e === null || e === void 0 ? void 0 : e.stopPropagation();
|
|
20991
|
+
var elements = this.$refs.input;
|
|
20992
|
+
var ref = this.$refs.input && elements[otpIdx || 0];
|
|
20993
|
+
if (!ref) return;
|
|
20994
|
+
|
|
20995
|
+
if (document.activeElement !== ref) {
|
|
20996
|
+
ref.focus();
|
|
20997
|
+
return ref.select();
|
|
20998
|
+
}
|
|
20999
|
+
|
|
21000
|
+
if (!this.isFocused) {
|
|
21001
|
+
this.isFocused = true;
|
|
21002
|
+
ref.select();
|
|
21003
|
+
e && this.$emit('focus', e);
|
|
21004
|
+
}
|
|
21005
|
+
},
|
|
21006
|
+
onInput: function onInput(e, otpIdx) {
|
|
21007
|
+
var _this = this;
|
|
21008
|
+
|
|
21009
|
+
var target = e.target;
|
|
21010
|
+
var value = target.value;
|
|
21011
|
+
this.applyValue(otpIdx, target.value, function () {
|
|
21012
|
+
_this.internalValue = _this.otp.join('');
|
|
21013
|
+
});
|
|
21014
|
+
this.badInput = target.validity && target.validity.badInput;
|
|
21015
|
+
var nextIndex = otpIdx + 1;
|
|
21016
|
+
|
|
21017
|
+
if (value) {
|
|
21018
|
+
if (nextIndex < +this.length) {
|
|
21019
|
+
this.changeFocus(nextIndex);
|
|
21020
|
+
} else {
|
|
21021
|
+
this.clearFocus(otpIdx);
|
|
21022
|
+
this.onCompleted();
|
|
21023
|
+
}
|
|
21024
|
+
}
|
|
21025
|
+
},
|
|
21026
|
+
clearFocus: function clearFocus(index) {
|
|
21027
|
+
var input = this.$refs.input[index];
|
|
21028
|
+
input.blur();
|
|
21029
|
+
},
|
|
21030
|
+
onKeyDown: function onKeyDown(e) {
|
|
21031
|
+
if (e.keyCode === _util_helpers__WEBPACK_IMPORTED_MODULE_5__["keyCodes"].enter) {
|
|
21032
|
+
this.$emit('change', this.internalValue);
|
|
21033
|
+
}
|
|
21034
|
+
|
|
21035
|
+
this.$emit('keydown', e);
|
|
21036
|
+
},
|
|
21037
|
+
onMouseDown: function onMouseDown(e, otpIdx) {
|
|
21038
|
+
// Prevent input from being blurred
|
|
21039
|
+
if (e.target !== this.$refs.input[otpIdx]) {
|
|
21040
|
+
e.preventDefault();
|
|
21041
|
+
e.stopPropagation();
|
|
21042
|
+
}
|
|
21043
|
+
|
|
21044
|
+
_VInput__WEBPACK_IMPORTED_MODULE_2__["default"].options.methods.onMouseDown.call(this, e);
|
|
21045
|
+
},
|
|
21046
|
+
onMouseUp: function onMouseUp(e, otpIdx) {
|
|
21047
|
+
if (this.hasMouseDown) this.focus(e, otpIdx);
|
|
21048
|
+
_VInput__WEBPACK_IMPORTED_MODULE_2__["default"].options.methods.onMouseUp.call(this, e);
|
|
21049
|
+
},
|
|
21050
|
+
onPaste: function onPaste(event, index) {
|
|
21051
|
+
var _a;
|
|
21052
|
+
|
|
21053
|
+
var maxCursor = +this.length - 1;
|
|
21054
|
+
var inputVal = (_a = event === null || event === void 0 ? void 0 : event.clipboardData) === null || _a === void 0 ? void 0 : _a.getData('Text');
|
|
21055
|
+
var inputDataArray = (inputVal === null || inputVal === void 0 ? void 0 : inputVal.split('')) || [];
|
|
21056
|
+
event.preventDefault();
|
|
21057
|
+
|
|
21058
|
+
var newOtp = __spread(this.otp);
|
|
21059
|
+
|
|
21060
|
+
for (var i = 0; i < inputDataArray.length; i++) {
|
|
21061
|
+
var appIdx = index + i;
|
|
21062
|
+
if (appIdx > maxCursor) break;
|
|
21063
|
+
newOtp[appIdx] = inputDataArray[i].toString();
|
|
21064
|
+
}
|
|
21065
|
+
|
|
21066
|
+
this.otp = newOtp;
|
|
21067
|
+
var targetFocus = Math.min(index + inputDataArray.length, maxCursor);
|
|
21068
|
+
this.changeFocus(targetFocus);
|
|
21069
|
+
|
|
21070
|
+
if (newOtp.length === +this.length) {
|
|
21071
|
+
this.onCompleted();
|
|
21072
|
+
this.clearFocus(targetFocus);
|
|
21073
|
+
}
|
|
21074
|
+
},
|
|
21075
|
+
applyValue: function applyValue(index, inputVal, next) {
|
|
21076
|
+
var newOtp = __spread(this.otp);
|
|
21077
|
+
|
|
21078
|
+
newOtp[index] = inputVal;
|
|
21079
|
+
this.otp = newOtp;
|
|
21080
|
+
next();
|
|
21081
|
+
},
|
|
21082
|
+
changeFocus: function changeFocus(index) {
|
|
21083
|
+
this.onFocus(undefined, index || 0);
|
|
21084
|
+
},
|
|
21085
|
+
updateValue: function updateValue(val) {
|
|
21086
|
+
// Sets validationState from validatable
|
|
21087
|
+
this.hasColor = val;
|
|
21088
|
+
|
|
21089
|
+
if (val) {
|
|
21090
|
+
this.initialValue = this.lazyValue;
|
|
21091
|
+
} else if (this.initialValue !== this.lazyValue) {
|
|
21092
|
+
this.$emit('change', this.lazyValue);
|
|
21093
|
+
}
|
|
21094
|
+
},
|
|
21095
|
+
onKeyUp: function onKeyUp(event, index) {
|
|
21096
|
+
event.preventDefault();
|
|
21097
|
+
var eventKey = event.key;
|
|
21098
|
+
|
|
21099
|
+
if (['Tab', 'Shift', 'Meta', 'Control', 'Alt'].includes(eventKey)) {
|
|
21100
|
+
return;
|
|
21101
|
+
}
|
|
21102
|
+
|
|
21103
|
+
if (['Delete'].includes(eventKey)) {
|
|
21104
|
+
return;
|
|
21105
|
+
}
|
|
21106
|
+
|
|
21107
|
+
if (eventKey === 'ArrowLeft' || eventKey === 'Backspace' && !this.otp[index]) {
|
|
21108
|
+
return index > 0 && this.changeFocus(index - 1);
|
|
21109
|
+
}
|
|
21110
|
+
|
|
21111
|
+
if (eventKey === 'ArrowRight') {
|
|
21112
|
+
return index + 1 < +this.length && this.changeFocus(index + 1);
|
|
21113
|
+
}
|
|
21114
|
+
},
|
|
21115
|
+
onCompleted: function onCompleted() {
|
|
21116
|
+
var rsp = this.otp.join('');
|
|
21117
|
+
|
|
21118
|
+
if (rsp.length === +this.length) {
|
|
21119
|
+
this.$emit('finish', rsp);
|
|
21120
|
+
}
|
|
21121
|
+
}
|
|
21122
|
+
},
|
|
21123
|
+
render: function render(h) {
|
|
21124
|
+
return h('div', {
|
|
21125
|
+
staticClass: 'v-otp-input',
|
|
21126
|
+
class: this.themeClasses
|
|
21127
|
+
}, this.genContent());
|
|
21128
|
+
}
|
|
21129
|
+
}));
|
|
21130
|
+
|
|
21131
|
+
/***/ }),
|
|
21132
|
+
|
|
21133
|
+
/***/ "./src/components/VOtpInput/index.ts":
|
|
21134
|
+
/*!*******************************************!*\
|
|
21135
|
+
!*** ./src/components/VOtpInput/index.ts ***!
|
|
21136
|
+
\*******************************************/
|
|
21137
|
+
/*! exports provided: VOtpInput, default */
|
|
21138
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
21139
|
+
|
|
21140
|
+
"use strict";
|
|
21141
|
+
__webpack_require__.r(__webpack_exports__);
|
|
21142
|
+
/* harmony import */ var _VOtpInput__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./VOtpInput */ "./src/components/VOtpInput/VOtpInput.ts");
|
|
21143
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VOtpInput", function() { return _VOtpInput__WEBPACK_IMPORTED_MODULE_0__["default"]; });
|
|
21144
|
+
|
|
21145
|
+
|
|
21146
|
+
|
|
21147
|
+
/* harmony default export */ __webpack_exports__["default"] = (_VOtpInput__WEBPACK_IMPORTED_MODULE_0__["default"]);
|
|
21148
|
+
|
|
21149
|
+
/***/ }),
|
|
21150
|
+
|
|
20636
21151
|
/***/ "./src/components/VOverflowBtn/VOverflowBtn.sass":
|
|
20637
21152
|
/*!*******************************************************!*\
|
|
20638
21153
|
!*** ./src/components/VOverflowBtn/VOverflowBtn.sass ***!
|
|
@@ -22260,8 +22775,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22260
22775
|
/* harmony import */ var _VRadioGroup_sass__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_VRadioGroup_sass__WEBPACK_IMPORTED_MODULE_1__);
|
|
22261
22776
|
/* harmony import */ var _VInput__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../VInput */ "./src/components/VInput/index.ts");
|
|
22262
22777
|
/* harmony import */ var _VItemGroup_VItemGroup__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../VItemGroup/VItemGroup */ "./src/components/VItemGroup/VItemGroup.ts");
|
|
22263
|
-
/* harmony import */ var
|
|
22264
|
-
/* harmony import */ var _util_mixins__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../util/mixins */ "./src/util/mixins.ts");
|
|
22778
|
+
/* harmony import */ var _util_mixins__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../util/mixins */ "./src/util/mixins.ts");
|
|
22265
22779
|
var __assign = undefined && undefined.__assign || function () {
|
|
22266
22780
|
__assign = Object.assign || function (t) {
|
|
22267
22781
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -22283,12 +22797,10 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
22283
22797
|
// Extensions
|
|
22284
22798
|
|
|
22285
22799
|
|
|
22286
|
-
// Mixins
|
|
22287
|
-
|
|
22288
22800
|
// Types
|
|
22289
22801
|
|
|
22290
22802
|
|
|
22291
|
-
var baseMixins = Object(
|
|
22803
|
+
var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_4__["default"])(_VItemGroup_VItemGroup__WEBPACK_IMPORTED_MODULE_3__["BaseItemGroup"], _VInput__WEBPACK_IMPORTED_MODULE_2__["default"]);
|
|
22292
22804
|
/* @vue/component */
|
|
22293
22805
|
|
|
22294
22806
|
/* harmony default export */ __webpack_exports__["default"] = (baseMixins.extend({
|
|
@@ -24775,6 +25287,13 @@ var __values = undefined && undefined.__values || function (o) {
|
|
|
24775
25287
|
|
|
24776
25288
|
|
|
24777
25289
|
|
|
25290
|
+
|
|
25291
|
+
function bias(val) {
|
|
25292
|
+
var c = 0.501;
|
|
25293
|
+
var x = Math.abs(val);
|
|
25294
|
+
return Math.sign(val) * (x / ((1 / c - 2) * (1 - x) + 1));
|
|
25295
|
+
}
|
|
25296
|
+
|
|
24778
25297
|
function calculateUpdatedOffset(selectedElement, widths, rtl, currentScrollOffset) {
|
|
24779
25298
|
var clientWidth = selectedElement.clientWidth;
|
|
24780
25299
|
var offsetLeft = rtl ? widths.content - selectedElement.offsetLeft - clientWidth : selectedElement.offsetLeft;
|
|
@@ -24911,7 +25430,8 @@ var BaseSlideGroup = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_7__["default"]
|
|
|
24911
25430
|
// and need to be recalculated
|
|
24912
25431
|
isOverflowing: 'setWidths',
|
|
24913
25432
|
scrollOffset: function scrollOffset(val) {
|
|
24914
|
-
this
|
|
25433
|
+
var scroll = val <= 0 ? bias(-val) : val > this.widths.content - this.widths.wrapper ? -(this.widths.content - this.widths.wrapper) + bias(this.widths.content - this.widths.wrapper - val) : -val;
|
|
25434
|
+
this.$refs.content.style.transform = "translateX(" + scroll + "px)";
|
|
24915
25435
|
}
|
|
24916
25436
|
},
|
|
24917
25437
|
beforeUpdate: function beforeUpdate() {
|
|
@@ -25947,9 +26467,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
25947
26467
|
return this.hasBackground ? !this.light : _mixins_themeable__WEBPACK_IMPORTED_MODULE_3__["default"].options.computed.isDark.call(this);
|
|
25948
26468
|
},
|
|
25949
26469
|
styles: function styles() {
|
|
25950
|
-
|
|
25951
|
-
// using the absolute prop.
|
|
25952
|
-
if (this.absolute) return {};
|
|
26470
|
+
if (this.absolute || !this.app) return {};
|
|
25953
26471
|
var _a = this.$vuetify.application,
|
|
25954
26472
|
bar = _a.bar,
|
|
25955
26473
|
bottom = _a.bottom,
|
|
@@ -25957,13 +26475,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
25957
26475
|
insetFooter = _a.insetFooter,
|
|
25958
26476
|
left = _a.left,
|
|
25959
26477
|
right = _a.right,
|
|
25960
|
-
top = _a.top;
|
|
25961
|
-
// applicationable components.
|
|
25962
|
-
|
|
26478
|
+
top = _a.top;
|
|
25963
26479
|
return {
|
|
25964
26480
|
paddingBottom: Object(_util_helpers__WEBPACK_IMPORTED_MODULE_7__["convertToUnit"])(bottom + footer + insetFooter),
|
|
25965
|
-
paddingLeft:
|
|
25966
|
-
paddingRight:
|
|
26481
|
+
paddingLeft: Object(_util_helpers__WEBPACK_IMPORTED_MODULE_7__["convertToUnit"])(left),
|
|
26482
|
+
paddingRight: Object(_util_helpers__WEBPACK_IMPORTED_MODULE_7__["convertToUnit"])(right),
|
|
25967
26483
|
paddingTop: Object(_util_helpers__WEBPACK_IMPORTED_MODULE_7__["convertToUnit"])(bar + top)
|
|
25968
26484
|
};
|
|
25969
26485
|
}
|
|
@@ -27766,7 +28282,8 @@ Object(_mixins_groupable__WEBPACK_IMPORTED_MODULE_0__["factory"])('tabsBar'), _m
|
|
|
27766
28282
|
}), this.groupClasses);
|
|
27767
28283
|
},
|
|
27768
28284
|
value: function value() {
|
|
27769
|
-
var to = this.to || this.href
|
|
28285
|
+
var to = this.to || this.href;
|
|
28286
|
+
if (to == null) return to;
|
|
27770
28287
|
|
|
27771
28288
|
if (this.$router && this.to === Object(this.to)) {
|
|
27772
28289
|
var resolve = this.$router.resolve(this.to, this.$route, this.append);
|
|
@@ -27796,7 +28313,7 @@ Object(_mixins_groupable__WEBPACK_IMPORTED_MODULE_0__["factory"])('tabsBar'), _m
|
|
|
27796
28313
|
},
|
|
27797
28314
|
toggle: function toggle() {
|
|
27798
28315
|
// VItemGroup treats a change event as a click
|
|
27799
|
-
if (!this.isActive) {
|
|
28316
|
+
if (!this.isActive || !this.tabsBar.mandatory && !this.to) {
|
|
27800
28317
|
this.$emit('change');
|
|
27801
28318
|
}
|
|
27802
28319
|
}
|
|
@@ -28761,7 +29278,12 @@ var dirtyTypes = ['color', 'file', 'time', 'date', 'datetime-local', 'week', 'mo
|
|
|
28761
29278
|
}, this.setLabelWidth);
|
|
28762
29279
|
this.autofocus && this.tryAutofocus();
|
|
28763
29280
|
requestAnimationFrame(function () {
|
|
28764
|
-
|
|
29281
|
+
_this.isBooted = true;
|
|
29282
|
+
requestAnimationFrame(function () {
|
|
29283
|
+
if (!_this.isIntersecting) {
|
|
29284
|
+
_this.onResize();
|
|
29285
|
+
}
|
|
29286
|
+
});
|
|
28765
29287
|
});
|
|
28766
29288
|
},
|
|
28767
29289
|
methods: {
|
|
@@ -30744,7 +31266,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
30744
31266
|
left: this.calculatedLeft,
|
|
30745
31267
|
maxWidth: Object(_util_helpers__WEBPACK_IMPORTED_MODULE_7__["convertToUnit"])(this.maxWidth),
|
|
30746
31268
|
minWidth: Object(_util_helpers__WEBPACK_IMPORTED_MODULE_7__["convertToUnit"])(this.minWidth),
|
|
30747
|
-
opacity: this.isActive ? 0.9 : 0,
|
|
30748
31269
|
top: this.calculatedTop,
|
|
30749
31270
|
zIndex: this.zIndex || this.activeZIndex
|
|
30750
31271
|
};
|
|
@@ -30989,6 +31510,7 @@ var __values = undefined && undefined.__values || function (o) {
|
|
|
30989
31510
|
}
|
|
30990
31511
|
},
|
|
30991
31512
|
dense: Boolean,
|
|
31513
|
+
disabled: Boolean,
|
|
30992
31514
|
filter: Function,
|
|
30993
31515
|
hoverable: Boolean,
|
|
30994
31516
|
items: {
|
|
@@ -31454,7 +31976,7 @@ var __values = undefined && undefined.__values || function (o) {
|
|
|
31454
31976
|
return !_this.isExcluded(Object(_util_helpers__WEBPACK_IMPORTED_MODULE_4__["getObjectValueByPath"])(item, _this.itemKey));
|
|
31455
31977
|
}).map(function (item) {
|
|
31456
31978
|
var genChild = _VTreeviewNode__WEBPACK_IMPORTED_MODULE_1__["default"].options.methods.genChild.bind(_this);
|
|
31457
|
-
return genChild(item, Object(_util_helpers__WEBPACK_IMPORTED_MODULE_4__["getObjectValueByPath"])(item, _this.itemDisabled));
|
|
31979
|
+
return genChild(item, _this.disabled || Object(_util_helpers__WEBPACK_IMPORTED_MODULE_4__["getObjectValueByPath"])(item, _this.itemDisabled));
|
|
31458
31980
|
})
|
|
31459
31981
|
/* istanbul ignore next */
|
|
31460
31982
|
: this.$slots.default; // TODO: remove type annotation with TS 3.2
|
|
@@ -31558,6 +32080,7 @@ var VTreeviewNodeProps = {
|
|
|
31558
32080
|
type: String,
|
|
31559
32081
|
default: 'primary'
|
|
31560
32082
|
},
|
|
32083
|
+
disablePerNode: Boolean,
|
|
31561
32084
|
expandIcon: {
|
|
31562
32085
|
type: String,
|
|
31563
32086
|
default: '$subgroup'
|
|
@@ -31643,7 +32166,7 @@ var VTreeviewNode = baseMixins.extend().extend({
|
|
|
31643
32166
|
},
|
|
31644
32167
|
computed: {
|
|
31645
32168
|
disabled: function disabled() {
|
|
31646
|
-
return Object(_util_helpers__WEBPACK_IMPORTED_MODULE_5__["getObjectValueByPath"])(this.item, this.itemDisabled) || this.parentIsDisabled && this.selectionType === 'leaf';
|
|
32169
|
+
return Object(_util_helpers__WEBPACK_IMPORTED_MODULE_5__["getObjectValueByPath"])(this.item, this.itemDisabled) || !this.disablePerNode && this.parentIsDisabled && this.selectionType === 'leaf';
|
|
31647
32170
|
},
|
|
31648
32171
|
key: function key() {
|
|
31649
32172
|
return Object(_util_helpers__WEBPACK_IMPORTED_MODULE_5__["getObjectValueByPath"])(this.item, this.itemKey);
|
|
@@ -31831,6 +32354,7 @@ var VTreeviewNode = baseMixins.extend().extend({
|
|
|
31831
32354
|
selectable: this.selectable,
|
|
31832
32355
|
selectedColor: this.selectedColor,
|
|
31833
32356
|
color: this.color,
|
|
32357
|
+
disablePerNode: this.disablePerNode,
|
|
31834
32358
|
expandIcon: this.expandIcon,
|
|
31835
32359
|
indeterminateIcon: this.indeterminateIcon,
|
|
31836
32360
|
offIcon: this.offIcon,
|
|
@@ -32600,7 +33124,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
32600
33124
|
/*!*********************************!*\
|
|
32601
33125
|
!*** ./src/components/index.ts ***!
|
|
32602
33126
|
\*********************************/
|
|
32603
|
-
/*! exports provided: VApp, VAppBar, VAppBarNavIcon, VAppBarTitle, VAlert, VAutocomplete, VAvatar, VBadge, VBanner, VBottomNavigation, VBottomSheet, VBreadcrumbs, VBreadcrumbsItem, VBreadcrumbsDivider, VBtn, VBtnToggle, VCalendar, VCalendarCategory, VCalendarDaily, VCalendarWeekly, VCalendarMonthly, VCard, VCardActions, VCardSubtitle, VCardText, VCardTitle, VCarousel, VCarouselItem, VCheckbox, VSimpleCheckbox, VChip, VChipGroup, VColorPicker, VColorPickerSwatches, VColorPickerCanvas, VContent, VCombobox, VCounter, VData, VDataIterator, VDataFooter, VDataTable, VEditDialog, VTableOverflow, VDataTableHeader, VSimpleTable, VVirtualTable, VDatePicker, VDatePickerTitle, VDatePickerHeader, VDatePickerDateTable, VDatePickerMonthTable, VDatePickerYears, VDialog, VDivider, VExpansionPanels, VExpansionPanel, VExpansionPanelHeader, VExpansionPanelContent, VFileInput, VFooter, VForm, VContainer, VCol, VRow, VSpacer, VLayout, VFlex, VHover, VIcon, VImg, VInput, VItem, VItemGroup, VLabel, VLazy, VListItemActionText, VListItemContent, VListItemTitle, VListItemSubtitle, VList, VListGroup, VListItem, VListItemAction, VListItemAvatar, VListItemIcon, VListItemGroup, VMain, VMenu, VMessages, VNavigationDrawer, VOverflowBtn, VOverlay, VPagination, VSheet, VParallax, VPicker, VProgressCircular, VProgressLinear, VRadioGroup, VRadio, VRangeSlider, VRating, VResponsive, VSelect, VSkeletonLoader, VSlider, VSlideGroup, VSlideItem, VSnackbar, VSparkline, VSpeedDial, VStepper, VStepperContent, VStepperStep, VStepperHeader, VStepperItems, VSubheader, VSwitch, VSystemBar, VTabs, VTab, VTabItem, VTabsItems, VTabsSlider, VTextarea, VTextField, VThemeProvider, VTimeline, VTimelineItem, VTimePicker, VTimePickerClock, VTimePickerTitle, VToolbar, VToolbarItems, VToolbarTitle, VTooltip, VTreeview, VTreeviewNode, VVirtualScroll, VWindow, VWindowItem, VCarouselTransition, VCarouselReverseTransition, VTabTransition, VTabReverseTransition, VMenuTransition, VFabTransition, VDialogTransition, VDialogBottomTransition, VDialogTopTransition, VFadeTransition, VScaleTransition, VScrollXTransition, VScrollXReverseTransition, VScrollYTransition, VScrollYReverseTransition, VSlideXTransition, VSlideXReverseTransition, VSlideYTransition, VSlideYReverseTransition, VExpandTransition, VExpandXTransition */
|
|
33127
|
+
/*! exports provided: VApp, VAppBar, VAppBarNavIcon, VAppBarTitle, VAlert, VAutocomplete, VAvatar, VBadge, VBanner, VBottomNavigation, VBottomSheet, VBreadcrumbs, VBreadcrumbsItem, VBreadcrumbsDivider, VBtn, VBtnToggle, VCalendar, VCalendarCategory, VCalendarDaily, VCalendarWeekly, VCalendarMonthly, VCard, VCardActions, VCardSubtitle, VCardText, VCardTitle, VCarousel, VCarouselItem, VCheckbox, VSimpleCheckbox, VChip, VChipGroup, VColorPicker, VColorPickerSwatches, VColorPickerCanvas, VContent, VCombobox, VCounter, VData, VDataIterator, VDataFooter, VDataTable, VEditDialog, VTableOverflow, VDataTableHeader, VSimpleTable, VVirtualTable, VDatePicker, VDatePickerTitle, VDatePickerHeader, VDatePickerDateTable, VDatePickerMonthTable, VDatePickerYears, VDialog, VDivider, VExpansionPanels, VExpansionPanel, VExpansionPanelHeader, VExpansionPanelContent, VFileInput, VFooter, VForm, VContainer, VCol, VRow, VSpacer, VLayout, VFlex, VHover, VIcon, VImg, VInput, VItem, VItemGroup, VLabel, VLazy, VListItemActionText, VListItemContent, VListItemTitle, VListItemSubtitle, VList, VListGroup, VListItem, VListItemAction, VListItemAvatar, VListItemIcon, VListItemGroup, VMain, VMenu, VMessages, VNavigationDrawer, VOtpInput, VOverflowBtn, VOverlay, VPagination, VSheet, VParallax, VPicker, VProgressCircular, VProgressLinear, VRadioGroup, VRadio, VRangeSlider, VRating, VResponsive, VSelect, VSkeletonLoader, VSlider, VSlideGroup, VSlideItem, VSnackbar, VSparkline, VSpeedDial, VStepper, VStepperContent, VStepperStep, VStepperHeader, VStepperItems, VSubheader, VSwitch, VSystemBar, VTabs, VTab, VTabItem, VTabsItems, VTabsSlider, VTextarea, VTextField, VThemeProvider, VTimeline, VTimelineItem, VTimePicker, VTimePickerClock, VTimePickerTitle, VToolbar, VToolbarItems, VToolbarTitle, VTooltip, VTreeview, VTreeviewNode, VVirtualScroll, VWindow, VWindowItem, VCarouselTransition, VCarouselReverseTransition, VTabTransition, VTabReverseTransition, VMenuTransition, VFabTransition, VDialogTransition, VDialogBottomTransition, VDialogTopTransition, VFadeTransition, VScaleTransition, VScrollXTransition, VScrollXReverseTransition, VScrollYTransition, VScrollYReverseTransition, VSlideXTransition, VSlideXReverseTransition, VSlideYTransition, VSlideYReverseTransition, VExpandTransition, VExpandXTransition */
|
|
32604
33128
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
32605
33129
|
|
|
32606
33130
|
"use strict";
|
|
@@ -32832,184 +33356,188 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
32832
33356
|
/* harmony import */ var _VNavigationDrawer__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./VNavigationDrawer */ "./src/components/VNavigationDrawer/index.ts");
|
|
32833
33357
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VNavigationDrawer", function() { return _VNavigationDrawer__WEBPACK_IMPORTED_MODULE_44__["VNavigationDrawer"]; });
|
|
32834
33358
|
|
|
32835
|
-
/* harmony import */ var
|
|
32836
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33359
|
+
/* harmony import */ var _VOtpInput__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./VOtpInput */ "./src/components/VOtpInput/index.ts");
|
|
33360
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VOtpInput", function() { return _VOtpInput__WEBPACK_IMPORTED_MODULE_45__["VOtpInput"]; });
|
|
33361
|
+
|
|
33362
|
+
/* harmony import */ var _VOverflowBtn__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./VOverflowBtn */ "./src/components/VOverflowBtn/index.ts");
|
|
33363
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VOverflowBtn", function() { return _VOverflowBtn__WEBPACK_IMPORTED_MODULE_46__["VOverflowBtn"]; });
|
|
33364
|
+
|
|
33365
|
+
/* harmony import */ var _VOverlay__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./VOverlay */ "./src/components/VOverlay/index.ts");
|
|
33366
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VOverlay", function() { return _VOverlay__WEBPACK_IMPORTED_MODULE_47__["VOverlay"]; });
|
|
32837
33367
|
|
|
32838
|
-
/* harmony import */ var
|
|
32839
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33368
|
+
/* harmony import */ var _VPagination__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./VPagination */ "./src/components/VPagination/index.ts");
|
|
33369
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VPagination", function() { return _VPagination__WEBPACK_IMPORTED_MODULE_48__["VPagination"]; });
|
|
32840
33370
|
|
|
32841
|
-
/* harmony import */ var
|
|
32842
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33371
|
+
/* harmony import */ var _VSheet__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./VSheet */ "./src/components/VSheet/index.ts");
|
|
33372
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSheet", function() { return _VSheet__WEBPACK_IMPORTED_MODULE_49__["VSheet"]; });
|
|
32843
33373
|
|
|
32844
|
-
/* harmony import */ var
|
|
32845
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33374
|
+
/* harmony import */ var _VParallax__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./VParallax */ "./src/components/VParallax/index.ts");
|
|
33375
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VParallax", function() { return _VParallax__WEBPACK_IMPORTED_MODULE_50__["VParallax"]; });
|
|
32846
33376
|
|
|
32847
|
-
/* harmony import */ var
|
|
32848
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33377
|
+
/* harmony import */ var _VPicker__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./VPicker */ "./src/components/VPicker/index.ts");
|
|
33378
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VPicker", function() { return _VPicker__WEBPACK_IMPORTED_MODULE_51__["VPicker"]; });
|
|
32849
33379
|
|
|
32850
|
-
/* harmony import */ var
|
|
32851
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33380
|
+
/* harmony import */ var _VProgressCircular__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./VProgressCircular */ "./src/components/VProgressCircular/index.ts");
|
|
33381
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VProgressCircular", function() { return _VProgressCircular__WEBPACK_IMPORTED_MODULE_52__["VProgressCircular"]; });
|
|
32852
33382
|
|
|
32853
|
-
/* harmony import */ var
|
|
32854
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33383
|
+
/* harmony import */ var _VProgressLinear__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./VProgressLinear */ "./src/components/VProgressLinear/index.ts");
|
|
33384
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VProgressLinear", function() { return _VProgressLinear__WEBPACK_IMPORTED_MODULE_53__["VProgressLinear"]; });
|
|
32855
33385
|
|
|
32856
|
-
/* harmony import */ var
|
|
32857
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33386
|
+
/* harmony import */ var _VRadioGroup__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./VRadioGroup */ "./src/components/VRadioGroup/index.ts");
|
|
33387
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VRadioGroup", function() { return _VRadioGroup__WEBPACK_IMPORTED_MODULE_54__["VRadioGroup"]; });
|
|
32858
33388
|
|
|
32859
|
-
/* harmony
|
|
32860
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VRadioGroup", function() { return _VRadioGroup__WEBPACK_IMPORTED_MODULE_53__["VRadioGroup"]; });
|
|
33389
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VRadio", function() { return _VRadioGroup__WEBPACK_IMPORTED_MODULE_54__["VRadio"]; });
|
|
32861
33390
|
|
|
32862
|
-
/* harmony
|
|
33391
|
+
/* harmony import */ var _VRangeSlider__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./VRangeSlider */ "./src/components/VRangeSlider/index.ts");
|
|
33392
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VRangeSlider", function() { return _VRangeSlider__WEBPACK_IMPORTED_MODULE_55__["VRangeSlider"]; });
|
|
32863
33393
|
|
|
32864
|
-
/* harmony import */ var
|
|
32865
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33394
|
+
/* harmony import */ var _VRating__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./VRating */ "./src/components/VRating/index.ts");
|
|
33395
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VRating", function() { return _VRating__WEBPACK_IMPORTED_MODULE_56__["VRating"]; });
|
|
32866
33396
|
|
|
32867
|
-
/* harmony import */ var
|
|
32868
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33397
|
+
/* harmony import */ var _VResponsive__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./VResponsive */ "./src/components/VResponsive/index.ts");
|
|
33398
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VResponsive", function() { return _VResponsive__WEBPACK_IMPORTED_MODULE_57__["VResponsive"]; });
|
|
32869
33399
|
|
|
32870
|
-
/* harmony import */ var
|
|
32871
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33400
|
+
/* harmony import */ var _VSelect__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./VSelect */ "./src/components/VSelect/index.ts");
|
|
33401
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSelect", function() { return _VSelect__WEBPACK_IMPORTED_MODULE_58__["VSelect"]; });
|
|
32872
33402
|
|
|
32873
|
-
/* harmony import */ var
|
|
32874
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33403
|
+
/* harmony import */ var _VSkeletonLoader__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./VSkeletonLoader */ "./src/components/VSkeletonLoader/index.ts");
|
|
33404
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSkeletonLoader", function() { return _VSkeletonLoader__WEBPACK_IMPORTED_MODULE_59__["VSkeletonLoader"]; });
|
|
32875
33405
|
|
|
32876
|
-
/* harmony import */ var
|
|
32877
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33406
|
+
/* harmony import */ var _VSlider__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./VSlider */ "./src/components/VSlider/index.ts");
|
|
33407
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSlider", function() { return _VSlider__WEBPACK_IMPORTED_MODULE_60__["VSlider"]; });
|
|
32878
33408
|
|
|
32879
|
-
/* harmony import */ var
|
|
32880
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33409
|
+
/* harmony import */ var _VSlideGroup__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./VSlideGroup */ "./src/components/VSlideGroup/index.ts");
|
|
33410
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSlideGroup", function() { return _VSlideGroup__WEBPACK_IMPORTED_MODULE_61__["VSlideGroup"]; });
|
|
32881
33411
|
|
|
32882
|
-
/* harmony
|
|
32883
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSlideGroup", function() { return _VSlideGroup__WEBPACK_IMPORTED_MODULE_60__["VSlideGroup"]; });
|
|
33412
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSlideItem", function() { return _VSlideGroup__WEBPACK_IMPORTED_MODULE_61__["VSlideItem"]; });
|
|
32884
33413
|
|
|
32885
|
-
/* harmony
|
|
33414
|
+
/* harmony import */ var _VSnackbar__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./VSnackbar */ "./src/components/VSnackbar/index.ts");
|
|
33415
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSnackbar", function() { return _VSnackbar__WEBPACK_IMPORTED_MODULE_62__["VSnackbar"]; });
|
|
32886
33416
|
|
|
32887
|
-
/* harmony import */ var
|
|
32888
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33417
|
+
/* harmony import */ var _VSparkline__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./VSparkline */ "./src/components/VSparkline/index.ts");
|
|
33418
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSparkline", function() { return _VSparkline__WEBPACK_IMPORTED_MODULE_63__["VSparkline"]; });
|
|
32889
33419
|
|
|
32890
|
-
/* harmony import */ var
|
|
32891
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33420
|
+
/* harmony import */ var _VSpeedDial__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./VSpeedDial */ "./src/components/VSpeedDial/index.ts");
|
|
33421
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSpeedDial", function() { return _VSpeedDial__WEBPACK_IMPORTED_MODULE_64__["VSpeedDial"]; });
|
|
32892
33422
|
|
|
32893
|
-
/* harmony import */ var
|
|
32894
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33423
|
+
/* harmony import */ var _VStepper__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./VStepper */ "./src/components/VStepper/index.ts");
|
|
33424
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VStepper", function() { return _VStepper__WEBPACK_IMPORTED_MODULE_65__["VStepper"]; });
|
|
32895
33425
|
|
|
32896
|
-
/* harmony
|
|
32897
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VStepper", function() { return _VStepper__WEBPACK_IMPORTED_MODULE_64__["VStepper"]; });
|
|
33426
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VStepperContent", function() { return _VStepper__WEBPACK_IMPORTED_MODULE_65__["VStepperContent"]; });
|
|
32898
33427
|
|
|
32899
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33428
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VStepperStep", function() { return _VStepper__WEBPACK_IMPORTED_MODULE_65__["VStepperStep"]; });
|
|
32900
33429
|
|
|
32901
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33430
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VStepperHeader", function() { return _VStepper__WEBPACK_IMPORTED_MODULE_65__["VStepperHeader"]; });
|
|
32902
33431
|
|
|
32903
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33432
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VStepperItems", function() { return _VStepper__WEBPACK_IMPORTED_MODULE_65__["VStepperItems"]; });
|
|
32904
33433
|
|
|
32905
|
-
/* harmony
|
|
33434
|
+
/* harmony import */ var _VSubheader__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./VSubheader */ "./src/components/VSubheader/index.ts");
|
|
33435
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSubheader", function() { return _VSubheader__WEBPACK_IMPORTED_MODULE_66__["VSubheader"]; });
|
|
32906
33436
|
|
|
32907
|
-
/* harmony import */ var
|
|
32908
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33437
|
+
/* harmony import */ var _VSwitch__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./VSwitch */ "./src/components/VSwitch/index.ts");
|
|
33438
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSwitch", function() { return _VSwitch__WEBPACK_IMPORTED_MODULE_67__["VSwitch"]; });
|
|
32909
33439
|
|
|
32910
|
-
/* harmony import */ var
|
|
32911
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33440
|
+
/* harmony import */ var _VSystemBar__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./VSystemBar */ "./src/components/VSystemBar/index.ts");
|
|
33441
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSystemBar", function() { return _VSystemBar__WEBPACK_IMPORTED_MODULE_68__["VSystemBar"]; });
|
|
32912
33442
|
|
|
32913
|
-
/* harmony import */ var
|
|
32914
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33443
|
+
/* harmony import */ var _VTabs__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./VTabs */ "./src/components/VTabs/index.ts");
|
|
33444
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTabs", function() { return _VTabs__WEBPACK_IMPORTED_MODULE_69__["VTabs"]; });
|
|
32915
33445
|
|
|
32916
|
-
/* harmony
|
|
32917
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTabs", function() { return _VTabs__WEBPACK_IMPORTED_MODULE_68__["VTabs"]; });
|
|
33446
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTab", function() { return _VTabs__WEBPACK_IMPORTED_MODULE_69__["VTab"]; });
|
|
32918
33447
|
|
|
32919
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33448
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTabItem", function() { return _VTabs__WEBPACK_IMPORTED_MODULE_69__["VTabItem"]; });
|
|
32920
33449
|
|
|
32921
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33450
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTabsItems", function() { return _VTabs__WEBPACK_IMPORTED_MODULE_69__["VTabsItems"]; });
|
|
32922
33451
|
|
|
32923
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33452
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTabsSlider", function() { return _VTabs__WEBPACK_IMPORTED_MODULE_69__["VTabsSlider"]; });
|
|
32924
33453
|
|
|
32925
|
-
/* harmony
|
|
33454
|
+
/* harmony import */ var _VTextarea__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./VTextarea */ "./src/components/VTextarea/index.ts");
|
|
33455
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTextarea", function() { return _VTextarea__WEBPACK_IMPORTED_MODULE_70__["VTextarea"]; });
|
|
32926
33456
|
|
|
32927
|
-
/* harmony import */ var
|
|
32928
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33457
|
+
/* harmony import */ var _VTextField__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./VTextField */ "./src/components/VTextField/index.ts");
|
|
33458
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTextField", function() { return _VTextField__WEBPACK_IMPORTED_MODULE_71__["VTextField"]; });
|
|
32929
33459
|
|
|
32930
|
-
/* harmony import */ var
|
|
32931
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33460
|
+
/* harmony import */ var _VThemeProvider__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./VThemeProvider */ "./src/components/VThemeProvider/index.ts");
|
|
33461
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VThemeProvider", function() { return _VThemeProvider__WEBPACK_IMPORTED_MODULE_72__["VThemeProvider"]; });
|
|
32932
33462
|
|
|
32933
|
-
/* harmony import */ var
|
|
32934
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33463
|
+
/* harmony import */ var _VTimeline__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./VTimeline */ "./src/components/VTimeline/index.ts");
|
|
33464
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTimeline", function() { return _VTimeline__WEBPACK_IMPORTED_MODULE_73__["VTimeline"]; });
|
|
32935
33465
|
|
|
32936
|
-
/* harmony
|
|
32937
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTimeline", function() { return _VTimeline__WEBPACK_IMPORTED_MODULE_72__["VTimeline"]; });
|
|
33466
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTimelineItem", function() { return _VTimeline__WEBPACK_IMPORTED_MODULE_73__["VTimelineItem"]; });
|
|
32938
33467
|
|
|
32939
|
-
/* harmony
|
|
33468
|
+
/* harmony import */ var _VTimePicker__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./VTimePicker */ "./src/components/VTimePicker/index.ts");
|
|
33469
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTimePicker", function() { return _VTimePicker__WEBPACK_IMPORTED_MODULE_74__["VTimePicker"]; });
|
|
32940
33470
|
|
|
32941
|
-
/* harmony
|
|
32942
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTimePicker", function() { return _VTimePicker__WEBPACK_IMPORTED_MODULE_73__["VTimePicker"]; });
|
|
33471
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTimePickerClock", function() { return _VTimePicker__WEBPACK_IMPORTED_MODULE_74__["VTimePickerClock"]; });
|
|
32943
33472
|
|
|
32944
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33473
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTimePickerTitle", function() { return _VTimePicker__WEBPACK_IMPORTED_MODULE_74__["VTimePickerTitle"]; });
|
|
32945
33474
|
|
|
32946
|
-
/* harmony
|
|
33475
|
+
/* harmony import */ var _VToolbar__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./VToolbar */ "./src/components/VToolbar/index.ts");
|
|
33476
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VToolbar", function() { return _VToolbar__WEBPACK_IMPORTED_MODULE_75__["VToolbar"]; });
|
|
32947
33477
|
|
|
32948
|
-
/* harmony
|
|
32949
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VToolbar", function() { return _VToolbar__WEBPACK_IMPORTED_MODULE_74__["VToolbar"]; });
|
|
33478
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VToolbarItems", function() { return _VToolbar__WEBPACK_IMPORTED_MODULE_75__["VToolbarItems"]; });
|
|
32950
33479
|
|
|
32951
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33480
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VToolbarTitle", function() { return _VToolbar__WEBPACK_IMPORTED_MODULE_75__["VToolbarTitle"]; });
|
|
32952
33481
|
|
|
32953
|
-
/* harmony
|
|
33482
|
+
/* harmony import */ var _VTooltip__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./VTooltip */ "./src/components/VTooltip/index.ts");
|
|
33483
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTooltip", function() { return _VTooltip__WEBPACK_IMPORTED_MODULE_76__["VTooltip"]; });
|
|
32954
33484
|
|
|
32955
|
-
/* harmony import */ var
|
|
32956
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33485
|
+
/* harmony import */ var _VTreeview__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./VTreeview */ "./src/components/VTreeview/index.ts");
|
|
33486
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTreeview", function() { return _VTreeview__WEBPACK_IMPORTED_MODULE_77__["VTreeview"]; });
|
|
32957
33487
|
|
|
32958
|
-
/* harmony
|
|
32959
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTreeview", function() { return _VTreeview__WEBPACK_IMPORTED_MODULE_76__["VTreeview"]; });
|
|
33488
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTreeviewNode", function() { return _VTreeview__WEBPACK_IMPORTED_MODULE_77__["VTreeviewNode"]; });
|
|
32960
33489
|
|
|
32961
|
-
/* harmony
|
|
33490
|
+
/* harmony import */ var _VVirtualScroll__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./VVirtualScroll */ "./src/components/VVirtualScroll/index.ts");
|
|
33491
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VVirtualScroll", function() { return _VVirtualScroll__WEBPACK_IMPORTED_MODULE_78__["VVirtualScroll"]; });
|
|
32962
33492
|
|
|
32963
|
-
/* harmony import */ var
|
|
32964
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33493
|
+
/* harmony import */ var _VWindow__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./VWindow */ "./src/components/VWindow/index.ts");
|
|
33494
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VWindow", function() { return _VWindow__WEBPACK_IMPORTED_MODULE_79__["VWindow"]; });
|
|
32965
33495
|
|
|
32966
|
-
/* harmony
|
|
32967
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VWindow", function() { return _VWindow__WEBPACK_IMPORTED_MODULE_78__["VWindow"]; });
|
|
33496
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VWindowItem", function() { return _VWindow__WEBPACK_IMPORTED_MODULE_79__["VWindowItem"]; });
|
|
32968
33497
|
|
|
32969
|
-
/* harmony
|
|
33498
|
+
/* harmony import */ var _transitions__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./transitions */ "./src/components/transitions/index.ts");
|
|
33499
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VCarouselTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VCarouselTransition"]; });
|
|
32970
33500
|
|
|
32971
|
-
/* harmony
|
|
32972
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VCarouselTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_79__["VCarouselTransition"]; });
|
|
33501
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VCarouselReverseTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VCarouselReverseTransition"]; });
|
|
32973
33502
|
|
|
32974
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33503
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTabTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VTabTransition"]; });
|
|
32975
33504
|
|
|
32976
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33505
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VTabReverseTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VTabReverseTransition"]; });
|
|
32977
33506
|
|
|
32978
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33507
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VMenuTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VMenuTransition"]; });
|
|
32979
33508
|
|
|
32980
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33509
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VFabTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VFabTransition"]; });
|
|
32981
33510
|
|
|
32982
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33511
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VDialogTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VDialogTransition"]; });
|
|
32983
33512
|
|
|
32984
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33513
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VDialogBottomTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VDialogBottomTransition"]; });
|
|
32985
33514
|
|
|
32986
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33515
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VDialogTopTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VDialogTopTransition"]; });
|
|
32987
33516
|
|
|
32988
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33517
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VFadeTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VFadeTransition"]; });
|
|
32989
33518
|
|
|
32990
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33519
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VScaleTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VScaleTransition"]; });
|
|
32991
33520
|
|
|
32992
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33521
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VScrollXTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VScrollXTransition"]; });
|
|
32993
33522
|
|
|
32994
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33523
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VScrollXReverseTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VScrollXReverseTransition"]; });
|
|
32995
33524
|
|
|
32996
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33525
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VScrollYTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VScrollYTransition"]; });
|
|
32997
33526
|
|
|
32998
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33527
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VScrollYReverseTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VScrollYReverseTransition"]; });
|
|
32999
33528
|
|
|
33000
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33529
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSlideXTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VSlideXTransition"]; });
|
|
33001
33530
|
|
|
33002
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33531
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSlideXReverseTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VSlideXReverseTransition"]; });
|
|
33003
33532
|
|
|
33004
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33533
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSlideYTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VSlideYTransition"]; });
|
|
33005
33534
|
|
|
33006
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33535
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VSlideYReverseTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VSlideYReverseTransition"]; });
|
|
33007
33536
|
|
|
33008
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33537
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VExpandTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VExpandTransition"]; });
|
|
33009
33538
|
|
|
33010
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
33539
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VExpandXTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_80__["VExpandXTransition"]; });
|
|
33011
33540
|
|
|
33012
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VExpandXTransition", function() { return _transitions__WEBPACK_IMPORTED_MODULE_79__["VExpandXTransition"]; });
|
|
33013
33541
|
|
|
33014
33542
|
|
|
33015
33543
|
|
|
@@ -33559,10 +34087,12 @@ var ClickOutside = {
|
|
|
33559
34087
|
unbind: function unbind(el, binding, vnode) {
|
|
33560
34088
|
if (!el._clickOutside) return;
|
|
33561
34089
|
handleShadow(el, function (app) {
|
|
33562
|
-
|
|
33563
|
-
|
|
33564
|
-
|
|
33565
|
-
|
|
34090
|
+
var _a;
|
|
34091
|
+
|
|
34092
|
+
if (!app || !((_a = el._clickOutside) === null || _a === void 0 ? void 0 : _a[vnode.context._uid])) return;
|
|
34093
|
+
var _b = el._clickOutside[vnode.context._uid],
|
|
34094
|
+
onClick = _b.onClick,
|
|
34095
|
+
onMousedown = _b.onMousedown;
|
|
33566
34096
|
app.removeEventListener('click', onClick, true);
|
|
33567
34097
|
app.removeEventListener('mousedown', onMousedown, true);
|
|
33568
34098
|
});
|
|
@@ -33644,9 +34174,10 @@ function inserted(el, binding, vnode) {
|
|
|
33644
34174
|
entries = [];
|
|
33645
34175
|
}
|
|
33646
34176
|
|
|
33647
|
-
|
|
34177
|
+
var _observe = (_a = el._observe) === null || _a === void 0 ? void 0 : _a[vnode.context._uid];
|
|
34178
|
+
|
|
34179
|
+
if (!_observe) return; // Just in case, should never fire
|
|
33648
34180
|
|
|
33649
|
-
var _observe = el._observe[vnode.context._uid];
|
|
33650
34181
|
var isIntersecting = entries.some(function (entry) {
|
|
33651
34182
|
return entry.isIntersecting;
|
|
33652
34183
|
}); // If is not quiet or has already been
|
|
@@ -33667,10 +34198,11 @@ function inserted(el, binding, vnode) {
|
|
|
33667
34198
|
}
|
|
33668
34199
|
|
|
33669
34200
|
function unbind(el, binding, vnode) {
|
|
33670
|
-
|
|
33671
|
-
|
|
33672
|
-
el._observe[vnode.context._uid].observer.unobserve(el);
|
|
34201
|
+
var _a;
|
|
33673
34202
|
|
|
34203
|
+
var observe = (_a = el._observe) === null || _a === void 0 ? void 0 : _a[vnode.context._uid];
|
|
34204
|
+
if (!observe) return;
|
|
34205
|
+
observe.observer.unobserve(el);
|
|
33674
34206
|
delete el._observe[vnode.context._uid];
|
|
33675
34207
|
}
|
|
33676
34208
|
|
|
@@ -33746,8 +34278,9 @@ function inserted(el, binding, vnode) {
|
|
|
33746
34278
|
}
|
|
33747
34279
|
|
|
33748
34280
|
function unbind(el, binding, vnode) {
|
|
33749
|
-
|
|
33750
|
-
|
|
34281
|
+
var _a;
|
|
34282
|
+
|
|
34283
|
+
if (!((_a = el._mutate) === null || _a === void 0 ? void 0 : _a[vnode.context._uid])) return;
|
|
33751
34284
|
|
|
33752
34285
|
el._mutate[vnode.context._uid].observer.disconnect();
|
|
33753
34286
|
|
|
@@ -33790,10 +34323,12 @@ function inserted(el, binding, vnode) {
|
|
|
33790
34323
|
}
|
|
33791
34324
|
|
|
33792
34325
|
function unbind(el, binding, vnode) {
|
|
33793
|
-
|
|
33794
|
-
|
|
33795
|
-
|
|
33796
|
-
|
|
34326
|
+
var _a;
|
|
34327
|
+
|
|
34328
|
+
if (!((_a = el._onResize) === null || _a === void 0 ? void 0 : _a[vnode.context._uid])) return;
|
|
34329
|
+
var _b = el._onResize[vnode.context._uid],
|
|
34330
|
+
callback = _b.callback,
|
|
34331
|
+
options = _b.options;
|
|
33797
34332
|
window.removeEventListener('resize', callback, options);
|
|
33798
34333
|
delete el._onResize[vnode.context._uid];
|
|
33799
34334
|
}
|
|
@@ -33878,10 +34413,6 @@ function transform(el, value) {
|
|
|
33878
34413
|
el.style.webkitTransform = value;
|
|
33879
34414
|
}
|
|
33880
34415
|
|
|
33881
|
-
function opacity(el, value) {
|
|
33882
|
-
el.style.opacity = value.toString();
|
|
33883
|
-
}
|
|
33884
|
-
|
|
33885
34416
|
function isTouchEvent(e) {
|
|
33886
34417
|
return e.constructor.name === 'TouchEvent';
|
|
33887
34418
|
}
|
|
@@ -33973,13 +34504,11 @@ var ripples = {
|
|
|
33973
34504
|
animation.classList.add('v-ripple__animation--enter');
|
|
33974
34505
|
animation.classList.add('v-ripple__animation--visible');
|
|
33975
34506
|
transform(animation, "translate(" + x + ", " + y + ") scale3d(" + scale + "," + scale + "," + scale + ")");
|
|
33976
|
-
opacity(animation, 0);
|
|
33977
34507
|
animation.dataset.activated = String(performance.now());
|
|
33978
34508
|
setTimeout(function () {
|
|
33979
34509
|
animation.classList.remove('v-ripple__animation--enter');
|
|
33980
34510
|
animation.classList.add('v-ripple__animation--in');
|
|
33981
34511
|
transform(animation, "translate(" + centerX + ", " + centerY + ") scale3d(1,1,1)");
|
|
33982
|
-
opacity(animation, 0.25);
|
|
33983
34512
|
}, 0);
|
|
33984
34513
|
},
|
|
33985
34514
|
hide: function hide(el) {
|
|
@@ -33993,7 +34522,6 @@ var ripples = {
|
|
|
33993
34522
|
setTimeout(function () {
|
|
33994
34523
|
animation.classList.remove('v-ripple__animation--in');
|
|
33995
34524
|
animation.classList.add('v-ripple__animation--out');
|
|
33996
|
-
opacity(animation, 0);
|
|
33997
34525
|
setTimeout(function () {
|
|
33998
34526
|
var ripples = el.getElementsByClassName('v-ripple__animation');
|
|
33999
34527
|
|
|
@@ -34456,7 +34984,7 @@ function () {
|
|
|
34456
34984
|
|
|
34457
34985
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
34458
34986
|
Vuetify.installed = false;
|
|
34459
|
-
Vuetify.version = "2.
|
|
34987
|
+
Vuetify.version = "2.6.1";
|
|
34460
34988
|
Vuetify.config = {
|
|
34461
34989
|
silent: false
|
|
34462
34990
|
};
|
|
@@ -35171,6 +35699,87 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
35171
35699
|
|
|
35172
35700
|
/***/ }),
|
|
35173
35701
|
|
|
35702
|
+
/***/ "./src/locale/da.ts":
|
|
35703
|
+
/*!**************************!*\
|
|
35704
|
+
!*** ./src/locale/da.ts ***!
|
|
35705
|
+
\**************************/
|
|
35706
|
+
/*! exports provided: default */
|
|
35707
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
35708
|
+
|
|
35709
|
+
"use strict";
|
|
35710
|
+
__webpack_require__.r(__webpack_exports__);
|
|
35711
|
+
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
35712
|
+
badge: 'Emblem',
|
|
35713
|
+
close: 'Luk',
|
|
35714
|
+
dataIterator: {
|
|
35715
|
+
noResultsText: 'Ingen matchende data fundet',
|
|
35716
|
+
loadingText: 'Indhenter data...'
|
|
35717
|
+
},
|
|
35718
|
+
dataTable: {
|
|
35719
|
+
itemsPerPageText: 'Rækker pr. side:',
|
|
35720
|
+
ariaLabel: {
|
|
35721
|
+
sortDescending: 'Sorteret faldende.',
|
|
35722
|
+
sortAscending: 'Sorteret stigende.',
|
|
35723
|
+
sortNone: 'Ikke sorteret.',
|
|
35724
|
+
activateNone: 'Aktiver for at fjerne sortering.',
|
|
35725
|
+
activateDescending: 'Aktiver for at sortere faldende.',
|
|
35726
|
+
activateAscending: 'Aktiver for at sortere stigende.'
|
|
35727
|
+
},
|
|
35728
|
+
sortBy: 'Sorter efter'
|
|
35729
|
+
},
|
|
35730
|
+
dataFooter: {
|
|
35731
|
+
itemsPerPageText: 'Rækker pr. side:',
|
|
35732
|
+
itemsPerPageAll: 'Alle',
|
|
35733
|
+
nextPage: 'Næste side',
|
|
35734
|
+
prevPage: 'Forrige side',
|
|
35735
|
+
firstPage: 'Første side',
|
|
35736
|
+
lastPage: 'Sidste side',
|
|
35737
|
+
pageText: '{0}-{1} af {2}'
|
|
35738
|
+
},
|
|
35739
|
+
datePicker: {
|
|
35740
|
+
itemsSelected: '{0} valgt',
|
|
35741
|
+
nextMonthAriaLabel: 'Næste måned',
|
|
35742
|
+
nextYearAriaLabel: 'Næste år',
|
|
35743
|
+
prevMonthAriaLabel: 'Forrige måned',
|
|
35744
|
+
prevYearAriaLabel: 'Forrige år'
|
|
35745
|
+
},
|
|
35746
|
+
noDataText: 'Ingen data tilgængelig',
|
|
35747
|
+
carousel: {
|
|
35748
|
+
prev: 'Forrige visuelle',
|
|
35749
|
+
next: 'Næste visuelle',
|
|
35750
|
+
ariaLabel: {
|
|
35751
|
+
delimiter: 'Karrusel dias {0} af {1}'
|
|
35752
|
+
}
|
|
35753
|
+
},
|
|
35754
|
+
calendar: {
|
|
35755
|
+
moreEvents: '{0} mere'
|
|
35756
|
+
},
|
|
35757
|
+
fileInput: {
|
|
35758
|
+
counter: '{0} filer',
|
|
35759
|
+
counterSize: '{0} filer ({1} total)'
|
|
35760
|
+
},
|
|
35761
|
+
timePicker: {
|
|
35762
|
+
am: 'AM',
|
|
35763
|
+
pm: 'PM'
|
|
35764
|
+
},
|
|
35765
|
+
pagination: {
|
|
35766
|
+
ariaLabel: {
|
|
35767
|
+
wrapper: 'Pagineringsnavigation',
|
|
35768
|
+
next: 'Næste side',
|
|
35769
|
+
previous: 'Forrige side',
|
|
35770
|
+
page: 'Gå til side {0}',
|
|
35771
|
+
currentPage: 'Nuværende side, Side {0}'
|
|
35772
|
+
}
|
|
35773
|
+
},
|
|
35774
|
+
rating: {
|
|
35775
|
+
ariaLabel: {
|
|
35776
|
+
icon: 'Bedømmelse {0} af {1}'
|
|
35777
|
+
}
|
|
35778
|
+
}
|
|
35779
|
+
});
|
|
35780
|
+
|
|
35781
|
+
/***/ }),
|
|
35782
|
+
|
|
35174
35783
|
/***/ "./src/locale/de.ts":
|
|
35175
35784
|
/*!**************************!*\
|
|
35176
35785
|
!*** ./src/locale/de.ts ***!
|
|
@@ -36147,7 +36756,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
36147
36756
|
/*!*****************************!*\
|
|
36148
36757
|
!*** ./src/locale/index.ts ***!
|
|
36149
36758
|
\*****************************/
|
|
36150
|
-
/*! exports provided: af, ar, bg, ca, ckb, cs, de, el, en, es, et, fa, fi, fr, hr, hu, he, id, it, ja, ko, lv, lt, nl, no, pl, pt, ro, ru, sk, sl, srCyrl, srLatn, sv, th, tr, az, uk, vi, zhHans, zhHant */
|
|
36759
|
+
/*! exports provided: af, ar, bg, ca, ckb, cs, da, de, el, en, es, et, fa, fi, fr, hr, hu, he, id, it, ja, ko, lv, lt, nl, no, pl, pt, ro, ru, sk, sl, srCyrl, srLatn, sv, th, tr, az, uk, vi, zhHans, zhHant */
|
|
36151
36760
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
36152
36761
|
|
|
36153
36762
|
"use strict";
|
|
@@ -36170,110 +36779,114 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
36170
36779
|
/* harmony import */ var _cs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./cs */ "./src/locale/cs.ts");
|
|
36171
36780
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "cs", function() { return _cs__WEBPACK_IMPORTED_MODULE_5__["default"]; });
|
|
36172
36781
|
|
|
36173
|
-
/* harmony import */ var
|
|
36174
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
36782
|
+
/* harmony import */ var _da__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./da */ "./src/locale/da.ts");
|
|
36783
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "da", function() { return _da__WEBPACK_IMPORTED_MODULE_6__["default"]; });
|
|
36784
|
+
|
|
36785
|
+
/* harmony import */ var _de__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./de */ "./src/locale/de.ts");
|
|
36786
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "de", function() { return _de__WEBPACK_IMPORTED_MODULE_7__["default"]; });
|
|
36175
36787
|
|
|
36176
|
-
/* harmony import */ var
|
|
36177
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "el", function() { return
|
|
36788
|
+
/* harmony import */ var _el__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./el */ "./src/locale/el.ts");
|
|
36789
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "el", function() { return _el__WEBPACK_IMPORTED_MODULE_8__["default"]; });
|
|
36178
36790
|
|
|
36179
|
-
/* harmony import */ var
|
|
36180
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "en", function() { return
|
|
36791
|
+
/* harmony import */ var _en__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./en */ "./src/locale/en.ts");
|
|
36792
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "en", function() { return _en__WEBPACK_IMPORTED_MODULE_9__["default"]; });
|
|
36181
36793
|
|
|
36182
|
-
/* harmony import */ var
|
|
36183
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "es", function() { return
|
|
36794
|
+
/* harmony import */ var _es__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./es */ "./src/locale/es.ts");
|
|
36795
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "es", function() { return _es__WEBPACK_IMPORTED_MODULE_10__["default"]; });
|
|
36184
36796
|
|
|
36185
|
-
/* harmony import */ var
|
|
36186
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "et", function() { return
|
|
36797
|
+
/* harmony import */ var _et__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./et */ "./src/locale/et.ts");
|
|
36798
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "et", function() { return _et__WEBPACK_IMPORTED_MODULE_11__["default"]; });
|
|
36187
36799
|
|
|
36188
|
-
/* harmony import */ var
|
|
36189
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fa", function() { return
|
|
36800
|
+
/* harmony import */ var _fa__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./fa */ "./src/locale/fa.ts");
|
|
36801
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fa", function() { return _fa__WEBPACK_IMPORTED_MODULE_12__["default"]; });
|
|
36190
36802
|
|
|
36191
|
-
/* harmony import */ var
|
|
36192
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fi", function() { return
|
|
36803
|
+
/* harmony import */ var _fi__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./fi */ "./src/locale/fi.ts");
|
|
36804
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fi", function() { return _fi__WEBPACK_IMPORTED_MODULE_13__["default"]; });
|
|
36193
36805
|
|
|
36194
|
-
/* harmony import */ var
|
|
36195
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fr", function() { return
|
|
36806
|
+
/* harmony import */ var _fr__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./fr */ "./src/locale/fr.ts");
|
|
36807
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fr", function() { return _fr__WEBPACK_IMPORTED_MODULE_14__["default"]; });
|
|
36196
36808
|
|
|
36197
|
-
/* harmony import */ var
|
|
36198
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "hr", function() { return
|
|
36809
|
+
/* harmony import */ var _hr__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./hr */ "./src/locale/hr.ts");
|
|
36810
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "hr", function() { return _hr__WEBPACK_IMPORTED_MODULE_15__["default"]; });
|
|
36199
36811
|
|
|
36200
|
-
/* harmony import */ var
|
|
36201
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "hu", function() { return
|
|
36812
|
+
/* harmony import */ var _hu__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./hu */ "./src/locale/hu.ts");
|
|
36813
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "hu", function() { return _hu__WEBPACK_IMPORTED_MODULE_16__["default"]; });
|
|
36202
36814
|
|
|
36203
|
-
/* harmony import */ var
|
|
36204
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "he", function() { return
|
|
36815
|
+
/* harmony import */ var _he__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./he */ "./src/locale/he.ts");
|
|
36816
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "he", function() { return _he__WEBPACK_IMPORTED_MODULE_17__["default"]; });
|
|
36205
36817
|
|
|
36206
|
-
/* harmony import */ var
|
|
36207
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "id", function() { return
|
|
36818
|
+
/* harmony import */ var _id__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./id */ "./src/locale/id.ts");
|
|
36819
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "id", function() { return _id__WEBPACK_IMPORTED_MODULE_18__["default"]; });
|
|
36208
36820
|
|
|
36209
|
-
/* harmony import */ var
|
|
36210
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "it", function() { return
|
|
36821
|
+
/* harmony import */ var _it__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./it */ "./src/locale/it.ts");
|
|
36822
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "it", function() { return _it__WEBPACK_IMPORTED_MODULE_19__["default"]; });
|
|
36211
36823
|
|
|
36212
|
-
/* harmony import */ var
|
|
36213
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ja", function() { return
|
|
36824
|
+
/* harmony import */ var _ja__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./ja */ "./src/locale/ja.ts");
|
|
36825
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ja", function() { return _ja__WEBPACK_IMPORTED_MODULE_20__["default"]; });
|
|
36214
36826
|
|
|
36215
|
-
/* harmony import */ var
|
|
36216
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ko", function() { return
|
|
36827
|
+
/* harmony import */ var _ko__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./ko */ "./src/locale/ko.ts");
|
|
36828
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ko", function() { return _ko__WEBPACK_IMPORTED_MODULE_21__["default"]; });
|
|
36217
36829
|
|
|
36218
|
-
/* harmony import */ var
|
|
36219
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lv", function() { return
|
|
36830
|
+
/* harmony import */ var _lv__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./lv */ "./src/locale/lv.ts");
|
|
36831
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lv", function() { return _lv__WEBPACK_IMPORTED_MODULE_22__["default"]; });
|
|
36220
36832
|
|
|
36221
|
-
/* harmony import */ var
|
|
36222
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lt", function() { return
|
|
36833
|
+
/* harmony import */ var _lt__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./lt */ "./src/locale/lt.ts");
|
|
36834
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lt", function() { return _lt__WEBPACK_IMPORTED_MODULE_23__["default"]; });
|
|
36223
36835
|
|
|
36224
|
-
/* harmony import */ var
|
|
36225
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "nl", function() { return
|
|
36836
|
+
/* harmony import */ var _nl__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./nl */ "./src/locale/nl.ts");
|
|
36837
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "nl", function() { return _nl__WEBPACK_IMPORTED_MODULE_24__["default"]; });
|
|
36226
36838
|
|
|
36227
|
-
/* harmony import */ var
|
|
36228
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "no", function() { return
|
|
36839
|
+
/* harmony import */ var _no__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./no */ "./src/locale/no.ts");
|
|
36840
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "no", function() { return _no__WEBPACK_IMPORTED_MODULE_25__["default"]; });
|
|
36229
36841
|
|
|
36230
|
-
/* harmony import */ var
|
|
36231
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "pl", function() { return
|
|
36842
|
+
/* harmony import */ var _pl__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./pl */ "./src/locale/pl.ts");
|
|
36843
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "pl", function() { return _pl__WEBPACK_IMPORTED_MODULE_26__["default"]; });
|
|
36232
36844
|
|
|
36233
|
-
/* harmony import */ var
|
|
36234
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "pt", function() { return
|
|
36845
|
+
/* harmony import */ var _pt__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./pt */ "./src/locale/pt.ts");
|
|
36846
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "pt", function() { return _pt__WEBPACK_IMPORTED_MODULE_27__["default"]; });
|
|
36235
36847
|
|
|
36236
|
-
/* harmony import */ var
|
|
36237
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ro", function() { return
|
|
36848
|
+
/* harmony import */ var _ro__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./ro */ "./src/locale/ro.ts");
|
|
36849
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ro", function() { return _ro__WEBPACK_IMPORTED_MODULE_28__["default"]; });
|
|
36238
36850
|
|
|
36239
|
-
/* harmony import */ var
|
|
36240
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ru", function() { return
|
|
36851
|
+
/* harmony import */ var _ru__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./ru */ "./src/locale/ru.ts");
|
|
36852
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ru", function() { return _ru__WEBPACK_IMPORTED_MODULE_29__["default"]; });
|
|
36241
36853
|
|
|
36242
|
-
/* harmony import */ var
|
|
36243
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "sk", function() { return
|
|
36854
|
+
/* harmony import */ var _sk__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./sk */ "./src/locale/sk.ts");
|
|
36855
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "sk", function() { return _sk__WEBPACK_IMPORTED_MODULE_30__["default"]; });
|
|
36244
36856
|
|
|
36245
|
-
/* harmony import */ var
|
|
36246
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "sl", function() { return
|
|
36857
|
+
/* harmony import */ var _sl__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./sl */ "./src/locale/sl.ts");
|
|
36858
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "sl", function() { return _sl__WEBPACK_IMPORTED_MODULE_31__["default"]; });
|
|
36247
36859
|
|
|
36248
|
-
/* harmony import */ var
|
|
36249
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "srCyrl", function() { return
|
|
36860
|
+
/* harmony import */ var _sr_Cyrl__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./sr-Cyrl */ "./src/locale/sr-Cyrl.ts");
|
|
36861
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "srCyrl", function() { return _sr_Cyrl__WEBPACK_IMPORTED_MODULE_32__["default"]; });
|
|
36250
36862
|
|
|
36251
|
-
/* harmony import */ var
|
|
36252
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "srLatn", function() { return
|
|
36863
|
+
/* harmony import */ var _sr_Latn__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./sr-Latn */ "./src/locale/sr-Latn.ts");
|
|
36864
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "srLatn", function() { return _sr_Latn__WEBPACK_IMPORTED_MODULE_33__["default"]; });
|
|
36253
36865
|
|
|
36254
|
-
/* harmony import */ var
|
|
36255
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "sv", function() { return
|
|
36866
|
+
/* harmony import */ var _sv__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./sv */ "./src/locale/sv.ts");
|
|
36867
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "sv", function() { return _sv__WEBPACK_IMPORTED_MODULE_34__["default"]; });
|
|
36256
36868
|
|
|
36257
|
-
/* harmony import */ var
|
|
36258
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "th", function() { return
|
|
36869
|
+
/* harmony import */ var _th__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./th */ "./src/locale/th.ts");
|
|
36870
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "th", function() { return _th__WEBPACK_IMPORTED_MODULE_35__["default"]; });
|
|
36259
36871
|
|
|
36260
|
-
/* harmony import */ var
|
|
36261
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "tr", function() { return
|
|
36872
|
+
/* harmony import */ var _tr__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./tr */ "./src/locale/tr.ts");
|
|
36873
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "tr", function() { return _tr__WEBPACK_IMPORTED_MODULE_36__["default"]; });
|
|
36262
36874
|
|
|
36263
|
-
/* harmony import */ var
|
|
36264
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "az", function() { return
|
|
36875
|
+
/* harmony import */ var _az__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./az */ "./src/locale/az.ts");
|
|
36876
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "az", function() { return _az__WEBPACK_IMPORTED_MODULE_37__["default"]; });
|
|
36265
36877
|
|
|
36266
|
-
/* harmony import */ var
|
|
36267
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "uk", function() { return
|
|
36878
|
+
/* harmony import */ var _uk__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./uk */ "./src/locale/uk.ts");
|
|
36879
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "uk", function() { return _uk__WEBPACK_IMPORTED_MODULE_38__["default"]; });
|
|
36268
36880
|
|
|
36269
|
-
/* harmony import */ var
|
|
36270
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "vi", function() { return
|
|
36881
|
+
/* harmony import */ var _vi__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./vi */ "./src/locale/vi.ts");
|
|
36882
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "vi", function() { return _vi__WEBPACK_IMPORTED_MODULE_39__["default"]; });
|
|
36271
36883
|
|
|
36272
|
-
/* harmony import */ var
|
|
36273
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "zhHans", function() { return
|
|
36884
|
+
/* harmony import */ var _zh_Hans__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./zh-Hans */ "./src/locale/zh-Hans.ts");
|
|
36885
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "zhHans", function() { return _zh_Hans__WEBPACK_IMPORTED_MODULE_40__["default"]; });
|
|
36886
|
+
|
|
36887
|
+
/* harmony import */ var _zh_Hant__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./zh-Hant */ "./src/locale/zh-Hant.ts");
|
|
36888
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "zhHant", function() { return _zh_Hant__WEBPACK_IMPORTED_MODULE_41__["default"]; });
|
|
36274
36889
|
|
|
36275
|
-
/* harmony import */ var _zh_Hant__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./zh-Hant */ "./src/locale/zh-Hant.ts");
|
|
36276
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "zhHant", function() { return _zh_Hant__WEBPACK_IMPORTED_MODULE_40__["default"]; });
|
|
36277
36890
|
|
|
36278
36891
|
|
|
36279
36892
|
|
|
@@ -36352,8 +36965,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
36352
36965
|
itemsPerPageAll: 'Tutti',
|
|
36353
36966
|
nextPage: 'Pagina seguente',
|
|
36354
36967
|
prevPage: 'Pagina precedente',
|
|
36355
|
-
firstPage: '
|
|
36356
|
-
lastPage: '
|
|
36968
|
+
firstPage: 'Prima pagina',
|
|
36969
|
+
lastPage: 'Ultima pagina',
|
|
36357
36970
|
pageText: '{0}-{1} di {2}'
|
|
36358
36971
|
},
|
|
36359
36972
|
datePicker: {
|
|
@@ -36368,15 +36981,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
36368
36981
|
prev: 'Vista precedente',
|
|
36369
36982
|
next: 'Prossima vista',
|
|
36370
36983
|
ariaLabel: {
|
|
36371
|
-
delimiter: 'Carousel slide {0}
|
|
36984
|
+
delimiter: 'Carousel slide {0} di {1}'
|
|
36372
36985
|
}
|
|
36373
36986
|
},
|
|
36374
36987
|
calendar: {
|
|
36375
36988
|
moreEvents: '{0} di più'
|
|
36376
36989
|
},
|
|
36377
36990
|
fileInput: {
|
|
36378
|
-
counter: '{0}
|
|
36379
|
-
counterSize: '{0}
|
|
36991
|
+
counter: '{0} file',
|
|
36992
|
+
counterSize: '{0} file ({1} in totale)'
|
|
36380
36993
|
},
|
|
36381
36994
|
timePicker: {
|
|
36382
36995
|
am: 'AM',
|
|
@@ -36393,7 +37006,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
36393
37006
|
},
|
|
36394
37007
|
rating: {
|
|
36395
37008
|
ariaLabel: {
|
|
36396
|
-
icon: '
|
|
37009
|
+
icon: 'Valutazione {0} di {1}'
|
|
36397
37010
|
}
|
|
36398
37011
|
}
|
|
36399
37012
|
});
|
|
@@ -39233,6 +39846,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
39233
39846
|
function intersectable(options) {
|
|
39234
39847
|
return vue__WEBPACK_IMPORTED_MODULE_2___default.a.extend({
|
|
39235
39848
|
name: 'intersectable',
|
|
39849
|
+
data: function data() {
|
|
39850
|
+
return {
|
|
39851
|
+
isIntersecting: false
|
|
39852
|
+
};
|
|
39853
|
+
},
|
|
39236
39854
|
mounted: function mounted() {
|
|
39237
39855
|
_directives_intersect__WEBPACK_IMPORTED_MODULE_0__["default"].inserted(this.$el, {
|
|
39238
39856
|
name: 'intersect',
|
|
@@ -39247,6 +39865,7 @@ function intersectable(options) {
|
|
|
39247
39865
|
},
|
|
39248
39866
|
methods: {
|
|
39249
39867
|
onObserve: function onObserve(entries, observer, isIntersecting) {
|
|
39868
|
+
this.isIntersecting = isIntersecting;
|
|
39250
39869
|
if (!isIntersecting) return;
|
|
39251
39870
|
|
|
39252
39871
|
for (var i = 0, length = options.onVisible.length; i < length; i++) {
|
|
@@ -40651,9 +41270,6 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
40651
41270
|
this.onRouteChange();
|
|
40652
41271
|
},
|
|
40653
41272
|
methods: {
|
|
40654
|
-
click: function click(e) {
|
|
40655
|
-
this.$emit('click', e);
|
|
40656
|
-
},
|
|
40657
41273
|
generateRouteLink: function generateRouteLink() {
|
|
40658
41274
|
var _a;
|
|
40659
41275
|
|
|
@@ -40670,9 +41286,9 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
40670
41286
|
name: 'ripple',
|
|
40671
41287
|
value: this.computedRipple
|
|
40672
41288
|
}]
|
|
40673
|
-
}, _a[this.to ? 'nativeOn' : 'on'] = __assign(__assign({}, this.$listeners), {
|
|
41289
|
+
}, _a[this.to ? 'nativeOn' : 'on'] = __assign(__assign({}, this.$listeners), 'click' in this ? {
|
|
40674
41290
|
click: this.click
|
|
40675
|
-
}), _a.ref = 'link', _a);
|
|
41291
|
+
} : undefined), _a.ref = 'link', _a);
|
|
40676
41292
|
|
|
40677
41293
|
if (typeof this.exact === 'undefined') {
|
|
40678
41294
|
exact = this.to === '/' || this.to === Object(this.to) && this.to.path === '/';
|
|
@@ -44768,11 +45384,18 @@ function createSimpleFunctional(c, el, name) {
|
|
|
44768
45384
|
return vue__WEBPACK_IMPORTED_MODULE_0___default.a.extend({
|
|
44769
45385
|
name: name || c.replace(/__/g, '-'),
|
|
44770
45386
|
functional: true,
|
|
45387
|
+
props: {
|
|
45388
|
+
tag: {
|
|
45389
|
+
type: String,
|
|
45390
|
+
default: el
|
|
45391
|
+
}
|
|
45392
|
+
},
|
|
44771
45393
|
render: function render(h, _a) {
|
|
44772
45394
|
var data = _a.data,
|
|
45395
|
+
props = _a.props,
|
|
44773
45396
|
children = _a.children;
|
|
44774
45397
|
data.staticClass = (c + " " + (data.staticClass || '')).trim();
|
|
44775
|
-
return h(
|
|
45398
|
+
return h(props.tag, data, children);
|
|
44776
45399
|
}
|
|
44777
45400
|
});
|
|
44778
45401
|
}
|
|
@@ -45107,12 +45730,12 @@ function searchItems(items, search) {
|
|
|
45107
45730
|
*/
|
|
45108
45731
|
|
|
45109
45732
|
function getSlotType(vm, name, split) {
|
|
45110
|
-
if (vm.$slots
|
|
45733
|
+
if (vm.$slots.hasOwnProperty(name) && vm.$scopedSlots.hasOwnProperty(name) && vm.$scopedSlots[name].name) {
|
|
45111
45734
|
return split ? 'v-slot' : 'scoped';
|
|
45112
45735
|
}
|
|
45113
45736
|
|
|
45114
|
-
if (vm.$slots
|
|
45115
|
-
if (vm.$scopedSlots
|
|
45737
|
+
if (vm.$slots.hasOwnProperty(name)) return 'normal';
|
|
45738
|
+
if (vm.$scopedSlots.hasOwnProperty(name)) return 'scoped';
|
|
45116
45739
|
}
|
|
45117
45740
|
function debounce(fn, delay) {
|
|
45118
45741
|
var timeoutId = 0;
|
|
@@ -45164,9 +45787,9 @@ function getSlot(vm, name, data, optional) {
|
|
|
45164
45787
|
optional = false;
|
|
45165
45788
|
}
|
|
45166
45789
|
|
|
45167
|
-
if (vm.$scopedSlots
|
|
45790
|
+
if (vm.$scopedSlots.hasOwnProperty(name)) {
|
|
45168
45791
|
return vm.$scopedSlots[name](data instanceof Function ? data() : data);
|
|
45169
|
-
} else if (vm.$slots
|
|
45792
|
+
} else if (vm.$slots.hasOwnProperty(name) && (!data || optional)) {
|
|
45170
45793
|
return vm.$slots[name];
|
|
45171
45794
|
}
|
|
45172
45795
|
|