@vitrosoftware/common-ui-ts 1.1.215 → 1.1.216
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/bim-viewer/bim-viewer-index.css +9 -1
- package/css/std/controls/bim-viewer/prop-inspector.css +2 -0
- package/css/std/controls/bim-viewer/sidebar.css +7 -1
- package/css/std/controls/pdf-viewer/custom.css +6 -0
- package/css/std/controls/pdf-viewer/pdf-viewer-index.css +6 -0
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/dist/src/controls/TableView/TableViewConstants.d.ts +5 -2
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer.js +8 -8
- package/src/controls/DxfViewer/js/dxf-viewer.js +14 -14
- package/src/controls/PdfViewer/js/pdf-viewer.js +30 -4
|
@@ -13394,10 +13394,11 @@ select {
|
|
|
13394
13394
|
#sidebarWrap {
|
|
13395
13395
|
position: absolute;
|
|
13396
13396
|
height: calc(100% - 32px);
|
|
13397
|
-
right: 0;
|
|
13397
|
+
right: 0 !important;
|
|
13398
13398
|
top: 51px;
|
|
13399
13399
|
width: 278px;
|
|
13400
13400
|
display: none;
|
|
13401
|
+
left: initial !important;
|
|
13401
13402
|
}
|
|
13402
13403
|
|
|
13403
13404
|
.sidebar-close {
|
|
@@ -13604,6 +13605,11 @@ div.sidebar-note-id:hover {
|
|
|
13604
13605
|
|
|
13605
13606
|
.sidebar-note-status-text {
|
|
13606
13607
|
float: left;
|
|
13608
|
+
}
|
|
13609
|
+
|
|
13610
|
+
#issueDetail {
|
|
13611
|
+
right: 0 !important;
|
|
13612
|
+
left: initial !important
|
|
13607
13613
|
}
|
|
13608
13614
|
#navCubeCanvas {
|
|
13609
13615
|
position: absolute;
|
|
@@ -13994,6 +14000,8 @@ a.ui-button:active,
|
|
|
13994
14000
|
z-index: 89000004;
|
|
13995
14001
|
display: none;
|
|
13996
14002
|
box-sizing: border-box;
|
|
14003
|
+
left: initial !important;
|
|
14004
|
+
right: 0 !important;
|
|
13997
14005
|
}
|
|
13998
14006
|
|
|
13999
14007
|
.prop-inspector-inner-wrap {
|
|
@@ -13,10 +13,11 @@
|
|
|
13
13
|
#sidebarWrap {
|
|
14
14
|
position: absolute;
|
|
15
15
|
height: calc(100% - 32px);
|
|
16
|
-
right: 0;
|
|
16
|
+
right: 0 !important;
|
|
17
17
|
top: 51px;
|
|
18
18
|
width: 278px;
|
|
19
19
|
display: none;
|
|
20
|
+
left: initial !important;
|
|
20
21
|
}
|
|
21
22
|
|
|
22
23
|
.sidebar-close {
|
|
@@ -223,4 +224,9 @@ div.sidebar-note-id:hover {
|
|
|
223
224
|
|
|
224
225
|
.sidebar-note-status-text {
|
|
225
226
|
float: left;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
#issueDetail {
|
|
230
|
+
right: 0 !important;
|
|
231
|
+
left: initial !important
|
|
226
232
|
}
|
|
@@ -482,4 +482,10 @@ html[dir='ltr'] .toolbarButton#btnCompare::before,
|
|
|
482
482
|
top: 50%;
|
|
483
483
|
left: 50%;
|
|
484
484
|
transform: translate(-50%, -50%);
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.body__sidebar.ui-resizable,
|
|
488
|
+
.vitro-issue-detail.ui-resizable {
|
|
489
|
+
left: initial !important;
|
|
490
|
+
right: 0 !important;
|
|
485
491
|
}
|
|
@@ -6732,6 +6732,12 @@ html[dir='ltr'] .toolbarButton#btnCompare::before,
|
|
|
6732
6732
|
top: 50%;
|
|
6733
6733
|
left: 50%;
|
|
6734
6734
|
transform: translate(-50%, -50%);
|
|
6735
|
+
}
|
|
6736
|
+
|
|
6737
|
+
.body__sidebar.ui-resizable,
|
|
6738
|
+
.vitro-issue-detail.ui-resizable {
|
|
6739
|
+
left: initial !important;
|
|
6740
|
+
right: 0 !important;
|
|
6735
6741
|
}
|
|
6736
6742
|
#sidebarContent {
|
|
6737
6743
|
background-color: rgba(0, 0, 0, 0.1);
|
package/dist/index.js
CHANGED
|
@@ -21387,6 +21387,7 @@ var EVENT$1;
|
|
|
21387
21387
|
EVENT["ON_BUTTON_CLICK"] = "OnButtonClick";
|
|
21388
21388
|
EVENT["ON_AFTER_COL_RESIZE"] = "OnAfterColResize";
|
|
21389
21389
|
EVENT["ON_EXPORT"] = "OnExport";
|
|
21390
|
+
EVENT["ON_AFTER_SECTION_RESIZE"] = "OnAfterSectionResize";
|
|
21390
21391
|
})(EVENT$1 || (EVENT$1 = {}));
|
|
21391
21392
|
var CFG_ATTRIBUTE;
|
|
21392
21393
|
(function (CFG_ATTRIBUTE) {
|
|
@@ -21404,6 +21405,8 @@ var CFG_ATTRIBUTE;
|
|
|
21404
21405
|
CFG_ATTRIBUTE["CALCULATED_CHANGES"] = "CalculatedChanges";
|
|
21405
21406
|
CFG_ATTRIBUTE["CUSTOM_SCROLL"] = "CustomScroll";
|
|
21406
21407
|
CFG_ATTRIBUTE["SHOW_V_SCROLL"] = "ShowVScroll";
|
|
21408
|
+
CFG_ATTRIBUTE["MID_WIDTH"] = "MidWidth";
|
|
21409
|
+
CFG_ATTRIBUTE["RIGHT_WIDTH"] = "RightWidth";
|
|
21407
21410
|
})(CFG_ATTRIBUTE || (CFG_ATTRIBUTE = {}));
|
|
21408
21411
|
var URL;
|
|
21409
21412
|
(function (URL) {
|
|
@@ -67023,7 +67026,7 @@ var Viewer = function Viewer(props) {
|
|
|
67023
67026
|
};
|
|
67024
67027
|
|
|
67025
67028
|
var name = "@vitrosoftware/common-ui-ts";
|
|
67026
|
-
var version$1 = "1.1.
|
|
67029
|
+
var version$1 = "1.1.216";
|
|
67027
67030
|
var description = "vitro software common ui ts";
|
|
67028
67031
|
var author = "";
|
|
67029
67032
|
var license = "MIT";
|
|
@@ -83485,7 +83488,7 @@ var Splitter = function Splitter(props) {
|
|
|
83485
83488
|
if (props.localStorageKey) {
|
|
83486
83489
|
var paneWidth = ref.current.state.primaryPane;
|
|
83487
83490
|
var wrapperWidth = ref.current.paneWrapper.clientWidth;
|
|
83488
|
-
var width = props.isWidthPx ? paneWidth : getWidthPercent(paneWidth, wrapperWidth);
|
|
83491
|
+
var width = props.isWidthPx ? paneWidth + UNIT.PX : getWidthPercent(paneWidth, wrapperWidth);
|
|
83489
83492
|
setPaneWidthToLocalSorage(width);
|
|
83490
83493
|
}
|
|
83491
83494
|
if (props.onDragFinished) {
|
|
@@ -83494,7 +83497,7 @@ var Splitter = function Splitter(props) {
|
|
|
83494
83497
|
};
|
|
83495
83498
|
var getPrimaryPaneWidth = function getPrimaryPaneWidth() {
|
|
83496
83499
|
var localStorageWidth = getPaneWidthFromLocalSorage();
|
|
83497
|
-
var primaryPaneWidth = localStorageWidth ? localStorageWidth : getWidth(props.width ? props.width : WIDTH.DEFAULT);
|
|
83500
|
+
var primaryPaneWidth = localStorageWidth ? props.isWidthPx ? localStorageWidth.endsWith(UNIT.PX) ? localStorageWidth : localStorageWidth + UNIT.PX : localStorageWidth : getWidth(props.width ? props.width : WIDTH.DEFAULT);
|
|
83498
83501
|
return primaryPaneWidth;
|
|
83499
83502
|
};
|
|
83500
83503
|
return React__default.createElement(ReactSplitter, {
|