@vitrosoftware/common-ui-ts 1.1.122 → 1.1.123
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/checkbox/checkbox.css +4 -0
- package/css/std/controls/checkbox/img/checkbox-indeterminate.svg +4 -0
- package/css/std/controls/date-picker/date-picker.css +1 -25
- package/css/std/controls/dxf-viewer/annotation.css +85 -0
- package/css/std/controls/dxf-viewer/common.css +24 -0
- package/css/std/controls/dxf-viewer/dxf-viewer-index.css +14081 -0
- package/css/std/controls/dxf-viewer/dxf-viewer.css +194 -0
- package/css/std/controls/dxf-viewer/img/cancel-dark-grey.svg +5 -0
- package/css/std/controls/dxf-viewer/img/collapse-bottom.svg +5 -0
- package/css/std/controls/dxf-viewer/img/collapse-up-blue.svg +5 -0
- package/css/std/controls/dxf-viewer/img/delete-active.svg +11 -0
- package/css/std/controls/dxf-viewer/img/delete.svg +11 -0
- package/css/std/controls/dxf-viewer/img/draw-annotation.svg +3 -0
- package/css/std/controls/dxf-viewer/img/invisible-eye.svg +4 -0
- package/css/std/controls/dxf-viewer/img/show-annotation.svg +3 -0
- package/css/std/controls/dxf-viewer/img/sidebar-layers-toggle.svg +6 -0
- package/css/std/controls/dxf-viewer/img/sidebar-notes-toggle.svg +5 -0
- package/css/std/controls/dxf-viewer/img/sidebar-resizer.svg +6 -0
- package/css/std/controls/dxf-viewer/img/sidebar-toggle.svg +7 -0
- package/css/std/controls/dxf-viewer/img/visible-eye.svg +4 -0
- package/css/std/controls/dxf-viewer/img/zoom-in.svg +6 -0
- package/css/std/controls/dxf-viewer/img/zoom-out.svg +5 -0
- package/css/std/controls/dxf-viewer/layer-list.css +104 -0
- package/css/std/controls/dxf-viewer/panel.css +34 -0
- package/css/std/controls/dxf-viewer/prop-inspector.css +102 -0
- package/css/std/controls/dxf-viewer/select.css +111 -0
- package/css/std/controls/dxf-viewer/sidebar.css +190 -0
- package/css/std/controls/dxf-viewer/thumbnail-list.css +65 -0
- package/css/std/controls/dxf-viewer/toolbar.css +117 -0
- package/css/std/controls/dxf-viewer/treeview.css +3 -0
- package/css/std/controls/dxf-viewer/treeview.panel.css +108 -0
- package/css/std/controls/error-message/error-message.css +22 -0
- package/css/std/controls/image-picker/image-picker.css +0 -26
- package/css/std/controls/input/input.css +1 -24
- package/css/std/controls/issue-tile/issue-tile-header.css +1 -0
- package/css/std/controls/login/ntlm-authentication-form.css +9 -12
- package/css/std/controls/lookup-picker/lookup-picker-value-list.css +38 -2
- package/css/std/controls/lookup-picker/lookup-picker.css +1 -25
- package/css/std/controls/table-view/treegrid-context-menu.css +44 -18
- package/css/std/controls/table-view/treegrid-message.css +4 -4
- package/css/std/controls/time-picker/time-picker.css +1 -25
- package/dist/index.css +81 -143
- package/dist/index.js +15137 -489
- package/dist/index.js.map +1 -1
- package/dist/src/controls/Checkbox/Checkbox.d.ts +1 -0
- package/dist/src/controls/DxfViewer/DxfViewer.d.ts +6 -0
- package/dist/src/controls/DxfViewer/DxfViewerContext.d.ts +31 -0
- package/dist/src/controls/DxfViewer/Layer.d.ts +9 -0
- package/dist/src/controls/DxfViewer/LayerList.d.ts +11 -0
- package/dist/src/controls/DxfViewer/Thumbnail.d.ts +7 -0
- package/dist/src/controls/DxfViewer/ThumbnailList.d.ts +6 -0
- package/dist/src/controls/DxfViewer/Viewer.d.ts +6 -0
- package/dist/src/controls/ErrorMessage/ErrorMessage.d.ts +6 -0
- package/dist/src/controls/Login/FormRef.d.ts +3 -0
- package/dist/src/controls/Login/LoginConstants.d.ts +2 -1
- package/dist/src/controls/Login/LoginFormRef.d.ts +2 -2
- package/dist/src/controls/Login/NTLMAuthenticationForm.d.ts +5 -2
- package/dist/src/controls/LookupPicker/LookupPicker.d.ts +2 -0
- package/dist/src/controls/LookupPicker/ValueList.d.ts +2 -0
- package/dist/src/controls/TableView/TableViewConstants.d.ts +11 -0
- package/dist/src/controls/TableView/TreeGridTableViewContextImpl.d.ts +1 -0
- package/dist/src/controls/TreeView/TreeView.d.ts +4 -0
- package/dist/src/controls/TreeView/TreeViewConfig.d.ts +3 -0
- package/dist/src/controls/TreeView/TreeViewConstants.d.ts +2 -1
- package/dist/src/index.d.ts +7 -1
- package/lib/dxf-viewer/BatchingKey.js +91 -0
- package/lib/dxf-viewer/DxfFetcher.js +39 -0
- package/lib/dxf-viewer/DxfScene.js +2695 -0
- package/lib/dxf-viewer/DxfViewer.js +1056 -0
- package/lib/dxf-viewer/DxfWorker.js +229 -0
- package/lib/dxf-viewer/DynamicBuffer.js +100 -0
- package/lib/dxf-viewer/HatchCalculator.js +345 -0
- package/lib/dxf-viewer/LinearDimension.js +323 -0
- package/lib/dxf-viewer/MTextFormatParser.js +211 -0
- package/lib/dxf-viewer/MaterialKey.js +37 -0
- package/lib/dxf-viewer/OrbitControls.js +1253 -0
- package/lib/dxf-viewer/Pattern.js +94 -0
- package/lib/dxf-viewer/RBTree.js +471 -0
- package/lib/dxf-viewer/TextRenderer.js +1038 -0
- package/lib/dxf-viewer/index.js +42 -0
- package/lib/dxf-viewer/math/Matrix2.js +77 -0
- package/lib/dxf-viewer/math/utils.js +59 -0
- package/lib/dxf-viewer/parser/AutoCadColorIndex.js +265 -0
- package/lib/dxf-viewer/parser/DimStyleCodes.js +33 -0
- package/lib/dxf-viewer/parser/DxfArrayScanner.js +143 -0
- package/lib/dxf-viewer/parser/DxfParser.js +980 -0
- package/lib/dxf-viewer/parser/ExtendedDataParse-My.js +91 -0
- package/lib/dxf-viewer/parser/ExtendedDataParser.js +123 -0
- package/lib/dxf-viewer/parser/ParseHelpers.js +142 -0
- package/lib/dxf-viewer/parser/entities/3dface.js +83 -0
- package/lib/dxf-viewer/parser/entities/arc.js +38 -0
- package/lib/dxf-viewer/parser/entities/attdef.js +89 -0
- package/lib/dxf-viewer/parser/entities/attrib.js +34 -0
- package/lib/dxf-viewer/parser/entities/attribute.js +109 -0
- package/lib/dxf-viewer/parser/entities/circle.js +43 -0
- package/lib/dxf-viewer/parser/entities/dimension.js +72 -0
- package/lib/dxf-viewer/parser/entities/ellipse.js +46 -0
- package/lib/dxf-viewer/parser/entities/hatch.js +343 -0
- package/lib/dxf-viewer/parser/entities/insert.js +62 -0
- package/lib/dxf-viewer/parser/entities/leader.js +84 -0
- package/lib/dxf-viewer/parser/entities/line.js +34 -0
- package/lib/dxf-viewer/parser/entities/lwpolyline.js +100 -0
- package/lib/dxf-viewer/parser/entities/mtext.js +54 -0
- package/lib/dxf-viewer/parser/entities/point.js +35 -0
- package/lib/dxf-viewer/parser/entities/polyline.js +92 -0
- package/lib/dxf-viewer/parser/entities/solid.js +40 -0
- package/lib/dxf-viewer/parser/entities/spline.js +70 -0
- package/lib/dxf-viewer/parser/entities/text.js +47 -0
- package/lib/dxf-viewer/parser/entities/vertex.js +62 -0
- package/lib/dxf-viewer/parser/entities/viewport.js +56 -0
- package/lib/dxf-viewer/parser/objects/dictionary.js +29 -0
- package/lib/dxf-viewer/parser/objects/layout.js +35 -0
- package/lib/dxf-viewer/parser/objects/xrecord.js +29 -0
- package/lib/opentype/opentype.module.js +14571 -0
- package/lib/three/CSS2DRenderer.js +235 -0
- package/lib/three/three.module.js +49912 -0
- package/package.json +12 -10
- package/src/controls/BimViewer/js/bim-viewer.js +2 -2
- package/src/controls/DxfViewer/js/dxf-viewer.js +3541 -0
- package/src/controls/PdfViewer/js/pdf-viewer.js +1 -1
- package/css/std/controls/input/img/error-message.svg +0 -6
- package/css/std/controls/lookup-picker/img/error-message.svg +0 -6
- package/css/std/controls/time-picker/img/error-message.svg +0 -6
- /package/css/std/controls/{date-picker → error-message}/img/error-message.svg +0 -0
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
.sidebar {
|
|
2
|
+
display: none;
|
|
3
|
+
width: 278px;
|
|
4
|
+
background: #f8f8f8;
|
|
5
|
+
padding: 32px 10px 10px 10px;
|
|
6
|
+
height: calc(100% - 51px);
|
|
7
|
+
border-left: 1px solid silver;
|
|
8
|
+
border-right: 1px solid silver;
|
|
9
|
+
position: fixed;
|
|
10
|
+
top: 51px;
|
|
11
|
+
right: 0;
|
|
12
|
+
z-index: 89000005;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.sidebar-close {
|
|
16
|
+
position: absolute;
|
|
17
|
+
top: 4px;
|
|
18
|
+
left: 3px;
|
|
19
|
+
font-weight: 400;
|
|
20
|
+
padding: 2px 8px 7px 8px;
|
|
21
|
+
cursor: pointer;
|
|
22
|
+
transform: scaleX(1.2);
|
|
23
|
+
font-size: 18px;
|
|
24
|
+
font-family: Arial;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.sidebar-content {
|
|
28
|
+
height: calc(100% - 42px);
|
|
29
|
+
font-size: 14px;
|
|
30
|
+
overflow-y: auto;
|
|
31
|
+
overflow-x: hidden;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.sidebar-note-wrap {
|
|
35
|
+
background: #ffffff;
|
|
36
|
+
padding: 5px;
|
|
37
|
+
margin-top: 5px;
|
|
38
|
+
position: relative;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.sidebar-note-wrap:first-child {
|
|
42
|
+
margin-top: 0;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.sidebar-note-header {
|
|
46
|
+
padding-bottom: 5px;
|
|
47
|
+
border-bottom: 1px dotted #E0E0E0;
|
|
48
|
+
position: relative;
|
|
49
|
+
z-index: 10;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.sidebar-note-name {
|
|
53
|
+
font-size: 12px;
|
|
54
|
+
font-weight: 600;
|
|
55
|
+
color: #283430;
|
|
56
|
+
padding-bottom: 2px;
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
margin-right: 8px;
|
|
60
|
+
padding-right: 8px;
|
|
61
|
+
|
|
62
|
+
display: inline-block;
|
|
63
|
+
position: relative;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.sidebar-note-name:after {
|
|
67
|
+
content: "";
|
|
68
|
+
position: absolute;
|
|
69
|
+
border-right: 1px solid #C3BFBF;
|
|
70
|
+
height: 10px;
|
|
71
|
+
top: 2px;
|
|
72
|
+
right: 0;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.sidebar-note-title {
|
|
76
|
+
font-size: 12px;
|
|
77
|
+
font-weight: 600;
|
|
78
|
+
border-top: 1px dotted #E0E0E0;
|
|
79
|
+
margin-top: 2px;
|
|
80
|
+
padding-top: 6px;
|
|
81
|
+
cursor: pointer;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.sidebar-note-date {
|
|
85
|
+
font-size: 11px;
|
|
86
|
+
color: #C3BFBF;
|
|
87
|
+
|
|
88
|
+
display: inline-block;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.sidebar-note-btn-delete {
|
|
92
|
+
position: absolute;
|
|
93
|
+
width: 16px;
|
|
94
|
+
height: 16px;
|
|
95
|
+
right: 0;
|
|
96
|
+
top: 0;
|
|
97
|
+
background: url('../images/delete.png') 2px 0 no-repeat;
|
|
98
|
+
cursor: pointer;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.sidebar-note-body {
|
|
102
|
+
padding-top: 5px;
|
|
103
|
+
position: relative;
|
|
104
|
+
z-index: 10;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.sidebar-note-wrap textarea {
|
|
108
|
+
border: #E0E0E0;
|
|
109
|
+
color: #283430;
|
|
110
|
+
width: 100%;
|
|
111
|
+
resize: none;
|
|
112
|
+
overflow: hidden;
|
|
113
|
+
height: 60px;
|
|
114
|
+
box-sizing: border-box;
|
|
115
|
+
max-width: 100%;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.sidebar-note-wrap textarea,
|
|
119
|
+
.sidebar-note-wrap.active textarea,
|
|
120
|
+
.sidebar-note-wrap textarea:focus {
|
|
121
|
+
padding: 2px;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.sidebar-note-expand-wrap {
|
|
125
|
+
text-align: right;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.sidebar-note-expand-btn {
|
|
129
|
+
font-size: 11px;
|
|
130
|
+
color: #C3BFBF;
|
|
131
|
+
text-transform: lowercase;
|
|
132
|
+
font-variant: small-caps;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.btn-expand,
|
|
136
|
+
.btn-collapse {
|
|
137
|
+
cursor: pointer;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.sidebar-note-expand-btn:not(.collapsed) .btn-expand,
|
|
141
|
+
.sidebar-note-expand-btn.collapsed .btn-collapse {
|
|
142
|
+
display: none;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.sidebar-note-btn-delete span {
|
|
146
|
+
display: none;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.sidebar-note-img-wrap,
|
|
150
|
+
.sidebar-note-img-wrap img {
|
|
151
|
+
max-width: 100%;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.sidebar-note-wrap.active:before {
|
|
155
|
+
content: "";
|
|
156
|
+
position: absolute;
|
|
157
|
+
top: -5px;
|
|
158
|
+
bottom: -5px;
|
|
159
|
+
left: -5px;
|
|
160
|
+
right: -5px;
|
|
161
|
+
background: #4D4D4D;
|
|
162
|
+
z-index: 1;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.sidebar-note-wrap.active .sidebar-note-title,
|
|
166
|
+
.sidebar-note-wrap.active .sidebar-note-name {
|
|
167
|
+
color: #ffffff;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.sidebar-note-date {
|
|
171
|
+
font-size: 11px;
|
|
172
|
+
color: #C3BFBF;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.sidebar-note-wrap.active .sidebar-note-btn-delete {
|
|
176
|
+
background: url(../images/delete-active.png) 2px 0 no-repeat;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.sidebar-note-wrap.active .sidebar-note-expand-btn a {
|
|
180
|
+
color: #ffffff;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.sidebar-close {
|
|
184
|
+
color:#474747;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.sidebar-close:hover {
|
|
188
|
+
text-decoration: none;
|
|
189
|
+
color:#474747;
|
|
190
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
#sidebarContainer {
|
|
2
|
+
position: absolute;
|
|
3
|
+
top: 48px;
|
|
4
|
+
z-index: 100;
|
|
5
|
+
font: message-box;
|
|
6
|
+
height: calc(100% - 48px);
|
|
7
|
+
width: 240px;
|
|
8
|
+
min-width: 240px;
|
|
9
|
+
background: #fff;
|
|
10
|
+
display: none;
|
|
11
|
+
border-right: 1px solid #C0CAD5;
|
|
12
|
+
box-shadow: 0 0 2.89px 0 rgba(0, 0, 0, 0.1), 0 0 7.22px 0 rgba(0, 0, 0, 0.08);
|
|
13
|
+
flex-direction: column;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
#sidebarContainer[style*='display: block'] {
|
|
17
|
+
display: flex !important;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
#thumbnailView {
|
|
21
|
+
width: 100%;
|
|
22
|
+
height: 100%;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.vitro-thumbnail-list-title {
|
|
26
|
+
padding: 16px 12px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.vitro-thumbnail,
|
|
30
|
+
.vitro-thumbnail:hover {
|
|
31
|
+
display: block;
|
|
32
|
+
width: 100%;
|
|
33
|
+
color: #222D44;
|
|
34
|
+
padding: 8px 12px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.vitro-thumbnail.vitro-active {
|
|
38
|
+
background-color: #DCEEFF;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.vitro-thumbnail .vitro-flex {
|
|
42
|
+
display: flex;
|
|
43
|
+
align-items: center;
|
|
44
|
+
gap: 8px;
|
|
45
|
+
padding: 0;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.vitro-thumbnail .vitro-preview {
|
|
49
|
+
height: 51px;
|
|
50
|
+
width: 64px;
|
|
51
|
+
background-color: #fff;
|
|
52
|
+
flex-shrink: 0;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.vitro-thumbnail .vitro-preview > img {
|
|
56
|
+
width: 100%;
|
|
57
|
+
height: 100%;
|
|
58
|
+
object-fit: contain;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.vitro-thumbnail .vitro-flex > span {
|
|
62
|
+
color: #222D44;
|
|
63
|
+
font-size: 12px;
|
|
64
|
+
line-height: 130%;
|
|
65
|
+
}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
.toolbar {
|
|
2
|
+
height: 50px;
|
|
3
|
+
background-color: #474747;
|
|
4
|
+
background-image: linear-gradient(hsla(0,0%,32%,.99), hsla(0,0%,27%,.95));
|
|
5
|
+
box-shadow: inset 0 1px 1px hsl(0deg 0% 0% / 15%), inset 0 -1px 0 hsl(0deg 0% 100% / 5%), 0 1px 0 hsl(0deg 0% 0% / 15%), 0 1px 1px hsl(0deg 0% 0% / 10%);
|
|
6
|
+
position: relative;
|
|
7
|
+
z-index: 99000005;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
input,
|
|
11
|
+
button,
|
|
12
|
+
select {
|
|
13
|
+
font: message-box;
|
|
14
|
+
outline: none;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.toolbarButton,
|
|
18
|
+
.secondaryToolbarButton,
|
|
19
|
+
.overlayButton {
|
|
20
|
+
border: 0 none;
|
|
21
|
+
background: none;
|
|
22
|
+
width: 42px;
|
|
23
|
+
height: 42px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.toolbarButton,
|
|
27
|
+
.dropdownToolbarButton,
|
|
28
|
+
.secondaryToolbarButton,
|
|
29
|
+
.overlayButton {
|
|
30
|
+
min-width: 16px;
|
|
31
|
+
padding: 6px 6px;
|
|
32
|
+
border: 1px solid transparent;
|
|
33
|
+
border-radius: 2px;
|
|
34
|
+
color: hsla(0,0%,100%,.8);
|
|
35
|
+
font-size: 12px;
|
|
36
|
+
line-height: 14px;
|
|
37
|
+
-webkit-user-select: none;
|
|
38
|
+
-moz-user-select: none;
|
|
39
|
+
-ms-user-select: none;
|
|
40
|
+
user-select: none;
|
|
41
|
+
cursor: default;
|
|
42
|
+
transition-property: background-color, border-color, box-shadow;
|
|
43
|
+
transition-duration: 150ms;
|
|
44
|
+
transition-timing-function: ease;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.toolbarButton,
|
|
48
|
+
.overlayButton,
|
|
49
|
+
.dropdownToolbarButton {
|
|
50
|
+
margin: 4px 4px 4px 0;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.splitToolbarButton:first-child,
|
|
54
|
+
.toolbarButton:first-child,
|
|
55
|
+
.splitToolbarButton:last-child,
|
|
56
|
+
.toolbarButton:last-child {
|
|
57
|
+
margin-left: 4px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.toolbar > * {
|
|
61
|
+
position: relative;
|
|
62
|
+
float: left;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.toolbarButton::before, .secondaryToolbarButton::before {
|
|
66
|
+
position: absolute;
|
|
67
|
+
display: inline-block;
|
|
68
|
+
top: 6px;
|
|
69
|
+
left: 6px;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.toolbarButton > span {
|
|
73
|
+
display: inline-block;
|
|
74
|
+
width: 0;
|
|
75
|
+
height: 0;
|
|
76
|
+
overflow: hidden;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.toolbarButton {
|
|
80
|
+
cursor: pointer;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.toolbarButton#btnCreateNotes::before {
|
|
84
|
+
content: url('../images/draw-annotation.png');
|
|
85
|
+
/*top: 5px;*/
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.toolbarButton#btnToggleNotes::before {
|
|
89
|
+
content: url('../images/hide-annotation.png');
|
|
90
|
+
/*top: 5px;*/
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.toolbarButton#btnToggleSidebarNotes::before {
|
|
94
|
+
content: url('../images/sidebar-notes-toggle.png');
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.toolbarButton#btnToggleSidebarTreeView::before {
|
|
98
|
+
content: url('../images/treeview.png');
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.toolbarButton#btnToggleNotes.show::before {
|
|
102
|
+
content: url('../images/show-annotation.png');
|
|
103
|
+
/*top: 5px;*/
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.toolbarButton.toggled,
|
|
107
|
+
.splitToolbarButton.toggled > .toolbarButton.toggled,
|
|
108
|
+
.secondaryToolbarButton.toggled {
|
|
109
|
+
background-color: hsla(0,0%,0%,.3);
|
|
110
|
+
background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
|
111
|
+
border-color: hsla(0,0%,0%,.4) hsla(0,0%,0%,.45) hsla(0,0%,0%,.5);
|
|
112
|
+
box-shadow: 0 1px 1px hsl(0deg 0% 0% / 10%) inset, 0 0 1px hsl(0deg 0% 0% / 20%) inset, 0 1px 0 hsl(0deg 0% 100% / 5%);
|
|
113
|
+
transition-property: background-color, border-color, box-shadow;
|
|
114
|
+
transition-duration: 10ms;
|
|
115
|
+
transition-timing-function: linear;
|
|
116
|
+
}
|
|
117
|
+
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
#treeViewContainerWrap {
|
|
2
|
+
position: absolute;
|
|
3
|
+
height: calc(100% - 51px);
|
|
4
|
+
width: 350px;
|
|
5
|
+
top: 51px;
|
|
6
|
+
left: 0;
|
|
7
|
+
border-right: 6px solid #EEEEEE;
|
|
8
|
+
z-index: 89000005;
|
|
9
|
+
display: none;
|
|
10
|
+
background: #ffffff;
|
|
11
|
+
/*padding-right: 8px;*/
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
#treeViewContainer {
|
|
15
|
+
pointer-events: all;
|
|
16
|
+
height: 100%;
|
|
17
|
+
overflow-y: auto;
|
|
18
|
+
overflow-x: hidden;
|
|
19
|
+
color: black;
|
|
20
|
+
width: 100%;
|
|
21
|
+
padding-left: 10px;
|
|
22
|
+
font-family: 'Roboto', sans-serif;
|
|
23
|
+
font-size: 15px;
|
|
24
|
+
user-select: none;
|
|
25
|
+
-ms-user-select: none;
|
|
26
|
+
-moz-user-select: none;
|
|
27
|
+
-webkit-user-select: none;
|
|
28
|
+
z-index: 89000006;
|
|
29
|
+
background: #ffffff;
|
|
30
|
+
box-sizing: border-box;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.treeview-expanded #treeViewContainer {
|
|
34
|
+
display: block;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
#treeViewContainer ul {
|
|
38
|
+
list-style: none;
|
|
39
|
+
padding-left: 1.75em;
|
|
40
|
+
pointer-events: none;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
#treeViewContainer ul li {
|
|
44
|
+
position: relative;
|
|
45
|
+
width: 500px;
|
|
46
|
+
pointer-events: none;
|
|
47
|
+
padding-top: 3px;
|
|
48
|
+
padding-bottom: 3px;
|
|
49
|
+
vertical-align: middle;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
#treeViewContainer ul li a {
|
|
53
|
+
background-color: #eee;
|
|
54
|
+
border-radius: 50%;
|
|
55
|
+
color: #000;
|
|
56
|
+
display: inline-block;
|
|
57
|
+
height: 1.5em;
|
|
58
|
+
left: -1.5em;
|
|
59
|
+
position: absolute;
|
|
60
|
+
text-align: center;
|
|
61
|
+
text-decoration: none;
|
|
62
|
+
width: 1.5em;
|
|
63
|
+
pointer-events: all;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
#treeViewContainer ul li a.plus {
|
|
67
|
+
background-color: #ded;
|
|
68
|
+
pointer-events: all;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
#treeViewContainer ul li a.minus {
|
|
72
|
+
background-color: #eee;
|
|
73
|
+
pointer-events: all;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
#treeViewContainer ul li a:active {
|
|
77
|
+
top: 1px;
|
|
78
|
+
pointer-events: all;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
#treeViewContainer ul li span:hover {
|
|
82
|
+
color: white;
|
|
83
|
+
cursor: pointer;
|
|
84
|
+
background: black;
|
|
85
|
+
padding-left: 2px;
|
|
86
|
+
pointer-events: all;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
#treeViewContainer ul li span {
|
|
90
|
+
display: inline-block;
|
|
91
|
+
width: calc(100% - 50px);
|
|
92
|
+
padding-left: 2px;
|
|
93
|
+
pointer-events: all;
|
|
94
|
+
height: 23px;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
#treeViewContainer .highlighted-node { /* Appearance of node highlighted with TreeViewPlugin#showNode() */
|
|
98
|
+
border: black solid 1px;
|
|
99
|
+
background: yellow;
|
|
100
|
+
color: black;
|
|
101
|
+
padding-left: 1px;
|
|
102
|
+
padding-right: 5px;
|
|
103
|
+
pointer-events: all;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
#treeViewContainerWrap .ui-resizable-handle {
|
|
107
|
+
background: #eeeeee;
|
|
108
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
.vitro-error-message {
|
|
2
|
+
display: inline-block;
|
|
3
|
+
color: #D13438;
|
|
4
|
+
font-size: 14px;
|
|
5
|
+
line-height: 19px;
|
|
6
|
+
margin-top: 2px;
|
|
7
|
+
width: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.vitro-error-message::before {
|
|
11
|
+
content: '';
|
|
12
|
+
display: inline-block;
|
|
13
|
+
vertical-align: text-top;
|
|
14
|
+
height: 16px;
|
|
15
|
+
width: 16px;
|
|
16
|
+
min-width: 16px;
|
|
17
|
+
min-height: 16px;
|
|
18
|
+
margin-right: 4px;
|
|
19
|
+
background-size: 100%;
|
|
20
|
+
background-position: center;
|
|
21
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/error-message/img/error-message.svg');
|
|
22
|
+
}
|
|
@@ -78,30 +78,4 @@
|
|
|
78
78
|
|
|
79
79
|
.vitro-required {
|
|
80
80
|
color: red;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.vitro-error-text {
|
|
84
|
-
display: inline-block;
|
|
85
|
-
color: #D13438;
|
|
86
|
-
font-size: 14px;
|
|
87
|
-
line-height: 19px;
|
|
88
|
-
margin-top: 2px;
|
|
89
|
-
width: 100%;
|
|
90
|
-
text-overflow: ellipsis;
|
|
91
|
-
white-space: nowrap;
|
|
92
|
-
overflow: hidden;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.vitro-error-text::before {
|
|
96
|
-
content: '';
|
|
97
|
-
display: inline-block;
|
|
98
|
-
vertical-align: text-top;
|
|
99
|
-
height: 16px;
|
|
100
|
-
width: 16px;
|
|
101
|
-
min-width: 16px;
|
|
102
|
-
min-height: 16px;
|
|
103
|
-
margin-right: 4px;
|
|
104
|
-
background-size: 100%;
|
|
105
|
-
background-position: center;
|
|
106
|
-
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/input/img/error-message.svg');
|
|
107
81
|
}
|
|
@@ -109,33 +109,10 @@
|
|
|
109
109
|
width: 300px;
|
|
110
110
|
}
|
|
111
111
|
|
|
112
|
-
.vitro-error-
|
|
113
|
-
display: inline-block;
|
|
114
|
-
color: #D13438;
|
|
115
|
-
font-size: 14px;
|
|
116
|
-
line-height: 19px;
|
|
117
|
-
margin-top: 2px;
|
|
118
|
-
width: 100%;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.vitro-focus .vitro-error-text {
|
|
112
|
+
.vitro-focus .vitro-error-message {
|
|
122
113
|
display: none;
|
|
123
114
|
}
|
|
124
115
|
|
|
125
|
-
.vitro-error-text::before {
|
|
126
|
-
content: '';
|
|
127
|
-
display: inline-block;
|
|
128
|
-
vertical-align: text-top;
|
|
129
|
-
height: 16px;
|
|
130
|
-
width: 16px;
|
|
131
|
-
min-width: 16px;
|
|
132
|
-
min-height: 16px;
|
|
133
|
-
margin-right: 4px;
|
|
134
|
-
background-size: 100%;
|
|
135
|
-
background-position: center;
|
|
136
|
-
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/input/img/error-message.svg');
|
|
137
|
-
}
|
|
138
|
-
|
|
139
116
|
.vitro-button-copy {
|
|
140
117
|
height: 20px;
|
|
141
118
|
width: 20px;
|
|
@@ -1,31 +1,28 @@
|
|
|
1
1
|
.vitro-ntlm-authentication-form {
|
|
2
2
|
width: 100%;
|
|
3
3
|
height: 289px;
|
|
4
|
-
display: flex;
|
|
5
4
|
flex-direction: column;
|
|
6
|
-
align-items: center;
|
|
7
5
|
}
|
|
8
6
|
|
|
9
|
-
.vitro-
|
|
10
|
-
display: flex;
|
|
7
|
+
.vitro-flex {
|
|
11
8
|
flex-direction: column;
|
|
12
|
-
align-items: center;
|
|
13
|
-
grid-gap: 16px;
|
|
14
9
|
margin-top: 20px;
|
|
15
10
|
margin-bottom: auto;
|
|
16
11
|
}
|
|
17
12
|
|
|
18
|
-
.vitro-
|
|
13
|
+
.vitro-flex .vitro-subtitle {
|
|
19
14
|
font-size: 18px;
|
|
20
15
|
line-height: 135%;
|
|
21
16
|
text-align: center;
|
|
17
|
+
margin-bottom: 2px;
|
|
22
18
|
}
|
|
23
19
|
|
|
24
|
-
.vitro-image {
|
|
20
|
+
.vitro-flex > :global(.vitro-image) {
|
|
25
21
|
width: 48px;
|
|
26
22
|
height: 48px;
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
23
|
+
margin-bottom: 16px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.vitro-error-message {
|
|
27
|
+
text-align: center;
|
|
31
28
|
}
|
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
position: absolute;
|
|
3
3
|
z-index: 10001;
|
|
4
4
|
width: 100%;
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
5
7
|
border-radius: 4px;
|
|
6
8
|
margin-top: 4px;
|
|
7
|
-
max-height: 300px;
|
|
8
9
|
background: #fff;
|
|
9
10
|
border-radius: 4px;
|
|
10
11
|
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
|
|
@@ -12,7 +13,7 @@
|
|
|
12
13
|
|
|
13
14
|
.vitro-value-list > :global(.ps) {
|
|
14
15
|
padding-right: 0 !important;
|
|
15
|
-
max-height:
|
|
16
|
+
max-height: 323px;
|
|
16
17
|
}
|
|
17
18
|
|
|
18
19
|
.vitro-value-list > :global(.ps) > div:first-child {
|
|
@@ -72,3 +73,38 @@
|
|
|
72
73
|
.vitro-display-none {
|
|
73
74
|
display: none;
|
|
74
75
|
}
|
|
76
|
+
|
|
77
|
+
.vitro-flex {
|
|
78
|
+
border-top: 1px solid rgba(228, 230, 236, 0.5);
|
|
79
|
+
padding: 2px 0 4px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.vitro-button {
|
|
83
|
+
height: 37px;
|
|
84
|
+
width: 100%;
|
|
85
|
+
background-color: #fff;
|
|
86
|
+
color: #222D44;
|
|
87
|
+
font-size: 14px;
|
|
88
|
+
line-height: 140%;
|
|
89
|
+
font-family: 'InterRegular';
|
|
90
|
+
padding: 8px 12px;
|
|
91
|
+
display: flex;
|
|
92
|
+
align-items: center;
|
|
93
|
+
border-radius: 0;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.vitro-button > div {
|
|
97
|
+
justify-content: flex-start;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.vitro-button :global(.vitro-image) {
|
|
101
|
+
width: 20px;
|
|
102
|
+
height: 20px;
|
|
103
|
+
margin-right: 8px;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.vitro-button:hover,
|
|
107
|
+
.vitro-button:active,
|
|
108
|
+
.vitro-button:focus {
|
|
109
|
+
background-color: #F3F8FF;
|
|
110
|
+
}
|
|
@@ -61,34 +61,10 @@
|
|
|
61
61
|
top: -10px;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
.vitro-error-
|
|
65
|
-
display: inline-block;
|
|
66
|
-
align-items: center;
|
|
67
|
-
color: #D13438;
|
|
68
|
-
font-size: 14px;
|
|
69
|
-
line-height: 135%;
|
|
70
|
-
margin-top: 2px;
|
|
71
|
-
width: 100%;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.vitro-focus .vitro-error-text {
|
|
64
|
+
.vitro-focus .vitro-error-message {
|
|
75
65
|
display: none;
|
|
76
66
|
}
|
|
77
67
|
|
|
78
|
-
.vitro-error-text::before {
|
|
79
|
-
content: '';
|
|
80
|
-
display: inline-block;
|
|
81
|
-
vertical-align: text-top;
|
|
82
|
-
height: 16px;
|
|
83
|
-
width: 16px;
|
|
84
|
-
min-width: 16px;
|
|
85
|
-
min-height: 16px;
|
|
86
|
-
margin-right: 4px;
|
|
87
|
-
background-size: 100%;
|
|
88
|
-
background-position: center;
|
|
89
|
-
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/lookup-picker/img/error-message.svg');
|
|
90
|
-
}
|
|
91
|
-
|
|
92
68
|
.vitro-button-copy {
|
|
93
69
|
height: 24px;
|
|
94
70
|
width: 20px;
|