@vitrosoftware/common-ui-ts 1.1.110 → 1.1.112
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/css/std/controls/criterion/criterion.css +0 -12
- package/css/std/controls/date-picker/date-picker.css +1 -0
- package/css/std/controls/dropdown-button/dropdown-button.css +8 -8
- package/css/std/controls/expand-control-group/expand-control-group.css +10 -32
- package/css/std/controls/field-iterator/field-iterator.css +55 -7
- package/css/std/controls/field-iterator/img/collapse-bottom.svg +4 -0
- package/css/std/controls/field-iterator/img/collapse-up.svg +4 -0
- package/css/std/controls/input/input.css +1 -1
- package/css/std/controls/message-input/message-input.css +3 -1
- package/css/std/controls/search/search.css +2 -6
- package/css/std/controls/tab-group/tab-group.css +0 -8
- package/css/std/controls/view/view.css +15 -2
- package/dist/index.css +106 -87
- package/dist/index.js +362 -285
- package/dist/index.js.map +1 -1
- package/dist/src/controls/ExpandControlGroup/ExpandControlGroup.d.ts +9 -4
- package/dist/src/controls/ExpandControlGroup/ExpandControlGroupConstants.d.ts +4 -0
- package/dist/src/controls/FieldIterator/FieldIterator.d.ts +2 -1
- package/dist/src/controls/LookupPicker/LookupPicker.d.ts +3 -0
- package/dist/src/controls/View/GroupControl.d.ts +2 -0
- 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
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
interface ExpandControlGroupProps {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
expandImage?: React.ReactNode;
|
|
4
|
+
collapseImage?: React.ReactNode;
|
|
5
|
+
expandText?: string;
|
|
6
|
+
collapseText?: string;
|
|
7
|
+
isExpanded?: boolean;
|
|
8
|
+
isExpandTop?: boolean;
|
|
9
|
+
onClick?: (isExpanded: boolean) => any;
|
|
10
|
+
className?: string;
|
|
11
|
+
buttonClassName?: string;
|
|
7
12
|
children: React.ReactNode;
|
|
8
13
|
}
|
|
9
14
|
export declare const ExpandControlGroup: (props: ExpandControlGroupProps) => JSX.Element;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import '../../../css/std/controls/field-iterator/field-iterator.css';
|
|
3
2
|
interface FieldIteratorProps {
|
|
4
3
|
fieldList: any[];
|
|
5
4
|
componentMap: {
|
|
@@ -18,7 +17,9 @@ interface FieldIteratorProps {
|
|
|
18
17
|
message: string;
|
|
19
18
|
}[];
|
|
20
19
|
isVisibleOverflow?: boolean;
|
|
20
|
+
maxVisibleCount?: number;
|
|
21
21
|
isReadOnly?: boolean;
|
|
22
|
+
className?: string;
|
|
22
23
|
}
|
|
23
24
|
export declare const FieldIterator: React.ForwardRefExoticComponent<FieldIteratorProps & React.RefAttributes<unknown>>;
|
|
24
25
|
export {};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React, { FunctionComponent } from 'react';
|
|
2
|
+
import { interfaces } from 'inversify';
|
|
2
3
|
export interface LookupPickerProps {
|
|
3
4
|
name?: string;
|
|
4
5
|
valueList?: {
|
|
@@ -23,6 +24,7 @@ export interface LookupPickerProps {
|
|
|
23
24
|
isReadOnly?: boolean;
|
|
24
25
|
isRequired?: boolean;
|
|
25
26
|
isFlipDropdown?: boolean;
|
|
27
|
+
isShowButtonClear?: boolean;
|
|
26
28
|
onChange?: (value: any[] | any, name?: string) => void;
|
|
27
29
|
onBlur?: (e: any, name?: string) => void;
|
|
28
30
|
onFocus?: (e: any) => void;
|
|
@@ -34,5 +36,6 @@ export interface LookupPickerProps {
|
|
|
34
36
|
children?: React.ReactNode;
|
|
35
37
|
className?: string;
|
|
36
38
|
getAllValueList?: () => Promise<any>;
|
|
39
|
+
container?: interfaces.Container;
|
|
37
40
|
}
|
|
38
41
|
export declare const LookupPicker: React.ForwardRefExoticComponent<LookupPickerProps & React.RefAttributes<unknown>>;
|
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.112';
|
|
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.112';
|
|
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.112",
|
|
21210
21210
|
kind: OptionKind.WORKER
|
|
21211
21211
|
}
|
|
21212
21212
|
};
|
|
Binary file
|