@vitrosoftware/common-ui-ts 1.1.74 → 1.1.77
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/common.css +2 -1
- package/css/std/controls/action-handler/action-handler.css +3 -2
- package/css/std/controls/bim-viewer/annotation.css +85 -0
- package/css/std/controls/bim-viewer/bim-viewer-index.css +1100 -0
- package/css/std/controls/bim-viewer/bim-viewer.css +53 -0
- package/css/std/controls/bim-viewer/comparison-popup.css +92 -0
- package/css/std/controls/bim-viewer/context-menu.css +54 -0
- package/css/std/controls/bim-viewer/dialog.css +50 -0
- package/css/std/controls/bim-viewer/nav-cube.css +18 -0
- package/css/std/controls/bim-viewer/prop-inspector.css +86 -0
- package/css/std/controls/bim-viewer/section-planes.css +8 -0
- package/css/std/controls/bim-viewer/sidebar.css +226 -0
- package/css/std/controls/bim-viewer/storey-views.css +57 -0
- package/css/std/controls/bim-viewer/style.css +56 -0
- package/css/std/controls/bim-viewer/toolbar.css +208 -0
- package/css/std/controls/bim-viewer/treeview.css +103 -0
- package/css/std/controls/breadcrumbs/breadcrumbs.css +11 -10
- package/css/std/controls/command-menu/command-menu-dropdown-button.css +8 -7
- package/css/std/controls/command-menu/command-menu.css +0 -1
- package/css/std/controls/criterion/criterion.css +9 -8
- package/css/std/controls/date-picker/date-picker.css +1 -1
- package/css/std/controls/dropdown-button/dropdown-button.css +9 -7
- package/css/std/controls/file-version-select/file-version-select.css +160 -0
- package/css/std/controls/input/input.css +1 -1
- package/css/std/controls/lookup-picker/lookup-picker-selected-item.css +0 -1
- package/css/std/controls/lookup-picker/lookup-picker.css +7 -3
- package/css/std/controls/pdf-viewer/custom.css +38 -19
- package/css/std/controls/pdf-viewer/pdf-viewer-index.css +5503 -0
- package/css/std/controls/pdf-viewer/pdf-viewer.css +24 -16
- package/css/std/controls/pdf-viewer/viewer.css +188 -158
- package/css/std/controls/search/search.css +1 -1
- package/css/std/controls/sidebar/sidebar.css +2 -2
- package/css/std/controls/tab-group/tab-group.css +1 -14
- package/css/std/controls/table-view/table-view-custom-lookup-edit.css +2 -2
- package/css/std/controls/table-view/table-view.css +11 -0
- package/css/std/controls/table-view/treegrid.css +105 -37
- package/css/std/controls/time-picker/time-picker.css +1 -1
- package/css/std/controls/tooltip/tooltip.css +2 -1
- package/css/std/controls/uploader/uploader.css +1 -1
- package/css/std/controls/user-profile/user-profile.css +12 -10
- package/css/third-party/jquery-growl/jquery.growl.css +96 -0
- package/css/third-party/uikit/uikit.css +12083 -0
- package/dist/index.css +294 -125
- package/dist/index.js +527 -282
- package/dist/index.js.map +1 -1
- package/dist/src/constants/Control.d.ts +11 -0
- package/dist/src/constants/Ctrl.d.ts +30 -0
- package/dist/src/constants/Event.d.ts +13 -0
- package/dist/src/constants/Factory.d.ts +3 -0
- package/dist/src/constants/KeyCode.d.ts +3 -0
- package/dist/src/constants/Placement.d.ts +7 -0
- package/dist/src/constants/Unit.d.ts +3 -0
- package/dist/src/controls/ActionHandler/ActionHandler.d.ts +31 -0
- package/dist/src/controls/ActionHandler/ActionHandlerConstants.d.ts +32 -0
- package/dist/src/controls/ActionHandler/ActionInfo.d.ts +12 -0
- package/dist/src/controls/ActionHandler/ActionInfoItem.d.ts +13 -0
- package/dist/src/controls/ActionHandler/UpdatingPopover.d.ts +2 -0
- package/dist/src/controls/Activity/Activity.d.ts +9 -0
- package/dist/src/controls/ActivityItem/ActivityItem.d.ts +16 -0
- package/dist/src/controls/ActivityItem/ActivityMessage.d.ts +6 -0
- package/dist/src/controls/Alert/Alert.d.ts +19 -0
- package/dist/src/controls/Alert/AlertConstants.d.ts +5 -0
- package/dist/src/controls/Avatar/Avatar.d.ts +8 -0
- package/dist/src/controls/BimViewer/BimViewer.d.ts +6 -0
- package/dist/src/controls/BimViewer/BimViewerContext.d.ts +20 -0
- package/dist/src/controls/BimViewer/Viewer.d.ts +6 -0
- package/dist/src/controls/Breadcrumbs/Breadcrumbs.d.ts +13 -0
- package/dist/src/controls/Breadcrumbs/Item.d.ts +10 -0
- package/dist/src/controls/Button/Button.d.ts +14 -0
- package/dist/src/controls/Checkbox/Checkbox.d.ts +11 -0
- package/dist/src/controls/CommandMenu/CommandMenu.d.ts +6 -0
- package/dist/src/controls/CommandMenu/CommandMenuButton.d.ts +13 -0
- package/dist/src/controls/CommandMenu/CommandMenuDropdownButton.d.ts +18 -0
- package/dist/src/controls/CommandMenu/CommandMenuItemHeader.d.ts +11 -0
- package/dist/src/controls/CommandMenu/CommandMenuLookupPicker.d.ts +32 -0
- package/dist/src/controls/CommandMenu/CommandMenuSubItem.d.ts +13 -0
- package/dist/src/controls/ComponentLoader/ComponentLoader.d.ts +8 -0
- package/dist/src/controls/ComponentLoader/ComponentLoaderContextImpl.d.ts +11 -0
- package/dist/src/controls/ControlGroup/ControlGroup.d.ts +7 -0
- package/dist/src/controls/Criterion/ConditionSelect.d.ts +9 -0
- package/dist/src/controls/Criterion/Criterion.d.ts +23 -0
- package/dist/src/controls/DatePicker/DatePicker.d.ts +29 -0
- package/dist/src/controls/DatePicker/DatePickerConstants.d.ts +12 -0
- package/dist/src/controls/Dialog/Dialog.d.ts +23 -0
- package/dist/src/controls/Dialog/DialogButton.d.ts +8 -0
- package/dist/src/controls/Dialog/DialogCloseButton.d.ts +8 -0
- package/dist/src/controls/Dialog/DialogComponent.d.ts +8 -0
- package/dist/src/controls/Dialog/DialogConstants.d.ts +5 -0
- package/dist/src/controls/Dialog/DialogContent.d.ts +7 -0
- package/dist/src/controls/Dialog/DialogFooter.d.ts +11 -0
- package/dist/src/controls/Dialog/DialogHeader.d.ts +8 -0
- package/dist/src/controls/DropdownButton/DropdownButton.d.ts +13 -0
- package/dist/src/controls/FieldIterator/FieldIterator.d.ts +24 -0
- package/dist/src/controls/FileVersionSelect/FileVersionItem.d.ts +6 -0
- package/dist/src/controls/FileVersionSelect/FileVersionSelect.d.ts +12 -0
- package/dist/src/controls/FileVersionSelect/Item.d.ts +10 -0
- package/dist/src/controls/Icon/Icon.d.ts +11 -0
- package/dist/src/controls/ImagePicker/ImagePicker.d.ts +16 -0
- package/dist/src/controls/ImagePicker/ImagePickerConstants.d.ts +8 -0
- package/dist/src/controls/Input/Input.d.ts +32 -0
- package/dist/src/controls/Input/InputConstants.d.ts +4 -0
- package/dist/src/controls/IssueTile/IssueTile.d.ts +26 -0
- package/dist/src/controls/IssueTile/IssueTileConstants.d.ts +3 -0
- package/dist/src/controls/IssueTile/IssueTileFooter.d.ts +8 -0
- package/dist/src/controls/IssueTile/IssueTileHeader.d.ts +18 -0
- package/dist/src/controls/Label/Label.d.ts +9 -0
- package/dist/src/controls/Label/LabelConstants.d.ts +3 -0
- package/dist/src/controls/Login/Login.d.ts +16 -0
- package/dist/src/controls/Login/LoginConstants.d.ts +17 -0
- package/dist/src/controls/Login/LoginFooter.d.ts +10 -0
- package/dist/src/controls/LookupPicker/LookupPicker.d.ts +39 -0
- package/dist/src/controls/LookupPicker/LookupPickerConstants.d.ts +3 -0
- package/dist/src/controls/LookupPicker/SelectedValueList.d.ts +14 -0
- package/dist/src/controls/LookupPicker/ValueList.d.ts +22 -0
- package/dist/src/controls/LookupPicker/ValueListItem.d.ts +11 -0
- package/dist/src/controls/MessageInput/MessageInput.d.ts +12 -0
- package/dist/src/controls/MessageInput/MessageInputConstants.d.ts +3 -0
- package/dist/src/controls/MicroFrontend/MicroFrontend.d.ts +8 -0
- package/dist/src/controls/MicroFrontend/MicroFrontendState.d.ts +8 -0
- package/dist/src/controls/MicroFrontend/renderMicrofrontend.d.ts +2 -0
- package/dist/src/controls/NumberInput/NumberInput.d.ts +30 -0
- package/dist/src/controls/NumberInput/NumberInputConstants.d.ts +12 -0
- package/dist/src/controls/PasswordInput/PasswordInput.d.ts +31 -0
- package/dist/src/controls/PasswordInput/PasswordInputConstants.d.ts +4 -0
- package/dist/src/controls/PdfViewer/PdfViewerContext.d.ts +7 -2
- package/dist/src/controls/RouteItem/RouteItem.d.ts +17 -0
- package/dist/src/controls/ScrollBar/ScrollBar.d.ts +9 -0
- package/dist/src/controls/Search/CheckboxList.d.ts +12 -0
- package/dist/src/controls/Search/Filter.d.ts +21 -0
- package/dist/src/controls/Search/Input.d.ts +21 -0
- package/dist/src/controls/Search/Search.d.ts +29 -0
- package/dist/src/controls/Search/SearchConstants.d.ts +4 -0
- package/dist/src/controls/Sidebar/Item.d.ts +9 -0
- package/dist/src/controls/Sidebar/LinkItem.d.ts +17 -0
- package/dist/src/controls/Sidebar/Section.d.ts +11 -0
- package/dist/src/controls/Sidebar/SectionList.d.ts +10 -0
- package/dist/src/controls/Sidebar/Sidebar.d.ts +14 -0
- package/dist/src/controls/Sidebar/SidebarConstants.d.ts +4 -0
- package/dist/src/controls/Splitter/Splitter.d.ts +18 -0
- package/dist/src/controls/Splitter/SplitterConstants.d.ts +9 -0
- package/dist/src/controls/TabGroup/OverflowButton.d.ts +7 -0
- package/dist/src/controls/TabGroup/Tab.d.ts +10 -0
- package/dist/src/controls/TabGroup/TabGroup.d.ts +10 -0
- package/dist/src/controls/TabGroup/TabGroupComponent.d.ts +9 -0
- package/dist/src/controls/TabGroup/TabGroupConstants.d.ts +4 -0
- package/dist/src/controls/TabGroup/TabGroupHeader.d.ts +9 -0
- package/dist/src/controls/TableView/TableView.d.ts +26 -0
- package/dist/src/controls/TableView/TableViewConstants.d.ts +153 -0
- package/dist/src/controls/TableView/TableViewContext.d.ts +1 -0
- package/dist/src/controls/TableView/TreeGrid.d.ts +17 -0
- package/dist/src/controls/TableView/TreeGridTableViewContextImpl.d.ts +92 -0
- package/dist/src/controls/TaskTile/TaskTile.d.ts +18 -0
- package/dist/src/controls/TelerikUploader/TelerikUploader.d.ts +11 -0
- package/dist/src/controls/TelerikUploader/TelerikUploaderConstants.d.ts +16 -0
- package/dist/src/controls/TelerikUploader/TelerikUploaderContextImpl.d.ts +39 -0
- package/dist/src/controls/TimePicker/TimePicker.d.ts +23 -0
- package/dist/src/controls/TimePicker/TimePickerConstants.d.ts +12 -0
- package/dist/src/controls/Tooltip/Tooltip.d.ts +10 -0
- package/dist/src/controls/Tooltip/TooltipConstants.d.ts +6 -0
- package/dist/src/controls/TopLevelMenu/LinkItem.d.ts +9 -0
- package/dist/src/controls/TopLevelMenu/TopLevelMenu.d.ts +9 -0
- package/dist/src/controls/TreeView/JsTreeViewContextImpl.d.ts +35 -0
- package/dist/src/controls/TreeView/TreeView.d.ts +13 -0
- package/dist/src/controls/TreeView/TreeViewConfig.d.ts +34 -0
- package/dist/src/controls/TreeView/TreeViewConstants.d.ts +52 -0
- package/dist/src/controls/UserLookupPicker/UserLookupPicker.d.ts +40 -0
- package/dist/src/controls/UserProfile/UserProfile.d.ts +12 -0
- package/dist/src/controls/UserProfile/UserProfileMenuItem.d.ts +11 -0
- package/dist/src/controls/View/View.d.ts +7 -0
- package/dist/src/controls/ViewPart/ViewPart.d.ts +10 -0
- package/dist/src/exceptions/impl/AbortExceptionImpl.d.ts +3 -0
- package/dist/src/index.d.ts +133 -0
- package/lib/jquery-dialogextend/jquery.dialogextend.min.js +2 -0
- package/lib/jquery-growl/jquery.growl.js +315 -0
- package/lib/jszip/jszip-utils.min.js +1 -0
- package/lib/jszip/jszip.min.js +13 -0
- package/lib/third-party.js +1379 -15
- package/lib/uikit/uikit-icons.min.js +1 -0
- package/lib/uikit/uikit.min.js +1 -0
- package/lib/webL10n/l10n.js +1028 -0
- package/lib/xeokit/VitroFastNavPlugin.js +920 -0
- package/lib/xeokit/VitroTreeViewPlugin.js +650 -0
- package/lib/xeokit/xeokit-sdk.es.js +188506 -0
- package/package.json +6 -4
- package/src/controls/BimViewer/js/bim-viewer.js +2697 -0
- package/src/controls/BimViewer/js/init-viewer-page.js +24 -0
- package/src/controls/PdfViewer/js/init-viewer-page.js +1 -2
- package/src/controls/PdfViewer/js/pdf-viewer.js +60 -56
- package/css/std/controls/pdf-viewer/img/annotation-check.svg +0 -11
- package/css/std/controls/pdf-viewer/img/annotation-comment.svg +0 -16
- package/css/std/controls/pdf-viewer/img/annotation-help.svg +0 -26
- package/css/std/controls/pdf-viewer/img/annotation-insert.svg +0 -10
- package/css/std/controls/pdf-viewer/img/annotation-key.svg +0 -11
- package/css/std/controls/pdf-viewer/img/annotation-newparagraph.svg +0 -11
- package/css/std/controls/pdf-viewer/img/annotation-noicon.svg +0 -7
- package/css/std/controls/pdf-viewer/img/annotation-note.svg +0 -42
- package/css/std/controls/pdf-viewer/img/annotation-paperclip.svg +0 -6
- package/css/std/controls/pdf-viewer/img/annotation-paragraph.svg +0 -16
- package/css/std/controls/pdf-viewer/img/annotation-pushpin.svg +0 -7
- package/css/std/controls/pdf-viewer/img/close-compare-viewer.png +0 -0
- package/css/std/controls/pdf-viewer/img/close-compare-viewer_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/compare-overlay.png +0 -0
- package/css/std/controls/pdf-viewer/img/compare-side-by-side.png +0 -0
- package/css/std/controls/pdf-viewer/img/cursor-editorFreeText.svg +0 -3
- package/css/std/controls/pdf-viewer/img/cursor-editorInk.svg +0 -4
- package/css/std/controls/pdf-viewer/img/delete-active.png +0 -0
- package/css/std/controls/pdf-viewer/img/delete.png +0 -0
- package/css/std/controls/pdf-viewer/img/dlg-compare-ico.png +0 -0
- package/css/std/controls/pdf-viewer/img/do-compare.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-arrow.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-cloud.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-ellipse.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-line.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-polygon.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-rect.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-arrow.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-cloud.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-ellipse.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-line.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-polygon.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-rect.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation.png +0 -0
- package/css/std/controls/pdf-viewer/img/dropdown-arrow.png +0 -0
- package/css/std/controls/pdf-viewer/img/findbarButton-next.svg +0 -3
- package/css/std/controls/pdf-viewer/img/findbarButton-previous.svg +0 -3
- package/css/std/controls/pdf-viewer/img/finish-align.png +0 -0
- package/css/std/controls/pdf-viewer/img/finish-align_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/fit-to-view.png +0 -0
- package/css/std/controls/pdf-viewer/img/fit-to-view_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/gv-toolbarButton-download.svg +0 -3
- package/css/std/controls/pdf-viewer/img/gv-toolbarButton-openinapp.svg +0 -11
- package/css/std/controls/pdf-viewer/img/hide-annotation.png +0 -0
- package/css/std/controls/pdf-viewer/img/hide-colors.png +0 -0
- package/css/std/controls/pdf-viewer/img/hide-colors_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/layer-unvisible.png +0 -0
- package/css/std/controls/pdf-viewer/img/layer-visible.png +0 -0
- package/css/std/controls/pdf-viewer/img/loading-dark.svg +0 -24
- package/css/std/controls/pdf-viewer/img/loading-icon.gif +0 -0
- package/css/std/controls/pdf-viewer/img/loading.svg +0 -1
- package/css/std/controls/pdf-viewer/img/overlay.png +0 -0
- package/css/std/controls/pdf-viewer/img/overlay_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/pan.png +0 -0
- package/css/std/controls/pdf-viewer/img/pan_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/panel-visibility.png +0 -0
- package/css/std/controls/pdf-viewer/img/panel-visibility_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-documentProperties.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-firstPage.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-handTool.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-lastPage.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-rotateCcw.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-rotateCw.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-scrollHorizontal.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-scrollPage.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-scrollVertical.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-scrollWrapped.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-selectTool.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-spreadEven.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-spreadNone.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-spreadOdd.svg +0 -3
- package/css/std/controls/pdf-viewer/img/shadow.png +0 -0
- package/css/std/controls/pdf-viewer/img/show-annotation.png +0 -0
- package/css/std/controls/pdf-viewer/img/side-by-side.png +0 -0
- package/css/std/controls/pdf-viewer/img/side-by-side_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/sidebar-notes-toggle.png +0 -0
- package/css/std/controls/pdf-viewer/img/spinner.gif +0 -0
- package/css/std/controls/pdf-viewer/img/toolbarButton-bookmark.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-currentOutlineItem.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-download.svg +0 -4
- package/css/std/controls/pdf-viewer/img/toolbarButton-editorFreeText.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-editorInk.svg +0 -4
- package/css/std/controls/pdf-viewer/img/toolbarButton-editorStamp.svg +0 -8
- package/css/std/controls/pdf-viewer/img/toolbarButton-menuArrow.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-openFile.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-pageDown.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-pageUp.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-presentationMode.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-print.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-search.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-secondaryToolbarToggle.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-sidebarToggle.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-viewAttachments.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-viewLayers.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-viewOutline.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-viewThumbnail.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-zoomIn.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-zoomOut.svg +0 -3
- package/css/std/controls/pdf-viewer/img/treeitem-collapsed.svg +0 -1
- package/css/std/controls/pdf-viewer/img/treeitem-expanded.svg +0 -1
- package/css/std/controls/pdf-viewer/img/zoom.png +0 -0
- package/css/std/controls/pdf-viewer/img/zoom_active.png +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
async function initHtml() {
|
|
2
|
+
let htmlContainer = document.getElementsByTagName('html')[0];
|
|
3
|
+
htmlContainer.dir = 'ltr';
|
|
4
|
+
const resp = await fetch('resource/bimViewer/viewer.html?version=v2');
|
|
5
|
+
const viewer = await resp.text();
|
|
6
|
+
let container = document.getElementsByTagName('body')[0];
|
|
7
|
+
container.insertAdjacentHTML('beforeend', viewer);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
async function initPage() {
|
|
11
|
+
let container = document.getElementsByTagName('head')[0];
|
|
12
|
+
container.innerHTML += '<link rel="resource" type="application/l10n" href="resource/bimViewer/locale/locale.js?version=v2">';
|
|
13
|
+
container.innerHTML += '<link href="/resource/bimViewer/css/bim-viewer.css?version=v2" rel="stylesheet">';
|
|
14
|
+
|
|
15
|
+
await initHtml();
|
|
16
|
+
|
|
17
|
+
const script = document.createElement('script');
|
|
18
|
+
script.type = 'module';
|
|
19
|
+
script.id = 'bim-viewer';
|
|
20
|
+
script.src = 'resource/bimViewer/js/bim-viewer.js?version=v2';
|
|
21
|
+
document.head.appendChild(script);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
initPage();
|
|
@@ -11,11 +11,10 @@ async function initHtml() {
|
|
|
11
11
|
async function initPage() {
|
|
12
12
|
let container = document.getElementsByTagName('head')[0];
|
|
13
13
|
container.innerHTML += '<link rel="resource" type="application/l10n" href="resource/pdfViewer/locale/locale.js?version=v2">';
|
|
14
|
+
container.innerHTML += '<link href="/resource/pdfViewer/css/pdf-viewer.css?version=v2" rel="stylesheet">';
|
|
14
15
|
|
|
15
16
|
await initHtml();
|
|
16
17
|
|
|
17
|
-
|
|
18
|
-
|
|
19
18
|
const script = document.createElement('script');
|
|
20
19
|
script.type = 'text/javascript';
|
|
21
20
|
script.id = 'pdf-viewer';
|
|
@@ -17482,55 +17482,53 @@ function bindBtnCompareClose() {
|
|
|
17482
17482
|
});
|
|
17483
17483
|
}
|
|
17484
17484
|
|
|
17485
|
-
function initCompare() {
|
|
17486
|
-
|
|
17487
|
-
|
|
17488
|
-
|
|
17489
|
-
|
|
17490
|
-
|
|
17491
|
-
|
|
17492
|
-
|
|
17493
|
-
|
|
17494
|
-
|
|
17495
|
-
|
|
17496
|
-
|
|
17497
|
-
|
|
17498
|
-
|
|
17499
|
-
|
|
17500
|
-
|
|
17501
|
-
|
|
17502
|
-
|
|
17503
|
-
|
|
17504
|
-
|
|
17505
|
-
|
|
17506
|
-
|
|
17507
|
-
|
|
17508
|
-
|
|
17509
|
-
|
|
17510
|
-
|
|
17511
|
-
|
|
17512
|
-
|
|
17513
|
-
|
|
17514
|
-
|
|
17515
|
-
|
|
17516
|
-
|
|
17517
|
-
|
|
17518
|
-
|
|
17519
|
-
|
|
17520
|
-
|
|
17521
|
-
|
|
17522
|
-
|
|
17523
|
-
|
|
17524
|
-
|
|
17525
|
-
|
|
17526
|
-
|
|
17527
|
-
|
|
17528
|
-
|
|
17529
|
-
|
|
17530
|
-
|
|
17531
|
-
|
|
17532
|
-
|
|
17533
|
-
})
|
|
17485
|
+
function initCompare() {
|
|
17486
|
+
|
|
17487
|
+
$('#docAVersionList').html(null);
|
|
17488
|
+
$('#docBVersionList').html(null);
|
|
17489
|
+
$('#docAPageList').html(null);
|
|
17490
|
+
$('#docBPageList').html(null);
|
|
17491
|
+
|
|
17492
|
+
bindCompareThumbCanvasLoaded();
|
|
17493
|
+
bindBtnCompare();
|
|
17494
|
+
bindBtnCompareCancel();
|
|
17495
|
+
bindBtnCompareDlgClose();
|
|
17496
|
+
bindBtnDoCompare();
|
|
17497
|
+
bindOnCompareDocumentsLoadedHandler();
|
|
17498
|
+
bindCompareDlgPageChange();
|
|
17499
|
+
bindBtnsCompareDocsSelect();
|
|
17500
|
+
bindCompareDlgVersionChange();
|
|
17501
|
+
|
|
17502
|
+
let fileName = context.file.fieldValueMap.name;
|
|
17503
|
+
$('div.compare-dlg_doc-a_name').text(fileName);
|
|
17504
|
+
$('div.compare-dlg_doc-b_name').text(fileName);
|
|
17505
|
+
|
|
17506
|
+
$.each(context.fileVersionList, function (i, item) {
|
|
17507
|
+
let value = 'v' + item.name;
|
|
17508
|
+
$('#docAVersionList').append($('<li>', {
|
|
17509
|
+
value: value,
|
|
17510
|
+
text: value,
|
|
17511
|
+
}));
|
|
17512
|
+
$('#docBVersionList').append($('<li>', {
|
|
17513
|
+
value: value,
|
|
17514
|
+
text: value,
|
|
17515
|
+
}));
|
|
17516
|
+
});
|
|
17517
|
+
|
|
17518
|
+
let version = context.fileVersionList.find(item => item.id == context.currentVersionId);
|
|
17519
|
+
let currentVersion = `v${version.name}`;
|
|
17520
|
+
$('#docAVersion').val(currentVersion);
|
|
17521
|
+
let currentVersionArray = version.name.split('.');
|
|
17522
|
+
let versionMinor = currentVersionArray[1];
|
|
17523
|
+
let versionMajor = currentVersionArray[0];
|
|
17524
|
+
if (versionMinor > 1) {
|
|
17525
|
+
$('#docBVersion').val(`v${versionMajor}.${--versionMinor}`);
|
|
17526
|
+
} else {
|
|
17527
|
+
$('#docBVersion').val(currentVersion);
|
|
17528
|
+
}
|
|
17529
|
+
$('#docAPage').val(1);
|
|
17530
|
+
$('#docBPage').val(1);
|
|
17531
|
+
|
|
17534
17532
|
|
|
17535
17533
|
bindPageSelect();
|
|
17536
17534
|
}
|
|
@@ -17562,13 +17560,13 @@ function getDocA() {
|
|
|
17562
17560
|
let docAVersionValue = $("#docAVersion").val();
|
|
17563
17561
|
let docAVersion = docAVersionValue.substring(1);
|
|
17564
17562
|
let docAPage = Number($("#docAPage").val());
|
|
17565
|
-
let docAVersionFile = context.fileVersionList.find(item => item.
|
|
17563
|
+
let docAVersionFile = context.fileVersionList.find(item => item.name == docAVersion);
|
|
17566
17564
|
let docA = {
|
|
17567
17565
|
name: fileName,
|
|
17568
17566
|
version: docAVersionValue,
|
|
17569
17567
|
page: docAPage,
|
|
17570
|
-
uploadBy: docAVersionFile.
|
|
17571
|
-
uploadDate:
|
|
17568
|
+
uploadBy: docAVersionFile.userName,
|
|
17569
|
+
uploadDate: docAVersionFile.date,
|
|
17572
17570
|
url: `/api/file/getByItemId/${fileId}/${docAVersion}`
|
|
17573
17571
|
};
|
|
17574
17572
|
|
|
@@ -17581,13 +17579,13 @@ function getDocB() {
|
|
|
17581
17579
|
let docBVersionValue = $("#docBVersion").val();
|
|
17582
17580
|
let docBVersion = docBVersionValue.substring(1);
|
|
17583
17581
|
let docBPage = Number($("#docBPage").val());
|
|
17584
|
-
let docBVersionFile = context.fileVersionList.find(item => item.
|
|
17582
|
+
let docBVersionFile = context.fileVersionList.find(item => item.name == docBVersion);
|
|
17585
17583
|
let docB = {
|
|
17586
17584
|
name: fileName,
|
|
17587
17585
|
version: docBVersionValue,
|
|
17588
17586
|
page: docBPage,
|
|
17589
|
-
uploadBy: docBVersionFile.
|
|
17590
|
-
uploadDate:
|
|
17587
|
+
uploadBy: docBVersionFile.userName,
|
|
17588
|
+
uploadDate: docBVersionFile.date,
|
|
17591
17589
|
url: `/api/file/getByItemId/${fileId}/${docBVersion}`
|
|
17592
17590
|
};
|
|
17593
17591
|
|
|
@@ -17834,7 +17832,6 @@ function bindBtnToggleSidebarNotes() {
|
|
|
17834
17832
|
}
|
|
17835
17833
|
|
|
17836
17834
|
function saveNote(pageNr, $triggerElement, clickEvent, hasSvg, svgData) {
|
|
17837
|
-
|
|
17838
17835
|
var noteOptions = getNoteOptionsForSave('', pageNr, $triggerElement, clickEvent, hasSvg, svgData);
|
|
17839
17836
|
|
|
17840
17837
|
context.onCreateIssue(noteOptions);
|
|
@@ -18112,6 +18109,10 @@ function updatePage(e) {
|
|
|
18112
18109
|
initNotesByPageNr(page);
|
|
18113
18110
|
}
|
|
18114
18111
|
|
|
18112
|
+
if ($('#btnDrawAnnotation').hasClass('toggled')) {
|
|
18113
|
+
activateDrawAnnotation();
|
|
18114
|
+
}
|
|
18115
|
+
|
|
18115
18116
|
}
|
|
18116
18117
|
|
|
18117
18118
|
function initBtnDrawAnnotation() {
|
|
@@ -18120,6 +18121,7 @@ function initBtnDrawAnnotation() {
|
|
|
18120
18121
|
btn.on('click', function () {
|
|
18121
18122
|
let isHandToolActive = $('#cursorHandTool').hasClass('toggled');
|
|
18122
18123
|
$(this).toggleClass('toggled');
|
|
18124
|
+
|
|
18123
18125
|
if ($(this).hasClass('toggled')) {
|
|
18124
18126
|
if ($('#btnToggleSidebarNotes').hasClass('toggled')) {
|
|
18125
18127
|
$('#btnToggleSidebarNotes').click();
|
|
@@ -18235,6 +18237,8 @@ function drawShape(x1, y1, x2, y2, pageNr, shape) {
|
|
|
18235
18237
|
$('#svgsketch-' + [pageNr]).focus();
|
|
18236
18238
|
|
|
18237
18239
|
initDlgForSvg(drawNodes[nodeId]);
|
|
18240
|
+
|
|
18241
|
+
deactivateDrawAnnotation();
|
|
18238
18242
|
}
|
|
18239
18243
|
|
|
18240
18244
|
$(document).ready(function() {
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
-
width="40"
|
|
5
|
-
height="40"
|
|
6
|
-
viewBox="0 0 40 40">
|
|
7
|
-
<path
|
|
8
|
-
d="M 1.5006714,23.536225 6.8925879,18.994244 14.585721,26.037937 34.019683,4.5410479 38.499329,9.2235032 14.585721,35.458952 z"
|
|
9
|
-
id="path4"
|
|
10
|
-
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.25402856;stroke-opacity:1" />
|
|
11
|
-
</svg>
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
-
height="40"
|
|
5
|
-
width="40"
|
|
6
|
-
viewBox="0 0 40 40">
|
|
7
|
-
<rect
|
|
8
|
-
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
|
9
|
-
width="33.76017"
|
|
10
|
-
height="33.76017"
|
|
11
|
-
x="3.119915"
|
|
12
|
-
y="3.119915" />
|
|
13
|
-
<path
|
|
14
|
-
d="m 20.677967,8.54499 c -7.342801,0 -13.295293,4.954293 -13.295293,11.065751 0,2.088793 0.3647173,3.484376 1.575539,5.150563 L 6.0267418,31.45501 13.560595,29.011117 c 2.221262,1.387962 4.125932,1.665377 7.117372,1.665377 7.3428,0 13.295291,-4.954295 13.295291,-11.065753 0,-6.111458 -5.952491,-11.065751 -13.295291,-11.065751 z"
|
|
15
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.93031836;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"/>
|
|
16
|
-
</svg>
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
-
width="40"
|
|
5
|
-
height="40"
|
|
6
|
-
viewBox="0 0 40 40">
|
|
7
|
-
<g
|
|
8
|
-
transform="translate(0,-60)"
|
|
9
|
-
id="layer1">
|
|
10
|
-
<rect
|
|
11
|
-
width="36.460953"
|
|
12
|
-
height="34.805603"
|
|
13
|
-
x="1.7695236"
|
|
14
|
-
y="62.597198"
|
|
15
|
-
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.30826771;stroke-opacity:1" />
|
|
16
|
-
<g
|
|
17
|
-
transform="matrix(0.88763677,0,0,0.88763677,2.2472646,8.9890584)">
|
|
18
|
-
<path
|
|
19
|
-
d="M 20,64.526342 C 11.454135,64.526342 4.5263421,71.454135 4.5263421,80 4.5263421,88.545865 11.454135,95.473658 20,95.473658 28.545865,95.473658 35.473658,88.545865 35.473658,80 35.473658,71.454135 28.545865,64.526342 20,64.526342 z m -0.408738,9.488564 c 3.527079,0 6.393832,2.84061 6.393832,6.335441 0,3.494831 -2.866753,6.335441 -6.393832,6.335441 -3.527079,0 -6.393832,-2.84061 -6.393832,-6.335441 0,-3.494831 2.866753,-6.335441 6.393832,-6.335441 z"
|
|
20
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.02768445;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
|
21
|
-
<path
|
|
22
|
-
d="m 7.2335209,71.819938 4.9702591,4.161823 c -1.679956,2.581606 -1.443939,6.069592 0.159325,8.677725 l -5.1263071,3.424463 c 0.67516,1.231452 3.0166401,3.547686 4.2331971,4.194757 l 3.907728,-4.567277 c 2.541952,1.45975 5.730694,1.392161 8.438683,-0.12614 l 3.469517,6.108336 c 1.129779,-0.44367 4.742234,-3.449633 5.416358,-5.003859 l -5.46204,-4.415541 c 1.44319,-2.424098 1.651175,-5.267515 0.557303,-7.748623 l 5.903195,-3.833951 C 33.14257,71.704996 30.616217,69.018606 29.02952,67.99296 l -4.118813,4.981678 C 22.411934,71.205099 18.900853,70.937534 16.041319,72.32916 l -3.595408,-5.322091 c -1.345962,0.579488 -4.1293881,2.921233 -5.2123901,4.812869 z m 8.1010311,3.426672 c 2.75284,-2.446266 6.769149,-2.144694 9.048998,0.420874 2.279848,2.56557 2.113919,6.596919 -0.638924,9.043185 -2.752841,2.446267 -6.775754,2.13726 -9.055604,-0.428308 -2.279851,-2.565568 -2.107313,-6.589485 0.64553,-9.035751 z"
|
|
23
|
-
style="fill:#000000;fill-opacity:1;stroke:none" />
|
|
24
|
-
</g>
|
|
25
|
-
</g>
|
|
26
|
-
</svg>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
-
width="64"
|
|
5
|
-
height="64"
|
|
6
|
-
viewBox="0 0 64 64">
|
|
7
|
-
<path
|
|
8
|
-
d="M 32.003143,1.4044602 57.432701,62.632577 6.5672991,62.627924 z"
|
|
9
|
-
style="fill:#ffff00;fill-opacity:0.94117647;fill-rule:nonzero;stroke:#000000;stroke-width:1.00493038;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
|
10
|
-
</svg>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
-
width="64"
|
|
5
|
-
height="64"
|
|
6
|
-
viewBox="0 0 64 64">
|
|
7
|
-
<path
|
|
8
|
-
d="M 25.470843,9.4933766 C 25.30219,12.141818 30.139101,14.445969 34.704831,13.529144 40.62635,12.541995 41.398833,7.3856498 35.97505,5.777863 31.400921,4.1549155 25.157674,6.5445892 25.470843,9.4933766 z M 4.5246282,17.652051 C 4.068249,11.832873 9.2742983,5.9270407 18.437379,3.0977088 29.751911,-0.87185184 45.495663,1.4008022 53.603953,7.1104009 c 9.275765,6.1889221 7.158128,16.2079421 -3.171076,21.5939521 -1.784316,1.635815 -6.380222,1.21421 -7.068351,3.186186 -1.04003,0.972427 -1.288046,2.050158 -1.232864,3.168203 1.015111,2.000108 -3.831548,1.633216 -3.270553,3.759574 0.589477,5.264544 -0.179276,10.53738 -0.362842,15.806257 -0.492006,2.184998 1.163456,4.574232 -0.734888,6.610642 -2.482919,2.325184 -7.30604,2.189143 -9.193497,-0.274767 -2.733688,-1.740626 -8.254447,-3.615254 -6.104247,-6.339626 3.468112,-1.708686 -2.116197,-3.449897 0.431242,-5.080274 5.058402,-1.39256 -2.393215,-2.304318 -0.146889,-4.334645 3.069198,-0.977415 2.056986,-2.518352 -0.219121,-3.540397 1.876567,-1.807151 1.484149,-4.868919 -2.565455,-5.942205 0.150866,-1.805474 2.905737,-4.136876 -1.679967,-5.20493 C 10.260902,27.882167 4.6872697,22.95045 4.5245945,17.652051 z"
|
|
9
|
-
id="path604"
|
|
10
|
-
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.72665179;stroke-opacity:1" />
|
|
11
|
-
</svg>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
-
width="64"
|
|
5
|
-
height="64"
|
|
6
|
-
viewBox="0 0 64 64">
|
|
7
|
-
<path
|
|
8
|
-
d="M 32.003143,10.913072 57.432701,53.086929 6.567299,53.083723 z"
|
|
9
|
-
id="path2985"
|
|
10
|
-
style="fill:#ffff00;fill-opacity:0.94117647;fill-rule:nonzero;stroke:#000000;stroke-width:0.83403099;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
|
11
|
-
</svg>
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
-
width="40"
|
|
5
|
-
height="40"
|
|
6
|
-
viewBox="0 0 40 40">
|
|
7
|
-
<rect
|
|
8
|
-
width="36.075428"
|
|
9
|
-
height="31.096582"
|
|
10
|
-
x="1.962286"
|
|
11
|
-
y="4.4517088"
|
|
12
|
-
id="rect4"
|
|
13
|
-
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.23004246;stroke-opacity:1" />
|
|
14
|
-
<rect
|
|
15
|
-
width="27.96859"
|
|
16
|
-
height="1.5012145"
|
|
17
|
-
x="6.0157046"
|
|
18
|
-
y="10.285"
|
|
19
|
-
id="rect6"
|
|
20
|
-
style="fill:#000000;fill-opacity:1;stroke:none" />
|
|
21
|
-
<rect
|
|
22
|
-
width="27.96859"
|
|
23
|
-
height="0.85783684"
|
|
24
|
-
x="6.0157056"
|
|
25
|
-
y="23.21689"
|
|
26
|
-
id="rect8"
|
|
27
|
-
style="fill:#000000;fill-opacity:1;stroke:none" />
|
|
28
|
-
<rect
|
|
29
|
-
width="27.96859"
|
|
30
|
-
height="0.85783684"
|
|
31
|
-
x="5.8130345"
|
|
32
|
-
y="28.964394"
|
|
33
|
-
id="rect10"
|
|
34
|
-
style="fill:#000000;fill-opacity:1;stroke:none" />
|
|
35
|
-
<rect
|
|
36
|
-
width="27.96859"
|
|
37
|
-
height="0.85783684"
|
|
38
|
-
x="6.0157046"
|
|
39
|
-
y="17.426493"
|
|
40
|
-
id="rect12"
|
|
41
|
-
style="fill:#000000;fill-opacity:1;stroke:none" />
|
|
42
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
2
|
-
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
3
|
-
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="40" width="40">
|
|
5
|
-
<path d="M9 3.5a1.5 1.5 0 0 0-3-.001v7.95C6 12.83 7.12 14 8.5 14s2.5-1.17 2.5-2.55V5.5a.5.5 0 0 1 1 0v6.03C11.955 13.427 10.405 15 8.5 15S5.044 13.426 5 11.53V3.5a2.5 2.5 0 0 1 5 0v7.003a1.5 1.5 0 0 1-3-.003v-5a.5.5 0 0 1 1 0v5a.5.5 0 0 0 1 0Z"/>
|
|
6
|
-
</svg>
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
-
width="40"
|
|
5
|
-
height="40"
|
|
6
|
-
viewBox="0 0 40 40">
|
|
7
|
-
<rect
|
|
8
|
-
width="33.76017"
|
|
9
|
-
height="33.76017"
|
|
10
|
-
x="3.119915"
|
|
11
|
-
y="3.119915"
|
|
12
|
-
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
|
13
|
-
<path
|
|
14
|
-
d="m 17.692678,34.50206 0,-16.182224 c -1.930515,-0.103225 -3.455824,-0.730383 -4.57593,-1.881473 -1.12011,-1.151067 -1.680164,-2.619596 -1.680164,-4.405591 0,-1.992435 0.621995,-3.5796849 1.865988,-4.7617553 1.243989,-1.1820288 3.06352,-1.7730536 5.458598,-1.7730764 l 9.802246,0 0,2.6789711 -2.229895,0 0,26.3251486 -2.632515,0 0,-26.3251486 -3.45324,0 0,26.3251486 z"
|
|
15
|
-
style="font-size:29.42051125px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.07795751;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial" />
|
|
16
|
-
</svg>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
2
|
-
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
3
|
-
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="40" width="40">
|
|
5
|
-
<path d="M8.156 12.5a.99.99 0 0 0 .707-.294l.523-2.574L10.5 8.499l1.058-1.04 2.65-.601a.996.996 0 0 0 0-1.414l-3.657-3.658a.996.996 0 0 0-1.414 0l-.523 2.576L7.5 5.499 6.442 6.535l-2.65.6a.996.996 0 0 0 0 1.413l3.657 3.658a.999.999 0 0 0 .707.295z"/>
|
|
6
|
-
<path d="M9.842.996c-.386 0-.77.146-1.06.44a.5.5 0 0 0-.136.251l-.492 2.43-1.008 1.03-.953.933-2.511.566a.5.5 0 0 0-.243.133 1.505 1.505 0 0 0-.002 2.123l1.477 1.477-2.768 2.767a.5.5 0 0 0 0 .707.5.5 0 0 0 .708 0l2.767-2.767 1.475 1.474a1.494 1.494 0 0 0 2.123-.002.5.5 0 0 0 .135-.254l.492-2.427 1.008-1.024.953-.937 2.511-.57a.5.5 0 0 0 .243-.132c.586-.58.583-1.543.002-2.125l-3.659-3.656A1.501 1.501 0 0 0 9.842.996Zm.05 1.025a.394.394 0 0 1 .305.12l3.658 3.657c.18.18.141.432.002.627l-2.41.545a.5.5 0 0 0-.24.131L10.15 8.142a.5.5 0 0 0-.007.006L9.029 9.283a.5.5 0 0 0-.133.25l-.48 2.36c-.082.053-.165.109-.26.109a.492.492 0 0 1-.353-.149L4.145 8.195c-.18-.18-.141-.432-.002-.627l2.41-.545a.5.5 0 0 0 .238-.13L7.85 5.857a.5.5 0 0 0 .007-.008l1.114-1.138a.5.5 0 0 0 .133-.25l.472-2.323a.619.619 0 0 1 .317-.117Z"/>
|
|
7
|
-
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M12 2.75H12.5V2.25V1V0.5H12H10.358C9.91165 0.5 9.47731 0.625661 9.09989 0.860442L9.09886 0.861087L8 1.54837L6.89997 0.860979L6.89911 0.860443C6.5218 0.625734 6.08748 0.5 5.642 0.5H4H3.5V1V2.25V2.75H4H5.642C5.66478 2.75 5.6885 2.75641 5.71008 2.76968C5.71023 2.76977 5.71038 2.76986 5.71053 2.76995L6.817 3.461C6.81704 3.46103 6.81709 3.46105 6.81713 3.46108C6.81713 3.46108 6.81713 3.46108 6.81714 3.46109C6.8552 3.48494 6.876 3.52285 6.876 3.567V8V12.433C6.876 12.4771 6.85523 12.515 6.81722 12.5389C6.81715 12.5389 6.81707 12.539 6.817 12.539L5.70953 13.23C5.70941 13.2301 5.70929 13.2302 5.70917 13.2303C5.68723 13.2438 5.6644 13.25 5.641 13.25H4H3.5V13.75V15V15.5H4H5.642C6.08835 15.5 6.52269 15.3743 6.90011 15.1396L6.90086 15.1391L8 14.4526L9.10003 15.14L9.10089 15.1406C9.47831 15.3753 9.91265 15.501 10.359 15.501H12H12.5V15.001V13.751V13.251H12H10.358C10.3352 13.251 10.3115 13.2446 10.2899 13.2313C10.2897 13.2312 10.2896 13.2311 10.2895 13.231L9.183 12.54C9.18298 12.54 9.18295 12.54 9.18293 12.54C9.18291 12.5399 9.18288 12.5399 9.18286 12.5399C9.14615 12.5169 9.125 12.4797 9.125 12.434V8V3.567C9.125 3.52266 9.14603 3.48441 9.18364 3.4606C9.18377 3.46052 9.1839 3.46043 9.18404 3.46035L10.2895 2.76995C10.2896 2.76985 10.2898 2.76975 10.2899 2.76966C10.3119 2.75619 10.3346 2.75 10.358 2.75H12Z" fill="black" stroke="white"/>
|
|
3
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M0.0189877 13.6645L0.612989 10.4635C0.687989 10.0545 0.884989 9.6805 1.18099 9.3825L9.98199 0.5805C10.756 -0.1925 12.015 -0.1945 12.792 0.5805L14.42 2.2085C15.194 2.9835 15.194 4.2435 14.42 5.0185L5.61599 13.8215C5.31999 14.1165 4.94599 14.3125 4.53799 14.3875L1.33599 14.9815C1.26599 14.9935 1.19799 15.0005 1.12999 15.0005C0.832989 15.0005 0.544988 14.8835 0.330988 14.6695C0.0679874 14.4055 -0.0490122 14.0305 0.0189877 13.6645Z" fill="white"/>
|
|
3
|
-
<path d="M0.0189877 13.6645L0.612989 10.4635C0.687989 10.0545 0.884989 9.6805 1.18099 9.3825L9.98199 0.5805C10.756 -0.1925 12.015 -0.1945 12.792 0.5805L14.42 2.2085C15.194 2.9835 15.194 4.2435 14.42 5.0185L5.61599 13.8215C5.31999 14.1165 4.94599 14.3125 4.53799 14.3875L1.33599 14.9815C1.26599 14.9935 1.19799 15.0005 1.12999 15.0005C0.832989 15.0005 0.544988 14.8835 0.330988 14.6695C0.0679874 14.4055 -0.0490122 14.0305 0.0189877 13.6645ZM12.472 5.1965L13.632 4.0365L13.631 3.1885L11.811 1.3675L10.963 1.3685L9.80299 2.5285L12.472 5.1965ZM4.31099 13.1585C4.47099 13.1285 4.61799 13.0515 4.73399 12.9345L11.587 6.0815L8.91899 3.4135L2.06599 10.2655C1.94899 10.3835 1.87199 10.5305 1.84099 10.6915L1.36699 13.2485L1.75199 13.6335L4.31099 13.1585Z" fill="black"/>
|
|
4
|
-
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M10.999 8.352L5.534 13.818C5.41551 13.9303 5.25786 13.9918 5.09466 13.9895C4.93146 13.9872 4.77561 13.9212 4.66033 13.8057C4.54505 13.6902 4.47945 13.5342 4.47752 13.3709C4.47559 13.2077 4.53748 13.0502 4.65 12.932L9.585 7.998L4.651 3.067C4.53862 2.94864 4.47691 2.79106 4.47903 2.62786C4.48114 2.46466 4.54692 2.30874 4.66233 2.19333C4.77774 2.07792 4.93366 2.01215 5.09686 2.01003C5.26006 2.00792 5.41763 2.06962 5.536 2.182L11 7.647L10.999 8.352Z" fill="black"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M5.001 8.352L10.466 13.818C10.5845 13.9303 10.7421 13.9918 10.9053 13.9895C11.0685 13.9872 11.2244 13.9212 11.3397 13.8057C11.4549 13.6902 11.5205 13.5342 11.5225 13.3709C11.5244 13.2077 11.4625 13.0502 11.35 12.932L6.416 7.999L11.349 3.067C11.4614 2.94864 11.5231 2.79106 11.521 2.62786C11.5189 2.46466 11.4531 2.30874 11.3377 2.19333C11.2223 2.07792 11.0663 2.01215 10.9031 2.01003C10.7399 2.00792 10.5824 2.06962 10.464 2.182L5 7.647L5.001 8.352Z" fill="black"/>
|
|
3
|
-
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.969 10.059C17.262 9.766 17.737 9.766 18.03 10.059C18.323 10.352 18.323 10.827 18.03 11.12L12.15 17H11.35L5.46896 11.12C5.17596 10.827 5.17596 10.352 5.46896 10.059C5.76196 9.766 6.23696 9.766 6.52996 10.059L11 14.529V2.75C11 2.336 11.336 2 11.75 2C12.164 2 12.5 2.336 12.499 2.75V14.529L16.969 10.059ZM4.98193 19.7L5.78193 20.5H17.7169L18.5169 19.7V17.75C18.5169 17.336 18.8529 17 19.2669 17C19.6809 17 20.0169 17.336 20.0169 17.75V19.5C20.0169 20.881 18.8979 22 17.5169 22H5.98193C4.60093 22 3.48193 20.881 3.48193 19.5V17.75C3.48193 17.336 3.81793 17 4.23193 17C4.64593 17 4.98193 17.336 4.98193 17.75V19.7Z" fill="black"/>
|
|
3
|
-
</svg>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M4 4.5H6.5V7H4V4.5Z" fill="black"/>
|
|
3
|
-
<path d="M6.5 10.5H4V13H6.5V10.5Z" fill="black"/>
|
|
4
|
-
<path d="M13.25 10.5H10.75V13H13.25V10.5Z" fill="black"/>
|
|
5
|
-
<path d="M17.5 10.5H20V13H17.5V10.5Z" fill="black"/>
|
|
6
|
-
<path d="M6.5 16.5H4V19H6.5V16.5Z" fill="black"/>
|
|
7
|
-
<path d="M10.75 16.5H13.25V19H10.75V16.5Z" fill="black"/>
|
|
8
|
-
<path d="M20 16.5H17.5V19H20V16.5Z" fill="black"/>
|
|
9
|
-
<path d="M13.25 4.5H10.75V7H13.25V4.5Z" fill="black"/>
|
|
10
|
-
<path d="M17.5 4.5H20V7H17.5V4.5Z" fill="black"/>
|
|
11
|
-
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"
|
|
2
|
-
fill="rgba(255,255,255,1)" style="animation:spinLoadingIcon 1s steps(12,end)
|
|
3
|
-
infinite"><style>@keyframes
|
|
4
|
-
spinLoadingIcon{to{transform:rotate(360deg)}}</style><path
|
|
5
|
-
d="M7 3V1s0-1 1-1 1 1 1 1v2s0 1-1 1-1-1-1-1z"/><path d="M4.63
|
|
6
|
-
4.1l-1-1.73S3.13 1.5 4 1c.87-.5 1.37.37 1.37.37l1 1.73s.5.87-.37
|
|
7
|
-
1.37c-.87.57-1.37-.37-1.37-.37z" fill-opacity=".93"/><path
|
|
8
|
-
d="M3.1 6.37l-1.73-1S.5 4.87 1 4c.5-.87 1.37-.37 1.37-.37l1.73 1s.87.5.37
|
|
9
|
-
1.37c-.5.87-1.37.37-1.37.37z" fill-opacity=".86"/><path d="M3
|
|
10
|
-
9H1S0 9 0 8s1-1 1-1h2s1 0 1 1-1 1-1 1z" fill-opacity=".79"/><path d="M4.1 11.37l-1.73 1S1.5 12.87 1
|
|
11
|
-
12c-.5-.87.37-1.37.37-1.37l1.73-1s.87-.5 1.37.37c.5.87-.37 1.37-.37 1.37z"
|
|
12
|
-
fill-opacity=".72"/><path d="M3.63 13.56l1-1.73s.5-.87
|
|
13
|
-
1.37-.37c.87.5.37 1.37.37 1.37l-1 1.73s-.5.87-1.37.37c-.87-.5-.37-1.37-.37-1.37z"
|
|
14
|
-
fill-opacity=".65"/><path d="M7 15v-2s0-1 1-1 1 1 1 1v2s0 1-1
|
|
15
|
-
1-1-1-1-1z" fill-opacity=".58"/><path d="M10.63
|
|
16
|
-
14.56l-1-1.73s-.5-.87.37-1.37c.87-.5 1.37.37 1.37.37l1 1.73s.5.87-.37
|
|
17
|
-
1.37c-.87.5-1.37-.37-1.37-.37z" fill-opacity=".51"/><path
|
|
18
|
-
d="M13.56 12.37l-1.73-1s-.87-.5-.37-1.37c.5-.87 1.37-.37 1.37-.37l1.73 1s.87.5.37
|
|
19
|
-
1.37c-.5.87-1.37.37-1.37.37z" fill-opacity=".44"/><path d="M15
|
|
20
|
-
9h-2s-1 0-1-1 1-1 1-1h2s1 0 1 1-1 1-1 1z" fill-opacity=".37"/><path d="M14.56 5.37l-1.73
|
|
21
|
-
1s-.87.5-1.37-.37c-.5-.87.37-1.37.37-1.37l1.73-1s.87-.5 1.37.37c.5.87-.37 1.37-.37
|
|
22
|
-
1.37z" fill-opacity=".3"/><path d="M9.64 3.1l.98-1.66s.5-.874
|
|
23
|
-
1.37-.37c.87.5.37 1.37.37 1.37l-1 1.73s-.5.87-1.37.37c-.87-.5-.37-1.37-.37-1.37z"
|
|
24
|
-
fill-opacity=".23"/></svg>
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" style="animation:spinLoadingIcon 1s steps(12,end) infinite"><style>@keyframes spinLoadingIcon{to{transform:rotate(360deg)}}</style><path d="M7 3V1s0-1 1-1 1 1 1 1v2s0 1-1 1-1-1-1-1z"/><path d="M4.63 4.1l-1-1.73S3.13 1.5 4 1c.87-.5 1.37.37 1.37.37l1 1.73s.5.87-.37 1.37c-.87.57-1.37-.37-1.37-.37z" fill-opacity=".93"/><path d="M3.1 6.37l-1.73-1S.5 4.87 1 4c.5-.87 1.37-.37 1.37-.37l1.73 1s.87.5.37 1.37c-.5.87-1.37.37-1.37.37z" fill-opacity=".86"/><path d="M3 9H1S0 9 0 8s1-1 1-1h2s1 0 1 1-1 1-1 1z" fill-opacity=".79"/><path d="M4.1 11.37l-1.73 1S1.5 12.87 1 12c-.5-.87.37-1.37.37-1.37l1.73-1s.87-.5 1.37.37c.5.87-.37 1.37-.37 1.37z" fill-opacity=".72"/><path d="M3.63 13.56l1-1.73s.5-.87 1.37-.37c.87.5.37 1.37.37 1.37l-1 1.73s-.5.87-1.37.37c-.87-.5-.37-1.37-.37-1.37z" fill-opacity=".65"/><path d="M7 15v-2s0-1 1-1 1 1 1 1v2s0 1-1 1-1-1-1-1z" fill-opacity=".58"/><path d="M10.63 14.56l-1-1.73s-.5-.87.37-1.37c.87-.5 1.37.37 1.37.37l1 1.73s.5.87-.37 1.37c-.87.5-1.37-.37-1.37-.37z" fill-opacity=".51"/><path d="M13.56 12.37l-1.73-1s-.87-.5-.37-1.37c.5-.87 1.37-.37 1.37-.37l1.73 1s.87.5.37 1.37c-.5.87-1.37.37-1.37.37z" fill-opacity=".44"/><path d="M15 9h-2s-1 0-1-1 1-1 1-1h2s1 0 1 1-1 1-1 1z" fill-opacity=".37"/><path d="M14.56 5.37l-1.73 1s-.87.5-1.37-.37c-.5-.87.37-1.37.37-1.37l1.73-1s.87-.5 1.37.37c.5.87-.37 1.37-.37 1.37z" fill-opacity=".3"/><path d="M9.64 3.1l.98-1.66s.5-.874 1.37-.37c.87.5.37 1.37.37 1.37l-1 1.73s-.5.87-1.37.37c-.87-.5-.37-1.37-.37-1.37z" fill-opacity=".23"/></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M8 1.5C4.41015 1.5 1.5 4.41015 1.5 8C1.5 11.5899 4.41015 14.5 8 14.5C11.5899 14.5 14.5 11.5899 14.5 8C14.5 4.41015 11.5899 1.5 8 1.5ZM0 8C0 3.58172 3.58172 0 8 0C12.4183 0 16 3.58172 16 8C16 12.4183 12.4183 16 8 16C3.58172 16 0 12.4183 0 8ZM8.75 4V5.5H7.25V4H8.75ZM8.75 12V7H7.25V12H8.75Z" fill="black"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M7.75 2.125C7.75 1.78021 8.03021 1.5 8.375 1.5C8.71979 1.5 9 1.78021 9 2.125V3.125V8H10.5V3.125C10.5 2.78021 10.7802 2.5 11.125 2.5C11.4698 2.5 11.75 2.78021 11.75 3.125V4.625V8H13.25V4.625C13.25 4.28021 13.5302 4 13.875 4C14.2198 4 14.5 4.28021 14.5 4.625V12.0188L13.3802 13.6628C13.2954 13.7872 13.25 13.9344 13.25 14.085V16H14.75V14.3162L15.8698 12.6722C15.9546 12.5478 16 12.4006 16 12.25V4.625C16 3.45179 15.0482 2.5 13.875 2.5C13.6346 2.5 13.4035 2.53996 13.188 2.6136C12.959 1.68724 12.1219 1 11.125 1C10.8235 1 10.5366 1.06286 10.2768 1.17618C9.9281 0.478968 9.20726 0 8.375 0C7.54274 0 6.8219 0.478968 6.47323 1.17618C6.21337 1.06286 5.9265 1 5.625 1C4.45179 1 3.5 1.95179 3.5 3.125V7.25317C2.66504 6.54282 1.41035 6.58199 0.621672 7.37067C-0.208221 8.20056 -0.208221 9.54644 0.621672 10.3763L0.62188 10.3765L5.499 15.2498V16H6.999V14.939C6.999 14.74 6.9199 14.5491 6.77912 14.4085L1.68233 9.31567C1.43823 9.07156 1.43823 8.67544 1.68233 8.43133C1.92644 8.18722 2.32257 8.18722 2.56667 8.43133L3.71967 9.58433C3.93417 9.79883 4.25676 9.863 4.53701 9.74691C4.81727 9.63082 5 9.35735 5 9.054V3.125C5 2.78021 5.28022 2.5 5.625 2.5C5.96921 2.5 6.24906 2.77927 6.25 3.12326V8H7.75L7.75 3.125L7.75 3.12178V2.125Z" fill="black"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M3.4105 4.83612L4.77001 6.19601C5.06701 6.49201 4.85701 7.00001 4.43701 7.00001H0.862006C0.602006 7.00001 0.391006 6.78901 0.391006 6.52901V2.95401C0.391006 2.53401 0.899006 2.32401 1.19601 2.62101L2.32796 3.75328C3.67958 1.78973 5.9401 0.5 8.5 0.5C12.636 0.5 16 3.864 16 8C16 12.136 12.636 15.5 8.5 15.5C4.704 15.5 1.566 12.663 1.075 9H2.59C3.068 11.833 5.532 14 8.5 14C11.809 14 14.5 11.309 14.5 8C14.5 4.691 11.809 2 8.5 2C6.35262 2 4.46893 3.13503 3.4105 4.83612Z" fill="black"/>
|
|
3
|
-
</svg>
|