@vitrosoftware/common-ui-ts 1.1.87 → 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/alert/alert.css +1 -1
- package/css/std/controls/login/login.css +1 -1
- package/css/std/controls/main/main.css +1 -1
- package/css/std/controls/message-input/message-input.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 +104 -37
- package/dist/index.js +105 -43
- package/dist/index.js.map +1 -1
- package/dist/src/controls/DatePicker/DatePicker.d.ts +1 -2
- package/dist/src/controls/FieldIterator/FieldIteratorRef.d.ts +3 -0
- package/dist/src/controls/ImagePicker/ImagePicker.d.ts +1 -0
- package/dist/src/controls/Input/Input.d.ts +1 -2
- package/dist/src/controls/IssueTile/IssueTile.d.ts +1 -2
- package/dist/src/controls/LookupPicker/LookupPicker.d.ts +1 -2
- 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/TableView/TableViewMenuItem.d.ts +10 -0
- package/dist/src/controls/Tooltip/Tooltip.d.ts +1 -2
- package/dist/src/controls/TreeView/JsTreeViewNode.d.ts +14 -0
- package/dist/src/index.d.ts +14 -11
- 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,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
interface DatePickerProps {
|
|
2
|
+
export interface DatePickerProps {
|
|
3
3
|
name?: string;
|
|
4
4
|
culture?: string;
|
|
5
5
|
value: string | Date;
|
|
@@ -26,4 +26,3 @@ interface DatePickerProps {
|
|
|
26
26
|
className?: string;
|
|
27
27
|
}
|
|
28
28
|
export declare const DatePicker: React.ForwardRefExoticComponent<DatePickerProps & React.RefAttributes<unknown>>;
|
|
29
|
-
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
interface InputProps {
|
|
2
|
+
export interface InputProps {
|
|
3
3
|
name?: string;
|
|
4
4
|
type?: string;
|
|
5
5
|
value?: string;
|
|
@@ -29,4 +29,3 @@ interface InputProps {
|
|
|
29
29
|
className?: string;
|
|
30
30
|
}
|
|
31
31
|
export declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<unknown>>;
|
|
32
|
-
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
interface IssueTileProps {
|
|
2
|
+
export interface IssueTileProps {
|
|
3
3
|
id: string;
|
|
4
4
|
url?: string;
|
|
5
5
|
text: string;
|
|
@@ -23,4 +23,3 @@ interface IssueTileProps {
|
|
|
23
23
|
createLocale: (key: string) => any;
|
|
24
24
|
}
|
|
25
25
|
export declare const IssueTile: (props: IssueTileProps) => JSX.Element;
|
|
26
|
-
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { FunctionComponent } from 'react';
|
|
2
|
-
interface LookupPickerProps {
|
|
2
|
+
export interface LookupPickerProps {
|
|
3
3
|
name?: string;
|
|
4
4
|
valueList?: {
|
|
5
5
|
id: string;
|
|
@@ -36,4 +36,3 @@ interface LookupPickerProps {
|
|
|
36
36
|
getAllValueList?: () => Promise<any>;
|
|
37
37
|
}
|
|
38
38
|
export declare const LookupPicker: React.ForwardRefExoticComponent<LookupPickerProps & React.RefAttributes<unknown>>;
|
|
39
|
-
export {};
|
|
@@ -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/dist/src/index.d.ts
CHANGED
|
@@ -6,11 +6,13 @@ import { Breadcrumbs } from './controls/Breadcrumbs/Breadcrumbs';
|
|
|
6
6
|
import { TopLevelMenu } from './controls/TopLevelMenu/TopLevelMenu';
|
|
7
7
|
import { TreeView, TreeViewProps } from './controls/TreeView/TreeView';
|
|
8
8
|
import { TreeViewContext } from './controls/TreeView/TreeViewContext';
|
|
9
|
+
import { JsTreeViewNode } from './controls/TreeView/JsTreeViewNode';
|
|
9
10
|
import * as TREE_VIEW from './controls/TreeView/TreeViewConstants';
|
|
10
11
|
import { TableView } from './controls/TableView/TableView';
|
|
11
12
|
import { TableViewContext } from './controls/TableView/TableViewContext';
|
|
12
13
|
import { TableViewRow } from './controls/TableView/TableViewRow';
|
|
13
14
|
import { TableViewCol } from './controls/TableView/TableViewCol';
|
|
15
|
+
import { TableViewMenuItem } from './controls/TableView/TableViewMenuItem';
|
|
14
16
|
import * as TABLE_VIEW from './controls/TableView/TableViewConstants';
|
|
15
17
|
import { MicroFrontend } from './controls/MicroFrontend/MicroFrontend';
|
|
16
18
|
import { TelerikUploader } from './controls/TelerikUploader/TelerikUploader';
|
|
@@ -29,15 +31,15 @@ import { ControlGroup } from './controls/ControlGroup/ControlGroup';
|
|
|
29
31
|
import { PdfViewer } from './controls/PdfViewer/PdfViewer';
|
|
30
32
|
import { PdfViewerContext } from './controls/PdfViewer/PdfViewerContext';
|
|
31
33
|
import { Login } from './controls/Login/Login';
|
|
32
|
-
import { Input } from './controls/Input/Input';
|
|
34
|
+
import { Input, InputProps } from './controls/Input/Input';
|
|
33
35
|
import { NumberInput } from './controls/NumberInput/NumberInput';
|
|
34
36
|
import * as NUMBER_INPUT from './controls/NumberInput/NumberInputConstants';
|
|
35
37
|
import { PasswordInput } from './controls/PasswordInput/PasswordInput';
|
|
36
|
-
import { DatePicker } from './controls/DatePicker/DatePicker';
|
|
38
|
+
import { DatePicker, DatePickerProps } from './controls/DatePicker/DatePicker';
|
|
37
39
|
import { TimePicker } from './controls/TimePicker/TimePicker';
|
|
38
40
|
import { Button } from './controls/Button/Button';
|
|
39
41
|
import { Label } from './controls/Label/Label';
|
|
40
|
-
import { LookupPicker } from './controls/LookupPicker/LookupPicker';
|
|
42
|
+
import { LookupPicker, LookupPickerProps } from './controls/LookupPicker/LookupPicker';
|
|
41
43
|
import { CommandMenu } from './controls/CommandMenu/CommandMenu';
|
|
42
44
|
import { CommandMenuButton } from './controls/CommandMenu/CommandMenuButton';
|
|
43
45
|
import { CommandMenuLookupPicker } from './controls/CommandMenu/CommandMenuLookupPicker';
|
|
@@ -56,7 +58,7 @@ import { Avatar } from './controls/Avatar/Avatar';
|
|
|
56
58
|
import { UserProfile } from './controls/UserProfile/UserProfile';
|
|
57
59
|
import { UserLookupPicker } from './controls/UserLookupPicker/UserLookupPicker';
|
|
58
60
|
import { Checkbox, CheckboxProps } from './controls/Checkbox/Checkbox';
|
|
59
|
-
import { IssueTile } from './controls/IssueTile/IssueTile';
|
|
61
|
+
import { IssueTile, IssueTileProps } from './controls/IssueTile/IssueTile';
|
|
60
62
|
import { DropdownButton } from './controls/DropdownButton/DropdownButton';
|
|
61
63
|
import { DropdownItem } from './controls/DropdownButton/DropdownItem';
|
|
62
64
|
import { Activity } from './controls/Activity/Activity';
|
|
@@ -73,6 +75,7 @@ import { Criterion } from './controls/Criterion/Criterion';
|
|
|
73
75
|
import { SearchCriterion } from './controls/Search/SearchCriterion';
|
|
74
76
|
import { Search } from './controls/Search/Search';
|
|
75
77
|
import { FieldIterator } from './controls/FieldIterator/FieldIterator';
|
|
78
|
+
import { FieldIteratorRef } from './controls/FieldIterator/FieldIteratorRef';
|
|
76
79
|
import { Tooltip } from './controls/Tooltip/Tooltip';
|
|
77
80
|
import * as TOOLTIP from './controls/Tooltip/TooltipConstants';
|
|
78
81
|
import { Splitter } from './controls/Splitter/Splitter';
|
|
@@ -102,8 +105,8 @@ import { ButtonGroup } from './controls/ButtonGroup/ButtonGroup';
|
|
|
102
105
|
import { Radio } from './controls/Radio/Radio';
|
|
103
106
|
export { Breadcrumbs };
|
|
104
107
|
export { TopLevelMenu };
|
|
105
|
-
export { TreeView, TreeViewContext, TREE_VIEW, TreeViewProps };
|
|
106
|
-
export { TableView, TableViewContext, TableViewRow, TableViewCol, TABLE_VIEW };
|
|
108
|
+
export { TreeView, TreeViewContext, TREE_VIEW, TreeViewProps, JsTreeViewNode };
|
|
109
|
+
export { TableView, TableViewContext, TableViewRow, TableViewCol, TableViewMenuItem, TABLE_VIEW };
|
|
107
110
|
export { MicroFrontend };
|
|
108
111
|
export { TelerikUploader, TelerikUploaderContext, TelerikUploaderContextImpl, TelerikUploaderSettings };
|
|
109
112
|
export { ComponentLoader, ComponentLoaderContextImpl, ComponentLoaderContext };
|
|
@@ -113,13 +116,13 @@ export { TabGroup };
|
|
|
113
116
|
export { ControlGroup, TabItem };
|
|
114
117
|
export { PdfViewer, PdfViewerContext };
|
|
115
118
|
export { Login };
|
|
116
|
-
export { Input };
|
|
119
|
+
export { Input, InputProps };
|
|
117
120
|
export { NumberInput, NUMBER_INPUT };
|
|
118
|
-
export { DatePicker };
|
|
121
|
+
export { DatePicker, DatePickerProps };
|
|
119
122
|
export { TimePicker };
|
|
120
123
|
export { Button };
|
|
121
124
|
export { Label };
|
|
122
|
-
export { LookupPicker };
|
|
125
|
+
export { LookupPicker, LookupPickerProps };
|
|
123
126
|
export { CommandMenu, CommandMenuButton, CommandMenuLookupPicker, CommandMenuDropdownButton, CommandMenuSubItem };
|
|
124
127
|
export { Sidebar, SidebarItem, SidebarSection };
|
|
125
128
|
export { TaskTile };
|
|
@@ -129,7 +132,7 @@ export { Avatar };
|
|
|
129
132
|
export { UserProfile };
|
|
130
133
|
export { UserLookupPicker };
|
|
131
134
|
export { Checkbox, CheckboxProps };
|
|
132
|
-
export { IssueTile };
|
|
135
|
+
export { IssueTile, IssueTileProps };
|
|
133
136
|
export { DropdownButton, DropdownItem };
|
|
134
137
|
export { Activity };
|
|
135
138
|
export { ActivityItem, ActivityItemProps, ActivityMessage };
|
|
@@ -140,7 +143,7 @@ export { MessageInput };
|
|
|
140
143
|
export { ImagePicker };
|
|
141
144
|
export { Criterion };
|
|
142
145
|
export { Search, SearchCriterion };
|
|
143
|
-
export { FieldIterator };
|
|
146
|
+
export { FieldIterator, FieldIteratorRef };
|
|
144
147
|
export { Tooltip, TOOLTIP };
|
|
145
148
|
export { CONTROL };
|
|
146
149
|
export { PasswordInput };
|
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>
|