@vitrosoftware/common-ui-ts 1.1.79 → 1.1.81
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/table-view/table-view.css +3 -0
- package/css/std/controls/table-view/treegrid.css +1 -9
- package/dist/index.css +3 -0
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/src/controls/BimViewer/BimViewerContext.d.ts +2 -5
- package/dist/src/controls/TableView/TableViewConstants.d.ts +3 -1
- package/dist/src/controls/TableView/TableViewContext.d.ts +2 -0
- package/dist/src/controls/TableView/TreeGridTableViewContextImpl.d.ts +2 -0
- package/lib/xeokit/VitroTreeViewPlugin.js +4 -34
- package/lib/xeokit/{xeokit-sdk.es.js → xeokit-sdk-2.5.2-beta-8.es.js} +36105 -28872
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer.js +132 -166
- package/lib/xeokit/VitroFastNavPlugin.js +0 -920
|
@@ -55,10 +55,13 @@
|
|
|
55
55
|
:global(.vitro-table-view-button-context) {
|
|
56
56
|
height: 24px;
|
|
57
57
|
width: 24px;
|
|
58
|
+
min-width: 24px;
|
|
58
59
|
margin-left: -2px;
|
|
59
60
|
display: none;
|
|
61
|
+
cursor: default;
|
|
60
62
|
}
|
|
61
63
|
|
|
62
64
|
:global(.TWClassSelected .vitro-table-view-button-context) {
|
|
63
65
|
display: inline-block;
|
|
66
|
+
cursor: pointer;
|
|
64
67
|
}
|
|
@@ -881,15 +881,7 @@
|
|
|
881
881
|
|
|
882
882
|
.TWCell.TWRightHtml {
|
|
883
883
|
padding: 0px !important;
|
|
884
|
-
|
|
885
|
-
}
|
|
886
|
-
|
|
887
|
-
.TWCell.TWRightHtml {
|
|
888
|
-
pointer-events: none;
|
|
889
|
-
}
|
|
890
|
-
|
|
891
|
-
.TWClassSelected .TWCell.TWRightHtml {
|
|
892
|
-
pointer-events: all;
|
|
884
|
+
cursor: default;
|
|
893
885
|
}
|
|
894
886
|
|
|
895
887
|
.TWFilterMenuHeader {
|
package/dist/index.css
CHANGED
|
@@ -575,12 +575,15 @@ html, body {
|
|
|
575
575
|
.vitro-table-view-button-context {
|
|
576
576
|
height: 24px;
|
|
577
577
|
width: 24px;
|
|
578
|
+
min-width: 24px;
|
|
578
579
|
margin-left: -2px;
|
|
579
580
|
display: none;
|
|
581
|
+
cursor: default;
|
|
580
582
|
}
|
|
581
583
|
|
|
582
584
|
.TWClassSelected .vitro-table-view-button-context {
|
|
583
585
|
display: inline-block;
|
|
586
|
+
cursor: pointer;
|
|
584
587
|
}
|
|
585
588
|
|
|
586
589
|
._uploader_vitro-uploader_237vX7T {
|
package/dist/index.js
CHANGED
|
@@ -20896,6 +20896,12 @@ var TreeGridTableViewContextImpl = /*#__PURE__*/function () {
|
|
|
20896
20896
|
_proto.getFirstCol = function getFirstCol(section) {
|
|
20897
20897
|
return this.grid.GetFirstCol(section);
|
|
20898
20898
|
};
|
|
20899
|
+
_proto.focusRow = function focusRow(row) {
|
|
20900
|
+
this.grid.ActionFocusRow(row);
|
|
20901
|
+
};
|
|
20902
|
+
_proto.showPopupMenu = function showPopupMenu() {
|
|
20903
|
+
this.grid.ActionShowPopupMenu();
|
|
20904
|
+
};
|
|
20899
20905
|
_createClass(TreeGridTableViewContextImpl, [{
|
|
20900
20906
|
key: "columnList",
|
|
20901
20907
|
get: function get() {
|
|
@@ -21001,6 +21007,7 @@ var EVENT$1;
|
|
|
21001
21007
|
EVENT["ON_DROP"] = "OnDrop";
|
|
21002
21008
|
EVENT["ON_INIT"] = "OnInit";
|
|
21003
21009
|
EVENT["ON_CUSTOM_AJAX"] = "OnCustomAjax";
|
|
21010
|
+
EVENT["ON_CLICK_SIDE_BUTTON"] = "OnClickSideButton";
|
|
21004
21011
|
})(EVENT$1 || (EVENT$1 = {}));
|
|
21005
21012
|
var URL;
|
|
21006
21013
|
(function (URL) {
|
|
@@ -21048,6 +21055,7 @@ var CELL_TYPE;
|
|
|
21048
21055
|
var ATTRIBUTE;
|
|
21049
21056
|
(function (ATTRIBUTE) {
|
|
21050
21057
|
ATTRIBUTE["BUTTON"] = "Button";
|
|
21058
|
+
ATTRIBUTE["BUTTON_CLASS"] = "ButtonClass";
|
|
21051
21059
|
ATTRIBUTE["BUTTON_TEXT"] = "ButtonText";
|
|
21052
21060
|
ATTRIBUTE["ON_CLICK_SIDE_BUTTON"] = "OnClickSideButton";
|
|
21053
21061
|
ATTRIBUTE["ICON"] = "Icon";
|
|
@@ -61463,7 +61471,7 @@ var Viewer = function Viewer(props) {
|
|
|
61463
61471
|
};
|
|
61464
61472
|
|
|
61465
61473
|
var name = "@vitrosoftware/common-ui-ts";
|
|
61466
|
-
var version$1 = "1.1.
|
|
61474
|
+
var version$1 = "1.1.81";
|
|
61467
61475
|
var description = "vitro software common ui ts";
|
|
61468
61476
|
var author = "";
|
|
61469
61477
|
var license = "MIT";
|