@vitrosoftware/common-ui-ts 1.1.33 → 1.1.35
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.
|
@@ -13,6 +13,7 @@ export interface TableViewContext {
|
|
|
13
13
|
readonly header: TableViewRow;
|
|
14
14
|
dragging: boolean;
|
|
15
15
|
filterOneLevel: boolean;
|
|
16
|
+
scope: string;
|
|
16
17
|
acceptChanges(row?: TableViewRow): void;
|
|
17
18
|
hasGantt(): boolean;
|
|
18
19
|
getRowById(id: string, attr?: string, nofixed?: boolean): TableViewRow;
|
|
@@ -19,6 +19,8 @@ export declare class TreeGridTableViewContextImpl implements TableViewContext {
|
|
|
19
19
|
get filter(): any;
|
|
20
20
|
get dragging(): boolean;
|
|
21
21
|
set dragging(value: boolean);
|
|
22
|
+
get scope(): string;
|
|
23
|
+
set scope(value: string);
|
|
22
24
|
get pageLength(): any;
|
|
23
25
|
get header(): TableViewRow;
|
|
24
26
|
acceptChanges(row?: TableViewRow): void;
|
package/dist/index.js
CHANGED
|
@@ -20677,6 +20677,14 @@ var TreeGridTableViewContextImpl = /*#__PURE__*/function () {
|
|
|
20677
20677
|
set: function set(value) {
|
|
20678
20678
|
this.grid.Dragging = value;
|
|
20679
20679
|
}
|
|
20680
|
+
}, {
|
|
20681
|
+
key: "scope",
|
|
20682
|
+
get: function get() {
|
|
20683
|
+
return this.grid.scope;
|
|
20684
|
+
},
|
|
20685
|
+
set: function set(value) {
|
|
20686
|
+
this.grid.scope = value;
|
|
20687
|
+
}
|
|
20680
20688
|
}, {
|
|
20681
20689
|
key: "pageLength",
|
|
20682
20690
|
get: function get() {
|
|
@@ -20960,7 +20968,8 @@ var TreeGrid = function TreeGrid(props) {
|
|
|
20960
20968
|
},
|
|
20961
20969
|
Debug: props.debug || '',
|
|
20962
20970
|
Cache: props.cache || CACHE.DEFAULT,
|
|
20963
|
-
CacheVersion: props.cacheVersion
|
|
20971
|
+
CacheVersion: props.cacheVersion,
|
|
20972
|
+
scope: props.scope
|
|
20964
20973
|
}, "vitro-table-view" + props.id);
|
|
20965
20974
|
} else {
|
|
20966
20975
|
w$2.TreeGrid({
|
|
@@ -20979,7 +20988,8 @@ var TreeGrid = function TreeGrid(props) {
|
|
|
20979
20988
|
},
|
|
20980
20989
|
Debug: props.debug || '',
|
|
20981
20990
|
Cache: props.cache || CACHE.DEFAULT,
|
|
20982
|
-
CacheVersion: props.cacheVersion
|
|
20991
|
+
CacheVersion: props.cacheVersion,
|
|
20992
|
+
scope: props.scope
|
|
20983
20993
|
}, "vitro-table-view" + props.id);
|
|
20984
20994
|
}
|
|
20985
20995
|
return function () {
|