@vitrosoftware/common-ui-ts 1.1.110 → 1.1.111
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 +25 -1
- package/css/std/controls/bim-viewer/bim-viewer.css +25 -1
- package/css/std/controls/bim-viewer/img/all-windows.svg +6 -0
- package/css/std/controls/bim-viewer/img/hide.svg +4 -0
- package/css/std/controls/bim-viewer/img/maximize.svg +6 -0
- package/css/std/controls/bim-viewer/img/options.svg +4 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer.js +2 -2
- package/src/controls/PdfViewer/js/pdf-viewer.js +1 -1
- package/css/std/controls/bim-viewer/img/ui-icons_444444_256x240.png +0 -0
|
@@ -14542,5 +14542,29 @@ a.ui-button:active,
|
|
|
14542
14542
|
}
|
|
14543
14543
|
|
|
14544
14544
|
.ui-icon, .ui-widget-content .ui-icon {
|
|
14545
|
-
background-image:
|
|
14545
|
+
background-image: none;
|
|
14546
|
+
}
|
|
14547
|
+
|
|
14548
|
+
.ui-icon.ui-icon-minus {
|
|
14549
|
+
background-image: url("img/hide.svg");
|
|
14550
|
+
background-position: center center;
|
|
14551
|
+
margin: 0 !important;
|
|
14552
|
+
}
|
|
14553
|
+
|
|
14554
|
+
.ui-icon.ui-icon-extlink {
|
|
14555
|
+
background-image: url("img/maximize.svg");
|
|
14556
|
+
background-position: center center;
|
|
14557
|
+
margin: 0 !important;
|
|
14558
|
+
}
|
|
14559
|
+
|
|
14560
|
+
.ui-icon.ui-icon-triangle-1-s {
|
|
14561
|
+
background-image: url("img/options.svg");
|
|
14562
|
+
background-position: center center;
|
|
14563
|
+
margin: 0 !important;
|
|
14564
|
+
}
|
|
14565
|
+
|
|
14566
|
+
.ui-icon.ui-icon-newwin {
|
|
14567
|
+
background-image: url("img/all-windows.svg");
|
|
14568
|
+
background-position: center center;
|
|
14569
|
+
margin: 0 !important;
|
|
14546
14570
|
}
|
|
@@ -392,5 +392,29 @@
|
|
|
392
392
|
}
|
|
393
393
|
|
|
394
394
|
.ui-icon, .ui-widget-content .ui-icon {
|
|
395
|
-
background-image:
|
|
395
|
+
background-image: none;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.ui-icon.ui-icon-minus {
|
|
399
|
+
background-image: url("img/hide.svg");
|
|
400
|
+
background-position: center center;
|
|
401
|
+
margin: 0 !important;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.ui-icon.ui-icon-extlink {
|
|
405
|
+
background-image: url("img/maximize.svg");
|
|
406
|
+
background-position: center center;
|
|
407
|
+
margin: 0 !important;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.ui-icon.ui-icon-triangle-1-s {
|
|
411
|
+
background-image: url("img/options.svg");
|
|
412
|
+
background-position: center center;
|
|
413
|
+
margin: 0 !important;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.ui-icon.ui-icon-newwin {
|
|
417
|
+
background-image: url("img/all-windows.svg");
|
|
418
|
+
background-position: center center;
|
|
419
|
+
margin: 0 !important;
|
|
396
420
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="3.5" y="3.5" width="17" height="17" rx="1.5" fill="none" stroke="none"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 15H10H9V11H10V10H9H8V11V15V16H9H12V15Z" fill="#222D44"/>
|
|
4
|
+
<rect x="11.5" y="8.5" width="5" height="5" stroke="#222D44"/>
|
|
5
|
+
<rect x="12" y="9" width="4" height="1" fill="#222D44"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="3.5" y="3.5" width="17" height="17" rx="1.5" fill="none" stroke="none"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 11H9V15H13V13H14V15V16H13H9H8V15V11V10H9H11V11Z" fill="#222D44"/>
|
|
4
|
+
<path d="M12 8H16V12H15V9H12V8Z" fill="#222D44"/>
|
|
5
|
+
<path d="M11 13L15 9" stroke="#222D44"/>
|
|
6
|
+
</svg>
|
package/dist/index.js
CHANGED
|
@@ -61893,7 +61893,7 @@ var Viewer = function Viewer(props) {
|
|
|
61893
61893
|
};
|
|
61894
61894
|
|
|
61895
61895
|
var name = "@vitrosoftware/common-ui-ts";
|
|
61896
|
-
var version$1 = "1.1.
|
|
61896
|
+
var version$1 = "1.1.111";
|
|
61897
61897
|
var description = "vitro software common ui ts";
|
|
61898
61898
|
var author = "";
|
|
61899
61899
|
var license = "MIT";
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { BIMModel, BIMCommon, BIMAnnotation } from '/resource/bimViewer/js/bim-viewer-models.js?version=1.1.
|
|
1
|
+
import { BIMModel, BIMCommon, BIMAnnotation } from '/resource/bimViewer/js/bim-viewer-models.js?version=1.1.111';
|
|
2
2
|
|
|
3
3
|
import {
|
|
4
4
|
Viewer, XKTLoaderPlugin, NavCubePlugin, SectionPlanesPlugin, math, BCFViewpointsPlugin, AnnotationsPlugin,
|
|
5
5
|
ContextMenu, TreeViewPlugin, StoreyViewsPlugin, AngleMeasurementsPlugin, CameraMemento, DistanceMeasurementsPlugin,
|
|
6
6
|
GLTFLoaderPlugin, utils, FastNavPlugin, MetaObject
|
|
7
7
|
}
|
|
8
|
-
from '/resource/bimViewer/js/xeokit/xeokit-sdk.es.js?version=1.1.
|
|
8
|
+
from '/resource/bimViewer/js/xeokit/xeokit-sdk.es.js?version=1.1.111';
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
const processByChildIdList = (treeViewNode, event) => {
|
|
@@ -21206,7 +21206,7 @@ const defaultOptions = {
|
|
|
21206
21206
|
kind: OptionKind.WORKER
|
|
21207
21207
|
},
|
|
21208
21208
|
workerSrc: {
|
|
21209
|
-
value: "resource/pdfViewer/js/pdf.worker.js?version=1.1.
|
|
21209
|
+
value: "resource/pdfViewer/js/pdf.worker.js?version=1.1.111",
|
|
21210
21210
|
kind: OptionKind.WORKER
|
|
21211
21211
|
}
|
|
21212
21212
|
};
|
|
Binary file
|