@vitrosoftware/common-ui-ts 1.1.169 → 1.1.171
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/annotation.css +7 -2
- package/css/std/controls/bim-viewer/bim-viewer-index.css +27 -3
- package/css/std/controls/bim-viewer/bim-viewer.css +12 -1
- package/css/std/controls/bim-viewer/img/hide-annotation-description.svg +19 -0
- package/css/std/controls/bim-viewer/img/show-annotation-description.svg +18 -0
- package/css/std/controls/bim-viewer/toolbar.css +8 -0
- package/css/std/controls/criterion/criterion.css +0 -1
- package/css/std/controls/criterion-field-iterator/criterion-field-iterator.css +8 -9
- package/css/std/controls/heading/heading.css +0 -7
- package/css/std/controls/search/search.css +12 -7
- package/css/std/controls/table-view/img/date-picker.svg +4 -0
- package/css/std/controls/table-view/table-view-custom-date-edit.css +23 -0
- package/css/std/controls/table-view/table-view.css +0 -7
- package/css/std/controls/tree-view/tree-view.css +3 -13
- package/css/std/controls/video-viewer/img/video-viewer-close.svg +3 -0
- package/css/std/controls/video-viewer/video-viewer.css +56 -0
- package/dist/index.css +79 -45
- package/dist/index.js +226 -36
- package/dist/index.js.map +1 -1
- package/dist/src/controls/CheckboxReorderableList/CheckboxReorderableList.d.ts +2 -5
- package/dist/src/controls/CheckboxReorderableList/CheckboxReorderableListItem.d.ts +6 -0
- package/dist/src/controls/CriterionFieldIterator/CriterionFieldIterator.d.ts +1 -0
- package/dist/src/controls/EditableList/EditableList.d.ts +3 -9
- package/dist/src/controls/EditableList/EditableListItem.d.ts +6 -0
- package/dist/src/controls/TableView/TableViewConstants.d.ts +2 -1
- package/dist/src/controls/TreeView/TreeView.d.ts +2 -0
- package/dist/src/controls/VideoViewer/TelerikMediaPlayerConstants.d.ts +8 -0
- package/dist/src/controls/VideoViewer/TelerikMediaPlayerContext.d.ts +19 -0
- package/dist/src/controls/VideoViewer/TelerikMediaPlayerContextImpl.d.ts +50 -0
- package/dist/src/controls/VideoViewer/TelerikMediaPlayerSettings.d.ts +13 -0
- package/dist/src/controls/VideoViewer/VideoItem.d.ts +5 -0
- package/dist/src/controls/VideoViewer/VideoViewer.d.ts +18 -0
- package/dist/src/controls/VideoViewer/VideoViewerRef.d.ts +4 -0
- package/dist/src/index.d.ts +8 -2
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer.js +125 -10
- package/src/controls/DxfViewer/js/dxf-viewer.js +88 -15
- package/src/controls/PdfViewer/js/pdf-viewer.js +1 -1
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
|
|
69
69
|
.annotation-desc {
|
|
70
70
|
font: normal 14px arial, serif;
|
|
71
|
+
overflow-wrap: break-word !important;
|
|
71
72
|
}
|
|
72
73
|
|
|
73
74
|
.hide-annotations .annotation-label,
|
|
@@ -80,6 +81,10 @@ body:not(.hide-annotations) .annotation-marker {
|
|
|
80
81
|
visibility: visible !important;
|
|
81
82
|
}
|
|
82
83
|
|
|
83
|
-
|
|
84
|
-
|
|
84
|
+
[class^='_component-loader_vitro-component-loader'] {
|
|
85
|
+
z-index: 90000 !important;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
[class^='_component-loader_vitro-component-loader'] {
|
|
89
|
+
z-index: 99000010 !important;
|
|
85
90
|
}
|
|
@@ -13269,6 +13269,10 @@ select {
|
|
|
13269
13269
|
content: url('img/hide-annotation.svg');
|
|
13270
13270
|
}
|
|
13271
13271
|
|
|
13272
|
+
.toolbarButton#btnToggleNotesDescription::before {
|
|
13273
|
+
content: url('img/hide-annotation-description.svg');
|
|
13274
|
+
}
|
|
13275
|
+
|
|
13272
13276
|
.toolbarButton#btnToggleSidebarNotes::before {
|
|
13273
13277
|
content: url('img/sidebar-notes-toggle.svg');
|
|
13274
13278
|
}
|
|
@@ -13293,6 +13297,10 @@ select {
|
|
|
13293
13297
|
content: url('img/show-annotation.svg');
|
|
13294
13298
|
}
|
|
13295
13299
|
|
|
13300
|
+
.toolbarButton#btnToggleNotesDescription.show::before {
|
|
13301
|
+
content: url('img/show-annotation-description.svg');
|
|
13302
|
+
}
|
|
13303
|
+
|
|
13296
13304
|
.toolbarButton#btnCreateAngleMeasurements::before {
|
|
13297
13305
|
content: url('img/angle-measurements-create.svg');
|
|
13298
13306
|
}
|
|
@@ -13690,6 +13698,7 @@ div.sidebar-note-id:hover {
|
|
|
13690
13698
|
|
|
13691
13699
|
.annotation-desc {
|
|
13692
13700
|
font: normal 14px arial, serif;
|
|
13701
|
+
overflow-wrap: break-word !important;
|
|
13693
13702
|
}
|
|
13694
13703
|
|
|
13695
13704
|
.hide-annotations .annotation-label,
|
|
@@ -13702,8 +13711,12 @@ body:not(.hide-annotations) .annotation-marker {
|
|
|
13702
13711
|
visibility: visible !important;
|
|
13703
13712
|
}
|
|
13704
13713
|
|
|
13705
|
-
|
|
13706
|
-
|
|
13714
|
+
[class^='_component-loader_vitro-component-loader'] {
|
|
13715
|
+
z-index: 90000 !important;
|
|
13716
|
+
}
|
|
13717
|
+
|
|
13718
|
+
[class^='_component-loader_vitro-component-loader'] {
|
|
13719
|
+
z-index: 99000010 !important;
|
|
13707
13720
|
}
|
|
13708
13721
|
|
|
13709
13722
|
#dlgNoteTxt {
|
|
@@ -14149,7 +14162,8 @@ a.ui-button:active,
|
|
|
14149
14162
|
}
|
|
14150
14163
|
|
|
14151
14164
|
.vitro-bim-viewer-issue-detail {
|
|
14152
|
-
position:
|
|
14165
|
+
position: fixed;
|
|
14166
|
+
top: 50px;
|
|
14153
14167
|
bottom: 0px;
|
|
14154
14168
|
right: 0px;
|
|
14155
14169
|
width: 410px;
|
|
@@ -14567,4 +14581,14 @@ a.ui-button:active,
|
|
|
14567
14581
|
background-image: url("img/all-windows.svg");
|
|
14568
14582
|
background-position: center center;
|
|
14569
14583
|
margin: 0 !important;
|
|
14584
|
+
}
|
|
14585
|
+
|
|
14586
|
+
#propInspector,
|
|
14587
|
+
#storeyViewsSidebar,
|
|
14588
|
+
#treeViewContainerWrap {
|
|
14589
|
+
height: calc(100% - 50px);
|
|
14590
|
+
}
|
|
14591
|
+
|
|
14592
|
+
.prop-inspector-inner-wrap {
|
|
14593
|
+
height: 100%;
|
|
14570
14594
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
.vitro-bim-viewer-issue-detail {
|
|
2
|
-
position:
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 50px;
|
|
3
4
|
bottom: 0px;
|
|
4
5
|
right: 0px;
|
|
5
6
|
width: 410px;
|
|
@@ -417,4 +418,14 @@
|
|
|
417
418
|
background-image: url("img/all-windows.svg");
|
|
418
419
|
background-position: center center;
|
|
419
420
|
margin: 0 !important;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
#propInspector,
|
|
424
|
+
#storeyViewsSidebar,
|
|
425
|
+
#treeViewContainerWrap {
|
|
426
|
+
height: calc(100% - 50px);
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.prop-inspector-inner-wrap {
|
|
430
|
+
height: 100%;
|
|
420
431
|
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_2264_794)">
|
|
3
|
+
<mask id="mask0_2264_794" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="1" width="26" height="26">
|
|
4
|
+
<path d="M25.334 1.5H0.333984V26.5H25.334V1.5Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_2264_794)">
|
|
7
|
+
<path d="M24.8864 9.5C24.8864 9.5 24.8864 4.79331 24.8864 3.73213C24.8864 2.67094 24.1693 1.94641 23.1007 1.94641C22.0321 1.94641 2.56501 1.94641 2.56501 1.94641C1.57879 1.94641 0.779297 2.7459 0.779297 3.73213V18.9107C0.779297 19.8969 1.57879 20.6964 2.56501 20.6964H11.334L15.834 26" stroke="white"/>
|
|
8
|
+
<path d="M3.9043 5.51782L21.4768 5.51782M3.9043 9.08925H17.9054M3.9043 12.6607H14.334M3.9043 16.2321H10.7626" stroke="white"/>
|
|
9
|
+
</g>
|
|
10
|
+
<path d="M17.1988 17.8494C17.1551 17.7315 17.1551 17.6019 17.1988 17.484C17.625 16.4508 18.3483 15.5673 19.2771 14.9457C20.2059 14.324 21.2984 13.9922 22.416 13.9922C23.5337 13.9922 24.6261 14.324 25.555 14.9457C26.4838 15.5673 27.2071 16.4508 27.6332 17.484C27.677 17.6019 27.677 17.7315 27.6332 17.8494C27.2071 18.8826 26.4838 19.766 25.555 20.3877C24.6261 21.0093 23.5337 21.3412 22.416 21.3412C21.2984 21.3412 20.2059 21.0093 19.2771 20.3877C18.3483 19.766 17.625 18.8826 17.1988 17.8494Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
+
<path d="M22.4167 19.2415C23.2865 19.2415 23.9916 18.5364 23.9916 17.6666C23.9916 16.7968 23.2865 16.0917 22.4167 16.0917C21.5469 16.0917 20.8418 16.7968 20.8418 17.6666C20.8418 18.5364 21.5469 19.2415 22.4167 19.2415Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
|
|
12
|
+
<path d="M27.334 12.5L17.334 23.5" stroke="white" stroke-linecap="square"/>
|
|
13
|
+
</g>
|
|
14
|
+
<defs>
|
|
15
|
+
<clipPath id="clip0_2264_794">
|
|
16
|
+
<rect width="28" height="28" fill="white"/>
|
|
17
|
+
</clipPath>
|
|
18
|
+
</defs>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_2263_777)">
|
|
3
|
+
<mask id="mask0_2263_777" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="1" width="26" height="26">
|
|
4
|
+
<path d="M25.334 1.5H0.333984V26.5H25.334V1.5Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_2263_777)">
|
|
7
|
+
<path d="M24.8864 9.5C24.8864 9.5 24.8864 4.79697 24.8864 3.73579C24.8864 2.6746 24.1693 1.95007 23.1007 1.95007C22.0321 1.95007 2.56501 1.95007 2.56501 1.95007C1.57879 1.95007 0.779297 2.74956 0.779297 3.73579V18.9144C0.779297 19.9006 1.57879 20.7001 2.56501 20.7001H11.334L15.834 26.0037" stroke="white"/>
|
|
8
|
+
<path d="M3.9043 5.51794L21.4768 5.51794M3.9043 9.08937H17.9054M3.9043 12.6608H14.334M3.9043 16.2322H10.7626" stroke="white"/>
|
|
9
|
+
</g>
|
|
10
|
+
<path d="M17.1988 17.8494C17.1551 17.7315 17.1551 17.6019 17.1988 17.484C17.625 16.4508 18.3483 15.5673 19.2771 14.9457C20.2059 14.324 21.2984 13.9922 22.416 13.9922C23.5337 13.9922 24.6261 14.324 25.555 14.9457C26.4838 15.5673 27.2071 16.4508 27.6332 17.484C27.677 17.6019 27.677 17.7315 27.6332 17.8494C27.2071 18.8826 26.4838 19.766 25.555 20.3877C24.6261 21.0093 23.5337 21.3412 22.416 21.3412C21.2984 21.3412 20.2059 21.0093 19.2771 20.3877C18.3483 19.766 17.625 18.8826 17.1988 17.8494Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
+
<path d="M22.4167 19.2415C23.2865 19.2415 23.9916 18.5364 23.9916 17.6666C23.9916 16.7968 23.2865 16.0917 22.4167 16.0917C21.5469 16.0917 20.8418 16.7968 20.8418 17.6666C20.8418 18.5364 21.5469 19.2415 22.4167 19.2415Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
|
|
12
|
+
</g>
|
|
13
|
+
<defs>
|
|
14
|
+
<clipPath id="clip0_2263_777">
|
|
15
|
+
<rect width="28" height="28" fill="white"/>
|
|
16
|
+
</clipPath>
|
|
17
|
+
</defs>
|
|
18
|
+
</svg>
|
|
@@ -88,6 +88,10 @@ select {
|
|
|
88
88
|
content: url('img/hide-annotation.svg');
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
+
.toolbarButton#btnToggleNotesDescription::before {
|
|
92
|
+
content: url('img/hide-annotation-description.svg');
|
|
93
|
+
}
|
|
94
|
+
|
|
91
95
|
.toolbarButton#btnToggleSidebarNotes::before {
|
|
92
96
|
content: url('img/sidebar-notes-toggle.svg');
|
|
93
97
|
}
|
|
@@ -112,6 +116,10 @@ select {
|
|
|
112
116
|
content: url('img/show-annotation.svg');
|
|
113
117
|
}
|
|
114
118
|
|
|
119
|
+
.toolbarButton#btnToggleNotesDescription.show::before {
|
|
120
|
+
content: url('img/show-annotation-description.svg');
|
|
121
|
+
}
|
|
122
|
+
|
|
115
123
|
.toolbarButton#btnCreateAngleMeasurements::before {
|
|
116
124
|
content: url('img/angle-measurements-create.svg');
|
|
117
125
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
.vitro-field-iterator {
|
|
3
2
|
grid-gap: 28px 16px;
|
|
4
3
|
}
|
|
@@ -27,12 +26,12 @@
|
|
|
27
26
|
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
|
|
28
27
|
}
|
|
29
28
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
29
|
+
.vitro-add-field-dialog[placement='right-start'] {
|
|
30
|
+
margin-top: -4px;
|
|
31
|
+
margin-left: 14px;
|
|
32
|
+
}
|
|
34
33
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
34
|
+
.vitro-add-field-dialog :global(.ps) > div:first-child {
|
|
35
|
+
max-height: 204px;
|
|
36
|
+
max-width: 242px;
|
|
37
|
+
}
|
|
@@ -178,20 +178,17 @@
|
|
|
178
178
|
margin: 18px 0 0 4px;
|
|
179
179
|
}
|
|
180
180
|
|
|
181
|
-
.vitro-settings-dialog-mobile .vitro-filter :global(.ps) {
|
|
181
|
+
.vitro-settings-dialog-mobile .vitro-filter-container :global(.ps) {
|
|
182
182
|
max-height: unset;
|
|
183
|
+
height: unset;
|
|
183
184
|
padding-right: 15px;
|
|
184
185
|
}
|
|
185
186
|
|
|
186
|
-
.vitro-settings-dialog-mobile .vitro-filter :global(.ps) > div:first-child {
|
|
187
|
+
.vitro-settings-dialog-mobile .vitro-filter-container :global(.ps) > div:first-child {
|
|
187
188
|
padding-top: 0;
|
|
188
189
|
}
|
|
189
190
|
|
|
190
|
-
.vitro-settings-dialog-mobile .vitro-filter :global(.
|
|
191
|
-
margin-top: 12px;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
.vitro-settings-dialog-mobile .vitro-filter :global(.ps) > div > div {
|
|
191
|
+
.vitro-settings-dialog-mobile .vitro-filter-container :global(.ps) > div > div {
|
|
195
192
|
padding: 0;
|
|
196
193
|
}
|
|
197
194
|
|
|
@@ -205,4 +202,12 @@
|
|
|
205
202
|
|
|
206
203
|
.vitro-add-field-dialog[placement='top-start'] {
|
|
207
204
|
margin-bottom: 7px;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.vitro-settings-dialog-mobile .vitro-filter {
|
|
208
|
+
gap: 12px;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.vitro-settings-dialog-mobile .vitro-filter-container :global(.vitro-block) > div > div {
|
|
212
|
+
margin-top: 0;
|
|
208
213
|
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M14.4972 11.2527C14.538 11.2934 14.5703 11.3417 14.5924 11.3948C14.6144 11.448 14.6258 11.505 14.6258 11.5625C14.6258 11.62 14.6144 11.677 14.5924 11.7302C14.5703 11.7833 14.538 11.8316 14.4972 11.8723L11.8723 14.4972C11.8316 14.538 11.7833 14.5703 11.7302 14.5924C11.677 14.6144 11.62 14.6258 11.5625 14.6258C11.505 14.6258 11.448 14.6144 11.3948 14.5924C11.3417 14.5703 11.2934 14.538 11.2527 14.4972L9.94025 13.1847C9.89957 13.1441 9.86731 13.0958 9.84529 13.0426C9.82328 12.9895 9.81195 12.9325 9.81195 12.875C9.81195 12.8175 9.82328 12.7605 9.84529 12.7074C9.86731 12.6542 9.89957 12.6059 9.94025 12.5652C10.0224 12.4831 10.1338 12.4369 10.25 12.4369C10.3075 12.4369 10.3645 12.4483 10.4176 12.4703C10.4708 12.4923 10.5191 12.5246 10.5598 12.5652L11.5625 13.5689L13.8778 11.2527C13.9184 11.212 13.9667 11.1797 14.0198 11.1576C14.073 11.1356 14.13 11.1242 14.1875 11.1242C14.245 11.1242 14.302 11.1356 14.3552 11.1576C14.4083 11.1797 14.4566 11.212 14.4972 11.2527Z" fill="#4A556C"/>
|
|
3
|
+
<path d="M8.0625 5C8.17853 5 8.28981 5.04609 8.37186 5.12814C8.45391 5.21019 8.5 5.32147 8.5 5.4375V5.875H15.5V5.4375C15.5 5.32147 15.5461 5.21019 15.6281 5.12814C15.7102 5.04609 15.8215 5 15.9375 5C16.0535 5 16.1648 5.04609 16.2469 5.12814C16.3289 5.21019 16.375 5.32147 16.375 5.4375V5.875H17.25C17.7141 5.875 18.1592 6.05937 18.4874 6.38756C18.8156 6.71575 19 7.16087 19 7.625V17.25C19 17.7141 18.8156 18.1592 18.4874 18.4874C18.1592 18.8156 17.7141 19 17.25 19H6.75C6.28587 19 5.84075 18.8156 5.51256 18.4874C5.18437 18.1592 5 17.7141 5 17.25V7.625C5 7.16087 5.18437 6.71575 5.51256 6.38756C5.84075 6.05937 6.28587 5.875 6.75 5.875H7.625V5.4375C7.625 5.32147 7.67109 5.21019 7.75314 5.12814C7.83519 5.04609 7.94647 5 8.0625 5ZM5.875 8.5V17.25C5.875 17.4821 5.96719 17.7046 6.13128 17.8687C6.29538 18.0328 6.51794 18.125 6.75 18.125H17.25C17.4821 18.125 17.7046 18.0328 17.8687 17.8687C18.0328 17.7046 18.125 17.4821 18.125 17.25V8.5H5.875Z" fill="#4A556C"/>
|
|
4
|
+
</svg>
|
|
@@ -23,4 +23,27 @@
|
|
|
23
23
|
|
|
24
24
|
.table-view-custom-date-edit .k-link {
|
|
25
25
|
color: #222D44 !important;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.TWMain .TWDateLeft,
|
|
29
|
+
.TWMain .TWDatesLeft,
|
|
30
|
+
.TWMain .TWDateRight,
|
|
31
|
+
.TWMain .TWDatesRight,
|
|
32
|
+
.TWMain .TWDateTop,
|
|
33
|
+
.TWMain .TWDatesTop,
|
|
34
|
+
.TWMain .TWDateBottom,
|
|
35
|
+
.TWMain .TWDatesBottom {
|
|
36
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/date-picker.svg');
|
|
37
|
+
background-size: 24px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.vitro-table-view-gantt .TWMain .TWDateLeft,
|
|
41
|
+
.vitro-table-view-gantt .TWMain .TWDatesLeft,
|
|
42
|
+
.vitro-table-view-gantt .TWMain .TWDateRight,
|
|
43
|
+
.vitro-table-view-gantt .TWMain .TWDatesRight,
|
|
44
|
+
.vitro-table-view-gantt .TWMain .TWDateTop,
|
|
45
|
+
.vitro-table-view-gantt .TWMain .TWDatesTop,
|
|
46
|
+
.vitro-table-view-gantt .TWMain .TWDateBottom,
|
|
47
|
+
.vitro-table-view-gantt .TWMain .TWDatesBottom {
|
|
48
|
+
background-size: 20px;
|
|
26
49
|
}
|
|
@@ -17,13 +17,6 @@
|
|
|
17
17
|
@import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-hidden-container.css');
|
|
18
18
|
@import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-gantt.css');
|
|
19
19
|
|
|
20
|
-
:global(#TableView) {
|
|
21
|
-
height: auto;
|
|
22
|
-
flex: 1 1 auto;
|
|
23
|
-
overflow: hidden;
|
|
24
|
-
position: relative;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
20
|
.vitro-table-view {
|
|
28
21
|
height: 100%;
|
|
29
22
|
width: 100%;
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
@import url('@vitrosoftware/common-ui-ts/css/third-party/jstree/style.min.css');
|
|
2
2
|
|
|
3
|
-
:global(
|
|
4
|
-
height: calc(100% - 36px);
|
|
5
|
-
flex: 1 1;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
:global(#TreeView) :global(.ps) {
|
|
3
|
+
.vitro-scrollbar:global(.ps--active-y) {
|
|
9
4
|
padding-right: 12px;
|
|
10
|
-
padding-top: 8px;
|
|
11
5
|
}
|
|
12
6
|
|
|
13
|
-
:global(.ps) :global(.jstree-container-ul)
|
|
7
|
+
.vitro-scrollbar:global(.ps--active-y) :global(.jstree-container-ul),
|
|
8
|
+
.vitro-scrollbar:global(.ps--active-x) :global(.jstree-container-ul) {
|
|
14
9
|
padding-bottom: 12px;
|
|
15
10
|
}
|
|
16
11
|
|
|
@@ -21,11 +16,6 @@
|
|
|
21
16
|
.vitro-tree-view :global(.jstree-default) :global(.jstree-node) {
|
|
22
17
|
margin-left: 20px !important;
|
|
23
18
|
}
|
|
24
|
-
|
|
25
|
-
.vitro-tree-view {
|
|
26
|
-
scrollbar-color: #e0e0e0 #fff;
|
|
27
|
-
scrollbar-width: thin;
|
|
28
|
-
}
|
|
29
19
|
|
|
30
20
|
.vitro-tree-view :global(.jstree-anchor) {
|
|
31
21
|
line-height: 32px;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9.01044 22.9918L16.0011 16.0012L22.9918 22.9918M22.9918 9.0105L15.9998 16.0012L9.01044 9.0105" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
.vitro-video-viewer {
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 0;
|
|
4
|
+
left: 0;
|
|
5
|
+
width: 100%;
|
|
6
|
+
height: 100%;
|
|
7
|
+
z-index: 200;
|
|
8
|
+
background-color: #212529;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.vitro-header {
|
|
12
|
+
width: 100%;
|
|
13
|
+
position: absolute;
|
|
14
|
+
left: 0;
|
|
15
|
+
top: 0;
|
|
16
|
+
z-index: 1;
|
|
17
|
+
padding: 20px;
|
|
18
|
+
display: flex;
|
|
19
|
+
justify-content: flex-end;
|
|
20
|
+
grid-gap: 12px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.vitro-body {
|
|
24
|
+
height: calc(100% - 72px);
|
|
25
|
+
margin-top: 72px;
|
|
26
|
+
display: flex;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.vitro-button-close {
|
|
30
|
+
width: 32px;
|
|
31
|
+
height: 32px;
|
|
32
|
+
background: transparent;
|
|
33
|
+
outline: none;
|
|
34
|
+
border: none;
|
|
35
|
+
background-repeat: no-repeat;
|
|
36
|
+
background-size: 100%;
|
|
37
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/video-viewer/img/video-viewer-close.svg');
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.vitro-player {
|
|
41
|
+
max-width: 100%;
|
|
42
|
+
max-height: 100%;
|
|
43
|
+
background-color: #212529;
|
|
44
|
+
margin-left: auto;
|
|
45
|
+
margin-right: auto;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.vitro-player video {
|
|
49
|
+
background-color: #212529;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@media (max-width: 800px) {
|
|
53
|
+
.vitro-video-viewer {
|
|
54
|
+
z-index: 301;
|
|
55
|
+
}
|
|
56
|
+
}
|
package/dist/index.css
CHANGED
|
@@ -416,17 +416,12 @@ html, body {
|
|
|
416
416
|
|
|
417
417
|
@import url('@vitrosoftware/common-ui-ts/css/third-party/jstree/style.min.css');
|
|
418
418
|
|
|
419
|
-
|
|
420
|
-
height: calc(100% - 36px);
|
|
421
|
-
flex: 1 1;
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
#TreeView .ps {
|
|
419
|
+
._tree-view_vitro-scrollbar_1hvFNoY.ps--active-y {
|
|
425
420
|
padding-right: 12px;
|
|
426
|
-
padding-top: 8px;
|
|
427
421
|
}
|
|
428
422
|
|
|
429
|
-
.ps .jstree-container-ul
|
|
423
|
+
._tree-view_vitro-scrollbar_1hvFNoY.ps--active-y .jstree-container-ul,
|
|
424
|
+
._tree-view_vitro-scrollbar_1hvFNoY.ps--active-x .jstree-container-ul {
|
|
430
425
|
padding-bottom: 12px;
|
|
431
426
|
}
|
|
432
427
|
|
|
@@ -437,11 +432,6 @@ html, body {
|
|
|
437
432
|
._tree-view_vitro-tree-view_3oii-CW .jstree-default .jstree-node {
|
|
438
433
|
margin-left: 20px !important;
|
|
439
434
|
}
|
|
440
|
-
|
|
441
|
-
._tree-view_vitro-tree-view_3oii-CW {
|
|
442
|
-
scrollbar-color: #e0e0e0 #fff;
|
|
443
|
-
scrollbar-width: thin;
|
|
444
|
-
}
|
|
445
435
|
|
|
446
436
|
._tree-view_vitro-tree-view_3oii-CW .jstree-anchor {
|
|
447
437
|
line-height: 32px;
|
|
@@ -711,13 +701,6 @@ html, body {
|
|
|
711
701
|
@import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-hidden-container.css');
|
|
712
702
|
@import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-gantt.css');
|
|
713
703
|
|
|
714
|
-
#TableView {
|
|
715
|
-
height: auto;
|
|
716
|
-
flex: 1 1 auto;
|
|
717
|
-
overflow: hidden;
|
|
718
|
-
position: relative;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
704
|
._table-view_vitro-table-view_1tTs32D {
|
|
722
705
|
height: 100%;
|
|
723
706
|
width: 100%;
|
|
@@ -1482,13 +1465,6 @@ html, body {
|
|
|
1482
1465
|
font-weight: unset;
|
|
1483
1466
|
margin-top: 0;
|
|
1484
1467
|
margin-bottom: 0;
|
|
1485
|
-
}
|
|
1486
|
-
|
|
1487
|
-
.vitro-border-bottom {
|
|
1488
|
-
border-bottom: 1px solid #E4E6EC;
|
|
1489
|
-
margin-right: 12px;
|
|
1490
|
-
margin-bottom: 0;
|
|
1491
|
-
padding-bottom: 12px;
|
|
1492
1468
|
}
|
|
1493
1469
|
._dialog-header_vitro-dialog-header_2W3GraU {
|
|
1494
1470
|
padding: 20px;
|
|
@@ -6633,7 +6609,6 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6633
6609
|
flex-direction: column;
|
|
6634
6610
|
align-items: flex-start;
|
|
6635
6611
|
gap: 22px;
|
|
6636
|
-
margin-top: 12px;
|
|
6637
6612
|
}
|
|
6638
6613
|
|
|
6639
6614
|
._criterion_vitro-criterion-container-mobile_1yxaJHi ._criterion_vitro-control_2JLaybj {
|
|
@@ -6794,7 +6769,6 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6794
6769
|
._editable-field-iterator_vitro-field-iterator_myx5yu3 {
|
|
6795
6770
|
grid-gap: 28px 16px;
|
|
6796
6771
|
}
|
|
6797
|
-
|
|
6798
6772
|
._criterion-field-iterator_vitro-field-iterator_24abkh9 {
|
|
6799
6773
|
grid-gap: 28px 16px;
|
|
6800
6774
|
}
|
|
@@ -6823,16 +6797,15 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6823
6797
|
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
|
|
6824
6798
|
}
|
|
6825
6799
|
|
|
6826
|
-
|
|
6827
|
-
|
|
6828
|
-
|
|
6829
|
-
|
|
6800
|
+
._criterion-field-iterator_vitro-add-field-dialog_3QlfaQE[placement='right-start'] {
|
|
6801
|
+
margin-top: -4px;
|
|
6802
|
+
margin-left: 14px;
|
|
6803
|
+
}
|
|
6830
6804
|
|
|
6831
|
-
|
|
6832
|
-
|
|
6833
|
-
|
|
6834
|
-
|
|
6835
|
-
|
|
6805
|
+
._criterion-field-iterator_vitro-add-field-dialog_3QlfaQE .ps > div:first-child {
|
|
6806
|
+
max-height: 204px;
|
|
6807
|
+
max-width: 242px;
|
|
6808
|
+
}
|
|
6836
6809
|
._search-input_vitro-search-input_3M9i4Gi {
|
|
6837
6810
|
height: 32px;
|
|
6838
6811
|
border-radius: 4px;
|
|
@@ -7148,20 +7121,17 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
7148
7121
|
margin: 18px 0 0 4px;
|
|
7149
7122
|
}
|
|
7150
7123
|
|
|
7151
|
-
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-
|
|
7124
|
+
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter-container_3p6D0hI .ps {
|
|
7152
7125
|
max-height: unset;
|
|
7126
|
+
height: unset;
|
|
7153
7127
|
padding-right: 15px;
|
|
7154
7128
|
}
|
|
7155
7129
|
|
|
7156
|
-
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-
|
|
7130
|
+
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter-container_3p6D0hI .ps > div:first-child {
|
|
7157
7131
|
padding-top: 0;
|
|
7158
7132
|
}
|
|
7159
7133
|
|
|
7160
|
-
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-
|
|
7161
|
-
margin-top: 12px;
|
|
7162
|
-
}
|
|
7163
|
-
|
|
7164
|
-
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter_2n-Y-mS .ps > div > div {
|
|
7134
|
+
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter-container_3p6D0hI .ps > div > div {
|
|
7165
7135
|
padding: 0;
|
|
7166
7136
|
}
|
|
7167
7137
|
|
|
@@ -7175,6 +7145,14 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
7175
7145
|
|
|
7176
7146
|
._search_vitro-add-field-dialog_3gC92SF[placement='top-start'] {
|
|
7177
7147
|
margin-bottom: 7px;
|
|
7148
|
+
}
|
|
7149
|
+
|
|
7150
|
+
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter_2n-Y-mS {
|
|
7151
|
+
gap: 12px;
|
|
7152
|
+
}
|
|
7153
|
+
|
|
7154
|
+
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter-container_3p6D0hI .vitro-block > div > div {
|
|
7155
|
+
margin-top: 0;
|
|
7178
7156
|
}
|
|
7179
7157
|
.splitter {
|
|
7180
7158
|
height: 100% !important;
|
|
@@ -8704,4 +8682,60 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
8704
8682
|
|
|
8705
8683
|
._file-picker_vitro-delete-button_29YhyRG {
|
|
8706
8684
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/file-picker/img/cancel-red.svg');
|
|
8685
|
+
}
|
|
8686
|
+
._video-viewer_vitro-video-viewer_1KHO5IM {
|
|
8687
|
+
position: fixed;
|
|
8688
|
+
top: 0;
|
|
8689
|
+
left: 0;
|
|
8690
|
+
width: 100%;
|
|
8691
|
+
height: 100%;
|
|
8692
|
+
z-index: 200;
|
|
8693
|
+
background-color: #212529;
|
|
8694
|
+
}
|
|
8695
|
+
|
|
8696
|
+
._video-viewer_vitro-header_hwAjLDd {
|
|
8697
|
+
width: 100%;
|
|
8698
|
+
position: absolute;
|
|
8699
|
+
left: 0;
|
|
8700
|
+
top: 0;
|
|
8701
|
+
z-index: 1;
|
|
8702
|
+
padding: 20px;
|
|
8703
|
+
display: flex;
|
|
8704
|
+
justify-content: flex-end;
|
|
8705
|
+
grid-gap: 12px;
|
|
8706
|
+
}
|
|
8707
|
+
|
|
8708
|
+
._video-viewer_vitro-body_124aVK2 {
|
|
8709
|
+
height: calc(100% - 72px);
|
|
8710
|
+
margin-top: 72px;
|
|
8711
|
+
display: flex;
|
|
8712
|
+
}
|
|
8713
|
+
|
|
8714
|
+
._video-viewer_vitro-button-close_TB-QCiO {
|
|
8715
|
+
width: 32px;
|
|
8716
|
+
height: 32px;
|
|
8717
|
+
background: transparent;
|
|
8718
|
+
outline: none;
|
|
8719
|
+
border: none;
|
|
8720
|
+
background-repeat: no-repeat;
|
|
8721
|
+
background-size: 100%;
|
|
8722
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/video-viewer/img/video-viewer-close.svg');
|
|
8723
|
+
}
|
|
8724
|
+
|
|
8725
|
+
._video-viewer_vitro-player_2JJVj_u {
|
|
8726
|
+
max-width: 100%;
|
|
8727
|
+
max-height: 100%;
|
|
8728
|
+
background-color: #212529;
|
|
8729
|
+
margin-left: auto;
|
|
8730
|
+
margin-right: auto;
|
|
8731
|
+
}
|
|
8732
|
+
|
|
8733
|
+
._video-viewer_vitro-player_2JJVj_u video {
|
|
8734
|
+
background-color: #212529;
|
|
8735
|
+
}
|
|
8736
|
+
|
|
8737
|
+
@media (max-width: 800px) {
|
|
8738
|
+
._video-viewer_vitro-video-viewer_1KHO5IM {
|
|
8739
|
+
z-index: 301;
|
|
8740
|
+
}
|
|
8707
8741
|
}
|