@vitrosoftware/common-ui-ts 1.1.81 → 1.1.82
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 +2 -2
- package/css/std/controls/bim-viewer/toolbar.css +2 -2
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/lib/xeokit/VitroTreeViewPlugin.js +2 -2
- package/package.json +3 -2
- package/src/controls/BimViewer/js/bim-viewer-models.js +361 -0
- package/src/controls/BimViewer/js/bim-viewer.js +19 -11
- package/src/controls/BimViewer/js/init-viewer-page.js +4 -4
|
@@ -143,8 +143,8 @@ select {
|
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
.toolbarButton#btnToggleNotes::before {
|
|
146
|
-
/*
|
|
147
|
-
content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%
|
|
146
|
+
/* hide-annotation.svg URL-encoder for svg */
|
|
147
|
+
content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_133198)'%3E%3Cpath d='M27.5 4V11V19.5C27.5 20.6046 26.6046 21.5 25.5 21.5H2.5C1.39543 21.5 0.5 20.6046 0.5 19.5L0.5 2.5C0.5 1.39543 1.39543 0.5 2.5 0.5H24' stroke='white'/%3E%3Cpath d='M4 4.5H20M4 8.5H16M4 12.5H12M4 16.5H8M15 16.5H24M19 12.5H24M22 8.5H24' stroke='white'/%3E%3Cpath d='M12 22H18V28L15 25L12 22Z' fill='white'/%3E%3Cpath d='M0.5 27.5L27.5 0.5' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_133198'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
|
|
148
148
|
}
|
|
149
149
|
|
|
150
150
|
.toolbarButton#btnToggleSidebarNotes::before {
|
|
@@ -86,8 +86,8 @@ select {
|
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
.toolbarButton#btnToggleNotes::before {
|
|
89
|
-
/*
|
|
90
|
-
content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%
|
|
89
|
+
/* hide-annotation.svg URL-encoder for svg */
|
|
90
|
+
content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_133198)'%3E%3Cpath d='M27.5 4V11V19.5C27.5 20.6046 26.6046 21.5 25.5 21.5H2.5C1.39543 21.5 0.5 20.6046 0.5 19.5L0.5 2.5C0.5 1.39543 1.39543 0.5 2.5 0.5H24' stroke='white'/%3E%3Cpath d='M4 4.5H20M4 8.5H16M4 12.5H12M4 16.5H8M15 16.5H24M19 12.5H24M22 8.5H24' stroke='white'/%3E%3Cpath d='M12 22H18V28L15 25L12 22Z' fill='white'/%3E%3Cpath d='M0.5 27.5L27.5 0.5' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_133198'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
.toolbarButton#btnToggleSidebarNotes::before {
|
package/dist/index.js
CHANGED
|
@@ -61471,7 +61471,7 @@ var Viewer = function Viewer(props) {
|
|
|
61471
61471
|
};
|
|
61472
61472
|
|
|
61473
61473
|
var name = "@vitrosoftware/common-ui-ts";
|
|
61474
|
-
var version$1 = "1.1.
|
|
61474
|
+
var version$1 = "1.1.82";
|
|
61475
61475
|
var description = "vitro software common ui ts";
|
|
61476
61476
|
var author = "";
|
|
61477
61477
|
var license = "MIT";
|
|
@@ -61539,7 +61539,8 @@ var files = [
|
|
|
61539
61539
|
"src/controls/PdfViewer/js/init-viewer-page.js",
|
|
61540
61540
|
"src/controls/PdfViewer/js/pdf-viewer.js",
|
|
61541
61541
|
"src/controls/BimViewer/js/init-viewer-page.js",
|
|
61542
|
-
"src/controls/BimViewer/js/bim-viewer.js"
|
|
61542
|
+
"src/controls/BimViewer/js/bim-viewer.js",
|
|
61543
|
+
"src/controls/BimViewer/js/bim-viewer-models.js"
|
|
61543
61544
|
];
|
|
61544
61545
|
var dependencies = {
|
|
61545
61546
|
"rollup-plugin-postcss": "^3.1.3",
|