@zeedhi/teknisa-components-vuetify 1.112.0 → 1.113.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.
|
@@ -2,7 +2,7 @@ import { ModalService, IterableComponentRender, Icons } from '@zeedhi/common';
|
|
|
2
2
|
import { ZdUserInfo } from '@zeedhi/zd-user-info-vue';
|
|
3
3
|
import { Metadata, Config, dayjs, Singleton, Utils, I18n, Loader, VersionService } from '@zeedhi/core';
|
|
4
4
|
import { Prop, Component, Watch } from 'vue-property-decorator';
|
|
5
|
-
import { BreadcrumbHeader, CardTitle, CrudButton, CrudAddButton, CrudCancelButton, CrudDeleteButton, CrudForm, CrudSaveButton, TekGrid as TekGrid$
|
|
5
|
+
import { BreadcrumbHeader, CardTitle, CrudButton, CrudAddButton, CrudCancelButton, CrudDeleteButton, CrudForm, CrudSaveButton, TekGrid as TekGrid$2, TekRestDatasource, TekMemoryDatasource, TekGridColumn, TekGridColumnsButton as TekGridColumnsButton$1, TekGridFilterButton as TekGridFilterButton$1, TekGridLayoutOptions as TekGridLayoutOptions$1, TekFilterHelper, Image, ProductCard, TekTreeGrid as TekTreeGrid$1, TekUserInfo as TekUserInfo$1, TekUserInfoList as TekUserInfoList$1, TekDragGrid as TekDragGrid$1, IterableCarousel, Loading, Notifications } from '@zeedhi/teknisa-components-common';
|
|
6
6
|
import { PropWatch, ZdComponent, ZdComponentRender, components as components$1, ZdForm, EditableMixin, NavigableTableMixin, ZdGrid, ZdIterableColumnsButton, setFillHeight, ZdIterableComponentRender, ZdLoading, ZdIterable } from '@zeedhi/vuetify';
|
|
7
7
|
import debounce from 'lodash.debounce';
|
|
8
8
|
import Vue from 'vue';
|
|
@@ -1147,10 +1147,10 @@ const ZdGridEditable = components$1.ZdGridEditable;
|
|
|
1147
1147
|
/**
|
|
1148
1148
|
* TekGrid component
|
|
1149
1149
|
*/
|
|
1150
|
-
let TekGrid
|
|
1150
|
+
let TekGrid = class TekGrid extends ZdGridEditable {
|
|
1151
1151
|
constructor() {
|
|
1152
1152
|
super(...arguments);
|
|
1153
|
-
this.instanceType = TekGrid$
|
|
1153
|
+
this.instanceType = TekGrid$2;
|
|
1154
1154
|
this.visibleRowsLength = 0;
|
|
1155
1155
|
this.debouncedDatasourceGet = debounce((instance) => {
|
|
1156
1156
|
const event = new Event('change', { cancelable: true });
|
|
@@ -1569,115 +1569,115 @@ let TekGrid$1 = class TekGrid extends ZdGridEditable {
|
|
|
1569
1569
|
};
|
|
1570
1570
|
__decorate([
|
|
1571
1571
|
PropWatch({ type: [String], default: '' })
|
|
1572
|
-
], TekGrid
|
|
1572
|
+
], TekGrid.prototype, "title", void 0);
|
|
1573
1573
|
__decorate([
|
|
1574
1574
|
PropWatch({ type: [Boolean, String], default: false })
|
|
1575
|
-
], TekGrid
|
|
1575
|
+
], TekGrid.prototype, "addButton", void 0);
|
|
1576
1576
|
__decorate([
|
|
1577
1577
|
PropWatch({ type: [String], default: 'none' })
|
|
1578
|
-
], TekGrid
|
|
1578
|
+
], TekGrid.prototype, "deleteButton", void 0);
|
|
1579
1579
|
__decorate([
|
|
1580
1580
|
PropWatch({ type: [Boolean, String], default: false })
|
|
1581
|
-
], TekGrid
|
|
1581
|
+
], TekGrid.prototype, "columnsButton", void 0);
|
|
1582
1582
|
__decorate([
|
|
1583
1583
|
Prop({ type: [Array, String], default: () => [] })
|
|
1584
|
-
], TekGrid
|
|
1584
|
+
], TekGrid.prototype, "columnsButtonIgnore", void 0);
|
|
1585
1585
|
__decorate([
|
|
1586
1586
|
PropWatch({ type: [Boolean, String], default: true })
|
|
1587
|
-
], TekGrid
|
|
1587
|
+
], TekGrid.prototype, "showEditButtons", void 0);
|
|
1588
1588
|
__decorate([
|
|
1589
1589
|
PropWatch({ type: [Boolean, String], default: false })
|
|
1590
|
-
], TekGrid
|
|
1590
|
+
], TekGrid.prototype, "filterButton", void 0);
|
|
1591
1591
|
__decorate([
|
|
1592
1592
|
PropWatch({ type: [Object] })
|
|
1593
|
-
], TekGrid
|
|
1593
|
+
], TekGrid.prototype, "modalFilterProps", void 0);
|
|
1594
1594
|
__decorate([
|
|
1595
1595
|
PropWatch({ type: [Boolean, String], default: true })
|
|
1596
|
-
], TekGrid
|
|
1596
|
+
], TekGrid.prototype, "showSearch", void 0);
|
|
1597
1597
|
__decorate([
|
|
1598
1598
|
PropWatch({ type: [Boolean, String], default: true })
|
|
1599
|
-
], TekGrid
|
|
1599
|
+
], TekGrid.prototype, "showHideButton", void 0);
|
|
1600
1600
|
__decorate([
|
|
1601
1601
|
PropWatch({ type: [Boolean, String], default: false })
|
|
1602
|
-
], TekGrid
|
|
1602
|
+
], TekGrid.prototype, "columnFilterButton", void 0);
|
|
1603
1603
|
__decorate([
|
|
1604
1604
|
PropWatch({ type: Boolean, default: false })
|
|
1605
|
-
], TekGrid
|
|
1605
|
+
], TekGrid.prototype, "hideActions", void 0);
|
|
1606
1606
|
__decorate([
|
|
1607
1607
|
Prop({ type: [Array], default: () => [] })
|
|
1608
|
-
], TekGrid
|
|
1608
|
+
], TekGrid.prototype, "actions", void 0);
|
|
1609
1609
|
__decorate([
|
|
1610
1610
|
PropWatch({ type: [String, Boolean], default: true })
|
|
1611
|
-
], TekGrid
|
|
1611
|
+
], TekGrid.prototype, "dragColumns", void 0);
|
|
1612
1612
|
__decorate([
|
|
1613
1613
|
PropWatch({ type: [String, Boolean], default: true })
|
|
1614
|
-
], TekGrid
|
|
1614
|
+
], TekGrid.prototype, "resizeColumns", void 0);
|
|
1615
1615
|
__decorate([
|
|
1616
1616
|
PropWatch({ type: [String, Boolean], default: true })
|
|
1617
|
-
], TekGrid
|
|
1617
|
+
], TekGrid.prototype, "showLayoutOptions", void 0);
|
|
1618
1618
|
__decorate([
|
|
1619
1619
|
PropWatch({ type: [String, Boolean], default: false })
|
|
1620
|
-
], TekGrid
|
|
1620
|
+
], TekGrid.prototype, "showExport", void 0);
|
|
1621
1621
|
__decorate([
|
|
1622
1622
|
PropWatch({ type: [String, Boolean], default: true })
|
|
1623
|
-
], TekGrid
|
|
1623
|
+
], TekGrid.prototype, "showReload", void 0);
|
|
1624
1624
|
__decorate([
|
|
1625
1625
|
PropWatch({ type: [String, Array] })
|
|
1626
|
-
], TekGrid
|
|
1626
|
+
], TekGrid.prototype, "exportConfig", void 0);
|
|
1627
1627
|
__decorate([
|
|
1628
1628
|
Prop({ type: [Array] })
|
|
1629
|
-
], TekGrid
|
|
1629
|
+
], TekGrid.prototype, "exportActions", void 0);
|
|
1630
1630
|
__decorate([
|
|
1631
1631
|
PropWatch({ type: [String, Boolean], default: false })
|
|
1632
|
-
], TekGrid
|
|
1632
|
+
], TekGrid.prototype, "groupsOpened", void 0);
|
|
1633
1633
|
__decorate([
|
|
1634
1634
|
PropWatch({ type: [String, Boolean], default: true })
|
|
1635
|
-
], TekGrid
|
|
1635
|
+
], TekGrid.prototype, "showSummaryTotal", void 0);
|
|
1636
1636
|
__decorate([
|
|
1637
1637
|
PropWatch({ type: [String, Boolean], default: true })
|
|
1638
|
-
], TekGrid
|
|
1638
|
+
], TekGrid.prototype, "mainGrid", void 0);
|
|
1639
1639
|
__decorate([
|
|
1640
1640
|
PropWatch({ type: [String], default: undefined })
|
|
1641
|
-
], TekGrid
|
|
1641
|
+
], TekGrid.prototype, "xlsDefaultType", void 0);
|
|
1642
1642
|
__decorate([
|
|
1643
1643
|
PropWatch({
|
|
1644
1644
|
type: [String, Boolean],
|
|
1645
1645
|
default: Config.gridShowCheckboxAllFilter,
|
|
1646
1646
|
})
|
|
1647
|
-
], TekGrid
|
|
1647
|
+
], TekGrid.prototype, "showCheckboxAllFilter", void 0);
|
|
1648
1648
|
__decorate([
|
|
1649
1649
|
PropWatch({ type: [Boolean], default: true })
|
|
1650
|
-
], TekGrid
|
|
1650
|
+
], TekGrid.prototype, "toolbarOpened", void 0);
|
|
1651
1651
|
__decorate([
|
|
1652
1652
|
PropWatch({ type: [Object] })
|
|
1653
|
-
], TekGrid
|
|
1653
|
+
], TekGrid.prototype, "defaultFilter", void 0);
|
|
1654
1654
|
__decorate([
|
|
1655
1655
|
PropWatch({ type: [String] })
|
|
1656
|
-
], TekGrid
|
|
1656
|
+
], TekGrid.prototype, "reportTitle", void 0);
|
|
1657
1657
|
__decorate([
|
|
1658
1658
|
PropWatch({ type: [Array] })
|
|
1659
|
-
], TekGrid
|
|
1659
|
+
], TekGrid.prototype, "toolbarConfig", void 0);
|
|
1660
1660
|
__decorate([
|
|
1661
1661
|
PropWatch({ type: [String, Function] })
|
|
1662
|
-
], TekGrid
|
|
1662
|
+
], TekGrid.prototype, "reportLabelFormatter", void 0);
|
|
1663
1663
|
__decorate([
|
|
1664
1664
|
Prop({
|
|
1665
1665
|
type: Array,
|
|
1666
1666
|
default: () => undefined,
|
|
1667
1667
|
})
|
|
1668
|
-
], TekGrid
|
|
1668
|
+
], TekGrid.prototype, "toolbarSlot", void 0);
|
|
1669
1669
|
__decorate([
|
|
1670
1670
|
Watch('instance.title')
|
|
1671
|
-
], TekGrid
|
|
1672
|
-
TekGrid
|
|
1671
|
+
], TekGrid.prototype, "updateTitle", null);
|
|
1672
|
+
TekGrid = __decorate([
|
|
1673
1673
|
Component({
|
|
1674
1674
|
mixins: [EditableMixin, NavigableTableMixin],
|
|
1675
1675
|
})
|
|
1676
|
-
], TekGrid
|
|
1677
|
-
var TekGrid$
|
|
1676
|
+
], TekGrid);
|
|
1677
|
+
var TekGrid$1 = TekGrid;
|
|
1678
1678
|
|
|
1679
1679
|
/* script */
|
|
1680
|
-
const __vue_script__$g = TekGrid$
|
|
1680
|
+
const __vue_script__$g = TekGrid$1;
|
|
1681
1681
|
|
|
1682
1682
|
/* template */
|
|
1683
1683
|
var __vue_render__$g = function () {
|
|
@@ -3349,7 +3349,7 @@ let TekGridColumnsOptionsController = class TekGridColumnsOptionsController {
|
|
|
3349
3349
|
set instance(instance) {
|
|
3350
3350
|
this.instanceValue = instance;
|
|
3351
3351
|
this.iterableComponent = instance.iterableComponent;
|
|
3352
|
-
this.showGroups = instance.iterableComponent instanceof TekGrid$
|
|
3352
|
+
this.showGroups = instance.iterableComponent instanceof TekGrid$2;
|
|
3353
3353
|
this.aggregationData = instance.getAggregationSelectData();
|
|
3354
3354
|
this.columnData = {};
|
|
3355
3355
|
this.iterableComponent.columns.forEach((column) => {
|
|
@@ -4461,7 +4461,7 @@ let TekGridLayoutOptions = class TekGridLayoutOptions extends ZdComponentRender
|
|
|
4461
4461
|
!== oldDynamicFilter)
|
|
4462
4462
|
&& !groupParamsChanged) {
|
|
4463
4463
|
// Se os parametros de agrupamento tiverem sido alterados um get é feito automaticamente
|
|
4464
|
-
if (grid instanceof TekGrid$
|
|
4464
|
+
if (grid instanceof TekGrid$2) {
|
|
4465
4465
|
grid.loadAfterTasks();
|
|
4466
4466
|
}
|
|
4467
4467
|
else {
|
|
@@ -4697,10 +4697,10 @@ const ZdTreeGridEditable = components$1.ZdTreeGridEditable;
|
|
|
4697
4697
|
/**
|
|
4698
4698
|
* TekGrid component
|
|
4699
4699
|
*/
|
|
4700
|
-
let
|
|
4700
|
+
let TekTreeGrid = class TekTreeGrid extends ZdTreeGridEditable {
|
|
4701
4701
|
constructor() {
|
|
4702
4702
|
super(...arguments);
|
|
4703
|
-
this.instanceType = TekTreeGrid;
|
|
4703
|
+
this.instanceType = TekTreeGrid$1;
|
|
4704
4704
|
this.debouncedDatasourceGet = debounce((instance) => {
|
|
4705
4705
|
if (instance.events.beforeApplyFilter) {
|
|
4706
4706
|
instance.events.beforeApplyFilter({ component: instance });
|
|
@@ -5031,83 +5031,83 @@ let TekGrid = class TekGrid extends ZdTreeGridEditable {
|
|
|
5031
5031
|
};
|
|
5032
5032
|
__decorate([
|
|
5033
5033
|
PropWatch({ type: [String], default: '' })
|
|
5034
|
-
],
|
|
5034
|
+
], TekTreeGrid.prototype, "title", void 0);
|
|
5035
5035
|
__decorate([
|
|
5036
5036
|
PropWatch({ type: [Boolean, String], default: false })
|
|
5037
|
-
],
|
|
5037
|
+
], TekTreeGrid.prototype, "addButton", void 0);
|
|
5038
5038
|
__decorate([
|
|
5039
5039
|
PropWatch({ type: [String], default: 'none' })
|
|
5040
|
-
],
|
|
5040
|
+
], TekTreeGrid.prototype, "deleteButton", void 0);
|
|
5041
5041
|
__decorate([
|
|
5042
5042
|
PropWatch({ type: [Boolean, String], default: false })
|
|
5043
|
-
],
|
|
5043
|
+
], TekTreeGrid.prototype, "columnsButton", void 0);
|
|
5044
5044
|
__decorate([
|
|
5045
5045
|
Prop({ type: [Array, String], default: () => [] })
|
|
5046
|
-
],
|
|
5046
|
+
], TekTreeGrid.prototype, "columnsButtonIgnore", void 0);
|
|
5047
5047
|
__decorate([
|
|
5048
5048
|
PropWatch({ type: [Boolean, String], default: true })
|
|
5049
|
-
],
|
|
5049
|
+
], TekTreeGrid.prototype, "showEditButtons", void 0);
|
|
5050
5050
|
__decorate([
|
|
5051
5051
|
PropWatch({ type: [Boolean, String], default: false })
|
|
5052
|
-
],
|
|
5052
|
+
], TekTreeGrid.prototype, "filterButton", void 0);
|
|
5053
5053
|
__decorate([
|
|
5054
5054
|
PropWatch({ type: [Object] })
|
|
5055
|
-
],
|
|
5055
|
+
], TekTreeGrid.prototype, "modalFilterProps", void 0);
|
|
5056
5056
|
__decorate([
|
|
5057
5057
|
PropWatch({ type: [Boolean, String], default: true })
|
|
5058
|
-
],
|
|
5058
|
+
], TekTreeGrid.prototype, "showSearch", void 0);
|
|
5059
5059
|
__decorate([
|
|
5060
5060
|
PropWatch({ type: [Boolean, String], default: true })
|
|
5061
|
-
],
|
|
5061
|
+
], TekTreeGrid.prototype, "showHideButton", void 0);
|
|
5062
5062
|
__decorate([
|
|
5063
5063
|
PropWatch({ type: [Boolean, String], default: false })
|
|
5064
|
-
],
|
|
5064
|
+
], TekTreeGrid.prototype, "columnFilterButton", void 0);
|
|
5065
5065
|
__decorate([
|
|
5066
5066
|
Prop({ type: [Array], default: () => [] })
|
|
5067
|
-
],
|
|
5067
|
+
], TekTreeGrid.prototype, "actions", void 0);
|
|
5068
5068
|
__decorate([
|
|
5069
5069
|
PropWatch({ type: [String, Boolean], default: true })
|
|
5070
|
-
],
|
|
5070
|
+
], TekTreeGrid.prototype, "dragColumns", void 0);
|
|
5071
5071
|
__decorate([
|
|
5072
5072
|
PropWatch({ type: [String, Boolean], default: true })
|
|
5073
|
-
],
|
|
5073
|
+
], TekTreeGrid.prototype, "mainGrid", void 0);
|
|
5074
5074
|
__decorate([
|
|
5075
5075
|
PropWatch({ type: [String, Boolean], default: true })
|
|
5076
|
-
],
|
|
5076
|
+
], TekTreeGrid.prototype, "resizeColumns", void 0);
|
|
5077
5077
|
__decorate([
|
|
5078
5078
|
PropWatch({ type: [String, Boolean], default: true })
|
|
5079
|
-
],
|
|
5079
|
+
], TekTreeGrid.prototype, "showLayoutOptions", void 0);
|
|
5080
5080
|
__decorate([
|
|
5081
5081
|
PropWatch({ type: [String, Boolean], default: false })
|
|
5082
|
-
],
|
|
5082
|
+
], TekTreeGrid.prototype, "showExport", void 0);
|
|
5083
5083
|
__decorate([
|
|
5084
5084
|
PropWatch({ type: [String, Boolean], default: true })
|
|
5085
|
-
],
|
|
5085
|
+
], TekTreeGrid.prototype, "showReload", void 0);
|
|
5086
5086
|
__decorate([
|
|
5087
5087
|
PropWatch({ type: [Object] })
|
|
5088
|
-
],
|
|
5088
|
+
], TekTreeGrid.prototype, "defaultFilter", void 0);
|
|
5089
5089
|
__decorate([
|
|
5090
5090
|
PropWatch({ type: [String] })
|
|
5091
|
-
],
|
|
5091
|
+
], TekTreeGrid.prototype, "reportTitle", void 0);
|
|
5092
5092
|
__decorate([
|
|
5093
5093
|
Prop({ type: [String, Array] })
|
|
5094
|
-
],
|
|
5094
|
+
], TekTreeGrid.prototype, "exportConfig", void 0);
|
|
5095
5095
|
__decorate([
|
|
5096
5096
|
Prop({ type: [Array] })
|
|
5097
|
-
],
|
|
5097
|
+
], TekTreeGrid.prototype, "exportActions", void 0);
|
|
5098
5098
|
__decorate([
|
|
5099
5099
|
Prop({
|
|
5100
5100
|
type: Array,
|
|
5101
5101
|
default: () => undefined,
|
|
5102
5102
|
})
|
|
5103
|
-
],
|
|
5103
|
+
], TekTreeGrid.prototype, "toolbarSlot", void 0);
|
|
5104
5104
|
__decorate([
|
|
5105
5105
|
Watch('instance.title')
|
|
5106
|
-
],
|
|
5107
|
-
|
|
5106
|
+
], TekTreeGrid.prototype, "updateTitle", null);
|
|
5107
|
+
TekTreeGrid = __decorate([
|
|
5108
5108
|
Component
|
|
5109
|
-
],
|
|
5110
|
-
var script$6 =
|
|
5109
|
+
], TekTreeGrid);
|
|
5110
|
+
var script$6 = TekTreeGrid;
|
|
5111
5111
|
|
|
5112
5112
|
let TekUserInfo = class TekUserInfo extends ZdUserInfo {
|
|
5113
5113
|
constructor() {
|
|
@@ -5157,7 +5157,7 @@ var script$4 = TekUserInfoList;
|
|
|
5157
5157
|
/**
|
|
5158
5158
|
* TekDragGrid component
|
|
5159
5159
|
*/
|
|
5160
|
-
let TekDragGrid = class TekDragGrid extends TekGrid$
|
|
5160
|
+
let TekDragGrid = class TekDragGrid extends TekGrid$1 {
|
|
5161
5161
|
constructor() {
|
|
5162
5162
|
super(...arguments);
|
|
5163
5163
|
this.instanceType = TekDragGrid$1;
|
|
@@ -8904,4 +8904,4 @@ const TeknisaComponents = {
|
|
|
8904
8904
|
const packageContent = require('../package.json');
|
|
8905
8905
|
VersionService.addPackageVersion(packageContent.name, packageContent.version);
|
|
8906
8906
|
|
|
8907
|
-
export { script$m as TekBreadcrumbHeader, script$l as TekCardTitle, script$k as TekCrudAddButton, script$j as TekCrudCancelButton, script$i as TekCrudDeleteButton, script$h as TekCrudForm, script$g as TekCrudSaveButton, script$3 as TekDragGrid, TekGrid$
|
|
8907
|
+
export { script$m as TekBreadcrumbHeader, script$l as TekCardTitle, script$k as TekCrudAddButton, script$j as TekCrudCancelButton, script$i as TekCrudDeleteButton, script$h as TekCrudForm, script$g as TekCrudSaveButton, script$3 as TekDragGrid, TekGrid$1 as TekGrid, script$f as TekGridCellIdentation, script$d as TekGridColumnFilter, script$c as TekGridColumnsButton, script$b as TekGridFilterButton, script$e as TekGridHeaderIndentation, script$a as TekGridLayoutOptions, script$9 as TekImage, script$8 as TekIterableComponentRender, script$7 as TekProductCard, script$6 as TekTreeGrid, script$5 as TekUserInfo, script$4 as TekUserInfoList, TeknisaComponents as default };
|
|
@@ -1147,7 +1147,7 @@
|
|
|
1147
1147
|
/**
|
|
1148
1148
|
* TekGrid component
|
|
1149
1149
|
*/
|
|
1150
|
-
let TekGrid
|
|
1150
|
+
let TekGrid = class TekGrid extends ZdGridEditable {
|
|
1151
1151
|
constructor() {
|
|
1152
1152
|
super(...arguments);
|
|
1153
1153
|
this.instanceType = teknisaComponentsCommon.TekGrid;
|
|
@@ -1569,115 +1569,115 @@
|
|
|
1569
1569
|
};
|
|
1570
1570
|
__decorate([
|
|
1571
1571
|
vuetify.PropWatch({ type: [String], default: '' })
|
|
1572
|
-
], TekGrid
|
|
1572
|
+
], TekGrid.prototype, "title", void 0);
|
|
1573
1573
|
__decorate([
|
|
1574
1574
|
vuetify.PropWatch({ type: [Boolean, String], default: false })
|
|
1575
|
-
], TekGrid
|
|
1575
|
+
], TekGrid.prototype, "addButton", void 0);
|
|
1576
1576
|
__decorate([
|
|
1577
1577
|
vuetify.PropWatch({ type: [String], default: 'none' })
|
|
1578
|
-
], TekGrid
|
|
1578
|
+
], TekGrid.prototype, "deleteButton", void 0);
|
|
1579
1579
|
__decorate([
|
|
1580
1580
|
vuetify.PropWatch({ type: [Boolean, String], default: false })
|
|
1581
|
-
], TekGrid
|
|
1581
|
+
], TekGrid.prototype, "columnsButton", void 0);
|
|
1582
1582
|
__decorate([
|
|
1583
1583
|
vuePropertyDecorator.Prop({ type: [Array, String], default: () => [] })
|
|
1584
|
-
], TekGrid
|
|
1584
|
+
], TekGrid.prototype, "columnsButtonIgnore", void 0);
|
|
1585
1585
|
__decorate([
|
|
1586
1586
|
vuetify.PropWatch({ type: [Boolean, String], default: true })
|
|
1587
|
-
], TekGrid
|
|
1587
|
+
], TekGrid.prototype, "showEditButtons", void 0);
|
|
1588
1588
|
__decorate([
|
|
1589
1589
|
vuetify.PropWatch({ type: [Boolean, String], default: false })
|
|
1590
|
-
], TekGrid
|
|
1590
|
+
], TekGrid.prototype, "filterButton", void 0);
|
|
1591
1591
|
__decorate([
|
|
1592
1592
|
vuetify.PropWatch({ type: [Object] })
|
|
1593
|
-
], TekGrid
|
|
1593
|
+
], TekGrid.prototype, "modalFilterProps", void 0);
|
|
1594
1594
|
__decorate([
|
|
1595
1595
|
vuetify.PropWatch({ type: [Boolean, String], default: true })
|
|
1596
|
-
], TekGrid
|
|
1596
|
+
], TekGrid.prototype, "showSearch", void 0);
|
|
1597
1597
|
__decorate([
|
|
1598
1598
|
vuetify.PropWatch({ type: [Boolean, String], default: true })
|
|
1599
|
-
], TekGrid
|
|
1599
|
+
], TekGrid.prototype, "showHideButton", void 0);
|
|
1600
1600
|
__decorate([
|
|
1601
1601
|
vuetify.PropWatch({ type: [Boolean, String], default: false })
|
|
1602
|
-
], TekGrid
|
|
1602
|
+
], TekGrid.prototype, "columnFilterButton", void 0);
|
|
1603
1603
|
__decorate([
|
|
1604
1604
|
vuetify.PropWatch({ type: Boolean, default: false })
|
|
1605
|
-
], TekGrid
|
|
1605
|
+
], TekGrid.prototype, "hideActions", void 0);
|
|
1606
1606
|
__decorate([
|
|
1607
1607
|
vuePropertyDecorator.Prop({ type: [Array], default: () => [] })
|
|
1608
|
-
], TekGrid
|
|
1608
|
+
], TekGrid.prototype, "actions", void 0);
|
|
1609
1609
|
__decorate([
|
|
1610
1610
|
vuetify.PropWatch({ type: [String, Boolean], default: true })
|
|
1611
|
-
], TekGrid
|
|
1611
|
+
], TekGrid.prototype, "dragColumns", void 0);
|
|
1612
1612
|
__decorate([
|
|
1613
1613
|
vuetify.PropWatch({ type: [String, Boolean], default: true })
|
|
1614
|
-
], TekGrid
|
|
1614
|
+
], TekGrid.prototype, "resizeColumns", void 0);
|
|
1615
1615
|
__decorate([
|
|
1616
1616
|
vuetify.PropWatch({ type: [String, Boolean], default: true })
|
|
1617
|
-
], TekGrid
|
|
1617
|
+
], TekGrid.prototype, "showLayoutOptions", void 0);
|
|
1618
1618
|
__decorate([
|
|
1619
1619
|
vuetify.PropWatch({ type: [String, Boolean], default: false })
|
|
1620
|
-
], TekGrid
|
|
1620
|
+
], TekGrid.prototype, "showExport", void 0);
|
|
1621
1621
|
__decorate([
|
|
1622
1622
|
vuetify.PropWatch({ type: [String, Boolean], default: true })
|
|
1623
|
-
], TekGrid
|
|
1623
|
+
], TekGrid.prototype, "showReload", void 0);
|
|
1624
1624
|
__decorate([
|
|
1625
1625
|
vuetify.PropWatch({ type: [String, Array] })
|
|
1626
|
-
], TekGrid
|
|
1626
|
+
], TekGrid.prototype, "exportConfig", void 0);
|
|
1627
1627
|
__decorate([
|
|
1628
1628
|
vuePropertyDecorator.Prop({ type: [Array] })
|
|
1629
|
-
], TekGrid
|
|
1629
|
+
], TekGrid.prototype, "exportActions", void 0);
|
|
1630
1630
|
__decorate([
|
|
1631
1631
|
vuetify.PropWatch({ type: [String, Boolean], default: false })
|
|
1632
|
-
], TekGrid
|
|
1632
|
+
], TekGrid.prototype, "groupsOpened", void 0);
|
|
1633
1633
|
__decorate([
|
|
1634
1634
|
vuetify.PropWatch({ type: [String, Boolean], default: true })
|
|
1635
|
-
], TekGrid
|
|
1635
|
+
], TekGrid.prototype, "showSummaryTotal", void 0);
|
|
1636
1636
|
__decorate([
|
|
1637
1637
|
vuetify.PropWatch({ type: [String, Boolean], default: true })
|
|
1638
|
-
], TekGrid
|
|
1638
|
+
], TekGrid.prototype, "mainGrid", void 0);
|
|
1639
1639
|
__decorate([
|
|
1640
1640
|
vuetify.PropWatch({ type: [String], default: undefined })
|
|
1641
|
-
], TekGrid
|
|
1641
|
+
], TekGrid.prototype, "xlsDefaultType", void 0);
|
|
1642
1642
|
__decorate([
|
|
1643
1643
|
vuetify.PropWatch({
|
|
1644
1644
|
type: [String, Boolean],
|
|
1645
1645
|
default: core.Config.gridShowCheckboxAllFilter,
|
|
1646
1646
|
})
|
|
1647
|
-
], TekGrid
|
|
1647
|
+
], TekGrid.prototype, "showCheckboxAllFilter", void 0);
|
|
1648
1648
|
__decorate([
|
|
1649
1649
|
vuetify.PropWatch({ type: [Boolean], default: true })
|
|
1650
|
-
], TekGrid
|
|
1650
|
+
], TekGrid.prototype, "toolbarOpened", void 0);
|
|
1651
1651
|
__decorate([
|
|
1652
1652
|
vuetify.PropWatch({ type: [Object] })
|
|
1653
|
-
], TekGrid
|
|
1653
|
+
], TekGrid.prototype, "defaultFilter", void 0);
|
|
1654
1654
|
__decorate([
|
|
1655
1655
|
vuetify.PropWatch({ type: [String] })
|
|
1656
|
-
], TekGrid
|
|
1656
|
+
], TekGrid.prototype, "reportTitle", void 0);
|
|
1657
1657
|
__decorate([
|
|
1658
1658
|
vuetify.PropWatch({ type: [Array] })
|
|
1659
|
-
], TekGrid
|
|
1659
|
+
], TekGrid.prototype, "toolbarConfig", void 0);
|
|
1660
1660
|
__decorate([
|
|
1661
1661
|
vuetify.PropWatch({ type: [String, Function] })
|
|
1662
|
-
], TekGrid
|
|
1662
|
+
], TekGrid.prototype, "reportLabelFormatter", void 0);
|
|
1663
1663
|
__decorate([
|
|
1664
1664
|
vuePropertyDecorator.Prop({
|
|
1665
1665
|
type: Array,
|
|
1666
1666
|
default: () => undefined,
|
|
1667
1667
|
})
|
|
1668
|
-
], TekGrid
|
|
1668
|
+
], TekGrid.prototype, "toolbarSlot", void 0);
|
|
1669
1669
|
__decorate([
|
|
1670
1670
|
vuePropertyDecorator.Watch('instance.title')
|
|
1671
|
-
], TekGrid
|
|
1672
|
-
TekGrid
|
|
1671
|
+
], TekGrid.prototype, "updateTitle", null);
|
|
1672
|
+
TekGrid = __decorate([
|
|
1673
1673
|
vuePropertyDecorator.Component({
|
|
1674
1674
|
mixins: [vuetify.EditableMixin, vuetify.NavigableTableMixin],
|
|
1675
1675
|
})
|
|
1676
|
-
], TekGrid
|
|
1677
|
-
var TekGrid$
|
|
1676
|
+
], TekGrid);
|
|
1677
|
+
var TekGrid$1 = TekGrid;
|
|
1678
1678
|
|
|
1679
1679
|
/* script */
|
|
1680
|
-
const __vue_script__$g = TekGrid$
|
|
1680
|
+
const __vue_script__$g = TekGrid$1;
|
|
1681
1681
|
|
|
1682
1682
|
/* template */
|
|
1683
1683
|
var __vue_render__$g = function () {
|
|
@@ -4697,7 +4697,7 @@
|
|
|
4697
4697
|
/**
|
|
4698
4698
|
* TekGrid component
|
|
4699
4699
|
*/
|
|
4700
|
-
let
|
|
4700
|
+
let TekTreeGrid = class TekTreeGrid extends ZdTreeGridEditable {
|
|
4701
4701
|
constructor() {
|
|
4702
4702
|
super(...arguments);
|
|
4703
4703
|
this.instanceType = teknisaComponentsCommon.TekTreeGrid;
|
|
@@ -5031,83 +5031,83 @@
|
|
|
5031
5031
|
};
|
|
5032
5032
|
__decorate([
|
|
5033
5033
|
vuetify.PropWatch({ type: [String], default: '' })
|
|
5034
|
-
],
|
|
5034
|
+
], TekTreeGrid.prototype, "title", void 0);
|
|
5035
5035
|
__decorate([
|
|
5036
5036
|
vuetify.PropWatch({ type: [Boolean, String], default: false })
|
|
5037
|
-
],
|
|
5037
|
+
], TekTreeGrid.prototype, "addButton", void 0);
|
|
5038
5038
|
__decorate([
|
|
5039
5039
|
vuetify.PropWatch({ type: [String], default: 'none' })
|
|
5040
|
-
],
|
|
5040
|
+
], TekTreeGrid.prototype, "deleteButton", void 0);
|
|
5041
5041
|
__decorate([
|
|
5042
5042
|
vuetify.PropWatch({ type: [Boolean, String], default: false })
|
|
5043
|
-
],
|
|
5043
|
+
], TekTreeGrid.prototype, "columnsButton", void 0);
|
|
5044
5044
|
__decorate([
|
|
5045
5045
|
vuePropertyDecorator.Prop({ type: [Array, String], default: () => [] })
|
|
5046
|
-
],
|
|
5046
|
+
], TekTreeGrid.prototype, "columnsButtonIgnore", void 0);
|
|
5047
5047
|
__decorate([
|
|
5048
5048
|
vuetify.PropWatch({ type: [Boolean, String], default: true })
|
|
5049
|
-
],
|
|
5049
|
+
], TekTreeGrid.prototype, "showEditButtons", void 0);
|
|
5050
5050
|
__decorate([
|
|
5051
5051
|
vuetify.PropWatch({ type: [Boolean, String], default: false })
|
|
5052
|
-
],
|
|
5052
|
+
], TekTreeGrid.prototype, "filterButton", void 0);
|
|
5053
5053
|
__decorate([
|
|
5054
5054
|
vuetify.PropWatch({ type: [Object] })
|
|
5055
|
-
],
|
|
5055
|
+
], TekTreeGrid.prototype, "modalFilterProps", void 0);
|
|
5056
5056
|
__decorate([
|
|
5057
5057
|
vuetify.PropWatch({ type: [Boolean, String], default: true })
|
|
5058
|
-
],
|
|
5058
|
+
], TekTreeGrid.prototype, "showSearch", void 0);
|
|
5059
5059
|
__decorate([
|
|
5060
5060
|
vuetify.PropWatch({ type: [Boolean, String], default: true })
|
|
5061
|
-
],
|
|
5061
|
+
], TekTreeGrid.prototype, "showHideButton", void 0);
|
|
5062
5062
|
__decorate([
|
|
5063
5063
|
vuetify.PropWatch({ type: [Boolean, String], default: false })
|
|
5064
|
-
],
|
|
5064
|
+
], TekTreeGrid.prototype, "columnFilterButton", void 0);
|
|
5065
5065
|
__decorate([
|
|
5066
5066
|
vuePropertyDecorator.Prop({ type: [Array], default: () => [] })
|
|
5067
|
-
],
|
|
5067
|
+
], TekTreeGrid.prototype, "actions", void 0);
|
|
5068
5068
|
__decorate([
|
|
5069
5069
|
vuetify.PropWatch({ type: [String, Boolean], default: true })
|
|
5070
|
-
],
|
|
5070
|
+
], TekTreeGrid.prototype, "dragColumns", void 0);
|
|
5071
5071
|
__decorate([
|
|
5072
5072
|
vuetify.PropWatch({ type: [String, Boolean], default: true })
|
|
5073
|
-
],
|
|
5073
|
+
], TekTreeGrid.prototype, "mainGrid", void 0);
|
|
5074
5074
|
__decorate([
|
|
5075
5075
|
vuetify.PropWatch({ type: [String, Boolean], default: true })
|
|
5076
|
-
],
|
|
5076
|
+
], TekTreeGrid.prototype, "resizeColumns", void 0);
|
|
5077
5077
|
__decorate([
|
|
5078
5078
|
vuetify.PropWatch({ type: [String, Boolean], default: true })
|
|
5079
|
-
],
|
|
5079
|
+
], TekTreeGrid.prototype, "showLayoutOptions", void 0);
|
|
5080
5080
|
__decorate([
|
|
5081
5081
|
vuetify.PropWatch({ type: [String, Boolean], default: false })
|
|
5082
|
-
],
|
|
5082
|
+
], TekTreeGrid.prototype, "showExport", void 0);
|
|
5083
5083
|
__decorate([
|
|
5084
5084
|
vuetify.PropWatch({ type: [String, Boolean], default: true })
|
|
5085
|
-
],
|
|
5085
|
+
], TekTreeGrid.prototype, "showReload", void 0);
|
|
5086
5086
|
__decorate([
|
|
5087
5087
|
vuetify.PropWatch({ type: [Object] })
|
|
5088
|
-
],
|
|
5088
|
+
], TekTreeGrid.prototype, "defaultFilter", void 0);
|
|
5089
5089
|
__decorate([
|
|
5090
5090
|
vuetify.PropWatch({ type: [String] })
|
|
5091
|
-
],
|
|
5091
|
+
], TekTreeGrid.prototype, "reportTitle", void 0);
|
|
5092
5092
|
__decorate([
|
|
5093
5093
|
vuePropertyDecorator.Prop({ type: [String, Array] })
|
|
5094
|
-
],
|
|
5094
|
+
], TekTreeGrid.prototype, "exportConfig", void 0);
|
|
5095
5095
|
__decorate([
|
|
5096
5096
|
vuePropertyDecorator.Prop({ type: [Array] })
|
|
5097
|
-
],
|
|
5097
|
+
], TekTreeGrid.prototype, "exportActions", void 0);
|
|
5098
5098
|
__decorate([
|
|
5099
5099
|
vuePropertyDecorator.Prop({
|
|
5100
5100
|
type: Array,
|
|
5101
5101
|
default: () => undefined,
|
|
5102
5102
|
})
|
|
5103
|
-
],
|
|
5103
|
+
], TekTreeGrid.prototype, "toolbarSlot", void 0);
|
|
5104
5104
|
__decorate([
|
|
5105
5105
|
vuePropertyDecorator.Watch('instance.title')
|
|
5106
|
-
],
|
|
5107
|
-
|
|
5106
|
+
], TekTreeGrid.prototype, "updateTitle", null);
|
|
5107
|
+
TekTreeGrid = __decorate([
|
|
5108
5108
|
vuePropertyDecorator.Component
|
|
5109
|
-
],
|
|
5110
|
-
var script$6 =
|
|
5109
|
+
], TekTreeGrid);
|
|
5110
|
+
var script$6 = TekTreeGrid;
|
|
5111
5111
|
|
|
5112
5112
|
let TekUserInfo = class TekUserInfo extends zdUserInfoVue.ZdUserInfo {
|
|
5113
5113
|
constructor() {
|
|
@@ -5157,7 +5157,7 @@
|
|
|
5157
5157
|
/**
|
|
5158
5158
|
* TekDragGrid component
|
|
5159
5159
|
*/
|
|
5160
|
-
let TekDragGrid = class TekDragGrid extends TekGrid$
|
|
5160
|
+
let TekDragGrid = class TekDragGrid extends TekGrid$1 {
|
|
5161
5161
|
constructor() {
|
|
5162
5162
|
super(...arguments);
|
|
5163
5163
|
this.instanceType = teknisaComponentsCommon.TekDragGrid;
|
|
@@ -8912,7 +8912,7 @@
|
|
|
8912
8912
|
exports.TekCrudForm = script$h;
|
|
8913
8913
|
exports.TekCrudSaveButton = script$g;
|
|
8914
8914
|
exports.TekDragGrid = script$3;
|
|
8915
|
-
exports.TekGrid = TekGrid$
|
|
8915
|
+
exports.TekGrid = TekGrid$1;
|
|
8916
8916
|
exports.TekGridCellIdentation = script$f;
|
|
8917
8917
|
exports.TekGridColumnFilter = script$d;
|
|
8918
8918
|
exports.TekGridColumnsButton = script$c;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/teknisa-components-vuetify",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.113.0",
|
|
4
4
|
"description": "Teknisa Components based on Vuetify",
|
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"vue": "2.7.*",
|
|
45
45
|
"vuetify": "2.6.*"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "6e11bff8bd021a6880fc1801c81e8ef1d1124624"
|
|
48
48
|
}
|
|
@@ -5,7 +5,7 @@ declare const ZdTreeGridEditable: import("vue").VueConstructor<import("vue-prope
|
|
|
5
5
|
/**
|
|
6
6
|
* TekGrid component
|
|
7
7
|
*/
|
|
8
|
-
export default class
|
|
8
|
+
export default class TekTreeGrid extends ZdTreeGridEditable {
|
|
9
9
|
title: string;
|
|
10
10
|
addButton: boolean | string;
|
|
11
11
|
deleteButton: 'none' | 'currentRow' | 'selection';
|