ngx-bimplus-components 0.0.168 → 0.0.169
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/esm2022/lib/components/bimplus-comment/bimplus-comment.component.mjs +1 -1
- package/esm2022/lib/components/bimplus-object-comments-list/bimplus-object-comments-list.component.mjs +1 -1
- package/esm2022/lib/components/bimplus-object-comments-list/bimplus-object-comments-list.service.mjs +1 -1
- package/esm2022/lib/components/object-hyperlinks/object-hyperlinks.component.mjs +1 -1
- package/esm2022/lib/components/object-hyperlinks-item/object-hyperlinks-item.component.mjs +1 -1
- package/esm2022/lib/components/object-preview/object-preview.component.mjs +1 -1
- package/fesm2022/ngx-bimplus-components.mjs.map +1 -1
- package/lib/components/bimplus-comment/bimplus-comment.component.d.ts +1 -1
- package/lib/components/bimplus-object-comments-list/bimplus-object-comments-list.component.d.ts +1 -1
- package/lib/components/bimplus-object-comments-list/bimplus-object-comments-list.service.d.ts +1 -1
- package/lib/components/object-hyperlinks/object-hyperlinks.component.d.ts +1 -1
- package/lib/components/object-hyperlinks-item/object-hyperlinks-item.component.d.ts +1 -1
- package/lib/components/object-preview/object-preview.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import WebSdk from "bimplus-websdk";
|
|
2
|
+
import * as WebSdk from "bimplus-websdk";
|
|
3
3
|
import { Attachment } from '../bimplus-attachments/bimplus-attachments.interface';
|
|
4
4
|
import { CommentOutputData } from './IComment';
|
|
5
5
|
import * as i0 from "@angular/core";
|
package/lib/components/bimplus-object-comments-list/bimplus-object-comments-list.component.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
|
2
2
|
import { TranslateService } from '@ngx-translate/core';
|
|
3
3
|
import { DatePipe } from '@angular/common';
|
|
4
4
|
import { DialogService } from '../bimplus-general-overlay-dialog/bimplus-general-overlay-dialog.service';
|
|
5
|
-
import WebSdk from
|
|
5
|
+
import * as WebSdk from "bimplus-websdk";
|
|
6
6
|
import { BimplusButtonClickEvent, BimplusButtonRowItem } from '../bimplus-buttons-row/bimplus-buttons-row.interface';
|
|
7
7
|
import { BimplusLocalizedWidgetComponent } from '../bimplus-localized-widget/bimplus-localized-widget.component';
|
|
8
8
|
import { CommentOutputData, IDialogConfirmClose } from './bimplusObjectCommentsI';
|
package/lib/components/bimplus-object-comments-list/bimplus-object-comments-list.service.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import WebSdk from
|
|
1
|
+
import * as WebSdk from "bimplus-websdk";
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { Attachment } from '../bimplus-attachments/bimplus-attachments.interface';
|
|
4
4
|
import { DecoratorsService } from '../../services/decorators.service';
|
|
@@ -2,7 +2,7 @@ import { OnInit } from '@angular/core';
|
|
|
2
2
|
import { BimplusButtonClickEvent, BimplusButtonRowItem } from "../bimplus-buttons-row/bimplus-buttons-row.interface";
|
|
3
3
|
import { BimplusLocalizedWidgetComponent } from "../bimplus-localized-widget/bimplus-localized-widget.component";
|
|
4
4
|
import { TranslateService } from "@ngx-translate/core";
|
|
5
|
-
import WebSdk from "bimplus-websdk";
|
|
5
|
+
import * as WebSdk from "bimplus-websdk";
|
|
6
6
|
import { DialogService } from "../bimplus-general-overlay-dialog/bimplus-general-overlay-dialog.service";
|
|
7
7
|
import { FormBuilder, FormGroup } from "@angular/forms";
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import WebSdk from "bimplus-websdk";
|
|
2
|
+
import * as WebSdk from "bimplus-websdk";
|
|
3
3
|
import { BimplusLocalizedWidgetComponent } from "../bimplus-localized-widget/bimplus-localized-widget.component";
|
|
4
4
|
import { TranslateService } from "@ngx-translate/core";
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
|
|
2
2
|
import * as Renderer from 'bimplus-renderer';
|
|
3
|
-
import WebSdk from "bimplus-websdk";
|
|
3
|
+
import * as WebSdk from "bimplus-websdk";
|
|
4
4
|
import { PreviewObject } from './object-preview.interface';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class ObjectPreviewComponent implements AfterViewInit, OnDestroy {
|