@zeedhi/teknisa-components-vuetify 1.59.0 → 1.60.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/tek-components-vuetify.esm.js +202 -99
- package/dist/tek-components-vuetify.umd.js +202 -99
- package/package.json +2 -2
|
@@ -1817,7 +1817,8 @@ var __vue_render__$b = function () {
|
|
|
1817
1817
|
column,
|
|
1818
1818
|
column.width ||
|
|
1819
1819
|
column.maxWidth ||
|
|
1820
|
-
column.minWidth
|
|
1820
|
+
column.minWidth,
|
|
1821
|
+
true
|
|
1821
1822
|
) || "unset",
|
|
1822
1823
|
},
|
|
1823
1824
|
},
|
|
@@ -2819,17 +2820,20 @@ var __vue_render__$b = function () {
|
|
|
2819
2820
|
column,
|
|
2820
2821
|
column.width ||
|
|
2821
2822
|
column.maxWidth ||
|
|
2822
|
-
column.minWidth
|
|
2823
|
+
column.minWidth,
|
|
2824
|
+
true
|
|
2823
2825
|
) || "unset",
|
|
2824
2826
|
"min-width":
|
|
2825
2827
|
_vm.calcWidth(
|
|
2826
2828
|
column,
|
|
2827
|
-
column.minWidth
|
|
2829
|
+
column.minWidth,
|
|
2830
|
+
true
|
|
2828
2831
|
) || "unset",
|
|
2829
2832
|
"max-width":
|
|
2830
2833
|
_vm.calcWidth(
|
|
2831
2834
|
column,
|
|
2832
|
-
column.maxWidth
|
|
2835
|
+
column.maxWidth,
|
|
2836
|
+
true
|
|
2833
2837
|
) || "unset",
|
|
2834
2838
|
},
|
|
2835
2839
|
},
|
|
@@ -2896,6 +2900,7 @@ var __vue_render__$b = function () {
|
|
|
2896
2900
|
_vm._b(
|
|
2897
2901
|
{
|
|
2898
2902
|
key:
|
|
2903
|
+
"" +
|
|
2899
2904
|
column.name +
|
|
2900
2905
|
_vm.rowKey(
|
|
2901
2906
|
item
|
|
@@ -2984,17 +2989,20 @@ var __vue_render__$b = function () {
|
|
|
2984
2989
|
column,
|
|
2985
2990
|
column.width ||
|
|
2986
2991
|
column.maxWidth ||
|
|
2987
|
-
column.minWidth
|
|
2992
|
+
column.minWidth,
|
|
2993
|
+
true
|
|
2988
2994
|
) || "unset",
|
|
2989
2995
|
"min-width":
|
|
2990
2996
|
_vm.calcWidth(
|
|
2991
2997
|
column,
|
|
2992
|
-
column.minWidth
|
|
2998
|
+
column.minWidth,
|
|
2999
|
+
true
|
|
2993
3000
|
) || "unset",
|
|
2994
3001
|
"max-width":
|
|
2995
3002
|
_vm.calcWidth(
|
|
2996
3003
|
column,
|
|
2997
|
-
column.maxWidth
|
|
3004
|
+
column.maxWidth,
|
|
3005
|
+
true
|
|
2998
3006
|
) || "unset",
|
|
2999
3007
|
},
|
|
3000
3008
|
on: {
|
|
@@ -3042,6 +3050,23 @@ var __vue_render__$b = function () {
|
|
|
3042
3050
|
column,
|
|
3043
3051
|
cellProps
|
|
3044
3052
|
).cssClass,
|
|
3053
|
+
{
|
|
3054
|
+
"zd-table-fixed-column":
|
|
3055
|
+
column.fixed,
|
|
3056
|
+
},
|
|
3057
|
+
{
|
|
3058
|
+
"theme--dark":
|
|
3059
|
+
(_vm.$vuetify.theme
|
|
3060
|
+
.dark &&
|
|
3061
|
+
!_vm.instance.light) ||
|
|
3062
|
+
_vm.instance.dark,
|
|
3063
|
+
},
|
|
3064
|
+
{
|
|
3065
|
+
"theme--light":
|
|
3066
|
+
!_vm.$vuetify.theme
|
|
3067
|
+
.dark ||
|
|
3068
|
+
_vm.instance.light,
|
|
3069
|
+
},
|
|
3045
3070
|
],
|
|
3046
3071
|
style: [
|
|
3047
3072
|
Object.assign(
|
|
@@ -3054,6 +3079,13 @@ var __vue_render__$b = function () {
|
|
|
3054
3079
|
column,
|
|
3055
3080
|
cellProps
|
|
3056
3081
|
).cssStyle,
|
|
3082
|
+
{
|
|
3083
|
+
left: column.fixed
|
|
3084
|
+
? _vm.fixedLeft[
|
|
3085
|
+
column.name
|
|
3086
|
+
]
|
|
3087
|
+
: "unset",
|
|
3088
|
+
},
|
|
3057
3089
|
],
|
|
3058
3090
|
on: {
|
|
3059
3091
|
click: function ($event) {
|
|
@@ -3090,6 +3122,7 @@ var __vue_render__$b = function () {
|
|
|
3090
3122
|
_vm._b(
|
|
3091
3123
|
{
|
|
3092
3124
|
key:
|
|
3125
|
+
"" +
|
|
3093
3126
|
child.name +
|
|
3094
3127
|
_vm.rowKey(item),
|
|
3095
3128
|
tag: "component",
|
|
@@ -3213,7 +3246,7 @@ __vue_render__$b._withStripped = true;
|
|
|
3213
3246
|
/* style */
|
|
3214
3247
|
const __vue_inject_styles__$b = function (inject) {
|
|
3215
3248
|
if (!inject) return
|
|
3216
|
-
inject("data-v-
|
|
3249
|
+
inject("data-v-251b1043_0", { source: ".tek-grid .zd-grid-toolbar {\n height: 36px;\n}\n.tek-grid .zd-grid-toolbar .zd-grid-toolbar-slot {\n align-items: center;\n}\n.tek-grid .zd-grid-toolbar .toolbar-divider {\n margin: 10px;\n}\n.tek-grid .zd-grid-toolbar .toolbar-title {\n line-height: 22px;\n color: var(--v-primary-base);\n}\n.tek-grid table thead tr th.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 5;\n}\n.tek-grid table thead tr th.zd-table-cell.zd-table-fixed-column.theme--light {\n background: #f7f7f7 !important;\n}\n.tek-grid table thead tr th.zd-table-cell.zd-table-fixed-column.theme--dark {\n background: #3c3c3c !important;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button {\n display: inline-block;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button .v-icon {\n cursor: pointer;\n font-size: 15px;\n width: 15px;\n padding: 0 3px;\n opacity: 0;\n color: #ccc;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button.has-filter-data .v-icon {\n opacity: 1;\n color: var(--v-primary-base);\n}\n.tek-grid table thead tr th:hover .tek-grid-column-filter-button .v-icon {\n opacity: 1;\n}\n.tek-grid table tbody tr.footer.theme--light {\n background: #f6f6f6;\n}\n.tek-grid table tbody tr.footer.theme--dark {\n background: #3b3b3b;\n}\n.tek-grid table tbody tr.footer td.zd-table-cell {\n font-weight: 700;\n}\n.tek-grid table tbody tr.summary {\n background: #eee;\n}\n.tek-grid table tbody tr.summary td.zd-table-cell {\n font-weight: 700;\n font-size: 15px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header {\n font-weight: bold;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .v-icon {\n font-size: 21px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .v-icon.closed {\n transform: rotate(-90deg);\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-container {\n position: sticky !important;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-container .zd-table-group-text {\n vertical-align: middle;\n}\n.tek-grid table tbody tr td.zd-table-cell .zd-table-cell-aling-total {\n display: flex !important;\n position: relative;\n justify-content: start;\n align-items: center;\n left: 1.5rem;\n top: -50%;\n}\n.tek-grid table tbody tr td.zd-table-cell .zd-table-cell-aling-total:first-of-type {\n display: inline-block !important;\n top: 0;\n left: 0;\n}\n.tek-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: inline-block;\n vertical-align: middle;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 3;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-fixed-column.theme--light {\n background: #f7f7f7 !important;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-fixed-column.theme--dark {\n background: #3c3c3c !important;\n}\n.tek-grid table tbody tr.current td.zd-table-cell.zd-table-fixed-column {\n color: var(--v-primary-base) !important;\n}\n.tek-grid table .tek-grid-header-group-identation {\n width: 22px;\n display: inline-block;\n vertical-align: middle;\n}\n.tek-grid table .tek-grid-header-group-identation.first-group {\n width: 20px;\n}\n.tek-grid table .tek-grid-body-group-identation {\n width: 8px;\n display: flex;\n position: relative;\n top: 10px;\n margin-left: 14px;\n height: 100%;\n border-left: solid 1px #ccc;\n}\n.tek-grid table .tek-grid-body-group-identation.first-group {\n width: 1rem;\n margin-left: 10px;\n}\n.tek-grid table .tek-grid-body-group-identation.group-footer {\n height: 60%;\n border-bottom: solid 1px #ccc;\n top: -25%;\n}\n.tek-grid table .tek-grid-body-group-identation.group-footer-no-line {\n border-left: none;\n}\n.tek-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.tekgrid-actions-dropdown > * {\n display: block;\n}\n.tek-grid-column-filter-menu {\n padding: 12px 12px 0 12px;\n max-height: 300px;\n}\n.tek-grid-column-filter-menu.theme--light {\n background: #fff;\n}\n.tek-grid-column-filter-menu.theme--dark {\n background: #1e1e1e;\n}\n.filter-helper-values-button {\n height: 24px !important;\n margin-left: 5px;\n margin-top: 0;\n}\n.filter-helper-values-button.with-label {\n margin-top: 20px;\n}\n.filter-helper-values-option {\n cursor: pointer;\n}\n.filter-helper-values-option:hover {\n background-color: rgba(0, 0, 0, 0.03);\n}", map: undefined, media: undefined });
|
|
3217
3250
|
|
|
3218
3251
|
};
|
|
3219
3252
|
/* scoped */
|
|
@@ -6302,6 +6335,7 @@ var __vue_render__$2 = function () {
|
|
|
6302
6335
|
ref: "grid",
|
|
6303
6336
|
class: [
|
|
6304
6337
|
"zd-grid",
|
|
6338
|
+
"zd-tree-grid",
|
|
6305
6339
|
"zd-tree-grid-editable",
|
|
6306
6340
|
"tek-grid",
|
|
6307
6341
|
"tek-tree-grid",
|
|
@@ -6460,30 +6494,17 @@ var __vue_render__$2 = function () {
|
|
|
6460
6494
|
"background-color":
|
|
6461
6495
|
_vm.instance.headerBackground,
|
|
6462
6496
|
width:
|
|
6463
|
-
_vm.calcWidth(column, column.width) ||
|
|
6464
|
-
"unset",
|
|
6465
|
-
"min-width":
|
|
6466
|
-
_vm.calcWidth(
|
|
6467
|
-
column,
|
|
6468
|
-
column.minWidth
|
|
6469
|
-
) || "unset",
|
|
6470
|
-
"max-width":
|
|
6471
6497
|
_vm.calcWidth(
|
|
6472
6498
|
column,
|
|
6473
|
-
column.
|
|
6499
|
+
column.width ||
|
|
6500
|
+
column.maxWidth ||
|
|
6501
|
+
column.minWidth
|
|
6474
6502
|
) || "unset",
|
|
6475
6503
|
},
|
|
6476
6504
|
attrs: {
|
|
6477
6505
|
"column-name": column.name,
|
|
6478
6506
|
index: index,
|
|
6479
6507
|
},
|
|
6480
|
-
on: {
|
|
6481
|
-
click: function ($event) {
|
|
6482
|
-
return _vm.instance.changeColumnOrder(
|
|
6483
|
-
column
|
|
6484
|
-
)
|
|
6485
|
-
},
|
|
6486
|
-
},
|
|
6487
6508
|
},
|
|
6488
6509
|
[
|
|
6489
6510
|
_c(
|
|
@@ -6496,8 +6517,11 @@ var __vue_render__$2 = function () {
|
|
|
6496
6517
|
column,
|
|
6497
6518
|
column.width ||
|
|
6498
6519
|
column.maxWidth ||
|
|
6499
|
-
column.minWidth
|
|
6520
|
+
column.minWidth,
|
|
6521
|
+
true
|
|
6500
6522
|
) || "unset",
|
|
6523
|
+
color:
|
|
6524
|
+
_vm.instance.headerCellTextColor,
|
|
6501
6525
|
},
|
|
6502
6526
|
},
|
|
6503
6527
|
[
|
|
@@ -6509,7 +6533,16 @@ var __vue_render__$2 = function () {
|
|
|
6509
6533
|
"span",
|
|
6510
6534
|
{
|
|
6511
6535
|
staticClass:
|
|
6512
|
-
"zd-table-cell-sort",
|
|
6536
|
+
"zd-table-cell-sort zd-table-cell-sort--left zd-mr-1",
|
|
6537
|
+
on: {
|
|
6538
|
+
click: function (
|
|
6539
|
+
$event
|
|
6540
|
+
) {
|
|
6541
|
+
return _vm.instance.changeColumnOrder(
|
|
6542
|
+
column
|
|
6543
|
+
)
|
|
6544
|
+
},
|
|
6545
|
+
},
|
|
6513
6546
|
},
|
|
6514
6547
|
[
|
|
6515
6548
|
column.sortable &&
|
|
@@ -6525,11 +6558,13 @@ var __vue_render__$2 = function () {
|
|
|
6525
6558
|
},
|
|
6526
6559
|
[
|
|
6527
6560
|
_vm._v(
|
|
6528
|
-
|
|
6529
|
-
_vm
|
|
6530
|
-
|
|
6531
|
-
|
|
6532
|
-
|
|
6561
|
+
"\n " +
|
|
6562
|
+
_vm._s(
|
|
6563
|
+
_vm.$getIcon(
|
|
6564
|
+
"chevronUp"
|
|
6565
|
+
)
|
|
6566
|
+
) +
|
|
6567
|
+
"\n "
|
|
6533
6568
|
),
|
|
6534
6569
|
]
|
|
6535
6570
|
)
|
|
@@ -6546,11 +6581,13 @@ var __vue_render__$2 = function () {
|
|
|
6546
6581
|
},
|
|
6547
6582
|
[
|
|
6548
6583
|
_vm._v(
|
|
6549
|
-
|
|
6550
|
-
_vm.
|
|
6551
|
-
|
|
6552
|
-
|
|
6553
|
-
|
|
6584
|
+
"\n " +
|
|
6585
|
+
_vm._s(
|
|
6586
|
+
_vm.instance.datasource.findOrderIndex(
|
|
6587
|
+
column.name
|
|
6588
|
+
) + 1
|
|
6589
|
+
) +
|
|
6590
|
+
"\n "
|
|
6554
6591
|
),
|
|
6555
6592
|
]
|
|
6556
6593
|
)
|
|
@@ -6578,24 +6615,12 @@ var __vue_render__$2 = function () {
|
|
|
6578
6615
|
column.overflow
|
|
6579
6616
|
: "",
|
|
6580
6617
|
],
|
|
6581
|
-
style: {
|
|
6582
|
-
width:
|
|
6583
|
-
_vm.calcWidth(
|
|
6584
|
-
column,
|
|
6585
|
-
column.width
|
|
6586
|
-
) || "unset",
|
|
6587
|
-
"min-width":
|
|
6588
|
-
_vm.calcWidth(
|
|
6589
|
-
column,
|
|
6590
|
-
column.minWidth
|
|
6591
|
-
) || "unset",
|
|
6592
|
-
"max-width":
|
|
6593
|
-
_vm.calcWidth(
|
|
6594
|
-
column,
|
|
6595
|
-
column.maxWidth
|
|
6596
|
-
) || "unset",
|
|
6597
|
-
},
|
|
6598
6618
|
on: {
|
|
6619
|
+
click: function ($event) {
|
|
6620
|
+
return _vm.instance.changeColumnOrder(
|
|
6621
|
+
column
|
|
6622
|
+
)
|
|
6623
|
+
},
|
|
6599
6624
|
mouseenter: function (
|
|
6600
6625
|
$event
|
|
6601
6626
|
) {
|
|
@@ -6625,7 +6650,16 @@ var __vue_render__$2 = function () {
|
|
|
6625
6650
|
"span",
|
|
6626
6651
|
{
|
|
6627
6652
|
staticClass:
|
|
6628
|
-
"zd-table-cell-sort",
|
|
6653
|
+
"zd-table-cell-sort zd-table-cell-sort--right zd-ml-1",
|
|
6654
|
+
on: {
|
|
6655
|
+
click: function (
|
|
6656
|
+
$event
|
|
6657
|
+
) {
|
|
6658
|
+
return _vm.instance.changeColumnOrder(
|
|
6659
|
+
column
|
|
6660
|
+
)
|
|
6661
|
+
},
|
|
6662
|
+
},
|
|
6629
6663
|
},
|
|
6630
6664
|
[
|
|
6631
6665
|
column.sortable &&
|
|
@@ -6641,11 +6675,13 @@ var __vue_render__$2 = function () {
|
|
|
6641
6675
|
},
|
|
6642
6676
|
[
|
|
6643
6677
|
_vm._v(
|
|
6644
|
-
|
|
6645
|
-
_vm
|
|
6646
|
-
|
|
6647
|
-
|
|
6648
|
-
|
|
6678
|
+
"\n " +
|
|
6679
|
+
_vm._s(
|
|
6680
|
+
_vm.$getIcon(
|
|
6681
|
+
"chevronUp"
|
|
6682
|
+
)
|
|
6683
|
+
) +
|
|
6684
|
+
"\n "
|
|
6649
6685
|
),
|
|
6650
6686
|
]
|
|
6651
6687
|
)
|
|
@@ -6662,11 +6698,13 @@ var __vue_render__$2 = function () {
|
|
|
6662
6698
|
},
|
|
6663
6699
|
[
|
|
6664
6700
|
_vm._v(
|
|
6665
|
-
|
|
6666
|
-
_vm.
|
|
6667
|
-
|
|
6668
|
-
|
|
6669
|
-
|
|
6701
|
+
"\n " +
|
|
6702
|
+
_vm._s(
|
|
6703
|
+
_vm.instance.datasource.findOrderIndex(
|
|
6704
|
+
column.name
|
|
6705
|
+
) + 1
|
|
6706
|
+
) +
|
|
6707
|
+
"\n "
|
|
6670
6708
|
),
|
|
6671
6709
|
]
|
|
6672
6710
|
)
|
|
@@ -7202,19 +7240,20 @@ var __vue_render__$2 = function () {
|
|
|
7202
7240
|
width:
|
|
7203
7241
|
_vm.calcWidth(
|
|
7204
7242
|
column,
|
|
7205
|
-
column.width
|
|
7206
|
-
|
|
7207
|
-
column.minWidth
|
|
7243
|
+
column.width,
|
|
7244
|
+
true
|
|
7208
7245
|
) || "unset",
|
|
7209
7246
|
"min-width":
|
|
7210
7247
|
_vm.calcWidth(
|
|
7211
7248
|
column,
|
|
7212
|
-
column.minWidth
|
|
7249
|
+
column.minWidth,
|
|
7250
|
+
true
|
|
7213
7251
|
) || "unset",
|
|
7214
7252
|
"max-width":
|
|
7215
7253
|
_vm.calcWidth(
|
|
7216
7254
|
column,
|
|
7217
|
-
column.maxWidth
|
|
7255
|
+
column.maxWidth,
|
|
7256
|
+
true
|
|
7218
7257
|
) || "unset",
|
|
7219
7258
|
},
|
|
7220
7259
|
},
|
|
@@ -7282,7 +7321,7 @@ var __vue_render__$2 = function () {
|
|
|
7282
7321
|
{
|
|
7283
7322
|
key:
|
|
7284
7323
|
column.name +
|
|
7285
|
-
|
|
7324
|
+
"rowKey(item)",
|
|
7286
7325
|
tag: "component",
|
|
7287
7326
|
},
|
|
7288
7327
|
"component",
|
|
@@ -7353,18 +7392,20 @@ var __vue_render__$2 = function () {
|
|
|
7353
7392
|
width:
|
|
7354
7393
|
_vm.calcWidth(
|
|
7355
7394
|
column,
|
|
7356
|
-
column.
|
|
7357
|
-
|
|
7395
|
+
column.width,
|
|
7396
|
+
true
|
|
7358
7397
|
) || "unset",
|
|
7359
7398
|
"min-width":
|
|
7360
7399
|
_vm.calcWidth(
|
|
7361
7400
|
column,
|
|
7362
|
-
column.minWidth
|
|
7401
|
+
column.minWidth,
|
|
7402
|
+
true
|
|
7363
7403
|
) || "unset",
|
|
7364
7404
|
"max-width":
|
|
7365
7405
|
_vm.calcWidth(
|
|
7366
7406
|
column,
|
|
7367
|
-
column.maxWidth
|
|
7407
|
+
column.maxWidth,
|
|
7408
|
+
true
|
|
7368
7409
|
) || "unset",
|
|
7369
7410
|
},
|
|
7370
7411
|
on: {
|
|
@@ -7444,6 +7485,7 @@ var __vue_render__$2 = function () {
|
|
|
7444
7485
|
],
|
|
7445
7486
|
1
|
|
7446
7487
|
),
|
|
7488
|
+
_vm._v(" "),
|
|
7447
7489
|
_c("span", {
|
|
7448
7490
|
key: item.tree__searched
|
|
7449
7491
|
? "a"
|
|
@@ -7503,34 +7545,95 @@ var __vue_render__$2 = function () {
|
|
|
7503
7545
|
},
|
|
7504
7546
|
},
|
|
7505
7547
|
},
|
|
7506
|
-
|
|
7507
|
-
|
|
7508
|
-
|
|
7509
|
-
|
|
7510
|
-
|
|
7511
|
-
_vm._b(
|
|
7548
|
+
[
|
|
7549
|
+
_c(
|
|
7550
|
+
"div",
|
|
7551
|
+
{
|
|
7552
|
+
directives: [
|
|
7512
7553
|
{
|
|
7513
|
-
|
|
7514
|
-
|
|
7515
|
-
|
|
7516
|
-
|
|
7554
|
+
name: "show",
|
|
7555
|
+
rawName: "v-show",
|
|
7556
|
+
value: headerIndex === 0,
|
|
7557
|
+
expression:
|
|
7558
|
+
"headerIndex === 0",
|
|
7517
7559
|
},
|
|
7518
|
-
|
|
7519
|
-
|
|
7520
|
-
|
|
7521
|
-
|
|
7522
|
-
|
|
7523
|
-
|
|
7524
|
-
|
|
7525
|
-
|
|
7560
|
+
],
|
|
7561
|
+
class: [
|
|
7562
|
+
"zd-tree-grid-expand",
|
|
7563
|
+
"level" + item.tree__level,
|
|
7564
|
+
],
|
|
7565
|
+
},
|
|
7566
|
+
[
|
|
7567
|
+
(item.tree__children || [])
|
|
7568
|
+
.length > 0
|
|
7569
|
+
? _c(
|
|
7570
|
+
"v-icon",
|
|
7571
|
+
{
|
|
7572
|
+
class: {
|
|
7573
|
+
opened:
|
|
7574
|
+
item.tree__opened,
|
|
7575
|
+
},
|
|
7576
|
+
attrs: {
|
|
7577
|
+
tabindex: "-1",
|
|
7578
|
+
},
|
|
7579
|
+
on: {
|
|
7580
|
+
click: function (
|
|
7581
|
+
$event
|
|
7582
|
+
) {
|
|
7583
|
+
return _vm.instance.toggleExpand(
|
|
7584
|
+
item,
|
|
7585
|
+
index
|
|
7586
|
+
)
|
|
7587
|
+
},
|
|
7588
|
+
},
|
|
7589
|
+
},
|
|
7590
|
+
[
|
|
7591
|
+
_vm._v(
|
|
7592
|
+
"\n " +
|
|
7593
|
+
_vm._s(
|
|
7594
|
+
_vm.$getIcon(
|
|
7595
|
+
"chevronRight"
|
|
7596
|
+
)
|
|
7597
|
+
) +
|
|
7598
|
+
"\n "
|
|
7599
|
+
),
|
|
7600
|
+
]
|
|
7526
7601
|
)
|
|
7527
|
-
),
|
|
7528
|
-
|
|
7602
|
+
: _vm._e(),
|
|
7603
|
+
],
|
|
7604
|
+
1
|
|
7605
|
+
),
|
|
7606
|
+
_vm._v(" "),
|
|
7607
|
+
_vm._l(
|
|
7608
|
+
column.childrenProps,
|
|
7609
|
+
function (child) {
|
|
7610
|
+
return _c(
|
|
7611
|
+
child.component,
|
|
7612
|
+
_vm._b(
|
|
7613
|
+
{
|
|
7614
|
+
key:
|
|
7615
|
+
"" +
|
|
7616
|
+
child.name +
|
|
7617
|
+
_vm.rowKey(item),
|
|
7618
|
+
tag: "component",
|
|
7619
|
+
},
|
|
7620
|
+
"component",
|
|
7621
|
+
Object.assign(
|
|
7622
|
+
{},
|
|
7623
|
+
child,
|
|
7624
|
+
_vm.instance.getActionComponent(
|
|
7625
|
+
child,
|
|
7626
|
+
column,
|
|
7627
|
+
item
|
|
7628
|
+
)
|
|
7629
|
+
),
|
|
7630
|
+
false
|
|
7631
|
+
)
|
|
7529
7632
|
)
|
|
7530
|
-
|
|
7531
|
-
|
|
7532
|
-
|
|
7533
|
-
|
|
7633
|
+
}
|
|
7634
|
+
),
|
|
7635
|
+
],
|
|
7636
|
+
2
|
|
7534
7637
|
),
|
|
7535
7638
|
]
|
|
7536
7639
|
: _vm._e(),
|
|
@@ -7636,7 +7739,7 @@ __vue_render__$2._withStripped = true;
|
|
|
7636
7739
|
/* style */
|
|
7637
7740
|
const __vue_inject_styles__$2 = function (inject) {
|
|
7638
7741
|
if (!inject) return
|
|
7639
|
-
inject("data-v-
|
|
7742
|
+
inject("data-v-7f114b2d_0", { source: ".tek-grid .zd-grid-toolbar {\n height: 36px;\n}\n.tek-grid .zd-grid-toolbar .zd-grid-toolbar-slot {\n align-items: center;\n}\n.tek-grid .zd-grid-toolbar .toolbar-divider {\n margin: 10px;\n}\n.tek-grid .zd-grid-toolbar .toolbar-title {\n line-height: 22px;\n color: var(--v-primary-base);\n}\n.tek-grid table thead tr th.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 5;\n}\n.tek-grid table thead tr th.zd-table-cell.zd-table-fixed-column.theme--light {\n background: #f7f7f7 !important;\n}\n.tek-grid table thead tr th.zd-table-cell.zd-table-fixed-column.theme--dark {\n background: #3c3c3c !important;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button {\n display: inline-block;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button .v-icon {\n cursor: pointer;\n font-size: 15px;\n width: 15px;\n padding: 0 3px;\n opacity: 0;\n color: #ccc;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button.has-filter-data .v-icon {\n opacity: 1;\n color: var(--v-primary-base);\n}\n.tek-grid table thead tr th:hover .tek-grid-column-filter-button .v-icon {\n opacity: 1;\n}\n.tek-grid table tbody tr.footer.theme--light {\n background: #f6f6f6;\n}\n.tek-grid table tbody tr.footer.theme--dark {\n background: #3b3b3b;\n}\n.tek-grid table tbody tr.footer td.zd-table-cell {\n font-weight: 700;\n}\n.tek-grid table tbody tr.summary {\n background: #eee;\n}\n.tek-grid table tbody tr.summary td.zd-table-cell {\n font-weight: 700;\n font-size: 15px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header {\n font-weight: bold;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .v-icon {\n font-size: 21px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .v-icon.closed {\n transform: rotate(-90deg);\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-container {\n position: sticky !important;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-container .zd-table-group-text {\n vertical-align: middle;\n}\n.tek-grid table tbody tr td.zd-table-cell .zd-table-cell-aling-total {\n display: flex !important;\n position: relative;\n justify-content: start;\n align-items: center;\n left: 1.5rem;\n top: -50%;\n}\n.tek-grid table tbody tr td.zd-table-cell .zd-table-cell-aling-total:first-of-type {\n display: inline-block !important;\n top: 0;\n left: 0;\n}\n.tek-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: inline-block;\n vertical-align: middle;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 3;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-fixed-column.theme--light {\n background: #f7f7f7 !important;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-fixed-column.theme--dark {\n background: #3c3c3c !important;\n}\n.tek-grid table tbody tr.current td.zd-table-cell.zd-table-fixed-column {\n color: var(--v-primary-base) !important;\n}\n.tek-grid table .tek-grid-header-group-identation {\n width: 22px;\n display: inline-block;\n vertical-align: middle;\n}\n.tek-grid table .tek-grid-header-group-identation.first-group {\n width: 20px;\n}\n.tek-grid table .tek-grid-body-group-identation {\n width: 8px;\n display: flex;\n position: relative;\n top: 10px;\n margin-left: 14px;\n height: 100%;\n border-left: solid 1px #ccc;\n}\n.tek-grid table .tek-grid-body-group-identation.first-group {\n width: 1rem;\n margin-left: 10px;\n}\n.tek-grid table .tek-grid-body-group-identation.group-footer {\n height: 60%;\n border-bottom: solid 1px #ccc;\n top: -25%;\n}\n.tek-grid table .tek-grid-body-group-identation.group-footer-no-line {\n border-left: none;\n}\n.tek-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.tekgrid-actions-dropdown > * {\n display: block;\n}\n.tek-grid-column-filter-menu {\n padding: 12px 12px 0 12px;\n max-height: 300px;\n}\n.tek-grid-column-filter-menu.theme--light {\n background: #fff;\n}\n.tek-grid-column-filter-menu.theme--dark {\n background: #1e1e1e;\n}\n.filter-helper-values-button {\n height: 24px !important;\n margin-left: 5px;\n margin-top: 0;\n}\n.filter-helper-values-button.with-label {\n margin-top: 20px;\n}\n.filter-helper-values-option {\n cursor: pointer;\n}\n.filter-helper-values-option:hover {\n background-color: rgba(0, 0, 0, 0.03);\n}", map: undefined, media: undefined });
|
|
7640
7743
|
|
|
7641
7744
|
};
|
|
7642
7745
|
/* scoped */
|
|
@@ -1819,7 +1819,8 @@
|
|
|
1819
1819
|
column,
|
|
1820
1820
|
column.width ||
|
|
1821
1821
|
column.maxWidth ||
|
|
1822
|
-
column.minWidth
|
|
1822
|
+
column.minWidth,
|
|
1823
|
+
true
|
|
1823
1824
|
) || "unset",
|
|
1824
1825
|
},
|
|
1825
1826
|
},
|
|
@@ -2821,17 +2822,20 @@
|
|
|
2821
2822
|
column,
|
|
2822
2823
|
column.width ||
|
|
2823
2824
|
column.maxWidth ||
|
|
2824
|
-
column.minWidth
|
|
2825
|
+
column.minWidth,
|
|
2826
|
+
true
|
|
2825
2827
|
) || "unset",
|
|
2826
2828
|
"min-width":
|
|
2827
2829
|
_vm.calcWidth(
|
|
2828
2830
|
column,
|
|
2829
|
-
column.minWidth
|
|
2831
|
+
column.minWidth,
|
|
2832
|
+
true
|
|
2830
2833
|
) || "unset",
|
|
2831
2834
|
"max-width":
|
|
2832
2835
|
_vm.calcWidth(
|
|
2833
2836
|
column,
|
|
2834
|
-
column.maxWidth
|
|
2837
|
+
column.maxWidth,
|
|
2838
|
+
true
|
|
2835
2839
|
) || "unset",
|
|
2836
2840
|
},
|
|
2837
2841
|
},
|
|
@@ -2898,6 +2902,7 @@
|
|
|
2898
2902
|
_vm._b(
|
|
2899
2903
|
{
|
|
2900
2904
|
key:
|
|
2905
|
+
"" +
|
|
2901
2906
|
column.name +
|
|
2902
2907
|
_vm.rowKey(
|
|
2903
2908
|
item
|
|
@@ -2986,17 +2991,20 @@
|
|
|
2986
2991
|
column,
|
|
2987
2992
|
column.width ||
|
|
2988
2993
|
column.maxWidth ||
|
|
2989
|
-
column.minWidth
|
|
2994
|
+
column.minWidth,
|
|
2995
|
+
true
|
|
2990
2996
|
) || "unset",
|
|
2991
2997
|
"min-width":
|
|
2992
2998
|
_vm.calcWidth(
|
|
2993
2999
|
column,
|
|
2994
|
-
column.minWidth
|
|
3000
|
+
column.minWidth,
|
|
3001
|
+
true
|
|
2995
3002
|
) || "unset",
|
|
2996
3003
|
"max-width":
|
|
2997
3004
|
_vm.calcWidth(
|
|
2998
3005
|
column,
|
|
2999
|
-
column.maxWidth
|
|
3006
|
+
column.maxWidth,
|
|
3007
|
+
true
|
|
3000
3008
|
) || "unset",
|
|
3001
3009
|
},
|
|
3002
3010
|
on: {
|
|
@@ -3044,6 +3052,23 @@
|
|
|
3044
3052
|
column,
|
|
3045
3053
|
cellProps
|
|
3046
3054
|
).cssClass,
|
|
3055
|
+
{
|
|
3056
|
+
"zd-table-fixed-column":
|
|
3057
|
+
column.fixed,
|
|
3058
|
+
},
|
|
3059
|
+
{
|
|
3060
|
+
"theme--dark":
|
|
3061
|
+
(_vm.$vuetify.theme
|
|
3062
|
+
.dark &&
|
|
3063
|
+
!_vm.instance.light) ||
|
|
3064
|
+
_vm.instance.dark,
|
|
3065
|
+
},
|
|
3066
|
+
{
|
|
3067
|
+
"theme--light":
|
|
3068
|
+
!_vm.$vuetify.theme
|
|
3069
|
+
.dark ||
|
|
3070
|
+
_vm.instance.light,
|
|
3071
|
+
},
|
|
3047
3072
|
],
|
|
3048
3073
|
style: [
|
|
3049
3074
|
Object.assign(
|
|
@@ -3056,6 +3081,13 @@
|
|
|
3056
3081
|
column,
|
|
3057
3082
|
cellProps
|
|
3058
3083
|
).cssStyle,
|
|
3084
|
+
{
|
|
3085
|
+
left: column.fixed
|
|
3086
|
+
? _vm.fixedLeft[
|
|
3087
|
+
column.name
|
|
3088
|
+
]
|
|
3089
|
+
: "unset",
|
|
3090
|
+
},
|
|
3059
3091
|
],
|
|
3060
3092
|
on: {
|
|
3061
3093
|
click: function ($event) {
|
|
@@ -3092,6 +3124,7 @@
|
|
|
3092
3124
|
_vm._b(
|
|
3093
3125
|
{
|
|
3094
3126
|
key:
|
|
3127
|
+
"" +
|
|
3095
3128
|
child.name +
|
|
3096
3129
|
_vm.rowKey(item),
|
|
3097
3130
|
tag: "component",
|
|
@@ -3215,7 +3248,7 @@
|
|
|
3215
3248
|
/* style */
|
|
3216
3249
|
const __vue_inject_styles__$b = function (inject) {
|
|
3217
3250
|
if (!inject) return
|
|
3218
|
-
inject("data-v-
|
|
3251
|
+
inject("data-v-251b1043_0", { source: ".tek-grid .zd-grid-toolbar {\n height: 36px;\n}\n.tek-grid .zd-grid-toolbar .zd-grid-toolbar-slot {\n align-items: center;\n}\n.tek-grid .zd-grid-toolbar .toolbar-divider {\n margin: 10px;\n}\n.tek-grid .zd-grid-toolbar .toolbar-title {\n line-height: 22px;\n color: var(--v-primary-base);\n}\n.tek-grid table thead tr th.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 5;\n}\n.tek-grid table thead tr th.zd-table-cell.zd-table-fixed-column.theme--light {\n background: #f7f7f7 !important;\n}\n.tek-grid table thead tr th.zd-table-cell.zd-table-fixed-column.theme--dark {\n background: #3c3c3c !important;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button {\n display: inline-block;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button .v-icon {\n cursor: pointer;\n font-size: 15px;\n width: 15px;\n padding: 0 3px;\n opacity: 0;\n color: #ccc;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button.has-filter-data .v-icon {\n opacity: 1;\n color: var(--v-primary-base);\n}\n.tek-grid table thead tr th:hover .tek-grid-column-filter-button .v-icon {\n opacity: 1;\n}\n.tek-grid table tbody tr.footer.theme--light {\n background: #f6f6f6;\n}\n.tek-grid table tbody tr.footer.theme--dark {\n background: #3b3b3b;\n}\n.tek-grid table tbody tr.footer td.zd-table-cell {\n font-weight: 700;\n}\n.tek-grid table tbody tr.summary {\n background: #eee;\n}\n.tek-grid table tbody tr.summary td.zd-table-cell {\n font-weight: 700;\n font-size: 15px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header {\n font-weight: bold;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .v-icon {\n font-size: 21px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .v-icon.closed {\n transform: rotate(-90deg);\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-container {\n position: sticky !important;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-container .zd-table-group-text {\n vertical-align: middle;\n}\n.tek-grid table tbody tr td.zd-table-cell .zd-table-cell-aling-total {\n display: flex !important;\n position: relative;\n justify-content: start;\n align-items: center;\n left: 1.5rem;\n top: -50%;\n}\n.tek-grid table tbody tr td.zd-table-cell .zd-table-cell-aling-total:first-of-type {\n display: inline-block !important;\n top: 0;\n left: 0;\n}\n.tek-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: inline-block;\n vertical-align: middle;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 3;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-fixed-column.theme--light {\n background: #f7f7f7 !important;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-fixed-column.theme--dark {\n background: #3c3c3c !important;\n}\n.tek-grid table tbody tr.current td.zd-table-cell.zd-table-fixed-column {\n color: var(--v-primary-base) !important;\n}\n.tek-grid table .tek-grid-header-group-identation {\n width: 22px;\n display: inline-block;\n vertical-align: middle;\n}\n.tek-grid table .tek-grid-header-group-identation.first-group {\n width: 20px;\n}\n.tek-grid table .tek-grid-body-group-identation {\n width: 8px;\n display: flex;\n position: relative;\n top: 10px;\n margin-left: 14px;\n height: 100%;\n border-left: solid 1px #ccc;\n}\n.tek-grid table .tek-grid-body-group-identation.first-group {\n width: 1rem;\n margin-left: 10px;\n}\n.tek-grid table .tek-grid-body-group-identation.group-footer {\n height: 60%;\n border-bottom: solid 1px #ccc;\n top: -25%;\n}\n.tek-grid table .tek-grid-body-group-identation.group-footer-no-line {\n border-left: none;\n}\n.tek-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.tekgrid-actions-dropdown > * {\n display: block;\n}\n.tek-grid-column-filter-menu {\n padding: 12px 12px 0 12px;\n max-height: 300px;\n}\n.tek-grid-column-filter-menu.theme--light {\n background: #fff;\n}\n.tek-grid-column-filter-menu.theme--dark {\n background: #1e1e1e;\n}\n.filter-helper-values-button {\n height: 24px !important;\n margin-left: 5px;\n margin-top: 0;\n}\n.filter-helper-values-button.with-label {\n margin-top: 20px;\n}\n.filter-helper-values-option {\n cursor: pointer;\n}\n.filter-helper-values-option:hover {\n background-color: rgba(0, 0, 0, 0.03);\n}", map: undefined, media: undefined });
|
|
3219
3252
|
|
|
3220
3253
|
};
|
|
3221
3254
|
/* scoped */
|
|
@@ -6304,6 +6337,7 @@
|
|
|
6304
6337
|
ref: "grid",
|
|
6305
6338
|
class: [
|
|
6306
6339
|
"zd-grid",
|
|
6340
|
+
"zd-tree-grid",
|
|
6307
6341
|
"zd-tree-grid-editable",
|
|
6308
6342
|
"tek-grid",
|
|
6309
6343
|
"tek-tree-grid",
|
|
@@ -6462,30 +6496,17 @@
|
|
|
6462
6496
|
"background-color":
|
|
6463
6497
|
_vm.instance.headerBackground,
|
|
6464
6498
|
width:
|
|
6465
|
-
_vm.calcWidth(column, column.width) ||
|
|
6466
|
-
"unset",
|
|
6467
|
-
"min-width":
|
|
6468
|
-
_vm.calcWidth(
|
|
6469
|
-
column,
|
|
6470
|
-
column.minWidth
|
|
6471
|
-
) || "unset",
|
|
6472
|
-
"max-width":
|
|
6473
6499
|
_vm.calcWidth(
|
|
6474
6500
|
column,
|
|
6475
|
-
column.
|
|
6501
|
+
column.width ||
|
|
6502
|
+
column.maxWidth ||
|
|
6503
|
+
column.minWidth
|
|
6476
6504
|
) || "unset",
|
|
6477
6505
|
},
|
|
6478
6506
|
attrs: {
|
|
6479
6507
|
"column-name": column.name,
|
|
6480
6508
|
index: index,
|
|
6481
6509
|
},
|
|
6482
|
-
on: {
|
|
6483
|
-
click: function ($event) {
|
|
6484
|
-
return _vm.instance.changeColumnOrder(
|
|
6485
|
-
column
|
|
6486
|
-
)
|
|
6487
|
-
},
|
|
6488
|
-
},
|
|
6489
6510
|
},
|
|
6490
6511
|
[
|
|
6491
6512
|
_c(
|
|
@@ -6498,8 +6519,11 @@
|
|
|
6498
6519
|
column,
|
|
6499
6520
|
column.width ||
|
|
6500
6521
|
column.maxWidth ||
|
|
6501
|
-
column.minWidth
|
|
6522
|
+
column.minWidth,
|
|
6523
|
+
true
|
|
6502
6524
|
) || "unset",
|
|
6525
|
+
color:
|
|
6526
|
+
_vm.instance.headerCellTextColor,
|
|
6503
6527
|
},
|
|
6504
6528
|
},
|
|
6505
6529
|
[
|
|
@@ -6511,7 +6535,16 @@
|
|
|
6511
6535
|
"span",
|
|
6512
6536
|
{
|
|
6513
6537
|
staticClass:
|
|
6514
|
-
"zd-table-cell-sort",
|
|
6538
|
+
"zd-table-cell-sort zd-table-cell-sort--left zd-mr-1",
|
|
6539
|
+
on: {
|
|
6540
|
+
click: function (
|
|
6541
|
+
$event
|
|
6542
|
+
) {
|
|
6543
|
+
return _vm.instance.changeColumnOrder(
|
|
6544
|
+
column
|
|
6545
|
+
)
|
|
6546
|
+
},
|
|
6547
|
+
},
|
|
6515
6548
|
},
|
|
6516
6549
|
[
|
|
6517
6550
|
column.sortable &&
|
|
@@ -6527,11 +6560,13 @@
|
|
|
6527
6560
|
},
|
|
6528
6561
|
[
|
|
6529
6562
|
_vm._v(
|
|
6530
|
-
|
|
6531
|
-
_vm
|
|
6532
|
-
|
|
6533
|
-
|
|
6534
|
-
|
|
6563
|
+
"\n " +
|
|
6564
|
+
_vm._s(
|
|
6565
|
+
_vm.$getIcon(
|
|
6566
|
+
"chevronUp"
|
|
6567
|
+
)
|
|
6568
|
+
) +
|
|
6569
|
+
"\n "
|
|
6535
6570
|
),
|
|
6536
6571
|
]
|
|
6537
6572
|
)
|
|
@@ -6548,11 +6583,13 @@
|
|
|
6548
6583
|
},
|
|
6549
6584
|
[
|
|
6550
6585
|
_vm._v(
|
|
6551
|
-
|
|
6552
|
-
_vm.
|
|
6553
|
-
|
|
6554
|
-
|
|
6555
|
-
|
|
6586
|
+
"\n " +
|
|
6587
|
+
_vm._s(
|
|
6588
|
+
_vm.instance.datasource.findOrderIndex(
|
|
6589
|
+
column.name
|
|
6590
|
+
) + 1
|
|
6591
|
+
) +
|
|
6592
|
+
"\n "
|
|
6556
6593
|
),
|
|
6557
6594
|
]
|
|
6558
6595
|
)
|
|
@@ -6580,24 +6617,12 @@
|
|
|
6580
6617
|
column.overflow
|
|
6581
6618
|
: "",
|
|
6582
6619
|
],
|
|
6583
|
-
style: {
|
|
6584
|
-
width:
|
|
6585
|
-
_vm.calcWidth(
|
|
6586
|
-
column,
|
|
6587
|
-
column.width
|
|
6588
|
-
) || "unset",
|
|
6589
|
-
"min-width":
|
|
6590
|
-
_vm.calcWidth(
|
|
6591
|
-
column,
|
|
6592
|
-
column.minWidth
|
|
6593
|
-
) || "unset",
|
|
6594
|
-
"max-width":
|
|
6595
|
-
_vm.calcWidth(
|
|
6596
|
-
column,
|
|
6597
|
-
column.maxWidth
|
|
6598
|
-
) || "unset",
|
|
6599
|
-
},
|
|
6600
6620
|
on: {
|
|
6621
|
+
click: function ($event) {
|
|
6622
|
+
return _vm.instance.changeColumnOrder(
|
|
6623
|
+
column
|
|
6624
|
+
)
|
|
6625
|
+
},
|
|
6601
6626
|
mouseenter: function (
|
|
6602
6627
|
$event
|
|
6603
6628
|
) {
|
|
@@ -6627,7 +6652,16 @@
|
|
|
6627
6652
|
"span",
|
|
6628
6653
|
{
|
|
6629
6654
|
staticClass:
|
|
6630
|
-
"zd-table-cell-sort",
|
|
6655
|
+
"zd-table-cell-sort zd-table-cell-sort--right zd-ml-1",
|
|
6656
|
+
on: {
|
|
6657
|
+
click: function (
|
|
6658
|
+
$event
|
|
6659
|
+
) {
|
|
6660
|
+
return _vm.instance.changeColumnOrder(
|
|
6661
|
+
column
|
|
6662
|
+
)
|
|
6663
|
+
},
|
|
6664
|
+
},
|
|
6631
6665
|
},
|
|
6632
6666
|
[
|
|
6633
6667
|
column.sortable &&
|
|
@@ -6643,11 +6677,13 @@
|
|
|
6643
6677
|
},
|
|
6644
6678
|
[
|
|
6645
6679
|
_vm._v(
|
|
6646
|
-
|
|
6647
|
-
_vm
|
|
6648
|
-
|
|
6649
|
-
|
|
6650
|
-
|
|
6680
|
+
"\n " +
|
|
6681
|
+
_vm._s(
|
|
6682
|
+
_vm.$getIcon(
|
|
6683
|
+
"chevronUp"
|
|
6684
|
+
)
|
|
6685
|
+
) +
|
|
6686
|
+
"\n "
|
|
6651
6687
|
),
|
|
6652
6688
|
]
|
|
6653
6689
|
)
|
|
@@ -6664,11 +6700,13 @@
|
|
|
6664
6700
|
},
|
|
6665
6701
|
[
|
|
6666
6702
|
_vm._v(
|
|
6667
|
-
|
|
6668
|
-
_vm.
|
|
6669
|
-
|
|
6670
|
-
|
|
6671
|
-
|
|
6703
|
+
"\n " +
|
|
6704
|
+
_vm._s(
|
|
6705
|
+
_vm.instance.datasource.findOrderIndex(
|
|
6706
|
+
column.name
|
|
6707
|
+
) + 1
|
|
6708
|
+
) +
|
|
6709
|
+
"\n "
|
|
6672
6710
|
),
|
|
6673
6711
|
]
|
|
6674
6712
|
)
|
|
@@ -7204,19 +7242,20 @@
|
|
|
7204
7242
|
width:
|
|
7205
7243
|
_vm.calcWidth(
|
|
7206
7244
|
column,
|
|
7207
|
-
column.width
|
|
7208
|
-
|
|
7209
|
-
column.minWidth
|
|
7245
|
+
column.width,
|
|
7246
|
+
true
|
|
7210
7247
|
) || "unset",
|
|
7211
7248
|
"min-width":
|
|
7212
7249
|
_vm.calcWidth(
|
|
7213
7250
|
column,
|
|
7214
|
-
column.minWidth
|
|
7251
|
+
column.minWidth,
|
|
7252
|
+
true
|
|
7215
7253
|
) || "unset",
|
|
7216
7254
|
"max-width":
|
|
7217
7255
|
_vm.calcWidth(
|
|
7218
7256
|
column,
|
|
7219
|
-
column.maxWidth
|
|
7257
|
+
column.maxWidth,
|
|
7258
|
+
true
|
|
7220
7259
|
) || "unset",
|
|
7221
7260
|
},
|
|
7222
7261
|
},
|
|
@@ -7284,7 +7323,7 @@
|
|
|
7284
7323
|
{
|
|
7285
7324
|
key:
|
|
7286
7325
|
column.name +
|
|
7287
|
-
|
|
7326
|
+
"rowKey(item)",
|
|
7288
7327
|
tag: "component",
|
|
7289
7328
|
},
|
|
7290
7329
|
"component",
|
|
@@ -7355,18 +7394,20 @@
|
|
|
7355
7394
|
width:
|
|
7356
7395
|
_vm.calcWidth(
|
|
7357
7396
|
column,
|
|
7358
|
-
column.
|
|
7359
|
-
|
|
7397
|
+
column.width,
|
|
7398
|
+
true
|
|
7360
7399
|
) || "unset",
|
|
7361
7400
|
"min-width":
|
|
7362
7401
|
_vm.calcWidth(
|
|
7363
7402
|
column,
|
|
7364
|
-
column.minWidth
|
|
7403
|
+
column.minWidth,
|
|
7404
|
+
true
|
|
7365
7405
|
) || "unset",
|
|
7366
7406
|
"max-width":
|
|
7367
7407
|
_vm.calcWidth(
|
|
7368
7408
|
column,
|
|
7369
|
-
column.maxWidth
|
|
7409
|
+
column.maxWidth,
|
|
7410
|
+
true
|
|
7370
7411
|
) || "unset",
|
|
7371
7412
|
},
|
|
7372
7413
|
on: {
|
|
@@ -7446,6 +7487,7 @@
|
|
|
7446
7487
|
],
|
|
7447
7488
|
1
|
|
7448
7489
|
),
|
|
7490
|
+
_vm._v(" "),
|
|
7449
7491
|
_c("span", {
|
|
7450
7492
|
key: item.tree__searched
|
|
7451
7493
|
? "a"
|
|
@@ -7505,34 +7547,95 @@
|
|
|
7505
7547
|
},
|
|
7506
7548
|
},
|
|
7507
7549
|
},
|
|
7508
|
-
|
|
7509
|
-
|
|
7510
|
-
|
|
7511
|
-
|
|
7512
|
-
|
|
7513
|
-
_vm._b(
|
|
7550
|
+
[
|
|
7551
|
+
_c(
|
|
7552
|
+
"div",
|
|
7553
|
+
{
|
|
7554
|
+
directives: [
|
|
7514
7555
|
{
|
|
7515
|
-
|
|
7516
|
-
|
|
7517
|
-
|
|
7518
|
-
|
|
7556
|
+
name: "show",
|
|
7557
|
+
rawName: "v-show",
|
|
7558
|
+
value: headerIndex === 0,
|
|
7559
|
+
expression:
|
|
7560
|
+
"headerIndex === 0",
|
|
7519
7561
|
},
|
|
7520
|
-
|
|
7521
|
-
|
|
7522
|
-
|
|
7523
|
-
|
|
7524
|
-
|
|
7525
|
-
|
|
7526
|
-
|
|
7527
|
-
|
|
7562
|
+
],
|
|
7563
|
+
class: [
|
|
7564
|
+
"zd-tree-grid-expand",
|
|
7565
|
+
"level" + item.tree__level,
|
|
7566
|
+
],
|
|
7567
|
+
},
|
|
7568
|
+
[
|
|
7569
|
+
(item.tree__children || [])
|
|
7570
|
+
.length > 0
|
|
7571
|
+
? _c(
|
|
7572
|
+
"v-icon",
|
|
7573
|
+
{
|
|
7574
|
+
class: {
|
|
7575
|
+
opened:
|
|
7576
|
+
item.tree__opened,
|
|
7577
|
+
},
|
|
7578
|
+
attrs: {
|
|
7579
|
+
tabindex: "-1",
|
|
7580
|
+
},
|
|
7581
|
+
on: {
|
|
7582
|
+
click: function (
|
|
7583
|
+
$event
|
|
7584
|
+
) {
|
|
7585
|
+
return _vm.instance.toggleExpand(
|
|
7586
|
+
item,
|
|
7587
|
+
index
|
|
7588
|
+
)
|
|
7589
|
+
},
|
|
7590
|
+
},
|
|
7591
|
+
},
|
|
7592
|
+
[
|
|
7593
|
+
_vm._v(
|
|
7594
|
+
"\n " +
|
|
7595
|
+
_vm._s(
|
|
7596
|
+
_vm.$getIcon(
|
|
7597
|
+
"chevronRight"
|
|
7598
|
+
)
|
|
7599
|
+
) +
|
|
7600
|
+
"\n "
|
|
7601
|
+
),
|
|
7602
|
+
]
|
|
7528
7603
|
)
|
|
7529
|
-
),
|
|
7530
|
-
|
|
7604
|
+
: _vm._e(),
|
|
7605
|
+
],
|
|
7606
|
+
1
|
|
7607
|
+
),
|
|
7608
|
+
_vm._v(" "),
|
|
7609
|
+
_vm._l(
|
|
7610
|
+
column.childrenProps,
|
|
7611
|
+
function (child) {
|
|
7612
|
+
return _c(
|
|
7613
|
+
child.component,
|
|
7614
|
+
_vm._b(
|
|
7615
|
+
{
|
|
7616
|
+
key:
|
|
7617
|
+
"" +
|
|
7618
|
+
child.name +
|
|
7619
|
+
_vm.rowKey(item),
|
|
7620
|
+
tag: "component",
|
|
7621
|
+
},
|
|
7622
|
+
"component",
|
|
7623
|
+
Object.assign(
|
|
7624
|
+
{},
|
|
7625
|
+
child,
|
|
7626
|
+
_vm.instance.getActionComponent(
|
|
7627
|
+
child,
|
|
7628
|
+
column,
|
|
7629
|
+
item
|
|
7630
|
+
)
|
|
7631
|
+
),
|
|
7632
|
+
false
|
|
7633
|
+
)
|
|
7531
7634
|
)
|
|
7532
|
-
|
|
7533
|
-
|
|
7534
|
-
|
|
7535
|
-
|
|
7635
|
+
}
|
|
7636
|
+
),
|
|
7637
|
+
],
|
|
7638
|
+
2
|
|
7536
7639
|
),
|
|
7537
7640
|
]
|
|
7538
7641
|
: _vm._e(),
|
|
@@ -7638,7 +7741,7 @@
|
|
|
7638
7741
|
/* style */
|
|
7639
7742
|
const __vue_inject_styles__$2 = function (inject) {
|
|
7640
7743
|
if (!inject) return
|
|
7641
|
-
inject("data-v-
|
|
7744
|
+
inject("data-v-7f114b2d_0", { source: ".tek-grid .zd-grid-toolbar {\n height: 36px;\n}\n.tek-grid .zd-grid-toolbar .zd-grid-toolbar-slot {\n align-items: center;\n}\n.tek-grid .zd-grid-toolbar .toolbar-divider {\n margin: 10px;\n}\n.tek-grid .zd-grid-toolbar .toolbar-title {\n line-height: 22px;\n color: var(--v-primary-base);\n}\n.tek-grid table thead tr th.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 5;\n}\n.tek-grid table thead tr th.zd-table-cell.zd-table-fixed-column.theme--light {\n background: #f7f7f7 !important;\n}\n.tek-grid table thead tr th.zd-table-cell.zd-table-fixed-column.theme--dark {\n background: #3c3c3c !important;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button {\n display: inline-block;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button .v-icon {\n cursor: pointer;\n font-size: 15px;\n width: 15px;\n padding: 0 3px;\n opacity: 0;\n color: #ccc;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button.has-filter-data .v-icon {\n opacity: 1;\n color: var(--v-primary-base);\n}\n.tek-grid table thead tr th:hover .tek-grid-column-filter-button .v-icon {\n opacity: 1;\n}\n.tek-grid table tbody tr.footer.theme--light {\n background: #f6f6f6;\n}\n.tek-grid table tbody tr.footer.theme--dark {\n background: #3b3b3b;\n}\n.tek-grid table tbody tr.footer td.zd-table-cell {\n font-weight: 700;\n}\n.tek-grid table tbody tr.summary {\n background: #eee;\n}\n.tek-grid table tbody tr.summary td.zd-table-cell {\n font-weight: 700;\n font-size: 15px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header {\n font-weight: bold;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .v-icon {\n font-size: 21px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .v-icon.closed {\n transform: rotate(-90deg);\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-container {\n position: sticky !important;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-container .zd-table-group-text {\n vertical-align: middle;\n}\n.tek-grid table tbody tr td.zd-table-cell .zd-table-cell-aling-total {\n display: flex !important;\n position: relative;\n justify-content: start;\n align-items: center;\n left: 1.5rem;\n top: -50%;\n}\n.tek-grid table tbody tr td.zd-table-cell .zd-table-cell-aling-total:first-of-type {\n display: inline-block !important;\n top: 0;\n left: 0;\n}\n.tek-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: inline-block;\n vertical-align: middle;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 3;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-fixed-column.theme--light {\n background: #f7f7f7 !important;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-fixed-column.theme--dark {\n background: #3c3c3c !important;\n}\n.tek-grid table tbody tr.current td.zd-table-cell.zd-table-fixed-column {\n color: var(--v-primary-base) !important;\n}\n.tek-grid table .tek-grid-header-group-identation {\n width: 22px;\n display: inline-block;\n vertical-align: middle;\n}\n.tek-grid table .tek-grid-header-group-identation.first-group {\n width: 20px;\n}\n.tek-grid table .tek-grid-body-group-identation {\n width: 8px;\n display: flex;\n position: relative;\n top: 10px;\n margin-left: 14px;\n height: 100%;\n border-left: solid 1px #ccc;\n}\n.tek-grid table .tek-grid-body-group-identation.first-group {\n width: 1rem;\n margin-left: 10px;\n}\n.tek-grid table .tek-grid-body-group-identation.group-footer {\n height: 60%;\n border-bottom: solid 1px #ccc;\n top: -25%;\n}\n.tek-grid table .tek-grid-body-group-identation.group-footer-no-line {\n border-left: none;\n}\n.tek-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.tekgrid-actions-dropdown > * {\n display: block;\n}\n.tek-grid-column-filter-menu {\n padding: 12px 12px 0 12px;\n max-height: 300px;\n}\n.tek-grid-column-filter-menu.theme--light {\n background: #fff;\n}\n.tek-grid-column-filter-menu.theme--dark {\n background: #1e1e1e;\n}\n.filter-helper-values-button {\n height: 24px !important;\n margin-left: 5px;\n margin-top: 0;\n}\n.filter-helper-values-button.with-label {\n margin-top: 20px;\n}\n.filter-helper-values-option {\n cursor: pointer;\n}\n.filter-helper-values-option:hover {\n background-color: rgba(0, 0, 0, 0.03);\n}", map: undefined, media: undefined });
|
|
7642
7745
|
|
|
7643
7746
|
};
|
|
7644
7747
|
/* scoped */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/teknisa-components-vuetify",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.60.0",
|
|
4
4
|
"description": "Teknisa Components based on Vuetify",
|
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"vue": "^2.6.12",
|
|
42
42
|
"vuetify": "^2.4.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "3759059ab3dadb211faea82105972ebc6421c14b"
|
|
45
45
|
}
|