@vitrosoftware/common-ui-ts 1.1.88 → 1.1.89
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/main/main.css +1 -1
- package/css/std/controls/sidebar/img/bottom-menu-button-next.svg +3 -0
- package/css/std/controls/sidebar/sidebar-item.css +19 -8
- package/css/std/controls/sidebar/sidebar.css +80 -25
- package/dist/index.css +101 -34
- package/dist/index.js +104 -42
- package/dist/index.js.map +1 -1
- package/dist/src/controls/Sidebar/GroupItem.d.ts +1 -0
- package/dist/src/controls/Sidebar/Item.d.ts +2 -0
- package/dist/src/controls/Sidebar/Section.d.ts +1 -0
- package/dist/src/controls/Sidebar/SectionList.d.ts +1 -0
- package/dist/src/controls/Sidebar/Sidebar.d.ts +2 -0
- package/dist/src/controls/Tooltip/Tooltip.d.ts +1 -2
- 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/sidebar/img/bottom-menu-button-more.svg +0 -5
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import * as TOOLTIP from './TooltipConstants';
|
|
3
2
|
interface TooltipProps {
|
|
4
3
|
text: string;
|
|
@@ -6,5 +5,5 @@ interface TooltipProps {
|
|
|
6
5
|
isShow?: boolean;
|
|
7
6
|
children: any;
|
|
8
7
|
}
|
|
9
|
-
export declare const Tooltip: (props: TooltipProps) =>
|
|
8
|
+
export declare const Tooltip: (props: TooltipProps) => any;
|
|
10
9
|
export {};
|
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.89';
|
|
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.89';
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
const processByChildIdList = (treeViewNode, event) => {
|
|
@@ -3213,7 +3213,7 @@ const defaultOptions = {
|
|
|
3213
3213
|
kind: OptionKind.WORKER
|
|
3214
3214
|
},
|
|
3215
3215
|
workerSrc: {
|
|
3216
|
-
value: "resource/pdfViewer/js/pdf.worker.js?version=1.1.
|
|
3216
|
+
value: "resource/pdfViewer/js/pdf.worker.js?version=1.1.89",
|
|
3217
3217
|
kind: OptionKind.WORKER
|
|
3218
3218
|
}
|
|
3219
3219
|
};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 41 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<circle cx="10.5" cy="20" r="2.5" transform="rotate(-90 10.5 20)" fill="#4A556C"/>
|
|
3
|
-
<circle cx="20.5" cy="20" r="2.5" transform="rotate(-90 20.5 20)" fill="#4A556C"/>
|
|
4
|
-
<circle cx="30.5" cy="20" r="2.5" transform="rotate(-90 30.5 20)" fill="#4A556C"/>
|
|
5
|
-
</svg>
|