@vitrosoftware/common-ui-ts 1.1.237 → 1.1.239
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 +805 -1
- package/css/std/controls/bim-viewer/bim-viewer.css +710 -0
- package/css/std/controls/bim-viewer/comparison-popup.css +82 -0
- package/css/std/controls/bim-viewer/img/collapse-bottom-black.svg +1 -0
- package/css/std/controls/bim-viewer/img/download-grey.svg +3 -0
- package/css/std/controls/bim-viewer/img/download.svg +5 -0
- package/css/std/controls/bim-viewer/img/search.png +0 -0
- package/css/std/controls/bim-viewer/img/separator.svg +5 -0
- package/css/std/controls/bim-viewer/img/splitter-handle-bar-drag.svg +6 -0
- package/css/std/controls/bim-viewer/img/stretch.svg +11 -0
- package/css/std/controls/bim-viewer/style.css +13 -0
- package/dist/index.js +119 -22
- package/dist/index.js.map +1 -1
- package/dist/src/controls/BimViewer/Viewer.d.ts +1 -0
- package/dist/src/controls/TableView/TableViewConstants.d.ts +2 -1
- package/dist/src/controls/TableView/services/TableViewService.d.ts +2 -0
- package/dist/src/controls/TableView/services/impl/TableViewServiceImpl.d.ts +2 -0
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer-models.js +155 -4
- package/src/controls/BimViewer/js/bim-viewer.js +2462 -1490
- package/src/controls/DxfViewer/js/dxf-viewer.js +15 -15
- package/src/controls/PdfViewer/js/pdf-viewer.js +19 -32
|
@@ -46,6 +46,10 @@
|
|
|
46
46
|
border-bottom: 2px solid #FE001B;
|
|
47
47
|
margin-left: 4px;
|
|
48
48
|
}
|
|
49
|
+
.comparison-popup-head-item.changed {
|
|
50
|
+
border-bottom: 2px solid #FFE100;
|
|
51
|
+
margin-left: 4px;
|
|
52
|
+
}
|
|
49
53
|
|
|
50
54
|
.comparison-popup-body .uk-switcher {
|
|
51
55
|
height: calc(100% - 53px);
|
|
@@ -83,6 +87,10 @@
|
|
|
83
87
|
border-left: 2px solid #FE001B;
|
|
84
88
|
}
|
|
85
89
|
|
|
90
|
+
.comparison-popup-body .item-changed {
|
|
91
|
+
border-left: 2px solid #FFE100;
|
|
92
|
+
}
|
|
93
|
+
|
|
86
94
|
.ui-dialog.ui-dialog-comparison .ui-dialog-titlebar-buttonpane>a {
|
|
87
95
|
margin-right: 2px !important;
|
|
88
96
|
}
|
|
@@ -90,3 +98,77 @@
|
|
|
90
98
|
.ui-dialog.ui-dialog-comparison .ui-dialog-titlebar-buttonpane>a:last-child {
|
|
91
99
|
margin-right: 0;
|
|
92
100
|
}
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
.property-comparison-popup-wrap {
|
|
106
|
+
font-family: Arial, sans-serif;
|
|
107
|
+
padding: 15px;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.property-groups-container {
|
|
111
|
+
padding: 5px;
|
|
112
|
+
overflow-y: auto;
|
|
113
|
+
max-height: calc(100vh - 100px);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.property-group {
|
|
117
|
+
margin-bottom: 20px;
|
|
118
|
+
border: 1px solid #e0e0e0;
|
|
119
|
+
border-radius: 4px;
|
|
120
|
+
overflow: hidden;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.group-header {
|
|
124
|
+
padding: 10px 15px;
|
|
125
|
+
background: #f5f5f5;
|
|
126
|
+
font-weight: bold;
|
|
127
|
+
font-size: 15px;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.properties-list {
|
|
131
|
+
padding: 10px;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.property-item {
|
|
135
|
+
margin-bottom: 12px;
|
|
136
|
+
padding-bottom: 12px;
|
|
137
|
+
border-bottom: 1px solid #eee;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.property-item:last-child {
|
|
141
|
+
border-bottom: none;
|
|
142
|
+
margin-bottom: 0;
|
|
143
|
+
padding-bottom: 0;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.property-name {
|
|
147
|
+
font-weight: bold;
|
|
148
|
+
margin-bottom: 5px;
|
|
149
|
+
font-size: 14px;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.property-value {
|
|
153
|
+
display: flex;
|
|
154
|
+
margin: 3px 0;
|
|
155
|
+
font-size: 13px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.model-name {
|
|
159
|
+
font-weight: bold;
|
|
160
|
+
min-width: 200px;
|
|
161
|
+
color: #555;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.model-a .model-name {
|
|
165
|
+
color: #d32f2f;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.model-b .model-name {
|
|
169
|
+
color: #388e3c;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.value {
|
|
173
|
+
margin-left: 10px;
|
|
174
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M13 6L8 11L3 6' stroke='#222D44' stroke-linecap='round' stroke-linejoin='round'/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.4997 29.3327V17.3327M16.4997 17.3327L21.1663 21.9993M16.4997 17.3327L11.833 21.9993M27.1663 23.4753C29.1583 22.6953 31.1663 20.918 31.1663 17.3327C31.1663 11.9993 26.7223 10.666 24.4997 10.666C24.4997 7.99935 24.4997 2.66602 16.4997 2.66602C8.49967 2.66602 8.49967 7.99935 8.49967 10.666C6.27701 10.666 1.83301 11.9993 1.83301 17.3327C1.83301 20.918 3.84101 22.6953 5.83301 23.4753" stroke="#66B1FF" stroke-width="1.25635" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M19.2727 16.8958C20.6309 16.364 22 15.1523 22 12.708C22 9.072 18.97 8.16299 17.4545 8.16299C17.4545 6.34499 17.4545 2.70898 12 2.70898C6.54545 2.70898 6.54545 6.34499 6.54545 8.16299C5.03 8.16299 2 9.072 2 12.708C2 15.1523 3.36909 16.364 4.72727 16.8958" stroke="#222D44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M12.0081 22L12.0039 13" stroke="#222D44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M15.1843 19.3164L12.0023 22.4984L8.82031 19.3164" stroke="#222D44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M4.99516 13.3337L1.66699 10.0029L5.00033 6.66699" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M15.0052 6.66699L18.3333 9.99778L15 13.3337" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M1.66699 10H18.3337" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 6 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="Spliter">
|
|
3
|
+
<path id="Rectangle 4359" d="M0 0H4.5C5.32843 0 6 0.671573 6 1.5V28.5C6 29.3284 5.32843 30 4.5 30H0V0Z" fill="#326AD6"/>
|
|
4
|
+
<path id="Polygon 3" d="M1.5 12.911C1.5 12.6251 1.80945 12.4464 2.05701 12.5894L5.12058 14.3581C5.36814 14.501 5.36814 14.8584 5.12058 15.0013L2.05701 16.7701C1.80945 16.913 1.5 16.7343 1.5 16.4485L1.5 12.911Z" fill="white"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="9" height="9" viewBox="0 0 9 9" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_2832_1940)">
|
|
3
|
+
<line x1="9.35355" y1="0.353553" x2="0.353553" y2="9.35355" stroke="#8E98A3"/>
|
|
4
|
+
<line x1="9.35355" y1="6.35355" x2="6.35355" y2="9.35355" stroke="#8E98A3"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_2832_1940">
|
|
8
|
+
<rect width="9" height="9" fill="white"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -15,6 +15,19 @@ body,
|
|
|
15
15
|
#xeokitCanvas {
|
|
16
16
|
width: 100%;
|
|
17
17
|
height: 100%;
|
|
18
|
+
left: 0;
|
|
19
|
+
top: 0;
|
|
20
|
+
position: absolute;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
#xeokitCompareCanvas {
|
|
24
|
+
display: none;
|
|
25
|
+
width: 50%;
|
|
26
|
+
height: 100%;
|
|
27
|
+
border-left: 2px solid gray;
|
|
28
|
+
right : 0;
|
|
29
|
+
top: 0;
|
|
30
|
+
position: absolute;
|
|
18
31
|
}
|
|
19
32
|
|
|
20
33
|
body {
|
package/dist/index.js
CHANGED
|
@@ -21134,6 +21134,7 @@ var CFG_ATTRIBUTE;
|
|
|
21134
21134
|
CFG_ATTRIBUTE["MID_WIDTH"] = "MidWidth";
|
|
21135
21135
|
CFG_ATTRIBUTE["RIGHT_WIDTH"] = "RightWidth";
|
|
21136
21136
|
CFG_ATTRIBUTE["SCROLL_TOP"] = "ScrollTop";
|
|
21137
|
+
CFG_ATTRIBUTE["PAGING"] = "Paging";
|
|
21137
21138
|
})(CFG_ATTRIBUTE || (CFG_ATTRIBUTE = {}));
|
|
21138
21139
|
var URL;
|
|
21139
21140
|
(function (URL) {
|
|
@@ -21886,6 +21887,9 @@ var TableViewServiceImpl = /*#__PURE__*/function () {
|
|
|
21886
21887
|
_proto.getBodyScrollHeight = function getBodyScrollHeight() {
|
|
21887
21888
|
return this.grid.GetBodyScrollHeight();
|
|
21888
21889
|
};
|
|
21890
|
+
_proto.canEdit = function canEdit(row, col) {
|
|
21891
|
+
return this.grid.CanEdit(row, col);
|
|
21892
|
+
};
|
|
21889
21893
|
_createClass(TableViewServiceImpl, [{
|
|
21890
21894
|
key: "columnList",
|
|
21891
21895
|
get: function get() {
|
|
@@ -64747,7 +64751,8 @@ var Textarea = React.forwardRef(function (props, ref) {
|
|
|
64747
64751
|
if (props.isRichText) {
|
|
64748
64752
|
var editorWrapClass = CSS_CLASS.WRAP + (props.isRichTextToolbarEnabled ? CTRL.SPACE + CSS_CLASS.FLOATED : CTRL.EMPTY);
|
|
64749
64753
|
return React__default.createElement("div", {
|
|
64750
|
-
className: editorWrapClass
|
|
64754
|
+
className: editorWrapClass,
|
|
64755
|
+
translate: "no"
|
|
64751
64756
|
}, React__default.createElement("div", {
|
|
64752
64757
|
className: getContainerClassName(),
|
|
64753
64758
|
ref: containerRef
|
|
@@ -66773,10 +66778,14 @@ var ViewerIssueList = function ViewerIssueList(props) {
|
|
|
66773
66778
|
window.dispatchEvent(event);
|
|
66774
66779
|
});
|
|
66775
66780
|
};
|
|
66776
|
-
var onRefresh = function onRefresh() {
|
|
66777
|
-
|
|
66778
|
-
setIssueList(
|
|
66779
|
-
}
|
|
66781
|
+
var onRefresh = function onRefresh(e) {
|
|
66782
|
+
if (e.detail.itemList) {
|
|
66783
|
+
setIssueList(e.detail.itemList);
|
|
66784
|
+
} else {
|
|
66785
|
+
props.getIssueList(searchCriterionList).then(function (list) {
|
|
66786
|
+
setIssueList(list);
|
|
66787
|
+
});
|
|
66788
|
+
}
|
|
66780
66789
|
};
|
|
66781
66790
|
var onIssueTileClick = function onIssueTileClick(issue) {
|
|
66782
66791
|
setSelectedItemId(issue.id);
|
|
@@ -66882,21 +66891,23 @@ var Viewer = function Viewer(props) {
|
|
|
66882
66891
|
return list;
|
|
66883
66892
|
};
|
|
66884
66893
|
var onIssueTileClick = function onIssueTileClick(issue) {
|
|
66885
|
-
|
|
66886
|
-
|
|
66887
|
-
|
|
66888
|
-
|
|
66889
|
-
if (markup.pageNr
|
|
66890
|
-
w$6.PDFViewerApplication.
|
|
66891
|
-
|
|
66892
|
-
|
|
66893
|
-
|
|
66894
|
-
|
|
66895
|
-
|
|
66896
|
-
|
|
66897
|
-
|
|
66898
|
-
|
|
66899
|
-
|
|
66894
|
+
if (issue.markup) {
|
|
66895
|
+
var id = issue.id;
|
|
66896
|
+
var markup = JSON.parse(issue.markup);
|
|
66897
|
+
var numPages = w$6.PDFViewerApplication.pagesCount;
|
|
66898
|
+
if (markup && markup.pageNr <= numPages && markup.pageNr >= 1) {
|
|
66899
|
+
if (markup.pageNr != w$6.PDFViewerApplication.pdfViewer.currentPageNumber) {
|
|
66900
|
+
w$6.PDFViewerApplication.page = markup.pageNr;
|
|
66901
|
+
}
|
|
66902
|
+
if ($(CTRL.SHARP + id).length) {
|
|
66903
|
+
scrollToMarkup(id);
|
|
66904
|
+
} else {
|
|
66905
|
+
$(document).on(EVENT_PAGE_RENDERED, function (e, pageNrRendered) {
|
|
66906
|
+
if (markup.pageNr == pageNrRendered) {
|
|
66907
|
+
scrollToMarkup(id);
|
|
66908
|
+
}
|
|
66909
|
+
});
|
|
66910
|
+
}
|
|
66900
66911
|
}
|
|
66901
66912
|
}
|
|
66902
66913
|
};
|
|
@@ -66931,7 +66942,7 @@ var Viewer = function Viewer(props) {
|
|
|
66931
66942
|
};
|
|
66932
66943
|
|
|
66933
66944
|
var name = "@vitrosoftware/common-ui-ts";
|
|
66934
|
-
var version$1 = "1.1.
|
|
66945
|
+
var version$1 = "1.1.239";
|
|
66935
66946
|
var description = "vitro software common ui ts";
|
|
66936
66947
|
var author = "";
|
|
66937
66948
|
var license = "MIT";
|
|
@@ -83457,7 +83468,12 @@ var RouteItem = function RouteItem(props) {
|
|
|
83457
83468
|
|
|
83458
83469
|
var w$9 = window;
|
|
83459
83470
|
var ID_FILE_VERSION_SELECT$1 = 'fileVersionSelect';
|
|
83471
|
+
var ID_COMPARE_TREE = 'compareTreeContent';
|
|
83472
|
+
var EVENT_COMPARE_TREE_ITEM_SLECT = 'vitro.compare.tree.item.select';
|
|
83473
|
+
var CSS_CLASS_TEXT = 'vitro-text';
|
|
83460
83474
|
var Viewer$1 = function Viewer(props) {
|
|
83475
|
+
var compareModelResultRef = React.useRef([]);
|
|
83476
|
+
var isTreeViewInitRef = React.useRef(false);
|
|
83461
83477
|
React.useEffect(function () {
|
|
83462
83478
|
if (props.context) {
|
|
83463
83479
|
init();
|
|
@@ -83468,7 +83484,8 @@ var Viewer$1 = function Viewer(props) {
|
|
|
83468
83484
|
var initViewer = function initViewer() {
|
|
83469
83485
|
if (w$9.initBimViewer) {
|
|
83470
83486
|
var context = _extends({}, props.context, {
|
|
83471
|
-
initIssueList: initIssueList
|
|
83487
|
+
initIssueList: initIssueList,
|
|
83488
|
+
initCompareTreeView: initCompareTreeView
|
|
83472
83489
|
});
|
|
83473
83490
|
w$9.initBimViewer(context);
|
|
83474
83491
|
initFileVersionSelect();
|
|
@@ -83498,6 +83515,86 @@ var Viewer$1 = function Viewer(props) {
|
|
|
83498
83515
|
container: props.context.container
|
|
83499
83516
|
}, component), sidebar);
|
|
83500
83517
|
};
|
|
83518
|
+
function mapServerNodeToJsTree(n) {
|
|
83519
|
+
var total = (n.childAddCount || 0) + (n.childDelCount || 0) + (n.childChangeCount || 0);
|
|
83520
|
+
var countsHtml = total ? "<span class=\"vitro-count-wrap\">\n " + (n.childAddCount ? "<span class=\"vitro-count-add\">" + n.childAddCount + "</span>" : '') + "\n " + (n.childDelCount ? "<span class=\"vitro-count-del\">" + n.childDelCount + "</span>" : '') + "\n " + (n.childChangeCount ? "<span class=\"vitro-count-change\">" + n.childChangeCount + "</span>" : '') + "\n </span>" : '';
|
|
83521
|
+
var text = "<span class=\"" + CSS_CLASS_TEXT + "\">" + (n.name || n.type || n.uuid) + "</span>" + countsHtml;
|
|
83522
|
+
return {
|
|
83523
|
+
id: n.uuid,
|
|
83524
|
+
text: text,
|
|
83525
|
+
parent: n.parentUUID || '#',
|
|
83526
|
+
children: total > 0,
|
|
83527
|
+
li_attr: {
|
|
83528
|
+
"class": n.changeType ? 'change-type-' + n.changeType : ''
|
|
83529
|
+
},
|
|
83530
|
+
data: {
|
|
83531
|
+
parentUUID: n.parentUUID,
|
|
83532
|
+
changeType: n.changeType || null
|
|
83533
|
+
}
|
|
83534
|
+
};
|
|
83535
|
+
}
|
|
83536
|
+
var getCurrentCompareFilters = function getCurrentCompareFilters() {
|
|
83537
|
+
var changeTypes = [];
|
|
83538
|
+
if (jquery('#btnCompareFilterAdd').hasClass('selected')) changeTypes.push('add');
|
|
83539
|
+
if (jquery('#btnCompareFilterDel').hasClass('selected')) changeTypes.push('del');
|
|
83540
|
+
if (jquery('#btnCompareFilterChange').hasClass('selected')) changeTypes.push('change');
|
|
83541
|
+
var searchTerm = (jquery('#compareSearch').val() || '').trim();
|
|
83542
|
+
return {
|
|
83543
|
+
ChangeTypeList: changeTypes,
|
|
83544
|
+
SearchTerm: searchTerm || '',
|
|
83545
|
+
IsGeometry: null
|
|
83546
|
+
};
|
|
83547
|
+
};
|
|
83548
|
+
var initCompareTreeView = function initCompareTreeView() {
|
|
83549
|
+
var el = document.getElementById(ID_COMPARE_TREE);
|
|
83550
|
+
if (!el) return;
|
|
83551
|
+
if (!isTreeViewInitRef.current) {
|
|
83552
|
+
var config = {
|
|
83553
|
+
core: {
|
|
83554
|
+
check_callback: true,
|
|
83555
|
+
themes: {
|
|
83556
|
+
dots: false
|
|
83557
|
+
},
|
|
83558
|
+
data: function data(node, cb) {
|
|
83559
|
+
var isRoot = node.id === '#';
|
|
83560
|
+
var parentUUID = isRoot ? '-1' : node.id;
|
|
83561
|
+
var baseFilters = getCurrentCompareFilters();
|
|
83562
|
+
var payload = Object.assign({
|
|
83563
|
+
ParentUUID: parentUUID,
|
|
83564
|
+
Skip: 0,
|
|
83565
|
+
Take: 0
|
|
83566
|
+
}, baseFilters);
|
|
83567
|
+
window.viewer.scene.canvas.spinner.processes++;
|
|
83568
|
+
window.BIMModel.CompareChildList(function (list) {
|
|
83569
|
+
var items = (list || []).map(mapServerNodeToJsTree);
|
|
83570
|
+
cb(items);
|
|
83571
|
+
window.viewer.scene.canvas.spinner.processes--;
|
|
83572
|
+
}, function () {
|
|
83573
|
+
cb([]);
|
|
83574
|
+
window.viewer.scene.canvas.spinner.processes--;
|
|
83575
|
+
}, payload, true);
|
|
83576
|
+
}
|
|
83577
|
+
},
|
|
83578
|
+
plugins: ['wholerow']
|
|
83579
|
+
};
|
|
83580
|
+
jquery(el).jstree(config).on('select_node.jstree', function (_e, data) {
|
|
83581
|
+
var _data$node, _data$node$data;
|
|
83582
|
+
if (data !== null && data !== void 0 && (_data$node = data.node) !== null && _data$node !== void 0 && (_data$node$data = _data$node.data) !== null && _data$node$data !== void 0 && _data$node$data.changeType) {
|
|
83583
|
+
var evt = new CustomEvent(EVENT_COMPARE_TREE_ITEM_SLECT, {
|
|
83584
|
+
detail: {
|
|
83585
|
+
itemId: data.node.id
|
|
83586
|
+
}
|
|
83587
|
+
});
|
|
83588
|
+
window.dispatchEvent(evt);
|
|
83589
|
+
} else {
|
|
83590
|
+
jquery(el).jstree(true).open_node(data.node);
|
|
83591
|
+
}
|
|
83592
|
+
});
|
|
83593
|
+
isTreeViewInitRef.current = true;
|
|
83594
|
+
} else {
|
|
83595
|
+
jquery(el).jstree(true).refresh(true);
|
|
83596
|
+
}
|
|
83597
|
+
};
|
|
83501
83598
|
var initFileVersionSelect = function initFileVersionSelect() {
|
|
83502
83599
|
var selectContainer = document.getElementById(ID_FILE_VERSION_SELECT$1);
|
|
83503
83600
|
var select = React__default.createElement(FileVersionSelect, {
|