@vitrosoftware/common-ui-ts 1.1.185 → 1.1.186
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/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/src/controls/TableView/TableViewConstants.d.ts +2 -1
- package/dist/src/controls/TableView/services/TableViewService.d.ts +2 -0
- package/dist/src/controls/TableView/services/impl/TableViewServiceImpl.d.ts +2 -0
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer.js +2 -2
- package/src/controls/DxfViewer/js/dxf-viewer.js +14 -14
- package/src/controls/PdfViewer/js/pdf-viewer.js +1 -1
package/dist/index.js
CHANGED
|
@@ -21336,6 +21336,7 @@ var EVENT$1;
|
|
|
21336
21336
|
EVENT["ON_DATA_RECEIVE"] = "OnDataReceive";
|
|
21337
21337
|
EVENT["ON_GET_TYPE"] = "OnGetType";
|
|
21338
21338
|
EVENT["ON_BUTTON_CLICK"] = "OnButtonClick";
|
|
21339
|
+
EVENT["ON_AFTER_COL_RESIZE"] = "OnAfterColResize";
|
|
21339
21340
|
})(EVENT$1 || (EVENT$1 = {}));
|
|
21340
21341
|
var CFG_ATTRIBUTE;
|
|
21341
21342
|
(function (CFG_ATTRIBUTE) {
|
|
@@ -21992,6 +21993,10 @@ var TableViewServiceImpl = /*#__PURE__*/function () {
|
|
|
21992
21993
|
_proto.setColWidth = function setColWidth(col, change) {
|
|
21993
21994
|
this.grid.SetWidth(col, change);
|
|
21994
21995
|
};
|
|
21996
|
+
_proto.getColWidth = function getColWidth(col) {
|
|
21997
|
+
var _this$grid$Cols$col;
|
|
21998
|
+
return (_this$grid$Cols$col = this.grid.Cols[col]) === null || _this$grid$Cols$col === void 0 ? void 0 : _this$grid$Cols$col.Width;
|
|
21999
|
+
};
|
|
21995
22000
|
_proto.doGrouping = function doGrouping(group) {
|
|
21996
22001
|
this.grid.DoGrouping(group);
|
|
21997
22002
|
};
|
|
@@ -63020,7 +63025,7 @@ var Viewer = function Viewer(props) {
|
|
|
63020
63025
|
};
|
|
63021
63026
|
|
|
63022
63027
|
var name = "@vitrosoftware/common-ui-ts";
|
|
63023
|
-
var version$1 = "1.1.
|
|
63028
|
+
var version$1 = "1.1.186";
|
|
63024
63029
|
var description = "vitro software common ui ts";
|
|
63025
63030
|
var author = "";
|
|
63026
63031
|
var license = "MIT";
|