@zeedhi/vuetify 1.78.1 → 1.79.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/zd-style.css +1 -2
- package/dist/zd-vuetify.esm.js +690 -387
- package/dist/zd-vuetify.umd.js +689 -386
- package/package.json +2 -2
- package/types/components/zd-apex-chart/ZdApexChart.d.ts +3 -1
- package/types/components/zd-col/ZdCol.d.ts +5 -0
- package/types/components/zd-master-detail/ZdMasterDetail.d.ts +5 -0
- package/types/components/zd-select/ZdSelect.d.ts +1 -0
- package/types/components/zd-select-tree/ZdSelectTree.d.ts +4 -0
- package/types/components/zd-text-input/ZdTextInput.d.ts +1 -0
- package/types/components/zd-tree-grid/ZdTreeGrid.d.ts +2 -1
- package/types/components/zd-tree-grid/cell/ZdTreeGridCellActionContent.d.ts +1 -2
- package/types/components/zd-tree-grid/cell/ZdTreeGridCellContent.d.ts +1 -2
package/dist/zd-vuetify.esm.js
CHANGED
@@ -7,7 +7,7 @@ import Sortable from 'sortablejs';
|
|
7
7
|
import 'hooper/dist/hooper.css';
|
8
8
|
import '@zeedhi/zd-vue-treeselect/dist/vue-treeselect.css';
|
9
9
|
import Vue from 'vue';
|
10
|
-
import { Prop, Component as Component$1, Watch } from 'vue-property-decorator';
|
10
|
+
import { Prop, Component as Component$1, Watch, Vue as Vue$1 } from 'vue-property-decorator';
|
11
11
|
import { Component, AlertService, ComponentRender, ApexChart, Badge, Breadcrumbs, Button, ButtonGroup as ButtonGroup$1, Card, Carousel, Input, Form, Toggleable as Toggleable$1, Checkbox, CheckboxMultiple, Chip, CodeEditor, Col, CollapseCard, Container, TextInput, Number as Number$1, AutoNumeric, Currency, Dashboard, Date as Date$1, DateRange, DialogService, Divider, Dropdown, FileInput, Footer, ChildNotFoundError, Frame, FramePage, Iterable, Grid, GridEditable, Header, GridColumn, Column, Icon, Image as Image$1, Increment, IterableComponentRender, IterableColumnsButton, IterablePageComponent, IterablePagination, Select, IterablePageSize, IterablePageInfo, List, ListItem, ListGroup, Loading, LoadingService, Login, LoginButton, MasterDetail, Menu, MenuLink, MenuGroup, MenuButton, MenuSeparator, ModalService, ModalCloseButton, Month, Password, Progress, Radio, RangeSlider, Row as Row$1, Search, SelectableList, SelectMultiple, SelectTree, SelectTreeMultiple, SpeedDial, Steppers, SvgMap, Switch, Table, Tabs, Tag, Text, Textarea, Time, Tooltip, Tree, TreeGrid, TreeGridEditable, Icons as Icons$1 } from '@zeedhi/common';
|
12
12
|
import Component$2, { createDecorator } from 'vue-class-component';
|
13
13
|
import Prism$1 from 'prismjs';
|
@@ -1197,7 +1197,7 @@ const icons$2 = {
|
|
1197
1197
|
clear: 'fas fa-times-circle',
|
1198
1198
|
success: 'fas fa-check-circle',
|
1199
1199
|
info: 'fas fa-info-circle',
|
1200
|
-
warning: 'fas fa-exclamation',
|
1200
|
+
warning: 'fas fa-exclamation-circle',
|
1201
1201
|
error: 'fas fa-exclamation-triangle',
|
1202
1202
|
prev: 'fas fa-chevron-left',
|
1203
1203
|
next: 'fas fa-chevron-right',
|
@@ -2213,7 +2213,7 @@ class Vuetify {
|
|
2213
2213
|
}
|
2214
2214
|
Vuetify.install = install$1;
|
2215
2215
|
Vuetify.installed = false;
|
2216
|
-
Vuetify.version = "2.6.
|
2216
|
+
Vuetify.version = "2.6.16";
|
2217
2217
|
Vuetify.config = {
|
2218
2218
|
silent: false
|
2219
2219
|
};
|
@@ -10095,6 +10095,12 @@ var VSelect = baseMixins$j.extend().extend({
|
|
10095
10095
|
(_a = this.$refs.menu) === null || _a === void 0 ? void 0 : _a.updateDimensions();
|
10096
10096
|
});
|
10097
10097
|
}
|
10098
|
+
|
10099
|
+
if (this.hideSelected) {
|
10100
|
+
this.$nextTick(() => {
|
10101
|
+
this.onScroll();
|
10102
|
+
});
|
10103
|
+
}
|
10098
10104
|
},
|
10099
10105
|
|
10100
10106
|
isMenuActive(val) {
|
@@ -10323,19 +10329,18 @@ var VSelect = baseMixins$j.extend().extend({
|
|
10323
10329
|
|
10324
10330
|
genMenu() {
|
10325
10331
|
const props = this.$_menuProps;
|
10326
|
-
props.activator = this.$refs['input-slot'];
|
10327
|
-
//
|
10328
|
-
|
10329
|
-
if ( // TODO: make this a computed property or helper or something
|
10332
|
+
props.activator = this.$refs['input-slot'];
|
10333
|
+
if ('attach' in props) ;else if ( // TODO: make this a computed property or helper or something
|
10330
10334
|
this.attach === '' || // If used as a boolean prop (<v-menu attach>)
|
10331
10335
|
this.attach === true || // If bound to a boolean (<v-menu :attach="true">)
|
10332
10336
|
this.attach === 'attach' // If bound as boolean prop in pug (v-menu(attach))
|
10333
10337
|
) {
|
10338
|
+
// Attach to root el so that
|
10339
|
+
// menu covers prepend/append icons
|
10334
10340
|
props.attach = this.$el;
|
10335
10341
|
} else {
|
10336
10342
|
props.attach = this.attach;
|
10337
10343
|
}
|
10338
|
-
|
10339
10344
|
return this.$createElement(VMenu, {
|
10340
10345
|
attrs: {
|
10341
10346
|
role: undefined
|
@@ -11766,7 +11771,7 @@ var Overlayable = Vue.extend().extend({
|
|
11766
11771
|
if (!alreadyAtStart && scrollingUp) return true;
|
11767
11772
|
if (!alreadyAtEnd && scrollingDown) return true;
|
11768
11773
|
|
11769
|
-
if (alreadyAtStart || alreadyAtEnd) {
|
11774
|
+
if ((alreadyAtStart || alreadyAtEnd) && el.parentNode) {
|
11770
11775
|
return this.shouldScroll(el.parentNode, e);
|
11771
11776
|
}
|
11772
11777
|
|
@@ -16814,7 +16819,7 @@ const BaseSlideGroup = mixins(BaseItemGroup, Mobile).extend({
|
|
16814
16819
|
}
|
16815
16820
|
|
16816
16821
|
});
|
16817
|
-
BaseSlideGroup.extend({
|
16822
|
+
var VSlideGroup = BaseSlideGroup.extend({
|
16818
16823
|
name: 'v-slide-group',
|
16819
16824
|
|
16820
16825
|
provide() {
|
@@ -20851,7 +20856,8 @@ var VDataTable = mixins(VDataIterator, Loadable).extend({
|
|
20851
20856
|
return this.$createElement(VSimpleTable, {
|
20852
20857
|
props: simpleProps,
|
20853
20858
|
class: {
|
20854
|
-
'v-data-table--mobile': this.isMobile
|
20859
|
+
'v-data-table--mobile': this.isMobile,
|
20860
|
+
'v-data-table--selectable': this.showSelect
|
20855
20861
|
}
|
20856
20862
|
}, [this.proxySlot('top', getSlot(this, 'top', { ...props,
|
20857
20863
|
isMobile: this.isMobile
|
@@ -26036,7 +26042,7 @@ var VSkeletonLoader = mixins(Elevatable, Measurable, Themeable).extend({
|
|
26036
26042
|
});
|
26037
26043
|
|
26038
26044
|
// Extensions
|
26039
|
-
mixins(BaseItem, factory$1('slideGroup')
|
26045
|
+
var VSlideItem = mixins(BaseItem, factory$1('slideGroup')
|
26040
26046
|
/* @vue/component */
|
26041
26047
|
).extend({
|
26042
26048
|
name: 'v-slide-item'
|
@@ -31587,7 +31593,7 @@ var icons = {
|
|
31587
31593
|
clear: 'fas fa-times-circle',
|
31588
31594
|
success: 'fas fa-check-circle',
|
31589
31595
|
info: 'fas fa-info-circle',
|
31590
|
-
warning: 'fas fa-exclamation',
|
31596
|
+
warning: 'fas fa-exclamation-circle',
|
31591
31597
|
error: 'fas fa-exclamation-triangle',
|
31592
31598
|
prev: 'fas fa-chevron-left',
|
31593
31599
|
next: 'fas fa-chevron-right',
|
@@ -36840,7 +36846,7 @@ var Vuetify = /*#__PURE__*/function () {
|
|
36840
36846
|
exports.default = Vuetify;
|
36841
36847
|
Vuetify.install = install_1.install;
|
36842
36848
|
Vuetify.installed = false;
|
36843
|
-
Vuetify.version = "2.6.
|
36849
|
+
Vuetify.version = "2.6.16";
|
36844
36850
|
Vuetify.config = {
|
36845
36851
|
silent: false
|
36846
36852
|
};
|
@@ -38191,13 +38197,20 @@ let ZdApexChart = class ZdApexChart extends ZdComponentRender$1 {
|
|
38191
38197
|
}
|
38192
38198
|
mounted() {
|
38193
38199
|
this.setApexChartTheme();
|
38194
|
-
const updateFn =
|
38200
|
+
const updateFn = this.updateChart;
|
38195
38201
|
this.instance.setViewUpdate(updateFn);
|
38196
38202
|
this.instance.setViewGetIconHTML((icon) => IconRenderer.getIcon(icon, this.$root.$options.vuetify));
|
38197
38203
|
if (this.instance.fillHeight) {
|
38198
38204
|
setFillHeight(this.$el);
|
38199
38205
|
}
|
38200
38206
|
}
|
38207
|
+
updateChart(options) {
|
38208
|
+
return new Promise((resolve) => {
|
38209
|
+
const { chart } = this.$refs.instance;
|
38210
|
+
chart.w.globals.selectedDataPoints = [];
|
38211
|
+
resolve(chart.updateOptions(options, false, true, true, true));
|
38212
|
+
});
|
38213
|
+
}
|
38201
38214
|
setApexChartTheme() {
|
38202
38215
|
let theme = '';
|
38203
38216
|
const dark = this.instance.dark || this.$vuetify.theme.dark;
|
@@ -38213,6 +38226,9 @@ let ZdApexChart = class ZdApexChart extends ZdComponentRender$1 {
|
|
38213
38226
|
} });
|
38214
38227
|
this.instance.options = newOptions;
|
38215
38228
|
}
|
38229
|
+
drillUp() {
|
38230
|
+
this.instance.drillUp();
|
38231
|
+
}
|
38216
38232
|
};
|
38217
38233
|
__decorate([
|
38218
38234
|
PropWatch({ type: String, default: 'line' }),
|
@@ -38307,8 +38323,11 @@ var __vue_render__$1t = function () {
|
|
38307
38323
|
class: [
|
38308
38324
|
"zd-apex-chart",
|
38309
38325
|
_vm.instance.cssClass,
|
38310
|
-
{
|
38311
|
-
|
38326
|
+
{
|
38327
|
+
"theme--dark": _vm.$isDark(this),
|
38328
|
+
"theme--light": _vm.$isLight(this),
|
38329
|
+
"zd-apex-chart-drilled": _vm.instance.drillHistory.length > 0,
|
38330
|
+
},
|
38312
38331
|
],
|
38313
38332
|
style: _vm.instance.cssStyle,
|
38314
38333
|
attrs: {
|
@@ -38328,6 +38347,26 @@ var __vue_render__$1t = function () {
|
|
38328
38347
|
},
|
38329
38348
|
}),
|
38330
38349
|
_vm._v(" "),
|
38350
|
+
_vm.instance.drillHistory.length > 0
|
38351
|
+
? _c(
|
38352
|
+
"zd-button",
|
38353
|
+
_vm._b(
|
38354
|
+
{
|
38355
|
+
attrs: { name: "apexcharts-drill-button" },
|
38356
|
+
on: { click: _vm.drillUp },
|
38357
|
+
},
|
38358
|
+
"zd-button",
|
38359
|
+
{
|
38360
|
+
cssClass: "zd-apex-charts-drill-button",
|
38361
|
+
icon: true,
|
38362
|
+
iconName: "arrowLeft",
|
38363
|
+
small: true,
|
38364
|
+
},
|
38365
|
+
false
|
38366
|
+
)
|
38367
|
+
)
|
38368
|
+
: _vm._e(),
|
38369
|
+
_vm._v(" "),
|
38331
38370
|
_c(
|
38332
38371
|
"v-overlay",
|
38333
38372
|
{
|
@@ -38355,7 +38394,7 @@ __vue_render__$1t._withStripped = true;
|
|
38355
38394
|
/* style */
|
38356
38395
|
const __vue_inject_styles__$1t = function (inject) {
|
38357
38396
|
if (!inject) return
|
38358
|
-
inject("data-v-
|
38397
|
+
inject("data-v-d97335de_0", { source: ".zd-apex-chart.zd-apex-chart-drilled svg text.apexcharts-title-text {\n transform: translateX(20px);\n}\n.zd-apex-chart .apexcharts-toolbar {\n z-index: 0;\n}\n.zd-apex-chart .apexcharts-toolbar > div {\n transform: scale(0.8) !important;\n}\n.zd-apex-chart.theme--light .apexcharts-toolbar > div > .v-icon {\n color: #3b3b3b !important;\n}\n.zd-apex-chart.theme--light .apexcharts-tooltip {\n background: #fdfdfd !important;\n border: 1px solid #fdfdfd !important;\n color: #3b3b3b !important;\n z-index: 1;\n}\n.zd-apex-chart.theme--light .apexcharts-tooltip .apexcharts-tooltip-title {\n background: #eee !important;\n color: #3b3b3b !important;\n border-bottom: none !important;\n}\n.zd-apex-chart.theme--light .apexcharts-title-text {\n fill: #3b3b3b !important;\n}\n.zd-apex-chart.theme--light .apexcharts-xaxistooltip {\n background: #eee !important;\n border: 1px solid #d4d4d4 !important;\n}\n.zd-apex-chart.theme--light .apexcharts-xaxistooltip .apexcharts-xaxistooltip-text {\n color: #3b3b3b !important;\n}\n.zd-apex-chart.theme--light .apexcharts-xaxistooltip-bottom::before {\n border-bottom-color: #d4d4d4 !important;\n}\n.zd-apex-chart.theme--light .apexcharts-xaxistooltip-bottom::after {\n border-bottom-color: #d4d4d4 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-toolbar > div > .v-icon {\n color: #b8b8b8 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-tooltip {\n background: #1e1e1e !important;\n border: 1px solid #1e1e1e !important;\n color: #b8b8b8 !important;\n z-index: 1;\n}\n.zd-apex-chart.theme--dark .apexcharts-tooltip .apexcharts-tooltip-title {\n background: #101010 !important;\n color: #b8b8b8 !important;\n border-bottom: none !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-text {\n fill: #b8b8b8 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-title-text {\n fill: #b8b8b8 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-xaxistooltip {\n background: #101010 !important;\n border: 1px solid #252525 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-xaxistooltip .apexcharts-xaxistooltip-text {\n color: #b8b8b8 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-xaxistooltip-bottom::before {\n border-bottom-color: #252525 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-xaxistooltip-bottom::after {\n border-bottom-color: #252525 !important;\n}\n.apexcharts-overlay {\n z-index: 0 !important;\n}\n.apexcharts-container {\n position: relative;\n overflow: hidden !important;\n}\n.apexcharts-container .zd-apex-charts-drill-button {\n position: absolute;\n top: 0px;\n left: 0px;\n}", map: undefined, media: undefined });
|
38359
38398
|
|
38360
38399
|
};
|
38361
38400
|
/* scoped */
|
@@ -40842,6 +40881,11 @@ let ZdCol = class ZdCol extends ZdComponentRender$1 {
|
|
40842
40881
|
super(...arguments);
|
40843
40882
|
this.instanceType = Col;
|
40844
40883
|
}
|
40884
|
+
mounted() {
|
40885
|
+
if (this.instance.fillHeight) {
|
40886
|
+
setFillHeight(this.$el);
|
40887
|
+
}
|
40888
|
+
}
|
40845
40889
|
};
|
40846
40890
|
__decorate([
|
40847
40891
|
PropWatch({ type: [String, Number], default: '12' }),
|
@@ -40867,6 +40911,22 @@ __decorate([
|
|
40867
40911
|
PropWatch({ type: [String, Number] }),
|
40868
40912
|
__metadata("design:type", Object)
|
40869
40913
|
], ZdCol.prototype, "offset", void 0);
|
40914
|
+
__decorate([
|
40915
|
+
PropWatch({ type: [Number, String], default: 'auto' }),
|
40916
|
+
__metadata("design:type", Object)
|
40917
|
+
], ZdCol.prototype, "height", void 0);
|
40918
|
+
__decorate([
|
40919
|
+
PropWatch({ type: [Number, String], default: 'auto' }),
|
40920
|
+
__metadata("design:type", Object)
|
40921
|
+
], ZdCol.prototype, "minHeight", void 0);
|
40922
|
+
__decorate([
|
40923
|
+
PropWatch({ type: [Number, String], default: 'none' }),
|
40924
|
+
__metadata("design:type", Object)
|
40925
|
+
], ZdCol.prototype, "maxHeight", void 0);
|
40926
|
+
__decorate([
|
40927
|
+
PropWatch({ type: [Boolean, String], default: false }),
|
40928
|
+
__metadata("design:type", Object)
|
40929
|
+
], ZdCol.prototype, "fillHeight", void 0);
|
40870
40930
|
ZdCol = __decorate([
|
40871
40931
|
Component$1
|
40872
40932
|
], ZdCol);
|
@@ -40892,7 +40952,15 @@ var __vue_render__$1i = function () {
|
|
40892
40952
|
},
|
40893
40953
|
],
|
40894
40954
|
class: _vm.instance.cssClass,
|
40895
|
-
style:
|
40955
|
+
style: Object.assign(
|
40956
|
+
{},
|
40957
|
+
{
|
40958
|
+
height: _vm.$formatSize(_vm.instance.height),
|
40959
|
+
maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
|
40960
|
+
minHeight: _vm.$formatSize(_vm.instance.minHeight),
|
40961
|
+
},
|
40962
|
+
_vm.$styleObject(_vm.instance.cssStyle)
|
40963
|
+
),
|
40896
40964
|
attrs: {
|
40897
40965
|
id: _vm.instance.name,
|
40898
40966
|
name: _vm.instance.name,
|
@@ -41496,6 +41564,11 @@ let ZdTextInput = class ZdTextInput extends ZdInput$1 {
|
|
41496
41564
|
this.instance.blur(event, this.$el);
|
41497
41565
|
this.setPlaceholder();
|
41498
41566
|
}
|
41567
|
+
setBlur() {
|
41568
|
+
Vue$1.nextTick(() => {
|
41569
|
+
this.$el.getElementsByTagName('input')[0].blur();
|
41570
|
+
});
|
41571
|
+
}
|
41499
41572
|
getIconClickEvents() {
|
41500
41573
|
const events = {};
|
41501
41574
|
if (this.instance.events.appendIconClick) {
|
@@ -42500,7 +42573,9 @@ let ZdDate = class ZdDate extends __vue_component__$1f {
|
|
42500
42573
|
}
|
42501
42574
|
onChangeDatePicker() {
|
42502
42575
|
const textInput = this.$refs.textInputInstance.$children[0];
|
42503
|
-
this
|
42576
|
+
if (!this.$isMobile()) {
|
42577
|
+
this.instance.showDatePicker = false;
|
42578
|
+
}
|
42504
42579
|
textInput.validate(false);
|
42505
42580
|
}
|
42506
42581
|
setFocus(selectAll = false) {
|
@@ -42714,54 +42789,129 @@ var __vue_render__$1b = function () {
|
|
42714
42789
|
},
|
42715
42790
|
[
|
42716
42791
|
_vm._v(" "),
|
42717
|
-
|
42718
|
-
|
42719
|
-
|
42720
|
-
|
42721
|
-
|
42722
|
-
{
|
42723
|
-
|
42724
|
-
|
42725
|
-
|
42726
|
-
expression: "instance.isVisible",
|
42727
|
-
},
|
42728
|
-
],
|
42729
|
-
ref: "picker",
|
42730
|
-
attrs: { "no-title": "" },
|
42731
|
-
on: {
|
42732
|
-
"hook:mounted": _vm.pickerMounted,
|
42733
|
-
"hook:destroyed": _vm.pickerDestroyed,
|
42734
|
-
"click:date": _vm.onSelectDate,
|
42735
|
-
change: function ($event) {
|
42736
|
-
return _vm.onChangeDatePicker()
|
42792
|
+
!_vm.instance.readonly
|
42793
|
+
? _c(
|
42794
|
+
_vm.$isMobile() ? "v-dialog" : "span",
|
42795
|
+
{
|
42796
|
+
tag: "component",
|
42797
|
+
attrs: {
|
42798
|
+
width: "290px",
|
42799
|
+
persistent: "",
|
42800
|
+
"content-class": "zd-mx-0",
|
42737
42801
|
},
|
42738
|
-
|
42739
|
-
|
42740
|
-
|
42741
|
-
|
42742
|
-
|
42802
|
+
model: {
|
42803
|
+
value: _vm.instance.showDatePicker,
|
42804
|
+
callback: function ($$v) {
|
42805
|
+
_vm.$set(_vm.instance, "showDatePicker", $$v);
|
42806
|
+
},
|
42807
|
+
expression: "instance.showDatePicker",
|
42743
42808
|
},
|
42744
|
-
expression: "instance.isoValue",
|
42745
42809
|
},
|
42746
|
-
|
42747
|
-
|
42748
|
-
|
42749
|
-
|
42750
|
-
|
42751
|
-
|
42752
|
-
|
42753
|
-
|
42754
|
-
|
42755
|
-
|
42756
|
-
|
42757
|
-
|
42758
|
-
|
42759
|
-
|
42760
|
-
|
42761
|
-
|
42762
|
-
|
42763
|
-
|
42764
|
-
|
42810
|
+
[
|
42811
|
+
_c(
|
42812
|
+
"v-date-picker",
|
42813
|
+
_vm._b(
|
42814
|
+
{
|
42815
|
+
ref: "picker",
|
42816
|
+
attrs: { "no-title": !_vm.$isMobile() },
|
42817
|
+
on: {
|
42818
|
+
"hook:mounted": _vm.pickerMounted,
|
42819
|
+
"hook:destroyed": _vm.pickerDestroyed,
|
42820
|
+
"click:date": _vm.onSelectDate,
|
42821
|
+
change: function ($event) {
|
42822
|
+
return _vm.onChangeDatePicker()
|
42823
|
+
},
|
42824
|
+
},
|
42825
|
+
model: {
|
42826
|
+
value: _vm.instance.isoValue,
|
42827
|
+
callback: function ($$v) {
|
42828
|
+
_vm.$set(_vm.instance, "isoValue", $$v);
|
42829
|
+
},
|
42830
|
+
expression: "instance.isoValue",
|
42831
|
+
},
|
42832
|
+
},
|
42833
|
+
"v-date-picker",
|
42834
|
+
{
|
42835
|
+
allowedDates: _vm.getAllowedDates,
|
42836
|
+
color: _vm.instance.color,
|
42837
|
+
dark: _vm.instance.dark,
|
42838
|
+
firstDayOfWeek: _vm.instance.firstDayOfWeek,
|
42839
|
+
fullWidth: _vm.instance.fullWidth,
|
42840
|
+
light: _vm.instance.light,
|
42841
|
+
locale: _vm.instance.locale,
|
42842
|
+
scrollable: _vm.instance.scrollable,
|
42843
|
+
showDatePicker: _vm.instance.showDatePicker,
|
42844
|
+
showWeek: _vm.instance.showWeek,
|
42845
|
+
type: _vm.instance.pickerType,
|
42846
|
+
width: _vm.$isMobile() ? "290px" : _vm.instance.width,
|
42847
|
+
},
|
42848
|
+
false
|
42849
|
+
),
|
42850
|
+
[
|
42851
|
+
_vm.$isMobile()
|
42852
|
+
? _c(
|
42853
|
+
"span",
|
42854
|
+
[
|
42855
|
+
_vm.$isMobile()
|
42856
|
+
? _c(
|
42857
|
+
"zd-button",
|
42858
|
+
_vm._b(
|
42859
|
+
{
|
42860
|
+
attrs: {
|
42861
|
+
name:
|
42862
|
+
_vm.instance.name + "-done-button",
|
42863
|
+
},
|
42864
|
+
},
|
42865
|
+
"zd-button",
|
42866
|
+
{
|
42867
|
+
flat: true,
|
42868
|
+
label: "OK",
|
42869
|
+
events: {
|
42870
|
+
click: function () {
|
42871
|
+
_vm.instance.showDatePicker = false;
|
42872
|
+
_vm.setBlur();
|
42873
|
+
},
|
42874
|
+
},
|
42875
|
+
},
|
42876
|
+
false
|
42877
|
+
)
|
42878
|
+
)
|
42879
|
+
: _vm._e(),
|
42880
|
+
_vm._v(" "),
|
42881
|
+
_vm.$isMobile() && _vm.instance.clearable
|
42882
|
+
? _c(
|
42883
|
+
"zd-button",
|
42884
|
+
_vm._b(
|
42885
|
+
{
|
42886
|
+
attrs: {
|
42887
|
+
name:
|
42888
|
+
_vm.instance.name + "-clear-button",
|
42889
|
+
},
|
42890
|
+
},
|
42891
|
+
"zd-button",
|
42892
|
+
{
|
42893
|
+
flat: true,
|
42894
|
+
label: "CLEAR",
|
42895
|
+
events: {
|
42896
|
+
click: function () {
|
42897
|
+
_vm.instance.isoValue = null;
|
42898
|
+
},
|
42899
|
+
},
|
42900
|
+
},
|
42901
|
+
false
|
42902
|
+
)
|
42903
|
+
)
|
42904
|
+
: _vm._e(),
|
42905
|
+
],
|
42906
|
+
1
|
42907
|
+
)
|
42908
|
+
: _vm._e(),
|
42909
|
+
]
|
42910
|
+
),
|
42911
|
+
],
|
42912
|
+
1
|
42913
|
+
)
|
42914
|
+
: _vm._e(),
|
42765
42915
|
],
|
42766
42916
|
1
|
42767
42917
|
),
|
@@ -42812,7 +42962,7 @@ __vue_render__$1b._withStripped = true;
|
|
42812
42962
|
/* style */
|
42813
42963
|
const __vue_inject_styles__$1b = function (inject) {
|
42814
42964
|
if (!inject) return
|
42815
|
-
inject("data-v-
|
42965
|
+
inject("data-v-319c7690_0", { source: "div.v-picker--date .v-picker__body {\n background: transparent;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header {\n padding: var(--spacing-2) var(--spacing-4) var(--spacing-1) var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div button:not(:hover):not(:focus) {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-btn--icon {\n height: var(--icon-size);\n width: var(--icon-size);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value button {\n padding: 0;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table {\n margin-bottom: 12px;\n padding: 0 var(--spacing-4);\n height: 200px;\n margin-bottom: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table .v-btn.v-btn--active {\n color: var(--v-secondary-lighten4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--date .v-btn {\n width: 24px;\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month {\n padding-top: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month .v-btn {\n padding: 4px 0 7px 0;\n height: 24px;\n width: 56px;\n min-width: 56px;\n border-radius: var(--border);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month td {\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month tr:not(:last-child) td {\n padding-bottom: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table thead th {\n color: var(--zd-font-disabled-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent--text {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent {\n background: var(--zd-primary-base) !important;\n color: white !important;\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {\n color: var(--zd-primary-base) !important;\n}\n.zd-date-menu-activator .v-menu__activator.v-menu__activator--disabled {\n cursor: default;\n}\n.date-helper-values-button {\n height: 24px !important;\n margin-left: 5px;\n margin-top: 0;\n}\n.date-helper-values-button.with-label {\n margin-top: 20px;\n}\n.date-helper-values-option {\n cursor: pointer;\n}\n.date-helper-values-option:hover {\n background-color: rgba(0, 0, 0, 0.03);\n}", map: undefined, media: undefined });
|
42816
42966
|
|
42817
42967
|
};
|
42818
42968
|
/* scoped */
|
@@ -42920,7 +43070,9 @@ let ZdDateRange = class ZdDateRange extends __vue_component__$1f {
|
|
42920
43070
|
onChangeDatePicker() {
|
42921
43071
|
const textInput = this.$refs.textInputInstance.$children[0];
|
42922
43072
|
textInput.validate(false);
|
42923
|
-
this
|
43073
|
+
if (!this.$isMobile()) {
|
43074
|
+
this.instance.showDatePicker = false;
|
43075
|
+
}
|
42924
43076
|
}
|
42925
43077
|
setFocus(selectAll = false) {
|
42926
43078
|
const { textInputInstance } = this.$refs;
|
@@ -43133,52 +43285,135 @@ var __vue_render__$1a = function () {
|
|
43133
43285
|
},
|
43134
43286
|
[
|
43135
43287
|
_vm._v(" "),
|
43136
|
-
|
43137
|
-
|
43138
|
-
|
43139
|
-
|
43140
|
-
|
43141
|
-
{
|
43142
|
-
|
43143
|
-
|
43144
|
-
|
43145
|
-
expression: "instance.isVisible",
|
43146
|
-
},
|
43147
|
-
],
|
43148
|
-
ref: "picker",
|
43149
|
-
attrs: { "no-title": "", range: "" },
|
43150
|
-
on: {
|
43151
|
-
"hook:mounted": _vm.pickerMounted,
|
43152
|
-
"hook:destroyed": _vm.pickerDestroyed,
|
43153
|
-
change: function ($event) {
|
43154
|
-
return _vm.onChangeDatePicker()
|
43288
|
+
!_vm.instance.readonly
|
43289
|
+
? _c(
|
43290
|
+
_vm.$isMobile() ? "v-dialog" : "span",
|
43291
|
+
{
|
43292
|
+
tag: "component",
|
43293
|
+
attrs: {
|
43294
|
+
width: "290px",
|
43295
|
+
persistent: "",
|
43296
|
+
"content-class": "zd-mx-0",
|
43155
43297
|
},
|
43156
|
-
|
43157
|
-
|
43158
|
-
|
43159
|
-
|
43160
|
-
|
43298
|
+
model: {
|
43299
|
+
value: _vm.instance.showDatePicker,
|
43300
|
+
callback: function ($$v) {
|
43301
|
+
_vm.$set(_vm.instance, "showDatePicker", $$v);
|
43302
|
+
},
|
43303
|
+
expression: "instance.showDatePicker",
|
43161
43304
|
},
|
43162
|
-
expression: "instance.isoRangeValue",
|
43163
43305
|
},
|
43164
|
-
|
43165
|
-
|
43166
|
-
|
43167
|
-
|
43168
|
-
|
43169
|
-
|
43170
|
-
|
43171
|
-
|
43172
|
-
|
43173
|
-
|
43174
|
-
|
43175
|
-
|
43176
|
-
|
43177
|
-
|
43178
|
-
|
43179
|
-
|
43180
|
-
|
43181
|
-
|
43306
|
+
[
|
43307
|
+
_c(
|
43308
|
+
"v-date-picker",
|
43309
|
+
_vm._b(
|
43310
|
+
{
|
43311
|
+
directives: [
|
43312
|
+
{
|
43313
|
+
name: "show",
|
43314
|
+
rawName: "v-show",
|
43315
|
+
value: _vm.instance.isVisible,
|
43316
|
+
expression: "instance.isVisible",
|
43317
|
+
},
|
43318
|
+
],
|
43319
|
+
ref: "picker",
|
43320
|
+
attrs: { "no-title": !_vm.$isMobile(), range: "" },
|
43321
|
+
on: {
|
43322
|
+
"hook:mounted": _vm.pickerMounted,
|
43323
|
+
"hook:destroyed": _vm.pickerDestroyed,
|
43324
|
+
change: function ($event) {
|
43325
|
+
return _vm.onChangeDatePicker()
|
43326
|
+
},
|
43327
|
+
},
|
43328
|
+
model: {
|
43329
|
+
value: _vm.instance.isoRangeValue,
|
43330
|
+
callback: function ($$v) {
|
43331
|
+
_vm.$set(_vm.instance, "isoRangeValue", $$v);
|
43332
|
+
},
|
43333
|
+
expression: "instance.isoRangeValue",
|
43334
|
+
},
|
43335
|
+
},
|
43336
|
+
"v-date-picker",
|
43337
|
+
{
|
43338
|
+
color: _vm.instance.color,
|
43339
|
+
dark: _vm.instance.dark,
|
43340
|
+
firstDayOfWeek: _vm.instance.firstDayOfWeek,
|
43341
|
+
fullWidth: _vm.instance.fullWidth,
|
43342
|
+
light: _vm.instance.light,
|
43343
|
+
locale: _vm.instance.locale,
|
43344
|
+
scrollable: _vm.instance.scrollable,
|
43345
|
+
showDatePicker: _vm.instance.showDatePicker,
|
43346
|
+
showWeek: _vm.instance.showWeek,
|
43347
|
+
type: _vm.instance.pickerType,
|
43348
|
+
width: _vm.$isMobile() ? "290px" : _vm.instance.width,
|
43349
|
+
},
|
43350
|
+
false
|
43351
|
+
),
|
43352
|
+
[
|
43353
|
+
_vm.$isMobile()
|
43354
|
+
? _c(
|
43355
|
+
"span",
|
43356
|
+
[
|
43357
|
+
_vm.$isMobile()
|
43358
|
+
? _c(
|
43359
|
+
"zd-button",
|
43360
|
+
_vm._b(
|
43361
|
+
{
|
43362
|
+
attrs: {
|
43363
|
+
name:
|
43364
|
+
_vm.instance.name + "-done-button",
|
43365
|
+
},
|
43366
|
+
},
|
43367
|
+
"zd-button",
|
43368
|
+
{
|
43369
|
+
flat: true,
|
43370
|
+
label: "OK",
|
43371
|
+
events: {
|
43372
|
+
click: function () {
|
43373
|
+
_vm.instance.showDatePicker = false;
|
43374
|
+
_vm.setBlur();
|
43375
|
+
},
|
43376
|
+
},
|
43377
|
+
},
|
43378
|
+
false
|
43379
|
+
)
|
43380
|
+
)
|
43381
|
+
: _vm._e(),
|
43382
|
+
_vm._v(" "),
|
43383
|
+
_vm.$isMobile() && _vm.instance.clearable
|
43384
|
+
? _c(
|
43385
|
+
"zd-button",
|
43386
|
+
_vm._b(
|
43387
|
+
{
|
43388
|
+
attrs: {
|
43389
|
+
name:
|
43390
|
+
_vm.instance.name + "-clear-button",
|
43391
|
+
},
|
43392
|
+
},
|
43393
|
+
"zd-button",
|
43394
|
+
{
|
43395
|
+
flat: true,
|
43396
|
+
label: "CLEAR",
|
43397
|
+
events: {
|
43398
|
+
click: function () {
|
43399
|
+
_vm.instance.value = [];
|
43400
|
+
},
|
43401
|
+
},
|
43402
|
+
},
|
43403
|
+
false
|
43404
|
+
)
|
43405
|
+
)
|
43406
|
+
: _vm._e(),
|
43407
|
+
],
|
43408
|
+
1
|
43409
|
+
)
|
43410
|
+
: _vm._e(),
|
43411
|
+
]
|
43412
|
+
),
|
43413
|
+
],
|
43414
|
+
1
|
43415
|
+
)
|
43416
|
+
: _vm._e(),
|
43182
43417
|
],
|
43183
43418
|
1
|
43184
43419
|
),
|
@@ -43230,7 +43465,7 @@ __vue_render__$1a._withStripped = true;
|
|
43230
43465
|
/* style */
|
43231
43466
|
const __vue_inject_styles__$1a = function (inject) {
|
43232
43467
|
if (!inject) return
|
43233
|
-
inject("data-v-
|
43468
|
+
inject("data-v-5f9ceeca_0", { source: "div.v-picker--date .v-picker__body {\n background: transparent;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header {\n padding: var(--spacing-2) var(--spacing-4) var(--spacing-1) var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div button:not(:hover):not(:focus) {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-btn--icon {\n height: var(--icon-size);\n width: var(--icon-size);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value button {\n padding: 0;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table {\n margin-bottom: 12px;\n padding: 0 var(--spacing-4);\n height: 200px;\n margin-bottom: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table .v-btn.v-btn--active {\n color: var(--v-secondary-lighten4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--date .v-btn {\n width: 24px;\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month {\n padding-top: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month .v-btn {\n padding: 4px 0 7px 0;\n height: 24px;\n width: 56px;\n min-width: 56px;\n border-radius: var(--border);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month td {\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month tr:not(:last-child) td {\n padding-bottom: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table thead th {\n color: var(--zd-font-disabled-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent--text {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent {\n background: var(--zd-primary-base) !important;\n color: white !important;\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {\n color: var(--zd-primary-base) !important;\n}\n.zd-date-menu-activator .v-menu__activator.v-menu__activator--disabled {\n cursor: default;\n}\n.date-range-helper-values-button {\n height: 24px !important;\n margin-left: 5px;\n margin-top: 0;\n}\n.date-range-helper-values-button.with-label {\n margin-top: 20px;\n}\n.date-range-helper-values-option {\n cursor: pointer;\n}\n.date-range-helper-values-option:hover {\n background-color: rgba(0, 0, 0, 0.03);\n}", map: undefined, media: undefined });
|
43234
43469
|
|
43235
43470
|
};
|
43236
43471
|
/* scoped */
|
@@ -44214,7 +44449,7 @@ __decorate([
|
|
44214
44449
|
__metadata("design:type", Boolean)
|
44215
44450
|
], ZdFooter.prototype, "app", void 0);
|
44216
44451
|
__decorate([
|
44217
|
-
|
44452
|
+
PropWatch({ type: Array, default: () => [] }),
|
44218
44453
|
__metadata("design:type", Array)
|
44219
44454
|
], ZdFooter.prototype, "centerSlot", void 0);
|
44220
44455
|
__decorate([
|
@@ -44234,7 +44469,7 @@ __decorate([
|
|
44234
44469
|
__metadata("design:type", Boolean)
|
44235
44470
|
], ZdFooter.prototype, "inset", void 0);
|
44236
44471
|
__decorate([
|
44237
|
-
|
44472
|
+
PropWatch({ type: Array, default: () => [] }),
|
44238
44473
|
__metadata("design:type", Array)
|
44239
44474
|
], ZdFooter.prototype, "leftSlot", void 0);
|
44240
44475
|
__decorate([
|
@@ -44258,7 +44493,7 @@ __decorate([
|
|
44258
44493
|
__metadata("design:type", Boolean)
|
44259
44494
|
], ZdFooter.prototype, "padless", void 0);
|
44260
44495
|
__decorate([
|
44261
|
-
|
44496
|
+
PropWatch({ type: Array, default: () => [] }),
|
44262
44497
|
__metadata("design:type", Array)
|
44263
44498
|
], ZdFooter.prototype, "rightSlot", void 0);
|
44264
44499
|
__decorate([
|
@@ -44334,27 +44569,24 @@ var __vue_render__$15 = function () {
|
|
44334
44569
|
{ staticClass: "zd-footer-slot-left" },
|
44335
44570
|
[
|
44336
44571
|
!_vm.$slots.leftSlot
|
44337
|
-
? _vm._l(
|
44338
|
-
|
44339
|
-
|
44340
|
-
|
44341
|
-
|
44342
|
-
|
44343
|
-
|
44344
|
-
|
44345
|
-
|
44346
|
-
|
44347
|
-
dark: _vm.instance.dark,
|
44348
|
-
light: _vm.instance.light,
|
44349
|
-
},
|
44572
|
+
? _vm._l(_vm.instance.leftSlot, function (child) {
|
44573
|
+
return _c(
|
44574
|
+
child.component,
|
44575
|
+
_vm._b(
|
44576
|
+
{
|
44577
|
+
key: child.name,
|
44578
|
+
tag: "component",
|
44579
|
+
attrs: {
|
44580
|
+
dark: _vm.instance.dark,
|
44581
|
+
light: _vm.instance.light,
|
44350
44582
|
},
|
44351
|
-
|
44352
|
-
|
44353
|
-
|
44354
|
-
|
44583
|
+
},
|
44584
|
+
"component",
|
44585
|
+
child,
|
44586
|
+
false
|
44355
44587
|
)
|
44356
|
-
|
44357
|
-
)
|
44588
|
+
)
|
44589
|
+
})
|
44358
44590
|
: _vm._e(),
|
44359
44591
|
_vm._v(" "),
|
44360
44592
|
_vm._t("leftSlot"),
|
@@ -44369,27 +44601,24 @@ var __vue_render__$15 = function () {
|
|
44369
44601
|
{ ref: "centerSlot", staticClass: "zd-footer-slot-center" },
|
44370
44602
|
[
|
44371
44603
|
!_vm.$slots.centerSlot
|
44372
|
-
? _vm._l(
|
44373
|
-
|
44374
|
-
|
44375
|
-
|
44376
|
-
|
44377
|
-
|
44378
|
-
|
44379
|
-
|
44380
|
-
|
44381
|
-
|
44382
|
-
dark: _vm.instance.dark,
|
44383
|
-
light: _vm.instance.light,
|
44384
|
-
},
|
44604
|
+
? _vm._l(_vm.instance.centerSlot, function (child) {
|
44605
|
+
return _c(
|
44606
|
+
child.component,
|
44607
|
+
_vm._b(
|
44608
|
+
{
|
44609
|
+
key: child.name,
|
44610
|
+
tag: "component",
|
44611
|
+
attrs: {
|
44612
|
+
dark: _vm.instance.dark,
|
44613
|
+
light: _vm.instance.light,
|
44385
44614
|
},
|
44386
|
-
|
44387
|
-
|
44388
|
-
|
44389
|
-
|
44615
|
+
},
|
44616
|
+
"component",
|
44617
|
+
child,
|
44618
|
+
false
|
44390
44619
|
)
|
44391
|
-
|
44392
|
-
)
|
44620
|
+
)
|
44621
|
+
})
|
44393
44622
|
: _vm._e(),
|
44394
44623
|
_vm._v(" "),
|
44395
44624
|
_vm._t("centerSlot"),
|
@@ -44404,27 +44633,24 @@ var __vue_render__$15 = function () {
|
|
44404
44633
|
{ staticClass: "zd-footer-slot-right" },
|
44405
44634
|
[
|
44406
44635
|
!_vm.$slots.rightSlot
|
44407
|
-
? _vm._l(
|
44408
|
-
|
44409
|
-
|
44410
|
-
|
44411
|
-
|
44412
|
-
|
44413
|
-
|
44414
|
-
|
44415
|
-
|
44416
|
-
|
44417
|
-
dark: _vm.instance.dark,
|
44418
|
-
light: _vm.instance.light,
|
44419
|
-
},
|
44636
|
+
? _vm._l(_vm.instance.rightSlot, function (child) {
|
44637
|
+
return _c(
|
44638
|
+
child.component,
|
44639
|
+
_vm._b(
|
44640
|
+
{
|
44641
|
+
key: child.name,
|
44642
|
+
tag: "component",
|
44643
|
+
attrs: {
|
44644
|
+
dark: _vm.instance.dark,
|
44645
|
+
light: _vm.instance.light,
|
44420
44646
|
},
|
44421
|
-
|
44422
|
-
|
44423
|
-
|
44424
|
-
|
44647
|
+
},
|
44648
|
+
"component",
|
44649
|
+
child,
|
44650
|
+
false
|
44425
44651
|
)
|
44426
|
-
|
44427
|
-
)
|
44652
|
+
)
|
44653
|
+
})
|
44428
44654
|
: _vm._e(),
|
44429
44655
|
_vm._v(" "),
|
44430
44656
|
_vm._t("rightSlot"),
|
@@ -44440,12 +44666,12 @@ var __vue_render__$15 = function () {
|
|
44440
44666
|
"v-col",
|
44441
44667
|
{ staticClass: "pa-0", attrs: { cols: "12" } },
|
44442
44668
|
[
|
44443
|
-
_vm._l(_vm.instance.children, function (child
|
44669
|
+
_vm._l(_vm.instance.children, function (child) {
|
44444
44670
|
return _c(
|
44445
44671
|
child.component,
|
44446
44672
|
_vm._b(
|
44447
44673
|
{
|
44448
|
-
key:
|
44674
|
+
key: child.name,
|
44449
44675
|
tag: "component",
|
44450
44676
|
attrs: {
|
44451
44677
|
dark: _vm.instance.dark,
|
@@ -44474,11 +44700,11 @@ __vue_render__$15._withStripped = true;
|
|
44474
44700
|
/* style */
|
44475
44701
|
const __vue_inject_styles__$15 = function (inject) {
|
44476
44702
|
if (!inject) return
|
44477
|
-
inject("data-v-
|
44703
|
+
inject("data-v-aba711be_0", { source: ".zd-footer-slot[data-v-aba711be] {\n display: flex;\n padding: 0;\n}\n.zd-footer-slot-children[data-v-aba711be] {\n padding-bottom: var(--spacing-2);\n}\n.zd-footer-slot-left > *[data-v-aba711be], .zd-footer-slot-center > *[data-v-aba711be], .zd-footer-slot-right > *[data-v-aba711be] {\n margin: 0 var(--spacing-1);\n}\n.zd-footer-slot-left > *[data-v-aba711be]:first-child, .zd-footer-slot-center > *[data-v-aba711be]:first-child, .zd-footer-slot-right > *[data-v-aba711be]:first-child {\n margin-left: 0;\n}\n.zd-footer-slot-left > *[data-v-aba711be]:last-child, .zd-footer-slot-center > *[data-v-aba711be]:last-child, .zd-footer-slot-right > *[data-v-aba711be]:last-child {\n margin-right: 0;\n}\n.zd-footer-slot-center[data-v-aba711be] {\n position: absolute;\n left: 50%;\n transform: translateX(-50%);\n}\n.zd-footer-slot-right[data-v-aba711be] {\n margin-left: auto;\n}", map: undefined, media: undefined });
|
44478
44704
|
|
44479
44705
|
};
|
44480
44706
|
/* scoped */
|
44481
|
-
const __vue_scope_id__$15 = "data-v-
|
44707
|
+
const __vue_scope_id__$15 = "data-v-aba711be";
|
44482
44708
|
/* module identifier */
|
44483
44709
|
const __vue_module_identifier__$15 = undefined;
|
44484
44710
|
/* functional template */
|
@@ -45447,7 +45673,7 @@ let ZdGrid = class ZdGrid extends ZdIterable$1 {
|
|
45447
45673
|
onScroll(event) {
|
45448
45674
|
const { scrollTop } = event.target;
|
45449
45675
|
const rows = Math.floor(scrollTop / this.scrollData.rowHeight);
|
45450
|
-
const
|
45676
|
+
const data = this.getData();
|
45451
45677
|
const start = rows + this.scrollData.perPage > data.length ? Math
|
45452
45678
|
.max(0, data.length - this.scrollData.perPage) : rows;
|
45453
45679
|
if (this.lastStart !== start) {
|
@@ -48879,28 +49105,6 @@ let ZdTreeGridCellContent = class ZdTreeGridCellContent extends __vue_component_
|
|
48879
49105
|
}
|
48880
49106
|
return text;
|
48881
49107
|
}
|
48882
|
-
hasShowChevron(row) {
|
48883
|
-
if (!this.fieldHasChild)
|
48884
|
-
return true;
|
48885
|
-
const rowHasChild = row[this.fieldHasChild];
|
48886
|
-
let isVisibleChevron = true;
|
48887
|
-
switch (rowHasChild) {
|
48888
|
-
case '0':
|
48889
|
-
case false:
|
48890
|
-
case 0:
|
48891
|
-
isVisibleChevron = false;
|
48892
|
-
break;
|
48893
|
-
case '1':
|
48894
|
-
case true:
|
48895
|
-
case 1:
|
48896
|
-
isVisibleChevron = true;
|
48897
|
-
break;
|
48898
|
-
default:
|
48899
|
-
isVisibleChevron = true;
|
48900
|
-
break;
|
48901
|
-
}
|
48902
|
-
return isVisibleChevron;
|
48903
|
-
}
|
48904
49108
|
hasShowChevronInTreeGrid(headerIndex, selectable) {
|
48905
49109
|
return headerIndex === 0 || (headerIndex === 1 && selectable);
|
48906
49110
|
}
|
@@ -48929,14 +49133,14 @@ __decorate([
|
|
48929
49133
|
Prop({ type: String, required: true }),
|
48930
49134
|
__metadata("design:type", String)
|
48931
49135
|
], ZdTreeGridCellContent.prototype, "expandClass", void 0);
|
48932
|
-
__decorate([
|
48933
|
-
Prop({ type: String, required: true }),
|
48934
|
-
__metadata("design:type", String)
|
48935
|
-
], ZdTreeGridCellContent.prototype, "fieldHasChild", void 0);
|
48936
49136
|
__decorate([
|
48937
49137
|
Prop({ type: Boolean, default: false }),
|
48938
49138
|
__metadata("design:type", Boolean)
|
48939
49139
|
], ZdTreeGridCellContent.prototype, "hasUsingCellText", void 0);
|
49140
|
+
__decorate([
|
49141
|
+
Prop({ type: Function, required: true }),
|
49142
|
+
__metadata("design:type", Function)
|
49143
|
+
], ZdTreeGridCellContent.prototype, "hasChildOnDemand", void 0);
|
48940
49144
|
ZdTreeGridCellContent = __decorate([
|
48941
49145
|
Component$2
|
48942
49146
|
], ZdTreeGridCellContent);
|
@@ -49004,8 +49208,8 @@ var __vue_render__$T = function () {
|
|
49004
49208
|
{
|
49005
49209
|
name: "show",
|
49006
49210
|
rawName: "v-show",
|
49007
|
-
value: _vm.
|
49008
|
-
expression: "
|
49211
|
+
value: _vm.hasChildOnDemand(_vm.row),
|
49212
|
+
expression: "hasChildOnDemand(row)",
|
49009
49213
|
},
|
49010
49214
|
],
|
49011
49215
|
class: { opened: _vm.row.tree__opened },
|
@@ -49059,7 +49263,7 @@ __vue_render__$T._withStripped = true;
|
|
49059
49263
|
/* style */
|
49060
49264
|
const __vue_inject_styles__$T = function (inject) {
|
49061
49265
|
if (!inject) return
|
49062
|
-
inject("data-v-
|
49266
|
+
inject("data-v-f6232196_0", { source: ".zd-grid-cell-wrapper {\n display: flex;\n gap: 0.75rem;\n}\n.zd-grid-cell-align-right {\n justify-content: end;\n}\n.zd-grid-cell-align-left {\n justify-content: start;\n}\n.zd-grid-cell-align-center {\n justify-content: center;\n}", map: undefined, media: undefined });
|
49063
49267
|
|
49064
49268
|
};
|
49065
49269
|
/* scoped */
|
@@ -49088,28 +49292,6 @@ __vue_render__$T._withStripped = true;
|
|
49088
49292
|
);
|
49089
49293
|
|
49090
49294
|
let ZdTreeGridCellActionContent = class ZdTreeGridCellActionContent extends __vue_component__$W {
|
49091
|
-
hasShowChevron(row) {
|
49092
|
-
if (!this.fieldHasChild)
|
49093
|
-
return true;
|
49094
|
-
const rowHasChild = row[this.fieldHasChild];
|
49095
|
-
let isVisibleChevron = true;
|
49096
|
-
switch (rowHasChild) {
|
49097
|
-
case '0':
|
49098
|
-
case false:
|
49099
|
-
case 0:
|
49100
|
-
isVisibleChevron = false;
|
49101
|
-
break;
|
49102
|
-
case '1':
|
49103
|
-
case true:
|
49104
|
-
case 1:
|
49105
|
-
isVisibleChevron = true;
|
49106
|
-
break;
|
49107
|
-
default:
|
49108
|
-
isVisibleChevron = true;
|
49109
|
-
break;
|
49110
|
-
}
|
49111
|
-
return isVisibleChevron;
|
49112
|
-
}
|
49113
49295
|
hasShowChevronInTreeGrid(headerIndex, selectable) {
|
49114
49296
|
return headerIndex === 0 || (headerIndex === 1 && selectable);
|
49115
49297
|
}
|
@@ -49118,10 +49300,6 @@ __decorate([
|
|
49118
49300
|
Prop({ type: Number, required: true }),
|
49119
49301
|
__metadata("design:type", Number)
|
49120
49302
|
], ZdTreeGridCellActionContent.prototype, "headerIndex", void 0);
|
49121
|
-
__decorate([
|
49122
|
-
Prop({ type: String, required: true }),
|
49123
|
-
__metadata("design:type", String)
|
49124
|
-
], ZdTreeGridCellActionContent.prototype, "fieldHasChild", void 0);
|
49125
49303
|
__decorate([
|
49126
49304
|
Prop({ type: Boolean, required: true }),
|
49127
49305
|
__metadata("design:type", Boolean)
|
@@ -49146,6 +49324,10 @@ __decorate([
|
|
49146
49324
|
Prop({ type: Object, required: true }),
|
49147
49325
|
__metadata("design:type", Object)
|
49148
49326
|
], ZdTreeGridCellActionContent.prototype, "row", void 0);
|
49327
|
+
__decorate([
|
49328
|
+
Prop({ type: Function, required: true }),
|
49329
|
+
__metadata("design:type", Function)
|
49330
|
+
], ZdTreeGridCellActionContent.prototype, "hasChildOnDemand", void 0);
|
49149
49331
|
ZdTreeGridCellActionContent = __decorate([
|
49150
49332
|
Component$2
|
49151
49333
|
], ZdTreeGridCellActionContent);
|
@@ -49217,8 +49399,8 @@ var __vue_render__$S = function () {
|
|
49217
49399
|
{
|
49218
49400
|
name: "show",
|
49219
49401
|
rawName: "v-show",
|
49220
|
-
value: _vm.
|
49221
|
-
expression: "
|
49402
|
+
value: _vm.hasChildOnDemand(_vm.row),
|
49403
|
+
expression: "hasChildOnDemand(row)",
|
49222
49404
|
},
|
49223
49405
|
],
|
49224
49406
|
class: { opened: _vm.row.tree__opened },
|
@@ -50698,6 +50880,10 @@ __decorate([
|
|
50698
50880
|
PropWatch({ type: [Boolean, String], default: false }),
|
50699
50881
|
__metadata("design:type", Boolean)
|
50700
50882
|
], ZdSelect.prototype, "manualMode", void 0);
|
50883
|
+
__decorate([
|
50884
|
+
PropWatch({ type: [Boolean, String], default: false }),
|
50885
|
+
__metadata("design:type", Boolean)
|
50886
|
+
], ZdSelect.prototype, "attach", void 0);
|
50701
50887
|
__decorate([
|
50702
50888
|
PropWatch({ type: String, default: 'SEARCH' }),
|
50703
50889
|
__metadata("design:type", String)
|
@@ -50766,6 +50952,7 @@ var __vue_render__$K = function () {
|
|
50766
50952
|
_vm.instance.clearable &&
|
50767
50953
|
!_vm.instance.readonly &&
|
50768
50954
|
!_vm.instance.disabled,
|
50955
|
+
attach: _vm.instance.attach,
|
50769
50956
|
color: _vm.instance.color,
|
50770
50957
|
dark: _vm.instance.dark,
|
50771
50958
|
disabled: _vm.instance.disabled,
|
@@ -51009,7 +51196,7 @@ __vue_render__$K._withStripped = true;
|
|
51009
51196
|
/* style */
|
51010
51197
|
const __vue_inject_styles__$K = function (inject) {
|
51011
51198
|
if (!inject) return
|
51012
|
-
inject("data-v-
|
51199
|
+
inject("data-v-4f61cc61_0", { source: ".zd-select .v-input__control .v-input__slot .v-select__slot {\n position: static;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer {\n margin-right: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-left: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-top: 5px;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-inner, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-inner {\n padding-left: 0;\n padding-right: 0;\n}\n.zd-select.zd-select-align-left > .v-input__control > .v-input__slot input {\n text-align: left;\n}\n.zd-select.zd-select-align-center > .v-input__control > .v-input__slot input {\n text-align: center;\n}\n.zd-select.zd-select-align-right > .v-input__control > .v-input__slot input {\n text-align: right;\n}\n.zd-select .v-select__selections {\n padding: 0;\n width: 172px;\n overflow: hidden;\n white-space: nowrap;\n flex-wrap: nowrap;\n text-overflow: ellipsis;\n}\n.zd-select .v-select__selections .v-select__selection {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n margin: 0;\n max-width: none;\n}\n.zd-select .v-select__selections .v-select__selection--disabled {\n opacity: 0.5;\n}\n.zd-select.zd-dense .v-input__append-inner, .zd-select.zd-dense .v-input__prepend-inner {\n margin-top: 0;\n}\n.zd-select-append-item .v-list-item__content {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-size);\n color: var(--v-primary-base);\n}\n.v-menu__content.zd-select-menu {\n box-shadow: var(--shadow-2);\n}\n.v-menu__content.zd-select-menu .v-select-list {\n padding: 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item {\n height: auto;\n min-height: 40px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__content {\n padding: var(--spacing-2) 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item:not(.theme--dark) {\n color: var(--zd-font-color);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__title {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n height: auto;\n line-height: unset;\n white-space: unset;\n overflow: auto;\n text-overflow: unset;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled .v-list-item__title {\n opacity: 0.5;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled.primary--text .v-list-item__title {\n color: inherit;\n}\n.v-menu__content.zd-select-menu.zd-dense .v-list-item {\n height: auto;\n min-height: 24px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu.zd-select-align-left .v-list-item__content .v-list-item__title {\n text-align: left;\n}\n.v-menu__content.zd-select-menu.zd-select-align-center .v-list-item__content .v-list-item__title {\n text-align: center;\n}\n.v-menu__content.zd-select-menu.zd-select-align-right .v-list-item__content .v-list-item__title {\n text-align: right;\n}", map: undefined, media: undefined });
|
51013
51200
|
|
51014
51201
|
};
|
51015
51202
|
/* scoped */
|
@@ -52408,6 +52595,11 @@ let ZdMasterDetail = class ZdMasterDetail extends ZdComponentRender$1 {
|
|
52408
52595
|
super(...arguments);
|
52409
52596
|
this.instanceType = MasterDetail;
|
52410
52597
|
}
|
52598
|
+
mounted() {
|
52599
|
+
if (this.instance.fillHeight) {
|
52600
|
+
setFillHeight(this.$el);
|
52601
|
+
}
|
52602
|
+
}
|
52411
52603
|
};
|
52412
52604
|
__decorate([
|
52413
52605
|
Prop({ type: [Object, String], default: () => ({}) }),
|
@@ -52417,6 +52609,22 @@ __decorate([
|
|
52417
52609
|
Prop({ type: [Boolean, String], default: false }),
|
52418
52610
|
__metadata("design:type", Boolean)
|
52419
52611
|
], ZdMasterDetail.prototype, "lazyRelate", void 0);
|
52612
|
+
__decorate([
|
52613
|
+
PropWatch({ type: [Number, String], default: 'auto' }),
|
52614
|
+
__metadata("design:type", Object)
|
52615
|
+
], ZdMasterDetail.prototype, "height", void 0);
|
52616
|
+
__decorate([
|
52617
|
+
PropWatch({ type: [Number, String], default: 'auto' }),
|
52618
|
+
__metadata("design:type", Object)
|
52619
|
+
], ZdMasterDetail.prototype, "minHeight", void 0);
|
52620
|
+
__decorate([
|
52621
|
+
PropWatch({ type: [Number, String], default: 'none' }),
|
52622
|
+
__metadata("design:type", Object)
|
52623
|
+
], ZdMasterDetail.prototype, "maxHeight", void 0);
|
52624
|
+
__decorate([
|
52625
|
+
PropWatch({ type: [Boolean, String], default: false }),
|
52626
|
+
__metadata("design:type", Object)
|
52627
|
+
], ZdMasterDetail.prototype, "fillHeight", void 0);
|
52420
52628
|
ZdMasterDetail = __decorate([
|
52421
52629
|
Component$1
|
52422
52630
|
], ZdMasterDetail);
|
@@ -52441,7 +52649,15 @@ var __vue_render__$A = function () {
|
|
52441
52649
|
expression: "instance.isVisible",
|
52442
52650
|
},
|
52443
52651
|
],
|
52444
|
-
style:
|
52652
|
+
style: Object.assign(
|
52653
|
+
{},
|
52654
|
+
{
|
52655
|
+
height: _vm.$formatSize(_vm.instance.height),
|
52656
|
+
maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
|
52657
|
+
minHeight: _vm.$formatSize(_vm.instance.minHeight),
|
52658
|
+
},
|
52659
|
+
_vm.$styleObject(_vm.instance.cssStyle)
|
52660
|
+
),
|
52445
52661
|
attrs: { id: _vm.instance.name },
|
52446
52662
|
},
|
52447
52663
|
[
|
@@ -55758,8 +55974,18 @@ let ZdSelectTree = class ZdSelectTree extends ZdTextInput$1 {
|
|
55758
55974
|
}
|
55759
55975
|
}
|
55760
55976
|
mounted() {
|
55977
|
+
if (this.instance.parent instanceof Form && (this === null || this === void 0 ? void 0 : this.$parent)) {
|
55978
|
+
this.$parent.register(this);
|
55979
|
+
}
|
55980
|
+
this.instance.setViewResetValidation(this.resetValidation);
|
55761
55981
|
this.addListeners();
|
55762
55982
|
}
|
55983
|
+
validate() {
|
55984
|
+
return this.instance.validate();
|
55985
|
+
}
|
55986
|
+
resetValidation() {
|
55987
|
+
this.instance.resetValidation();
|
55988
|
+
}
|
55763
55989
|
focus(event) {
|
55764
55990
|
this.focused = true;
|
55765
55991
|
this.instance.validationError = '';
|
@@ -55862,6 +56088,14 @@ __decorate([
|
|
55862
56088
|
Prop({ type: [Boolean, String], default: false }),
|
55863
56089
|
__metadata("design:type", Object)
|
55864
56090
|
], ZdSelectTree.prototype, "fetchOnDemand", void 0);
|
56091
|
+
__decorate([
|
56092
|
+
Prop({ type: [String], default: '' }),
|
56093
|
+
__metadata("design:type", String)
|
56094
|
+
], ZdSelectTree.prototype, "fieldHasChild", void 0);
|
56095
|
+
__decorate([
|
56096
|
+
Prop({ type: [Number, String], default: undefined }),
|
56097
|
+
__metadata("design:type", Object)
|
56098
|
+
], ZdSelectTree.prototype, "menuMaxWidth", void 0);
|
55865
56099
|
__decorate([
|
55866
56100
|
Watch('instance.datasource.data.length'),
|
55867
56101
|
__metadata("design:type", Function),
|
@@ -56003,6 +56237,7 @@ var __vue_render__$j = function () {
|
|
56003
56237
|
flattenSearchResults: _vm.instance.flattenSearchResults,
|
56004
56238
|
disabled: _vm.instance.disabled,
|
56005
56239
|
maxHeight: _vm.instance.menuMaxHeight,
|
56240
|
+
menuMaxWidth: _vm.instance.menuMaxWidth,
|
56006
56241
|
openDirection: _vm.instance.openDirection,
|
56007
56242
|
searchable: _vm.instance.autocomplete,
|
56008
56243
|
showCount: _vm.instance.showCount,
|
@@ -56107,7 +56342,7 @@ __vue_render__$j._withStripped = true;
|
|
56107
56342
|
/* style */
|
56108
56343
|
const __vue_inject_styles__$j = function (inject) {
|
56109
56344
|
if (!inject) return
|
56110
|
-
inject("data-v-
|
56345
|
+
inject("data-v-b0612a90_0", { source: ".zd-select-tree-loading {\n margin-top: -1px;\n width: calc(100% - 2px);\n margin-left: 1px;\n}\n.zd-select-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-family: var(--font-family);\n margin-top: var(--spacing-1);\n padding-bottom: 2px;\n}\n.zd-select-tree.theme--dark .vue-treeselect__control {\n background-color: #1e1e1e;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item {\n background: #555;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item, .zd-select-tree.theme--dark .vue-treeselect__multi-value-item .vue-treeselect__value-remove {\n color: #fff;\n}\n.zd-select-tree .vue-treeselect__control {\n border-radius: var(--border);\n height: 34px;\n}\n.zd-select-tree .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 32px;\n}\n.zd-select-tree .vue-treeselect__control-arrow-container svg {\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s;\n}\n.zd-select-tree .zd-select-tree-label {\n font-weight: var(--zd-font-body1-weight);\n pointer-events: none;\n line-height: 1rem;\n position: relative;\n top: -1px;\n}\n.zd-select-tree .zd-select-tree-label p {\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-select-tree.zd-select-tree-disabled {\n opacity: 0.5;\n}\n.zd-select-tree .vue-treeselect__single-value, .zd-select-tree input {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n cursor: text;\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-label {\n color: var(--v-error-base) !important;\n animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-details {\n color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control {\n border-color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control-arrow-container svg, .zd-select-tree.zd-select-tree-error .vue-treeselect__x-container svg {\n color: var(--v-error-base);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-select-tree-error .zd-select-tree-append-outer-icon {\n color: var(--v-error-base);\n}\n.zd-select-tree .vue-treeselect--focused .vue-treeselect__control-arrow-container svg, .zd-select-tree .vue-treeselect--focused .vue-treeselect__x-container svg {\n color: var(--v-primary-base);\n}\n.zd-select-tree .zd-select-tree-details {\n min-height: 13px;\n font-size: 11px;\n display: flex;\n flex: 1 0 auto;\n max-width: 100%;\n overflow: hidden;\n color: rgba(0, 0, 0, 0.6);\n line-height: 1;\n position: relative;\n top: 1px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-details {\n min-height: 11px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control {\n height: 24px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 22px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense .zd-select-tree-append-outer-icon {\n margin-top: 20px;\n}\n.zd-select-tree.zd-dense.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 4px;\n}\n.zd-select-tree.zd-no-helper .zd-select-tree-details {\n display: none;\n}\n.zd-select-tree.zd-no-border .vue-treeselect__control {\n border: none !important;\n}\n.zd-select-tree .zd-select-tree-container {\n display: flex;\n position: relative;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon, .zd-select-tree .zd-select-tree-append-outer-icon {\n font-size: var(--icon-size-small);\n margin-top: 25px;\n height: 16px;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon {\n margin-right: 8px;\n}\n.zd-select-tree.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 10px;\n}\n.zd-select-tree .zd-select-tree-append-outer-icon {\n margin-left: 8px;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__menu-container .vue-treeselect__icon-warning {\n display: none;\n}\n.vue-treeselect__menu-container .vue-treeselect__option--disabled {\n opacity: 0.5;\n}\n.vue-treeselect__menu .vue-treeselect__list > * {\n color: var(--zd-font-color) !important;\n font-size: var(--zd-font-body1-size) !important;\n font-family: var(--font-family) !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option {\n display: flex !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option-arrow-container {\n display: flex !important;\n}\n.vue-treeselect__menu-container .vue-treeselect__option::before {\n bottom: 0;\n content: \"\";\n left: 0;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n right: 0;\n top: 0;\n box-sizing: inherit;\n height: inherit;\n}\n.vue-treeselect__menu-container .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n background: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__label {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n font-family: var(--font-family);\n color: var(--zd-font-color);\n}\n.vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__label-container .vue-treeselect__label, .vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__option-arrow {\n color: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__option:not(.vue-treeselect__option--hide) {\n position: relative;\n display: flex;\n}\n.vue-treeselect__menu-container .vue-treeselect__option-arrow-container:not(.vue-treeselect__option--hide) {\n align-items: center;\n display: flex;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option::before {\n background-color: #000;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option:hover::before {\n opacity: 0.04;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.1;\n}\n.vue-treeselect__menu-container.theme--dark > div {\n background-color: #1e1e1e;\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__label {\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--highlight {\n background-color: transparent;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option::before {\n background-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option:hover::before {\n opacity: 0.08;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.2;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__checkbox:not(.vue-treeselect__checkbox--checked):not(.vue-treeselect__checkbox--indeterminate) {\n background-color: transparent;\n border-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--selected .vue-treeselect__count {\n opacity: 0.8;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__menu {\n border-color: #1e1e1e;\n}\n.vue-treeselect__menu-container .vue-treeselect__check-mark,\n.vue-treeselect__menu-container .vue-treeselect__minus-mark {\n left: -2px;\n top: -2px;\n}", map: undefined, media: undefined });
|
56111
56346
|
|
56112
56347
|
};
|
56113
56348
|
/* scoped */
|
@@ -56303,6 +56538,7 @@ var __vue_render__$i = function () {
|
|
56303
56538
|
flat: _vm.instance.flat,
|
56304
56539
|
limit: _vm.focused ? _vm.instance.limit : 1,
|
56305
56540
|
maxHeight: _vm.instance.maxHeight,
|
56541
|
+
menuMaxWidth: _vm.instance.menuMaxWidth,
|
56306
56542
|
openDirection: _vm.instance.openDirection,
|
56307
56543
|
searchable: _vm.instance.autocomplete,
|
56308
56544
|
showCount: _vm.instance.showCount,
|
@@ -56487,8 +56723,8 @@ __vue_render__$i._withStripped = true;
|
|
56487
56723
|
/* style */
|
56488
56724
|
const __vue_inject_styles__$i = function (inject) {
|
56489
56725
|
if (!inject) return
|
56490
|
-
inject("data-v-
|
56491
|
-
,inject("data-v-
|
56726
|
+
inject("data-v-3594c77e_0", { source: ".zd-select-tree-loading {\n margin-top: -1px;\n width: calc(100% - 2px);\n margin-left: 1px;\n}\n.zd-select-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-family: var(--font-family);\n margin-top: var(--spacing-1);\n padding-bottom: 2px;\n}\n.zd-select-tree.theme--dark .vue-treeselect__control {\n background-color: #1e1e1e;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item {\n background: #555;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item, .zd-select-tree.theme--dark .vue-treeselect__multi-value-item .vue-treeselect__value-remove {\n color: #fff;\n}\n.zd-select-tree .vue-treeselect__control {\n border-radius: var(--border);\n height: 34px;\n}\n.zd-select-tree .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 32px;\n}\n.zd-select-tree .vue-treeselect__control-arrow-container svg {\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s;\n}\n.zd-select-tree .zd-select-tree-label {\n font-weight: var(--zd-font-body1-weight);\n pointer-events: none;\n line-height: 1rem;\n position: relative;\n top: -1px;\n}\n.zd-select-tree .zd-select-tree-label p {\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-select-tree.zd-select-tree-disabled {\n opacity: 0.5;\n}\n.zd-select-tree .vue-treeselect__single-value, .zd-select-tree input {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n cursor: text;\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-label {\n color: var(--v-error-base) !important;\n animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-details {\n color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control {\n border-color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control-arrow-container svg, .zd-select-tree.zd-select-tree-error .vue-treeselect__x-container svg {\n color: var(--v-error-base);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-select-tree-error .zd-select-tree-append-outer-icon {\n color: var(--v-error-base);\n}\n.zd-select-tree .vue-treeselect--focused .vue-treeselect__control-arrow-container svg, .zd-select-tree .vue-treeselect--focused .vue-treeselect__x-container svg {\n color: var(--v-primary-base);\n}\n.zd-select-tree .zd-select-tree-details {\n min-height: 13px;\n font-size: 11px;\n display: flex;\n flex: 1 0 auto;\n max-width: 100%;\n overflow: hidden;\n color: rgba(0, 0, 0, 0.6);\n line-height: 1;\n position: relative;\n top: 1px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-details {\n min-height: 11px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control {\n height: 24px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 22px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense .zd-select-tree-append-outer-icon {\n margin-top: 20px;\n}\n.zd-select-tree.zd-dense.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 4px;\n}\n.zd-select-tree.zd-no-helper .zd-select-tree-details {\n display: none;\n}\n.zd-select-tree.zd-no-border .vue-treeselect__control {\n border: none !important;\n}\n.zd-select-tree .zd-select-tree-container {\n display: flex;\n position: relative;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon, .zd-select-tree .zd-select-tree-append-outer-icon {\n font-size: var(--icon-size-small);\n margin-top: 25px;\n height: 16px;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon {\n margin-right: 8px;\n}\n.zd-select-tree.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 10px;\n}\n.zd-select-tree .zd-select-tree-append-outer-icon {\n margin-left: 8px;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__menu-container .vue-treeselect__icon-warning {\n display: none;\n}\n.vue-treeselect__menu-container .vue-treeselect__option--disabled {\n opacity: 0.5;\n}\n.vue-treeselect__menu .vue-treeselect__list > * {\n color: var(--zd-font-color) !important;\n font-size: var(--zd-font-body1-size) !important;\n font-family: var(--font-family) !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option {\n display: flex !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option-arrow-container {\n display: flex !important;\n}\n.vue-treeselect__menu-container .vue-treeselect__option::before {\n bottom: 0;\n content: \"\";\n left: 0;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n right: 0;\n top: 0;\n box-sizing: inherit;\n height: inherit;\n}\n.vue-treeselect__menu-container .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n background: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__label {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n font-family: var(--font-family);\n color: var(--zd-font-color);\n}\n.vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__label-container .vue-treeselect__label, .vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__option-arrow {\n color: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__option:not(.vue-treeselect__option--hide) {\n position: relative;\n display: flex;\n}\n.vue-treeselect__menu-container .vue-treeselect__option-arrow-container:not(.vue-treeselect__option--hide) {\n align-items: center;\n display: flex;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option::before {\n background-color: #000;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option:hover::before {\n opacity: 0.04;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.1;\n}\n.vue-treeselect__menu-container.theme--dark > div {\n background-color: #1e1e1e;\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__label {\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--highlight {\n background-color: transparent;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option::before {\n background-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option:hover::before {\n opacity: 0.08;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.2;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__checkbox:not(.vue-treeselect__checkbox--checked):not(.vue-treeselect__checkbox--indeterminate) {\n background-color: transparent;\n border-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--selected .vue-treeselect__count {\n opacity: 0.8;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__menu {\n border-color: #1e1e1e;\n}\n.vue-treeselect__menu-container .vue-treeselect__check-mark,\n.vue-treeselect__menu-container .vue-treeselect__minus-mark {\n left: -2px;\n top: -2px;\n}", map: undefined, media: undefined })
|
56727
|
+
,inject("data-v-3594c77e_1", { source: ".zd-select-tree-multiple .vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 1px 0;\n line-height: 16px;\n}\n.zd-select-tree-multiple .vue-treeselect--multi .vue-treeselect__input {\n padding-top: 0;\n padding-bottom: 0;\n line-height: 15px;\n}\n.vue-treeselect__menu-container .select-all {\n height: 40px;\n min-height: 40px;\n padding-left: 37px;\n}\n.vue-treeselect__menu-container .select-all .v-icon.mdi-checkbox-marked {\n color: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .select-all .v-list-item__content {\n height: 40px;\n}\n.vue-treeselect__menu-container .select-all .v-list-item__action {\n margin: 0 13px 0 0;\n}\n.vue-treeselect__menu-container .select-all .v-list-item__title {\n height: auto;\n padding: 0;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__limit-tip {\n padding-top: 0;\n}\n.vue-treeselect__limit-tip-text {\n padding: 0;\n margin: 0;\n}", map: undefined, media: undefined });
|
56492
56728
|
|
56493
56729
|
};
|
56494
56730
|
/* scoped */
|
@@ -58425,7 +58661,9 @@ let ZdTime = class ZdTime extends __vue_component__$1f {
|
|
58425
58661
|
mounted() {
|
58426
58662
|
const textInput = this.$refs.textInputInstance.$children[0].$el.getElementsByTagName('input')[0];
|
58427
58663
|
textInput.addEventListener('blur', () => {
|
58428
|
-
this
|
58664
|
+
if (!this.$isMobile()) {
|
58665
|
+
this.instance.showTimePicker = false;
|
58666
|
+
}
|
58429
58667
|
});
|
58430
58668
|
if (this.$isMobile()) {
|
58431
58669
|
this.setMobileProps(textInput);
|
@@ -58603,136 +58841,200 @@ var __vue_render__$6 = function () {
|
|
58603
58841
|
"div",
|
58604
58842
|
{ staticClass: "zd-time", attrs: { id: _vm.instance.name } },
|
58605
58843
|
[
|
58606
|
-
|
58607
|
-
|
58608
|
-
|
58609
|
-
|
58610
|
-
|
58611
|
-
|
58612
|
-
|
58613
|
-
|
58614
|
-
|
58615
|
-
|
58616
|
-
|
58844
|
+
_c(
|
58845
|
+
"v-menu",
|
58846
|
+
{
|
58847
|
+
directives: [
|
58848
|
+
{
|
58849
|
+
name: "show",
|
58850
|
+
rawName: "v-show",
|
58851
|
+
value: _vm.instance.isVisible,
|
58852
|
+
expression: "instance.isVisible",
|
58853
|
+
},
|
58854
|
+
],
|
58855
|
+
ref: "timeMenu",
|
58856
|
+
attrs: {
|
58857
|
+
"offset-overflow": "",
|
58858
|
+
"offset-y": "",
|
58859
|
+
"input-activator": "",
|
58860
|
+
"min-width": "290px",
|
58861
|
+
transition: "scale-transition",
|
58862
|
+
dark: _vm.instance.dark,
|
58863
|
+
light: _vm.instance.light,
|
58864
|
+
"close-on-content-click": false,
|
58865
|
+
disabled: _vm.instance.disabled || _vm.instance.readonly,
|
58866
|
+
},
|
58867
|
+
scopedSlots: _vm._u([
|
58868
|
+
{
|
58869
|
+
key: "activator",
|
58870
|
+
fn: function (ref) {
|
58871
|
+
var on = ref.on;
|
58872
|
+
return [
|
58873
|
+
_c("zd-text-input", {
|
58874
|
+
ref: "textInputInstance",
|
58875
|
+
attrs: {
|
58876
|
+
name: _vm.instance.name + "_text-input",
|
58877
|
+
mask: _vm.getTimeMask,
|
58878
|
+
"instance-object": _vm.instance,
|
58879
|
+
events: _vm.getEvents(on),
|
58880
|
+
autofill: false,
|
58881
|
+
},
|
58882
|
+
on: { input: _vm.input },
|
58883
|
+
}),
|
58884
|
+
]
|
58885
|
+
},
|
58886
|
+
},
|
58887
|
+
]),
|
58888
|
+
model: {
|
58889
|
+
value: _vm.instance.showTimePicker,
|
58890
|
+
callback: function ($$v) {
|
58891
|
+
_vm.$set(_vm.instance, "showTimePicker", $$v);
|
58892
|
+
},
|
58893
|
+
expression: "instance.showTimePicker",
|
58894
|
+
},
|
58895
|
+
},
|
58896
|
+
[
|
58897
|
+
_vm._v(" "),
|
58898
|
+
!_vm.instance.readonly
|
58899
|
+
? _c(
|
58900
|
+
_vm.$isMobile() ? "v-dialog" : "span",
|
58901
|
+
{
|
58902
|
+
tag: "component",
|
58903
|
+
attrs: {
|
58904
|
+
width: "290px",
|
58905
|
+
persistent: "",
|
58906
|
+
"content-class": "zd-mx-0",
|
58617
58907
|
},
|
58618
|
-
|
58619
|
-
|
58620
|
-
|
58621
|
-
|
58622
|
-
"offset-y": "",
|
58623
|
-
"input-activator": "",
|
58624
|
-
"min-width": "290px",
|
58625
|
-
transition: "scale-transition",
|
58626
|
-
dark: _vm.instance.dark,
|
58627
|
-
light: _vm.instance.light,
|
58628
|
-
"close-on-content-click": false,
|
58629
|
-
disabled: _vm.instance.disabled || _vm.instance.readonly,
|
58630
|
-
},
|
58631
|
-
scopedSlots: _vm._u(
|
58632
|
-
[
|
58633
|
-
{
|
58634
|
-
key: "activator",
|
58635
|
-
fn: function (ref) {
|
58636
|
-
var on = ref.on;
|
58637
|
-
return [
|
58638
|
-
_c("zd-text-input", {
|
58639
|
-
ref: "textInputInstance",
|
58640
|
-
attrs: {
|
58641
|
-
name: _vm.instance.name + "_text-input",
|
58642
|
-
mask: _vm.getTimeMask,
|
58643
|
-
"instance-object": _vm.instance,
|
58644
|
-
events: _vm.getEvents(on),
|
58645
|
-
autofill: false,
|
58646
|
-
},
|
58647
|
-
on: { input: _vm.input },
|
58648
|
-
}),
|
58649
|
-
]
|
58650
|
-
},
|
58908
|
+
model: {
|
58909
|
+
value: _vm.instance.showTimePicker,
|
58910
|
+
callback: function ($$v) {
|
58911
|
+
_vm.$set(_vm.instance, "showTimePicker", $$v);
|
58651
58912
|
},
|
58652
|
-
|
58653
|
-
null,
|
58654
|
-
false,
|
58655
|
-
386348313
|
58656
|
-
),
|
58657
|
-
model: {
|
58658
|
-
value: _vm.instance.showTimePicker,
|
58659
|
-
callback: function ($$v) {
|
58660
|
-
_vm.$set(_vm.instance, "showTimePicker", $$v);
|
58913
|
+
expression: "instance.showTimePicker",
|
58661
58914
|
},
|
58662
|
-
expression: "instance.showTimePicker",
|
58663
58915
|
},
|
58664
|
-
|
58665
|
-
|
58666
|
-
|
58667
|
-
|
58668
|
-
|
58669
|
-
|
58670
|
-
|
58671
|
-
|
58672
|
-
|
58673
|
-
|
58674
|
-
|
58675
|
-
|
58676
|
-
|
58916
|
+
[
|
58917
|
+
_c(
|
58918
|
+
"v-time-picker",
|
58919
|
+
_vm._b(
|
58920
|
+
{
|
58921
|
+
directives: [
|
58922
|
+
{
|
58923
|
+
name: "show",
|
58924
|
+
rawName: "v-show",
|
58925
|
+
value: _vm.instance.isVisible,
|
58926
|
+
expression: "instance.isVisible",
|
58927
|
+
},
|
58928
|
+
],
|
58929
|
+
ref: "picker",
|
58930
|
+
attrs: {
|
58931
|
+
"allowed-hours": _vm.instance.allowedHours,
|
58932
|
+
"allowed-minutes": _vm.instance.allowedMinutes,
|
58933
|
+
"allowed-seconds": _vm.instance.allowedSeconds,
|
58934
|
+
max: _vm.pickerMaxTime,
|
58935
|
+
min: _vm.pickerMinTime,
|
58936
|
+
name: _vm.instance.name,
|
58937
|
+
dark: _vm.instance.dark,
|
58938
|
+
light: _vm.instance.light,
|
58677
58939
|
},
|
58678
|
-
|
58679
|
-
|
58680
|
-
|
58681
|
-
|
58682
|
-
|
58683
|
-
|
58684
|
-
|
58685
|
-
min: _vm.pickerMinTime,
|
58686
|
-
name: _vm.instance.name,
|
58687
|
-
dark: _vm.instance.dark,
|
58688
|
-
light: _vm.instance.light,
|
58689
|
-
},
|
58690
|
-
on: {
|
58691
|
-
"hook:mounted": _vm.pickerMounted,
|
58692
|
-
"hook:destroyed": _vm.pickerDestroyed,
|
58693
|
-
"click:time": _vm.onSelectTime,
|
58694
|
-
change: function ($event) {
|
58695
|
-
return _vm.onChangeTimePicker()
|
58940
|
+
on: {
|
58941
|
+
"hook:mounted": _vm.pickerMounted,
|
58942
|
+
"hook:destroyed": _vm.pickerDestroyed,
|
58943
|
+
"click:time": _vm.onSelectTime,
|
58944
|
+
change: function ($event) {
|
58945
|
+
return _vm.onChangeTimePicker()
|
58946
|
+
},
|
58696
58947
|
},
|
58697
|
-
|
58698
|
-
|
58699
|
-
|
58700
|
-
|
58701
|
-
|
58948
|
+
model: {
|
58949
|
+
value: _vm.instance.isoValue,
|
58950
|
+
callback: function ($$v) {
|
58951
|
+
_vm.$set(_vm.instance, "isoValue", $$v);
|
58952
|
+
},
|
58953
|
+
expression: "instance.isoValue",
|
58702
58954
|
},
|
58703
|
-
expression: "instance.isoValue",
|
58704
58955
|
},
|
58705
|
-
|
58706
|
-
|
58707
|
-
|
58708
|
-
|
58709
|
-
|
58710
|
-
|
58711
|
-
|
58712
|
-
|
58713
|
-
|
58714
|
-
|
58715
|
-
|
58716
|
-
|
58717
|
-
|
58718
|
-
|
58719
|
-
|
58720
|
-
|
58721
|
-
|
58722
|
-
|
58723
|
-
|
58724
|
-
|
58725
|
-
|
58726
|
-
|
58727
|
-
|
58728
|
-
|
58729
|
-
|
58730
|
-
|
58731
|
-
|
58732
|
-
|
58733
|
-
|
58956
|
+
"v-time-picker",
|
58957
|
+
{
|
58958
|
+
ampmInTitle: _vm.instance.ampmInTitle,
|
58959
|
+
color: _vm.instance.color,
|
58960
|
+
format: _vm.instance.timeFormat,
|
58961
|
+
fullWidth: _vm.instance.fullWidth,
|
58962
|
+
useSeconds: _vm.instance.useSeconds,
|
58963
|
+
scrollable: _vm.instance.scrollable,
|
58964
|
+
width: _vm.$isMobile() ? "290px" : _vm.instance.width,
|
58965
|
+
},
|
58966
|
+
false
|
58967
|
+
),
|
58968
|
+
[
|
58969
|
+
_vm.$isMobile()
|
58970
|
+
? _c(
|
58971
|
+
"span",
|
58972
|
+
[
|
58973
|
+
_vm.$isMobile()
|
58974
|
+
? _c(
|
58975
|
+
"zd-button",
|
58976
|
+
_vm._b(
|
58977
|
+
{
|
58978
|
+
attrs: {
|
58979
|
+
name:
|
58980
|
+
_vm.instance.name + "-done-button",
|
58981
|
+
},
|
58982
|
+
},
|
58983
|
+
"zd-button",
|
58984
|
+
{
|
58985
|
+
flat: true,
|
58986
|
+
label: "OK",
|
58987
|
+
events: {
|
58988
|
+
click: function () {
|
58989
|
+
_vm.instance.showTimePicker = false;
|
58990
|
+
_vm.setBlur();
|
58991
|
+
},
|
58992
|
+
},
|
58993
|
+
},
|
58994
|
+
false
|
58995
|
+
)
|
58996
|
+
)
|
58997
|
+
: _vm._e(),
|
58998
|
+
_vm._v(" "),
|
58999
|
+
_vm.$isMobile() && _vm.instance.clearable
|
59000
|
+
? _c(
|
59001
|
+
"zd-button",
|
59002
|
+
_vm._b(
|
59003
|
+
{
|
59004
|
+
attrs: {
|
59005
|
+
name:
|
59006
|
+
_vm.instance.name + "-clear-button",
|
59007
|
+
},
|
59008
|
+
},
|
59009
|
+
"zd-button",
|
59010
|
+
{
|
59011
|
+
flat: true,
|
59012
|
+
label: "CLEAR",
|
59013
|
+
events: {
|
59014
|
+
click: function () {
|
59015
|
+
_vm.instance.isoValue = null;
|
59016
|
+
},
|
59017
|
+
},
|
59018
|
+
},
|
59019
|
+
false
|
59020
|
+
)
|
59021
|
+
)
|
59022
|
+
: _vm._e(),
|
59023
|
+
],
|
59024
|
+
1
|
59025
|
+
)
|
59026
|
+
: _vm._e(),
|
59027
|
+
]
|
59028
|
+
),
|
59029
|
+
],
|
59030
|
+
1
|
59031
|
+
)
|
59032
|
+
: _vm._e(),
|
59033
|
+
],
|
59034
|
+
1
|
59035
|
+
),
|
58734
59036
|
],
|
58735
|
-
|
59037
|
+
1
|
58736
59038
|
)
|
58737
59039
|
};
|
58738
59040
|
var __vue_staticRenderFns__$6 = [];
|
@@ -58741,7 +59043,7 @@ __vue_render__$6._withStripped = true;
|
|
58741
59043
|
/* style */
|
58742
59044
|
const __vue_inject_styles__$6 = function (inject) {
|
58743
59045
|
if (!inject) return
|
58744
|
-
inject("data-v-
|
59046
|
+
inject("data-v-e8f3b86c_0", { source: ".zd-time input[type=time] {\n -webkit-appearance: none;\n}\n.zd-time input[type=time]::-webkit-inner-spin-button, .zd-time input[type=time]::-webkit-calendar-picker-indicator {\n display: none;\n -webkit-appearance: none;\n}", map: undefined, media: undefined });
|
58745
59047
|
|
58746
59048
|
};
|
58747
59049
|
/* scoped */
|
@@ -59725,17 +60027,17 @@ let ZdTreeGrid = class ZdTreeGrid extends ZdGrid$1 {
|
|
59725
60027
|
return this.instance.toggleExpand(row, rowIndex);
|
59726
60028
|
}
|
59727
60029
|
orderColumnVisibility() {
|
59728
|
-
const
|
59729
|
-
if (!
|
60030
|
+
const columnsInvisible = this.instance.columns.filter((column) => column.isVisible === false);
|
60031
|
+
if (!columnsInvisible) {
|
59730
60032
|
return;
|
59731
60033
|
}
|
59732
|
-
const
|
60034
|
+
const columnsVisible = this.instance.columns.filter((column) => column.isVisible === true);
|
59733
60035
|
const newOrderColumns = [];
|
59734
|
-
if (
|
59735
|
-
newOrderColumns.push(...
|
60036
|
+
if (columnsVisible) {
|
60037
|
+
newOrderColumns.push(...columnsVisible);
|
59736
60038
|
}
|
59737
|
-
if (
|
59738
|
-
newOrderColumns.push(...
|
60039
|
+
if (columnsInvisible) {
|
60040
|
+
newOrderColumns.push(...columnsInvisible);
|
59739
60041
|
}
|
59740
60042
|
this.instance.columns = newOrderColumns;
|
59741
60043
|
}
|
@@ -59769,12 +60071,9 @@ let ZdTreeGrid = class ZdTreeGrid extends ZdGrid$1 {
|
|
59769
60071
|
return this.scrollData.visibleData;
|
59770
60072
|
}
|
59771
60073
|
getData() {
|
59772
|
-
|
59773
|
-
|
59774
|
-
|
59775
|
-
: this.instance.treeDataStructure.treeData;
|
59776
|
-
}
|
59777
|
-
return this.renderedData;
|
60074
|
+
return this.instance.treeDataStructure.searchHasNoData
|
60075
|
+
? []
|
60076
|
+
: this.instance.treeDataStructure.treeData || this.renderedData;
|
59778
60077
|
}
|
59779
60078
|
onChangeLayout(event, element) {
|
59780
60079
|
if (this.originalChangeLayout) {
|
@@ -59782,6 +60081,9 @@ let ZdTreeGrid = class ZdTreeGrid extends ZdGrid$1 {
|
|
59782
60081
|
}
|
59783
60082
|
this.orderColumnVisibility();
|
59784
60083
|
}
|
60084
|
+
hasChildOnDemand(row) {
|
60085
|
+
return this.instance.treeDataStructure.hasChildOnDemand(row);
|
60086
|
+
}
|
59785
60087
|
};
|
59786
60088
|
__decorate([
|
59787
60089
|
PropWatch({ type: String, default: '' }),
|
@@ -60469,8 +60771,8 @@ var __vue_render__$1 = function () {
|
|
60469
60771
|
headerIndex: headerIndex,
|
60470
60772
|
selectable:
|
60471
60773
|
_vm.instance.selectable,
|
60472
|
-
|
60473
|
-
_vm.
|
60774
|
+
hasChildOnDemand:
|
60775
|
+
_vm.hasChildOnDemand,
|
60474
60776
|
toggleExpand:
|
60475
60777
|
_vm.toggleExpand,
|
60476
60778
|
rowIndex: index,
|
@@ -60517,8 +60819,8 @@ var __vue_render__$1 = function () {
|
|
60517
60819
|
rowIndex: index,
|
60518
60820
|
getActionComponent:
|
60519
60821
|
_vm.getActionComponent,
|
60520
|
-
|
60521
|
-
_vm.
|
60822
|
+
hasChildOnDemand:
|
60823
|
+
_vm.hasChildOnDemand,
|
60522
60824
|
selectable:
|
60523
60825
|
_vm.instance.selectable,
|
60524
60826
|
},
|
@@ -60637,8 +60939,8 @@ __vue_render__$1._withStripped = true;
|
|
60637
60939
|
/* style */
|
60638
60940
|
const __vue_inject_styles__$1 = function (inject) {
|
60639
60941
|
if (!inject) return
|
60640
|
-
inject("data-v-7742283a_0", { source: ".zd-grid {\n outline: none;\n display: flex;\n flex-direction: column;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n flex: 0 0 auto;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-toolbar .zd-search {\n max-width: 200px;\n}\n.zd-grid .v-data-table__wrapper {\n flex: 1 1 auto;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-center .zd-table-header-cell {\n justify-content: center;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: var(--spacing-4) 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n flex: 0 0 auto;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
60641
|
-
,inject("data-v-
|
60942
|
+
inject("data-v-259fcf26_0", { source: ".zd-grid {\n outline: none;\n display: flex;\n flex-direction: column;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n flex: 0 0 auto;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-toolbar .zd-search {\n max-width: 200px;\n}\n.zd-grid .v-data-table__wrapper {\n flex: 1 1 auto;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-center .zd-table-header-cell {\n justify-content: center;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: var(--spacing-4) 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n flex: 0 0 auto;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
60943
|
+
,inject("data-v-259fcf26_1", { source: ".zd-tree-grid .zd-table-cell-text-first {\n display: inline-flex;\n width: 100%;\n}\n.zd-tree-grid.theme--light tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-tree-grid.theme--dark tbody td.zd-table-cell {\n color: #fff;\n}\n.zd-tree-grid tbody td.zd-table-cell.first {\n padding-left: 5px !important;\n}\n.zd-tree-grid tbody td.zd-table-cell .zd-table-cell-text .search-result {\n background: var(--v-grey-lighten4);\n}\n.zd-tree-grid .zd-tree-grid-expand {\n text-align: end;\n vertical-align: baseline;\n height: 10px;\n display: inline-block;\n}\n.zd-tree-grid .zd-tree-grid-expand.level1 {\n width: 24px !important;\n}\n.zd-tree-grid .zd-tree-grid-expand-action {\n height: 100%;\n display: inline-grid;\n justify-content: end;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon {\n transition: transform 0.3s ease;\n -webkit-transition: transform 0.3s ease;\n font-size: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon::after {\n content: none;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon.opened {\n transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n}\n.zd-tree-grid .zd-tree-grid-expand.level1 {\n width: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level2 {\n width: 40px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level3 {\n width: 60px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level4 {\n width: 80px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level5 {\n width: 100px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level6 {\n width: 120px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level7 {\n width: 140px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level8 {\n width: 160px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level9 {\n width: 180px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level10 {\n width: 200px;\n}", map: undefined, media: undefined });
|
60642
60944
|
|
60643
60945
|
};
|
60644
60946
|
/* scoped */
|
@@ -61593,9 +61895,8 @@ var __vue_render__ = function () {
|
|
61593
61895
|
selectable:
|
61594
61896
|
_vm.instance
|
61595
61897
|
.selectable,
|
61596
|
-
|
61597
|
-
_vm.
|
61598
|
-
.fieldHasChild,
|
61898
|
+
hasChildOnDemand:
|
61899
|
+
_vm.hasChildOnDemand,
|
61599
61900
|
toggleExpand:
|
61600
61901
|
_vm.toggleExpand,
|
61601
61902
|
rowIndex: index,
|
@@ -61650,8 +61951,8 @@ var __vue_render__ = function () {
|
|
61650
61951
|
rowIndex: index,
|
61651
61952
|
getActionComponent:
|
61652
61953
|
_vm.getActionComponent,
|
61653
|
-
|
61654
|
-
_vm.
|
61954
|
+
hasChildOnDemand:
|
61955
|
+
_vm.hasChildOnDemand,
|
61655
61956
|
selectable:
|
61656
61957
|
_vm.instance.selectable,
|
61657
61958
|
},
|
@@ -61770,8 +62071,8 @@ __vue_render__._withStripped = true;
|
|
61770
62071
|
/* style */
|
61771
62072
|
const __vue_inject_styles__ = function (inject) {
|
61772
62073
|
if (!inject) return
|
61773
|
-
inject("data-v-171113f1_0", { source: ".zd-grid {\n outline: none;\n display: flex;\n flex-direction: column;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n flex: 0 0 auto;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-toolbar .zd-search {\n max-width: 200px;\n}\n.zd-grid .v-data-table__wrapper {\n flex: 1 1 auto;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-center .zd-table-header-cell {\n justify-content: center;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: var(--spacing-4) 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n flex: 0 0 auto;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
61774
|
-
,inject("data-v-
|
62074
|
+
inject("data-v-897ef0f6_0", { source: ".zd-grid {\n outline: none;\n display: flex;\n flex-direction: column;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n flex: 0 0 auto;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-toolbar .zd-search {\n max-width: 200px;\n}\n.zd-grid .v-data-table__wrapper {\n flex: 1 1 auto;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-center .zd-table-header-cell {\n justify-content: center;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: var(--spacing-4) 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n flex: 0 0 auto;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
62075
|
+
,inject("data-v-897ef0f6_1", { source: ".zd-tree-grid-editable table tbody tr td.zd-table-cell .zd-table-cell-text-first {\n display: inline-flex;\n width: 100%;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable.text-right .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable.text-right .zd-table-cell-inline-edit {\n justify-content: flex-end;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable.text-center .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable.text-center .zd-table-cell-inline-edit {\n justify-content: center;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit {\n display: flex;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon {\n display: flex;\n font-size: 18px;\n margin-right: var(--spacing-1);\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-tree-grid-editable-cell-wrapper, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-tree-grid-editable-cell-wrapper {\n display: flex;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n width: 100%;\n padding: 0 0.5rem;\n position: relative;\n display: block;\n height: 1.25rem;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n content: \"\";\n position: absolute;\n width: 1px;\n height: var(--spacing-1);\n bottom: 0;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before {\n left: 0;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n right: 0;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable {\n cursor: pointer;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n border-bottom: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n border-left: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand {\n display: inline-block;\n text-align: end;\n vertical-align: baseline;\n height: 10px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon {\n transition: transform 0.3s ease;\n -webkit-transition: transform 0.3s ease;\n font-size: 20px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon::after {\n content: none;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon.opened {\n transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level1 {\n width: 23px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level2 {\n width: 46px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level3 {\n width: 69px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level4 {\n width: 92px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level5 {\n width: 115px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level6 {\n width: 138px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level7 {\n width: 161px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level8 {\n width: 184px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level9 {\n width: 207px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level10 {\n width: 230px;\n}\n.zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot {\n height: 22px;\n}\n.zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot input, .zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot .v-select__selections {\n max-height: 22px;\n}", map: undefined, media: undefined });
|
61775
62076
|
|
61776
62077
|
};
|
61777
62078
|
/* scoped */
|
@@ -62219,6 +62520,8 @@ const Zeedhi = {
|
|
62219
62520
|
VToolbar,
|
62220
62521
|
VToolbarItems,
|
62221
62522
|
VSimpleCheckbox,
|
62523
|
+
VSlideGroup,
|
62524
|
+
VSlideItem,
|
62222
62525
|
},
|
62223
62526
|
directives: {
|
62224
62527
|
Touch: directives.Touch,
|