@vitrosoftware/common-ui-ts 1.1.241 → 1.1.242
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/css/std/controls/pdf-viewer/pdf-viewer-index.css +4 -0
- package/css/std/controls/pdf-viewer/pdf-viewer.css +4 -0
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/src/controls/TableView/TableView.d.ts +1 -0
- package/dist/src/controls/TableView/services/TableViewService.d.ts +1 -0
- package/dist/src/controls/TableView/services/impl/TableViewServiceImpl.d.ts +1 -0
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer.js +2 -2
- package/src/controls/DxfViewer/js/dxf-viewer.js +15 -15
- package/src/controls/PdfViewer/js/pdf-viewer.js +1 -1
|
@@ -8252,4 +8252,8 @@ dialog .separator {
|
|
|
8252
8252
|
.vitro-item-select-dialog .vitro-selected-item-list .TWBodyMid .TWPageOne .TWSection .TWDataRow td:nth-last-child(2) img,
|
|
8253
8253
|
.vitro-item-select-dialog .vitro-selected-item-list .TWBodyMid .TWPageOne .TWSection .TWDataRow td:last-child img {
|
|
8254
8254
|
display: none;
|
|
8255
|
+
}
|
|
8256
|
+
|
|
8257
|
+
.annotationLayer .popupAnnotation * {
|
|
8258
|
+
line-height: normal !important;
|
|
8255
8259
|
}
|
|
@@ -1250,4 +1250,8 @@ dialog .separator {
|
|
|
1250
1250
|
.vitro-item-select-dialog .vitro-selected-item-list .TWBodyMid .TWPageOne .TWSection .TWDataRow td:nth-last-child(2) img,
|
|
1251
1251
|
.vitro-item-select-dialog .vitro-selected-item-list .TWBodyMid .TWPageOne .TWSection .TWDataRow td:last-child img {
|
|
1252
1252
|
display: none;
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1255
|
+
.annotationLayer .popupAnnotation * {
|
|
1256
|
+
line-height: normal !important;
|
|
1253
1257
|
}
|
package/dist/index.js
CHANGED
|
@@ -21436,6 +21436,7 @@ var TableViewServiceImpl = /*#__PURE__*/function () {
|
|
|
21436
21436
|
function TableViewServiceImpl(grid) {
|
|
21437
21437
|
this.suggestValue = CTRL.EMPTY;
|
|
21438
21438
|
this.isFilterOneLevel = false;
|
|
21439
|
+
this.isFlatView = false;
|
|
21439
21440
|
this.gridChangesFormat = 'JSON';
|
|
21440
21441
|
this.searchCriterionMap = new Map();
|
|
21441
21442
|
this.visibleColumnList = [];
|
|
@@ -21835,6 +21836,9 @@ var TableViewServiceImpl = /*#__PURE__*/function () {
|
|
|
21835
21836
|
if (this.isFilterOneLevel) {
|
|
21836
21837
|
newData = this.setXmlPart(newData, 'FilterOneLevel="1"', XML_TAG.PAGE_SETTINGS);
|
|
21837
21838
|
}
|
|
21839
|
+
if (this.isFlatView) {
|
|
21840
|
+
newData = this.setXmlPart(newData, 'FlatView="1"', XML_TAG.PAGE_SETTINGS);
|
|
21841
|
+
}
|
|
21838
21842
|
if (this.filterContentTypeList) {
|
|
21839
21843
|
var filterContentTypeListJson = JSON.stringify(this.filterContentTypeList);
|
|
21840
21844
|
newData = this.setXmlPart(newData, "FilterContentTypeList='" + filterContentTypeListJson + "'", XML_TAG.PAGE_SETTINGS);
|
|
@@ -22133,6 +22137,9 @@ var TreeGrid = function TreeGrid(props) {
|
|
|
22133
22137
|
if (props.isFilterOneLevel) {
|
|
22134
22138
|
grid.isFilterOneLevel = props.isFilterOneLevel;
|
|
22135
22139
|
}
|
|
22140
|
+
if (props.isFlatView) {
|
|
22141
|
+
grid.isFlatView = props.isFlatView;
|
|
22142
|
+
}
|
|
22136
22143
|
if (props.idColumnName) {
|
|
22137
22144
|
grid.idColumnName = props.idColumnName;
|
|
22138
22145
|
}
|
|
@@ -66962,7 +66969,7 @@ var Viewer = function Viewer(props) {
|
|
|
66962
66969
|
};
|
|
66963
66970
|
|
|
66964
66971
|
var name = "@vitrosoftware/common-ui-ts";
|
|
66965
|
-
var version$1 = "1.1.
|
|
66972
|
+
var version$1 = "1.1.242";
|
|
66966
66973
|
var description = "vitro software common ui ts";
|
|
66967
66974
|
var author = "";
|
|
66968
66975
|
var license = "MIT";
|