@zeedhi/vuetify 1.53.0 → 1.54.0
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-vuetify.esm.js +203 -122
- package/dist/zd-vuetify.umd.js +203 -122
- package/package.json +2 -2
- package/types/components/zd-grid/ZdGridEditable.d.ts +3 -2
- package/types/components/zd-time/ZdTime.d.ts +5 -3
- package/types/components/zd-tree/ZdTree.d.ts +1 -0
- package/types/components/zd-tree/ZdTreeCheckbox.d.ts +1 -0
- package/types/components/zd-tree-grid/ZdTreeGridEditable.d.ts +3 -2
package/dist/zd-vuetify.umd.js
CHANGED
@@ -2220,7 +2220,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
2220
2220
|
}
|
2221
2221
|
Vuetify.install = install$1;
|
2222
2222
|
Vuetify.installed = false;
|
2223
|
-
Vuetify.version = "2.6.
|
2223
|
+
Vuetify.version = "2.6.7";
|
2224
2224
|
Vuetify.config = {
|
2225
2225
|
silent: false
|
2226
2226
|
};
|
@@ -7538,9 +7538,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7538
7538
|
};
|
7539
7539
|
data[this.to ? 'nativeOn' : 'on'] = { ...data[this.to ? 'nativeOn' : 'on'],
|
7540
7540
|
keydown: e => {
|
7541
|
-
|
7542
|
-
|
7543
|
-
|
7541
|
+
if (!this.disabled) {
|
7542
|
+
/* istanbul ignore else */
|
7543
|
+
if (e.keyCode === keyCodes.enter) this.click(e);
|
7544
|
+
this.$emit('keydown', e);
|
7545
|
+
}
|
7544
7546
|
}
|
7545
7547
|
};
|
7546
7548
|
if (this.inactive) tag = 'div';
|
@@ -9981,7 +9983,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
9981
9983
|
},
|
9982
9984
|
|
9983
9985
|
computedCounterValue() {
|
9984
|
-
|
9986
|
+
var _this$getText;
|
9987
|
+
|
9988
|
+
const value = this.multiple ? this.selectedItems : ((_this$getText = this.getText(this.selectedItems[0])) != null ? _this$getText : '').toString();
|
9985
9989
|
|
9986
9990
|
if (typeof this.counterValue === 'function') {
|
9987
9991
|
return this.counterValue(value);
|
@@ -10458,7 +10462,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
10458
10462
|
this.keyboardLookupPrefix += e.key.toLowerCase();
|
10459
10463
|
this.keyboardLookupLastTime = now;
|
10460
10464
|
const index = this.allItems.findIndex(item => {
|
10461
|
-
|
10465
|
+
var _this$getText2;
|
10466
|
+
|
10467
|
+
const text = ((_this$getText2 = this.getText(item)) != null ? _this$getText2 : '').toString();
|
10462
10468
|
return text.toLowerCase().startsWith(this.keyboardLookupPrefix);
|
10463
10469
|
});
|
10464
10470
|
const item = this.allItems[index];
|
@@ -11975,9 +11981,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11975
11981
|
|
11976
11982
|
this.$nextTick(() => {
|
11977
11983
|
this.$nextTick(() => {
|
11978
|
-
|
11984
|
+
var _this$$refs$dialog;
|
11985
|
+
|
11986
|
+
if (!((_this$$refs$dialog = this.$refs.dialog) != null && _this$$refs$dialog.contains(document.activeElement))) {
|
11987
|
+
var _this$$refs$dialog2;
|
11988
|
+
|
11979
11989
|
this.previousActiveElement = document.activeElement;
|
11980
|
-
this.$refs.
|
11990
|
+
(_this$$refs$dialog2 = this.$refs.dialog) == null ? void 0 : _this$$refs$dialog2.focus();
|
11981
11991
|
}
|
11982
11992
|
|
11983
11993
|
this.bind();
|
@@ -12023,14 +12033,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
12023
12033
|
if (!e || !this.retainFocus) return;
|
12024
12034
|
const target = e.target;
|
12025
12035
|
|
12026
|
-
if (!!target && // It isn't the document or the dialog body
|
12027
|
-
![document, this.$refs.
|
12028
|
-
!this.$refs.
|
12036
|
+
if (!!target && this.$refs.dialog && // It isn't the document or the dialog body
|
12037
|
+
![document, this.$refs.dialog].includes(target) && // It isn't inside the dialog body
|
12038
|
+
!this.$refs.dialog.contains(target) && // We're the topmost dialog
|
12029
12039
|
this.activeZIndex >= this.getMaxZIndex() && // It isn't inside a dependent element (like a menu)
|
12030
12040
|
!this.getOpenDependentElements().some(el => el.contains(target)) // So we must have focused something outside the dialog and its children
|
12031
12041
|
) {
|
12032
12042
|
// Find and focus the first available element inside the dialog
|
12033
|
-
const focusable = this.$refs.
|
12043
|
+
const focusable = this.$refs.dialog.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])');
|
12034
12044
|
const el = [...focusable].find(el => !el.hasAttribute('disabled'));
|
12035
12045
|
el && el.focus();
|
12036
12046
|
}
|
@@ -12047,7 +12057,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
12047
12057
|
class: this.contentClasses,
|
12048
12058
|
attrs: {
|
12049
12059
|
role: 'dialog',
|
12050
|
-
tabindex: this.isActive ? 0 : undefined,
|
12051
12060
|
'aria-modal': this.hideOverlay ? undefined : 'true',
|
12052
12061
|
...this.getScopeIdAttrs()
|
12053
12062
|
},
|
@@ -12076,6 +12085,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
12076
12085
|
genInnerContent() {
|
12077
12086
|
const data = {
|
12078
12087
|
class: this.classes,
|
12088
|
+
attrs: {
|
12089
|
+
tabindex: this.isActive ? 0 : undefined
|
12090
|
+
},
|
12079
12091
|
ref: 'dialog',
|
12080
12092
|
directives: [{
|
12081
12093
|
name: 'click-outside',
|
@@ -16444,7 +16456,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
16444
16456
|
}
|
16445
16457
|
},
|
16446
16458
|
data: () => ({
|
16447
|
-
internalItemsLength: 0,
|
16448
16459
|
isOverflowing: false,
|
16449
16460
|
resizeTimeout: 0,
|
16450
16461
|
startX: 0,
|
@@ -16535,13 +16546,30 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
16535
16546
|
|
16536
16547
|
},
|
16537
16548
|
|
16538
|
-
|
16539
|
-
|
16540
|
-
|
16549
|
+
mounted() {
|
16550
|
+
if (typeof ResizeObserver !== 'undefined') {
|
16551
|
+
const obs = new ResizeObserver(() => {
|
16552
|
+
this.onResize();
|
16553
|
+
});
|
16554
|
+
obs.observe(this.$el);
|
16555
|
+
obs.observe(this.$refs.content);
|
16556
|
+
this.$on('hook:destroyed', () => {
|
16557
|
+
obs.disconnect();
|
16558
|
+
});
|
16559
|
+
} else {
|
16560
|
+
let itemsLength = 0;
|
16561
|
+
this.$on('hook:beforeUpdate', () => {
|
16562
|
+
var _this$$refs$content;
|
16541
16563
|
|
16542
|
-
|
16543
|
-
|
16544
|
-
|
16564
|
+
itemsLength = (((_this$$refs$content = this.$refs.content) == null ? void 0 : _this$$refs$content.children) || []).length;
|
16565
|
+
});
|
16566
|
+
this.$on('hook:updated', () => {
|
16567
|
+
var _this$$refs$content2;
|
16568
|
+
|
16569
|
+
if (itemsLength === (((_this$$refs$content2 = this.$refs.content) == null ? void 0 : _this$$refs$content2.children) || []).length) return;
|
16570
|
+
this.setWidths();
|
16571
|
+
});
|
16572
|
+
}
|
16545
16573
|
},
|
16546
16574
|
|
16547
16575
|
methods: {
|
@@ -24392,7 +24420,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24392
24420
|
plain: Boolean
|
24393
24421
|
},
|
24394
24422
|
data: () => ({
|
24395
|
-
badInput: false,
|
24396
24423
|
initialValue: null,
|
24397
24424
|
isBooted: false,
|
24398
24425
|
otp: []
|
@@ -24407,10 +24434,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24407
24434
|
...VTextField.options.computed.classes.call(this),
|
24408
24435
|
'v-otp-input--plain': this.plain
|
24409
24436
|
};
|
24410
|
-
},
|
24411
|
-
|
24412
|
-
isDirty() {
|
24413
|
-
return VInput.options.computed.isDirty.call(this) || this.badInput;
|
24414
24437
|
}
|
24415
24438
|
|
24416
24439
|
},
|
@@ -24512,18 +24535,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24512
24535
|
min: this.type === 'number' ? 0 : null
|
24513
24536
|
},
|
24514
24537
|
attrs: { ...this.attrs$,
|
24538
|
+
autocomplete: 'one-time-code',
|
24515
24539
|
disabled: this.isDisabled,
|
24516
24540
|
readonly: this.isReadonly,
|
24517
24541
|
type: this.type,
|
24518
24542
|
id: `${this.computedId}--${otpIdx}`,
|
24519
|
-
class: `otp-field-box--${otpIdx}
|
24520
|
-
maxlength: 1
|
24543
|
+
class: `otp-field-box--${otpIdx}`
|
24521
24544
|
},
|
24522
24545
|
on: Object.assign(listeners, {
|
24523
24546
|
blur: this.onBlur,
|
24524
24547
|
input: e => this.onInput(e, otpIdx),
|
24525
24548
|
focus: e => this.onFocus(e, otpIdx),
|
24526
|
-
paste: e => this.onPaste(e, otpIdx),
|
24527
24549
|
keydown: this.onKeyDown,
|
24528
24550
|
keyup: e => this.onKeyUp(e, otpIdx)
|
24529
24551
|
}),
|
@@ -24567,22 +24589,31 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24567
24589
|
}
|
24568
24590
|
},
|
24569
24591
|
|
24570
|
-
onInput(e,
|
24592
|
+
onInput(e, index) {
|
24593
|
+
const maxCursor = +this.length - 1;
|
24571
24594
|
const target = e.target;
|
24572
24595
|
const value = target.value;
|
24573
|
-
|
24574
|
-
|
24575
|
-
});
|
24576
|
-
this.badInput = target.validity && target.validity.badInput;
|
24577
|
-
const nextIndex = otpIdx + 1;
|
24596
|
+
const inputDataArray = (value == null ? void 0 : value.split('')) || [];
|
24597
|
+
const newOtp = [...this.otp];
|
24578
24598
|
|
24579
|
-
|
24580
|
-
|
24581
|
-
|
24582
|
-
|
24583
|
-
|
24584
|
-
|
24585
|
-
|
24599
|
+
for (let i = 0; i < inputDataArray.length; i++) {
|
24600
|
+
const appIdx = index + i;
|
24601
|
+
if (appIdx > maxCursor) break;
|
24602
|
+
newOtp[appIdx] = inputDataArray[i].toString();
|
24603
|
+
}
|
24604
|
+
|
24605
|
+
if (!inputDataArray.length) {
|
24606
|
+
newOtp.splice(index, 1);
|
24607
|
+
}
|
24608
|
+
|
24609
|
+
this.otp = newOtp;
|
24610
|
+
this.internalValue = this.otp.join('');
|
24611
|
+
|
24612
|
+
if (index + inputDataArray.length >= +this.length) {
|
24613
|
+
this.onCompleted();
|
24614
|
+
this.clearFocus(index);
|
24615
|
+
} else if (inputDataArray.length) {
|
24616
|
+
this.changeFocus(index + inputDataArray.length);
|
24586
24617
|
}
|
24587
24618
|
},
|
24588
24619
|
|
@@ -24614,39 +24645,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24614
24645
|
VInput.options.methods.onMouseUp.call(this, e);
|
24615
24646
|
},
|
24616
24647
|
|
24617
|
-
onPaste(event, index) {
|
24618
|
-
var _event$clipboardData;
|
24619
|
-
|
24620
|
-
const maxCursor = +this.length - 1;
|
24621
|
-
const inputVal = event == null ? void 0 : (_event$clipboardData = event.clipboardData) == null ? void 0 : _event$clipboardData.getData('Text');
|
24622
|
-
const inputDataArray = (inputVal == null ? void 0 : inputVal.split('')) || [];
|
24623
|
-
event.preventDefault();
|
24624
|
-
const newOtp = [...this.otp];
|
24625
|
-
|
24626
|
-
for (let i = 0; i < inputDataArray.length; i++) {
|
24627
|
-
const appIdx = index + i;
|
24628
|
-
if (appIdx > maxCursor) break;
|
24629
|
-
newOtp[appIdx] = inputDataArray[i].toString();
|
24630
|
-
}
|
24631
|
-
|
24632
|
-
this.otp = newOtp;
|
24633
|
-
this.internalValue = this.otp.join('');
|
24634
|
-
const targetFocus = Math.min(index + inputDataArray.length, maxCursor);
|
24635
|
-
this.changeFocus(targetFocus);
|
24636
|
-
|
24637
|
-
if (newOtp.length === +this.length) {
|
24638
|
-
this.onCompleted();
|
24639
|
-
this.clearFocus(targetFocus);
|
24640
|
-
}
|
24641
|
-
},
|
24642
|
-
|
24643
|
-
applyValue(index, inputVal, next) {
|
24644
|
-
const newOtp = [...this.otp];
|
24645
|
-
newOtp[index] = inputVal;
|
24646
|
-
this.otp = newOtp;
|
24647
|
-
next();
|
24648
|
-
},
|
24649
|
-
|
24650
24648
|
changeFocus(index) {
|
24651
24649
|
this.onFocus(undefined, index || 0);
|
24652
24650
|
},
|
@@ -27537,6 +27535,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
27537
27535
|
},
|
27538
27536
|
|
27539
27537
|
mounted() {
|
27538
|
+
if (typeof ResizeObserver !== 'undefined') {
|
27539
|
+
const obs = new ResizeObserver(() => {
|
27540
|
+
this.onResize();
|
27541
|
+
});
|
27542
|
+
obs.observe(this.$el);
|
27543
|
+
this.$on('hook:destroyed', () => {
|
27544
|
+
obs.disconnect();
|
27545
|
+
});
|
27546
|
+
}
|
27547
|
+
|
27540
27548
|
this.$nextTick(() => {
|
27541
27549
|
window.setTimeout(this.callSlider, 30);
|
27542
27550
|
});
|
@@ -36836,7 +36844,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
36836
36844
|
exports.default = Vuetify;
|
36837
36845
|
Vuetify.install = install_1.install;
|
36838
36846
|
Vuetify.installed = false;
|
36839
|
-
Vuetify.version = "2.6.
|
36847
|
+
Vuetify.version = "2.6.7";
|
36840
36848
|
Vuetify.config = {
|
36841
36849
|
silent: false
|
36842
36850
|
};
|
@@ -43013,6 +43021,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
43013
43021
|
return _c(
|
43014
43022
|
"v-dialog",
|
43015
43023
|
{
|
43024
|
+
key: "" + _vm.dialog.name + _vm.dialog.isVisible,
|
43016
43025
|
attrs: {
|
43017
43026
|
id: _vm.dialog.name,
|
43018
43027
|
"max-width": _vm.dialog.maxWidth,
|
@@ -43107,7 +43116,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
43107
43116
|
/* style */
|
43108
43117
|
const __vue_inject_styles__$12 = function (inject) {
|
43109
43118
|
if (!inject) return
|
43110
|
-
inject("data-v-
|
43119
|
+
inject("data-v-308734a8_0", { source: ".v-dialog > .zd-dialog > .zd-dialog-title {\n padding: var(--spacing-4);\n padding-bottom: 0;\n color: var(--zd-font-color);\n font-size: var(--zd-font-title-size);\n font-weight: var(--zd-font-title-weight);\n}\n.v-dialog > .zd-dialog > .zd-dialog-title .zd-dialog-icon {\n width: var(--icon-size);\n height: var(--icon-size);\n margin-right: var(--spacing-2);\n}\n.v-dialog > .zd-dialog .zd-dialog-text {\n padding: 14px var(--spacing-4) var(--spacing-4) var(--spacing-4);\n color: var(--zd-font-color);\n font-size: var(--zd-font-body3-size);\n font-weight: var(--zd-font-body3-weight);\n}\n.v-dialog > .zd-dialog .zd-dialog-buttons {\n padding: var(--spacing-4);\n padding-top: 0;\n}\n.v-dialog > .zd-dialog .zd-dialog-buttons .zd-button {\n margin-left: var(--spacing-2);\n}", map: undefined, media: undefined });
|
43111
43120
|
|
43112
43121
|
};
|
43113
43122
|
/* scoped */
|
@@ -45976,17 +45985,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
45976
45985
|
}
|
45977
45986
|
return this.instance.getEditableComponent(column, row, cellProps, events);
|
45978
45987
|
}
|
45979
|
-
cellClick(row, column, event) {
|
45988
|
+
cellClick(row, column, event, canEdit = true) {
|
45980
45989
|
if (!this.instance.doubleClickEdit || !column.editable) {
|
45981
|
-
this.callCellClick(row, column, event);
|
45990
|
+
this.callCellClick(row, column, event, canEdit);
|
45982
45991
|
return;
|
45983
45992
|
}
|
45984
|
-
this.$doubleClick(() => this.instance.cellClickEvent(row, column, event, this.$el), () => this.callCellClick(row, column, event), event);
|
45993
|
+
this.$doubleClick(() => this.instance.cellClickEvent(row, column, event, this.$el), () => this.callCellClick(row, column, event, canEdit), event);
|
45985
45994
|
}
|
45986
|
-
callCellClick(row, column, event) {
|
45995
|
+
callCellClick(row, column, event, canEdit = true) {
|
45987
45996
|
const key = row[this.instance.datasource.uniqueKey];
|
45988
45997
|
this.inputToFocus = `column-${column.name}-${key}`;
|
45989
|
-
this.instance.cellClick(row, column, event, this.$el);
|
45998
|
+
this.instance.cellClick(row, column, event, this.$el, canEdit);
|
45990
45999
|
}
|
45991
46000
|
onMountedEvent({ element, component }) {
|
45992
46001
|
const input = element.getElementsByTagName('input')[0];
|
@@ -46088,6 +46097,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
46088
46097
|
PropWatch({ type: [String, Boolean], default: false }),
|
46089
46098
|
__metadata("design:type", Object)
|
46090
46099
|
], ZdGridEditable.prototype, "doubleClickEdit", void 0);
|
46100
|
+
__decorate([
|
46101
|
+
PropWatch({ type: [String, Function], default: undefined }),
|
46102
|
+
__metadata("design:type", Object)
|
46103
|
+
], ZdGridEditable.prototype, "canEditRow", void 0);
|
46091
46104
|
ZdGridEditable = __decorate([
|
46092
46105
|
Component__default["default"]
|
46093
46106
|
], ZdGridEditable);
|
@@ -46137,6 +46150,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
46137
46150
|
"disable-sort": "",
|
46138
46151
|
"disable-filtering": "",
|
46139
46152
|
tabindex: "0",
|
46153
|
+
set: (_vm.canEditRowValues = {}),
|
46140
46154
|
},
|
46141
46155
|
on: {
|
46142
46156
|
"current-items": function ($event) {
|
@@ -46568,6 +46582,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
46568
46582
|
active: isSelected,
|
46569
46583
|
current: _vm.isCurrentRow(item),
|
46570
46584
|
},
|
46585
|
+
attrs: {
|
46586
|
+
set: (_vm.canEditRowValues[_vm.rowKey(item)] =
|
46587
|
+
_vm.instance.callCanEditRow(item)),
|
46588
|
+
},
|
46571
46589
|
on: {
|
46572
46590
|
click: function ($event) {
|
46573
46591
|
return _vm.rowClick(item, $event)
|
@@ -46643,7 +46661,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
46643
46661
|
{},
|
46644
46662
|
column,
|
46645
46663
|
cellProps
|
46646
|
-
).editable
|
46664
|
+
).editable &&
|
46665
|
+
_vm.canEditRowValues[
|
46666
|
+
_vm.rowKey(item)
|
46667
|
+
],
|
46647
46668
|
},
|
46648
46669
|
],
|
46649
46670
|
style: [
|
@@ -46654,11 +46675,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
46654
46675
|
],
|
46655
46676
|
on: {
|
46656
46677
|
click: function ($event) {
|
46657
|
-
|
46678
|
+
_vm.cellClick(
|
46658
46679
|
item,
|
46659
46680
|
column,
|
46660
|
-
$event
|
46661
|
-
|
46681
|
+
$event,
|
46682
|
+
_vm.canEditRowValues[
|
46683
|
+
_vm.rowKey(item)
|
46684
|
+
]
|
46685
|
+
);
|
46662
46686
|
},
|
46663
46687
|
},
|
46664
46688
|
},
|
@@ -46675,7 +46699,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
46675
46699
|
: _vm._e(),
|
46676
46700
|
_vm._v(" "),
|
46677
46701
|
Object.assign({}, column, cellProps)
|
46678
|
-
.editable &&
|
46702
|
+
.editable &&
|
46703
|
+
_vm.canEditRowValues[
|
46704
|
+
_vm.rowKey(item)
|
46705
|
+
] &&
|
46706
|
+
_vm.instance.editing
|
46679
46707
|
? _c(
|
46680
46708
|
"span",
|
46681
46709
|
{
|
@@ -47044,8 +47072,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
47044
47072
|
/* style */
|
47045
47073
|
const __vue_inject_styles__$V = function (inject) {
|
47046
47074
|
if (!inject) return
|
47047
|
-
inject("data-v-
|
47048
|
-
,inject("data-v-
|
47075
|
+
inject("data-v-2729c3cf_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\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}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\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 .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-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: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: 24px 0 0 0;\n display: flex;\n align-items: center;\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--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
47076
|
+
,inject("data-v-2729c3cf_1", { source: ".zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable.text-right .zd-table-cell-inline-edit, .zd-grid 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-grid table tbody tr td.zd-table-cell.zd-table-column-editable.text-center .zd-table-cell-inline-edit, .zd-grid 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-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit {\n display: flex;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon, .zd-grid 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-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n padding: 0 8px;\n position: relative;\n display: block;\n height: 20px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-grid 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: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before {\n left: 0;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n right: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable {\n cursor: pointer;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable {\n border-bottom: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:after {\n border-left: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot {\n height: 22px;\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot input, .zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot .v-select__selections {\n height: 22px;\n max-height: 22px;\n}", map: undefined, media: undefined });
|
47049
47077
|
|
47050
47078
|
};
|
47051
47079
|
/* scoped */
|
@@ -48698,6 +48726,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48698
48726
|
this.instance.selectInput(value, undefined, this.$el);
|
48699
48727
|
}
|
48700
48728
|
selectBlur(event) {
|
48729
|
+
if (this.$el.contains(document.activeElement))
|
48730
|
+
return;
|
48701
48731
|
this.blur(event);
|
48702
48732
|
}
|
48703
48733
|
selectFocus(event) {
|
@@ -53058,6 +53088,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
53058
53088
|
}
|
53059
53089
|
}
|
53060
53090
|
selectBlur(event) {
|
53091
|
+
if (this.$el.contains(document.activeElement))
|
53092
|
+
return;
|
53061
53093
|
if (this.rows !== 1) {
|
53062
53094
|
this.rows = 1;
|
53063
53095
|
this.calcDisplay();
|
@@ -56043,7 +56075,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56043
56075
|
}
|
56044
56076
|
onChangeTimePicker() {
|
56045
56077
|
const textInput = this.$refs.instance.$children[0];
|
56046
|
-
textInput.validate(false
|
56078
|
+
textInput.validate(false);
|
56047
56079
|
}
|
56048
56080
|
mounted() {
|
56049
56081
|
const textInput = this.$refs.instance.$children[0].$el.getElementsByTagName('input')[0];
|
@@ -56106,15 +56138,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56106
56138
|
}
|
56107
56139
|
return formatted;
|
56108
56140
|
}
|
56109
|
-
set pickerValue(value) {
|
56110
|
-
this.instance.value = this.convert(value, false);
|
56111
|
-
}
|
56112
|
-
get pickerValue() {
|
56113
|
-
if (!this.instance.isFullyValid())
|
56114
|
-
return null;
|
56115
|
-
const { value } = this.instance;
|
56116
|
-
return this.convert(value);
|
56117
|
-
}
|
56118
56141
|
get pickerMinTime() {
|
56119
56142
|
return this.convert(this.instance.minTime);
|
56120
56143
|
}
|
@@ -56124,6 +56147,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56124
56147
|
onPickerMousedown(event) {
|
56125
56148
|
event.preventDefault();
|
56126
56149
|
}
|
56150
|
+
onSelectTime(time, event) {
|
56151
|
+
this.instance.selectTime(time, event, this.$el);
|
56152
|
+
}
|
56127
56153
|
pickerMounted() {
|
56128
56154
|
const picker = this.$refs.picker.$el;
|
56129
56155
|
picker.addEventListener('mousedown', this.onPickerMousedown);
|
@@ -56132,6 +56158,27 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56132
56158
|
const picker = this.$refs.picker.$el;
|
56133
56159
|
picker.removeEventListener('mousedown', this.onPickerMousedown);
|
56134
56160
|
}
|
56161
|
+
toMask(format) {
|
56162
|
+
const newMask = format.replace(/[B-Zb-z]/gi, '#').split('').map((char) => {
|
56163
|
+
if (char === 'A' || char === 'a') {
|
56164
|
+
return /[AapP]/;
|
56165
|
+
}
|
56166
|
+
if (char === '#') {
|
56167
|
+
return /\d/;
|
56168
|
+
}
|
56169
|
+
return char;
|
56170
|
+
});
|
56171
|
+
if (format.includes('a') || format.includes('A')) {
|
56172
|
+
newMask.push(/[mM]/);
|
56173
|
+
}
|
56174
|
+
return newMask;
|
56175
|
+
}
|
56176
|
+
get getTimeMask() {
|
56177
|
+
if (this.instance.isFocused) {
|
56178
|
+
return this.toMask(this.instance.inputFormat || this.instance.displayFormat || '');
|
56179
|
+
}
|
56180
|
+
return '';
|
56181
|
+
}
|
56135
56182
|
};
|
56136
56183
|
__decorate([
|
56137
56184
|
PropWatch({ type: [Array, String], default: undefined }),
|
@@ -56182,7 +56229,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56182
56229
|
__metadata("design:type", Boolean)
|
56183
56230
|
], ZdTime.prototype, "useSeconds", void 0);
|
56184
56231
|
__decorate([
|
56185
|
-
PropWatch({ type:
|
56232
|
+
PropWatch({ type: String, default: undefined }),
|
56186
56233
|
__metadata("design:type", Object)
|
56187
56234
|
], ZdTime.prototype, "mask", void 0);
|
56188
56235
|
__decorate([
|
@@ -56190,7 +56237,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56190
56237
|
__metadata("design:type", String)
|
56191
56238
|
], ZdTime.prototype, "valueFormat", void 0);
|
56192
56239
|
__decorate([
|
56193
|
-
PropWatch({ type:
|
56240
|
+
PropWatch({ type: String }),
|
56241
|
+
__metadata("design:type", Object)
|
56242
|
+
], ZdTime.prototype, "inputFormat", void 0);
|
56243
|
+
__decorate([
|
56244
|
+
PropWatch({ type: String }),
|
56194
56245
|
__metadata("design:type", String)
|
56195
56246
|
], ZdTime.prototype, "displayFormat", void 0);
|
56196
56247
|
ZdTime = __decorate([
|
@@ -56246,6 +56297,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56246
56297
|
ref: "instance",
|
56247
56298
|
attrs: {
|
56248
56299
|
name: _vm.instance.name + "_text-input",
|
56300
|
+
mask: _vm.getTimeMask,
|
56249
56301
|
"instance-object": _vm.instance,
|
56250
56302
|
events: _vm.getEvents(on),
|
56251
56303
|
autofill: false,
|
@@ -56258,7 +56310,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56258
56310
|
],
|
56259
56311
|
null,
|
56260
56312
|
false,
|
56261
|
-
|
56313
|
+
229268027
|
56262
56314
|
),
|
56263
56315
|
model: {
|
56264
56316
|
value: _vm.instance.showTimePicker,
|
@@ -56292,21 +56344,21 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56292
56344
|
name: _vm.instance.name,
|
56293
56345
|
dark: _vm.instance.dark,
|
56294
56346
|
light: _vm.instance.light,
|
56295
|
-
value: _vm.pickerValue,
|
56296
56347
|
},
|
56297
56348
|
on: {
|
56298
56349
|
"hook:mounted": _vm.pickerMounted,
|
56299
56350
|
"hook:destroyed": _vm.pickerDestroyed,
|
56351
|
+
"click:time": _vm.onSelectTime,
|
56300
56352
|
change: function ($event) {
|
56301
56353
|
return _vm.onChangeTimePicker()
|
56302
56354
|
},
|
56303
56355
|
},
|
56304
56356
|
model: {
|
56305
|
-
value: _vm.
|
56357
|
+
value: _vm.instance.isoValue,
|
56306
56358
|
callback: function ($$v) {
|
56307
|
-
_vm.
|
56359
|
+
_vm.$set(_vm.instance, "isoValue", $$v);
|
56308
56360
|
},
|
56309
|
-
expression: "
|
56361
|
+
expression: "instance.isoValue",
|
56310
56362
|
},
|
56311
56363
|
},
|
56312
56364
|
"v-time-picker",
|
@@ -56332,7 +56384,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56332
56384
|
name: _vm.instance.name + "_text-input",
|
56333
56385
|
"instance-object": _vm.instance,
|
56334
56386
|
autofill: false,
|
56335
|
-
type: "
|
56387
|
+
type: "text",
|
56336
56388
|
mask: "",
|
56337
56389
|
},
|
56338
56390
|
}),
|
@@ -56347,7 +56399,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56347
56399
|
/* style */
|
56348
56400
|
const __vue_inject_styles__$6 = function (inject) {
|
56349
56401
|
if (!inject) return
|
56350
|
-
inject("data-v-
|
56402
|
+
inject("data-v-5b84b696_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 });
|
56351
56403
|
|
56352
56404
|
};
|
56353
56405
|
/* scoped */
|
@@ -56593,6 +56645,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56593
56645
|
vuePropertyDecorator.Prop({ type: [String], default: 'checked' }),
|
56594
56646
|
__metadata("design:type", String)
|
56595
56647
|
], ZdTreeCheckbox.prototype, "checkedField", void 0);
|
56648
|
+
__decorate([
|
56649
|
+
vuePropertyDecorator.Prop({ type: [Boolean], default: false }),
|
56650
|
+
__metadata("design:type", Boolean)
|
56651
|
+
], ZdTreeCheckbox.prototype, "disabled", void 0);
|
56596
56652
|
__decorate([
|
56597
56653
|
vuePropertyDecorator.Watch('childrenCheck'),
|
56598
56654
|
__metadata("design:type", Function),
|
@@ -56616,6 +56672,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56616
56672
|
staticClass: "zd-tree-checkbox",
|
56617
56673
|
attrs: {
|
56618
56674
|
"hide-details": "",
|
56675
|
+
disabled: _vm.disabled,
|
56619
56676
|
ripple: false,
|
56620
56677
|
"on-icon": _vm.$getIcon("checkboxOn"),
|
56621
56678
|
"off-icon": _vm.$getIcon("checkboxOff"),
|
@@ -56625,7 +56682,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56625
56682
|
},
|
56626
56683
|
on: {
|
56627
56684
|
click: function ($event) {
|
56628
|
-
|
56685
|
+
_vm.disabled || _vm.click($event);
|
56629
56686
|
},
|
56630
56687
|
},
|
56631
56688
|
model: {
|
@@ -56643,7 +56700,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56643
56700
|
/* style */
|
56644
56701
|
const __vue_inject_styles__$4 = function (inject) {
|
56645
56702
|
if (!inject) return
|
56646
|
-
inject("data-v-
|
56703
|
+
inject("data-v-311cf5ac_0", { source: ".zd-tree-checkbox {\n display: inline-block;\n top: 50%;\n transform: translate(0, -50%);\n}\n.zd-tree-checkbox > .v-input--selection-controls__input {\n margin-right: 0;\n}", map: undefined, media: undefined });
|
56647
56704
|
|
56648
56705
|
};
|
56649
56706
|
/* scoped */
|
@@ -56908,6 +56965,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56908
56965
|
vuePropertyDecorator.Prop({ type: [String, Number, Boolean], default: false }),
|
56909
56966
|
__metadata("design:type", Object)
|
56910
56967
|
], ZdTree.prototype, "openLevelOnLoad", void 0);
|
56968
|
+
__decorate([
|
56969
|
+
vuePropertyDecorator.Prop({ type: [String, Function], default: undefined }),
|
56970
|
+
__metadata("design:type", Function)
|
56971
|
+
], ZdTree.prototype, "disableCheckbox", void 0);
|
56911
56972
|
__decorate([
|
56912
56973
|
vuePropertyDecorator.Watch('instance.datasource.data.length'),
|
56913
56974
|
__metadata("design:type", Function),
|
@@ -57002,6 +57063,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
57002
57063
|
_vm.instance.checkbox
|
57003
57064
|
? _c("zd-tree-checkbox", {
|
57004
57065
|
attrs: {
|
57066
|
+
disabled: _vm.instance.callDisableCheckbox(node),
|
57005
57067
|
node: _vm.instanceNode(node),
|
57006
57068
|
checkedField: _vm.instance.checkedField,
|
57007
57069
|
},
|
@@ -57216,7 +57278,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
57216
57278
|
/* style */
|
57217
57279
|
const __vue_inject_styles__$2 = function (inject) {
|
57218
57280
|
if (!inject) return
|
57219
|
-
inject("data-v-
|
57281
|
+
inject("data-v-6a21eeb4_0", { source: ".zd-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-weight: normal;\n}\n.zd-tree.theme--light .sl-vue-tree-title {\n color: var(--zd-font-color);\n}\n.zd-tree.theme--light .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item:hover {\n background: #eee;\n}\n.zd-tree.theme--dark .sl-vue-tree-title {\n color: #fff;\n}\n.zd-tree.theme--dark .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item:hover {\n background: #616161;\n}\n.zd-tree .sl-vue-tree-title {\n display: flex;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node {\n padding-top: 3px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item {\n height: 30px;\n line-height: 30px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item {\n background-color: var(--current-row-color);\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item .sl-vue-tree-toggle .v-icon {\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-toggle span .v-icon {\n margin: 0px 1px 0px 1px;\n padding-bottom: 1.4px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-gap {\n width: 32px;\n}\n.zd-tree .sl-vue-tree-nodes-list .item-title.has-children {\n font-weight: 700;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align {\n padding-left: 26px;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align.is-clickable {\n cursor: pointer;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align.v-icon {\n padding-left: 4px;\n}\n.zd-tree .sl-vue-tree-node-item .zd-tree-checkbox {\n padding: 0px 3px 3px 0px;\n}", map: undefined, media: undefined });
|
57220
57282
|
|
57221
57283
|
};
|
57222
57284
|
/* scoped */
|
@@ -58182,17 +58244,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
58182
58244
|
}
|
58183
58245
|
return this.instance.getEditableComponent(column, row, cellProps, events);
|
58184
58246
|
}
|
58185
|
-
cellClick(row, column, event) {
|
58247
|
+
cellClick(row, column, event, canEdit = true) {
|
58186
58248
|
if (!this.instance.doubleClickEdit || !column.editable) {
|
58187
|
-
this.callCellClick(row, column, event);
|
58249
|
+
this.callCellClick(row, column, event, canEdit);
|
58188
58250
|
return;
|
58189
58251
|
}
|
58190
|
-
this.$doubleClick(() => this.instance.cellClickEvent(row, column, event, this.$el), () => this.callCellClick(row, column, event), event);
|
58252
|
+
this.$doubleClick(() => this.instance.cellClickEvent(row, column, event, this.$el), () => this.callCellClick(row, column, event, canEdit), event);
|
58191
58253
|
}
|
58192
|
-
callCellClick(row, column, event) {
|
58254
|
+
callCellClick(row, column, event, canEdit = true) {
|
58193
58255
|
const key = row[this.instance.datasource.uniqueKey];
|
58194
58256
|
this.inputToFocus = `column-${column.name}-${key}`;
|
58195
|
-
this.instance.cellClick(row, column, event, this.$el);
|
58257
|
+
this.instance.cellClick(row, column, event, this.$el, canEdit);
|
58196
58258
|
}
|
58197
58259
|
onMountedEvent({ element, component }) {
|
58198
58260
|
const input = element.getElementsByTagName('input')[0];
|
@@ -58293,6 +58355,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
58293
58355
|
PropWatch({ type: [String, Boolean], default: false }),
|
58294
58356
|
__metadata("design:type", Object)
|
58295
58357
|
], ZdTreeGridEditable.prototype, "doubleClickEdit", void 0);
|
58358
|
+
__decorate([
|
58359
|
+
PropWatch({ type: [String, Function] }),
|
58360
|
+
__metadata("design:type", Object)
|
58361
|
+
], ZdTreeGridEditable.prototype, "canEditRow", void 0);
|
58296
58362
|
ZdTreeGridEditable = __decorate([
|
58297
58363
|
Component__default["default"]
|
58298
58364
|
], ZdTreeGridEditable);
|
@@ -58343,6 +58409,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
58343
58409
|
"disable-sort": "",
|
58344
58410
|
"disable-filtering": "",
|
58345
58411
|
tabindex: "0",
|
58412
|
+
set: (_vm.canEditRowValues = {}),
|
58346
58413
|
},
|
58347
58414
|
on: {
|
58348
58415
|
"current-items": function ($event) {
|
@@ -58726,6 +58793,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
58726
58793
|
active: isSelected,
|
58727
58794
|
current: _vm.isCurrentRow(item),
|
58728
58795
|
},
|
58796
|
+
attrs: {
|
58797
|
+
set: (_vm.canEditRowValues[_vm.rowKey(item)] =
|
58798
|
+
_vm.instance.callCanEditRow(item)),
|
58799
|
+
},
|
58729
58800
|
on: {
|
58730
58801
|
click: function ($event) {
|
58731
58802
|
return _vm.rowClick(item, $event)
|
@@ -58807,7 +58878,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
58807
58878
|
{},
|
58808
58879
|
column,
|
58809
58880
|
cellProps
|
58810
|
-
).editable
|
58881
|
+
).editable &&
|
58882
|
+
_vm.canEditRowValues[
|
58883
|
+
_vm.rowKey(item)
|
58884
|
+
],
|
58811
58885
|
},
|
58812
58886
|
],
|
58813
58887
|
style: [
|
@@ -58818,11 +58892,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
58818
58892
|
],
|
58819
58893
|
on: {
|
58820
58894
|
click: function ($event) {
|
58821
|
-
|
58895
|
+
_vm.cellClick(
|
58822
58896
|
item,
|
58823
58897
|
column,
|
58824
|
-
$event
|
58825
|
-
|
58898
|
+
$event,
|
58899
|
+
_vm.canEditRowValues[
|
58900
|
+
_vm.rowKey(item)
|
58901
|
+
]
|
58902
|
+
);
|
58826
58903
|
},
|
58827
58904
|
},
|
58828
58905
|
},
|
@@ -58839,7 +58916,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
58839
58916
|
: _vm._e(),
|
58840
58917
|
_vm._v(" "),
|
58841
58918
|
Object.assign({}, column, cellProps)
|
58842
|
-
.editable &&
|
58919
|
+
.editable &&
|
58920
|
+
_vm.canEditRowValues[
|
58921
|
+
_vm.rowKey(item)
|
58922
|
+
] &&
|
58923
|
+
_vm.instance.editing
|
58843
58924
|
? _c(
|
58844
58925
|
"span",
|
58845
58926
|
{
|
@@ -59284,8 +59365,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
59284
59365
|
/* style */
|
59285
59366
|
const __vue_inject_styles__ = function (inject) {
|
59286
59367
|
if (!inject) return
|
59287
|
-
inject("data-v-
|
59288
|
-
,inject("data-v-
|
59368
|
+
inject("data-v-31d61cb7_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\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}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\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 .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-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: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: 24px 0 0 0;\n display: flex;\n align-items: center;\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--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
59369
|
+
,inject("data-v-31d61cb7_1", { source: ".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-table-cell-text, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n padding: 0 8px;\n position: relative;\n display: block;\n height: 20px;\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: 0px;\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: 0px;\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.zd-table-cell-text-editable {\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.zd-table-cell-text-editable:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable: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: 20px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level2 {\n width: 40px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level3 {\n width: 60px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level4 {\n width: 80px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level5 {\n width: 100px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level6 {\n width: 120px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level7 {\n width: 140px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level8 {\n width: 160px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level9 {\n width: 180px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level10 {\n width: 200px;\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 height: 22px;\n max-height: 22px;\n}", map: undefined, media: undefined });
|
59289
59370
|
|
59290
59371
|
};
|
59291
59372
|
/* scoped */
|