ngx-bimplus-components 0.0.196 → 0.0.197-modelviewer01
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/assets/languages/strings_cs.json +11 -3
- package/assets/languages/strings_de.json +9 -1
- package/assets/languages/strings_en.json +14 -1
- package/assets/languages/strings_es.json +80 -72
- package/assets/languages/strings_fr.json +9 -1
- package/assets/languages/strings_it.json +10 -2
- package/assets/languages/strings_ro.json +9 -1
- package/assets/languages/strings_ru.json +9 -1
- package/assets/languages/strings_tr.json +10 -2
- package/fesm2022/ngx-bimplus-components.mjs +378 -371
- package/fesm2022/ngx-bimplus-components.mjs.map +1 -1
- package/index.d.ts +166 -193
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { WritableSignal, OnInit, EventEmitter, OnChanges, SimpleChanges, ElementRef, AfterViewInit, AfterViewChecked,
|
|
3
|
-
import { TranslateService } from '@ngx-translate/core';
|
|
2
|
+
import { WritableSignal, OnInit, EventEmitter, OnChanges, SimpleChanges, ElementRef, AfterViewInit, AfterViewChecked, DestroyRef, TemplateRef, SimpleChange, OnDestroy, AfterContentInit, ComponentRef, Type, InjectionToken, Signal } from '@angular/core';
|
|
4
3
|
import * as rxjs from 'rxjs';
|
|
5
4
|
import { Subject, Observable, BehaviorSubject } from 'rxjs';
|
|
5
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
6
6
|
import * as WebSdk from 'bimplus-websdk';
|
|
7
7
|
import { MatTreeFlattener, MatTreeFlatDataSource } from '@angular/material/tree';
|
|
8
8
|
import { FlatTreeControl } from '@angular/cdk/tree';
|
|
9
9
|
import SimpleBar from 'simplebar';
|
|
10
10
|
import { BehaviorSubject as BehaviorSubject$1 } from 'rxjs/internal/BehaviorSubject';
|
|
11
|
-
import { FormGroup,
|
|
11
|
+
import { FormGroup, ControlValueAccessor, FormControl } from '@angular/forms';
|
|
12
12
|
import * as ngx_bimplus_components from 'ngx-bimplus-components';
|
|
13
|
-
import { DatePipe } from '@angular/common';
|
|
14
13
|
|
|
15
14
|
declare class NgxBimplusComponentsService {
|
|
16
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgxBimplusComponentsService, never>;
|
|
@@ -60,7 +59,6 @@ interface MenuListType {
|
|
|
60
59
|
|
|
61
60
|
declare class BimplusLocalizedWidgetComponent {
|
|
62
61
|
translateService: TranslateService;
|
|
63
|
-
constructor(translateService: TranslateService);
|
|
64
62
|
_selectedLanguage: WritableSignal<string>;
|
|
65
63
|
get selectedLanguage(): string;
|
|
66
64
|
set selectedLanguage(value: string);
|
|
@@ -101,7 +99,7 @@ declare class BimplusConnectionDesignerComponent extends BimplusLocalizedWidgetC
|
|
|
101
99
|
protected connectionDesignerService: BimplusConnectionDesignerService;
|
|
102
100
|
buttonRowItems: Array<BimplusButtonRowItem>;
|
|
103
101
|
config: Array<BimplusButtonRowItem>;
|
|
104
|
-
constructor(
|
|
102
|
+
constructor();
|
|
105
103
|
ngOnInit(): void;
|
|
106
104
|
chooseCode: string;
|
|
107
105
|
designCodes: Array<DesignCode>;
|
|
@@ -146,7 +144,7 @@ declare class BimplusConnectionDesignerResultsComponent extends BimplusLocalized
|
|
|
146
144
|
protected connectionDesignerService: BimplusConnectionDesignerService;
|
|
147
145
|
buttonRowItems: Array<BimplusButtonRowItem>;
|
|
148
146
|
errorMessage: string;
|
|
149
|
-
constructor(
|
|
147
|
+
constructor();
|
|
150
148
|
ngOnInit(): void;
|
|
151
149
|
ngOnChanges(changes: SimpleChanges): void;
|
|
152
150
|
doneClicked: EventEmitter<void>;
|
|
@@ -176,7 +174,7 @@ declare class BimplusConnectionDesignerResultsComponent extends BimplusLocalized
|
|
|
176
174
|
}
|
|
177
175
|
|
|
178
176
|
declare class BimplusContactComponent extends BimplusLocalizedWidgetComponent {
|
|
179
|
-
constructor(
|
|
177
|
+
constructor();
|
|
180
178
|
bimplusContactClicked: EventEmitter<string>;
|
|
181
179
|
_contactClicked(): void;
|
|
182
180
|
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusContactComponent, never>;
|
|
@@ -217,34 +215,6 @@ interface ProjectNavigatorLayer extends VisibilityProperties, OpacityProperties
|
|
|
217
215
|
parentModel?: ProjectNavigatorModel | null;
|
|
218
216
|
}
|
|
219
217
|
|
|
220
|
-
declare class ResizeObserverService {
|
|
221
|
-
private rectSize$;
|
|
222
|
-
private internalRectSize;
|
|
223
|
-
parentAppRect$: Observable<DOMRect | undefined>;
|
|
224
|
-
constructor();
|
|
225
|
-
setSize(newValue: DOMRect): void;
|
|
226
|
-
getParentAppRect(): DOMRect;
|
|
227
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ResizeObserverService, never>;
|
|
228
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ResizeObserverService>;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
declare class LocalStorageService {
|
|
232
|
-
private storageSubject;
|
|
233
|
-
constructor();
|
|
234
|
-
setItem(key: string, value: string): void;
|
|
235
|
-
getItem(key: string): string | null;
|
|
236
|
-
removeItem(key: string): void;
|
|
237
|
-
clear(): void;
|
|
238
|
-
setObject(key: string, value: unknown): void;
|
|
239
|
-
getObject(key: string): unknown;
|
|
240
|
-
watchStorage(): Observable<{
|
|
241
|
-
key: string;
|
|
242
|
-
value: unknown;
|
|
243
|
-
} | null>;
|
|
244
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LocalStorageService, never>;
|
|
245
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LocalStorageService>;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
218
|
interface LayoutManagerItem {
|
|
249
219
|
element: ElementRef;
|
|
250
220
|
id: string;
|
|
@@ -268,7 +238,6 @@ declare class LayoutManagerService {
|
|
|
268
238
|
private resizeObserverService;
|
|
269
239
|
private localStorageService;
|
|
270
240
|
registeredItems$: BehaviorSubject<LayoutManagerItem[]>;
|
|
271
|
-
constructor(resizeObserverService: ResizeObserverService, localStorageService: LocalStorageService);
|
|
272
241
|
private registeredItems;
|
|
273
242
|
get RegisteredItems(): LayoutManagerItem[];
|
|
274
243
|
CONFIG: string;
|
|
@@ -348,7 +317,7 @@ declare class BimplusFloatingBarHideObjectsComponent extends BimplusLocalizedWid
|
|
|
348
317
|
icon: string;
|
|
349
318
|
title: string;
|
|
350
319
|
focusSelectorId: string;
|
|
351
|
-
constructor(
|
|
320
|
+
constructor();
|
|
352
321
|
ngAfterViewInit(): void;
|
|
353
322
|
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusFloatingBarHideObjectsComponent, never>;
|
|
354
323
|
static ɵcmp: i0.ɵɵComponentDeclaration<BimplusFloatingBarHideObjectsComponent, "lib-bimplus-floating-bar-hide-objects", never, { "noBody": { "alias": "noBody"; "required": false; }; "isFocused": { "alias": "isFocused"; "required": false; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; }, { "actionClicked": "actionClicked"; "items": "itemsChange"; }, never, never, true, never>;
|
|
@@ -358,7 +327,7 @@ declare class BimplusFloatingBarIsolationObjectsComponent extends BimplusLocaliz
|
|
|
358
327
|
private layoutManagerService;
|
|
359
328
|
private element;
|
|
360
329
|
private cdr;
|
|
361
|
-
constructor(
|
|
330
|
+
constructor();
|
|
362
331
|
private hasViewChecked;
|
|
363
332
|
actionClicked: EventEmitter<string>;
|
|
364
333
|
noBody: boolean;
|
|
@@ -378,7 +347,7 @@ declare class BimplusFloatingBarProjectNavigatorComponent extends BimplusLocaliz
|
|
|
378
347
|
private readonly layoutManagerService;
|
|
379
348
|
private readonly element;
|
|
380
349
|
private readonly cdr;
|
|
381
|
-
constructor(
|
|
350
|
+
constructor();
|
|
382
351
|
private hasViewChecked;
|
|
383
352
|
noBody: boolean;
|
|
384
353
|
isCollapsed: boolean;
|
|
@@ -429,7 +398,7 @@ interface BimplusMainMenuComponentAttribute {
|
|
|
429
398
|
[key: string]: unknown;
|
|
430
399
|
}
|
|
431
400
|
declare class BimplusMainMenuComponent extends BimplusLocalizedWidgetComponent implements OnChanges {
|
|
432
|
-
constructor(
|
|
401
|
+
constructor();
|
|
433
402
|
isEmbedded: boolean;
|
|
434
403
|
isTouch: boolean;
|
|
435
404
|
isIpadApp: boolean;
|
|
@@ -630,7 +599,7 @@ interface MessageModel {
|
|
|
630
599
|
'capitalizedTitle': string | boolean | undefined;
|
|
631
600
|
}
|
|
632
601
|
declare class BimplusNotifyComponent extends BimplusLocalizedWidgetComponent implements OnChanges, OnInit {
|
|
633
|
-
constructor(
|
|
602
|
+
constructor();
|
|
634
603
|
Array: ArrayConstructor;
|
|
635
604
|
get newMessages(): boolean;
|
|
636
605
|
get bimNotify(): boolean;
|
|
@@ -734,7 +703,7 @@ interface SidenavItem {
|
|
|
734
703
|
disabled?: boolean;
|
|
735
704
|
}
|
|
736
705
|
declare class BimplusSidenavComponent extends BimplusLocalizedWidgetComponent {
|
|
737
|
-
constructor(
|
|
706
|
+
constructor();
|
|
738
707
|
readonly activeItem: i0.WritableSignal<string>;
|
|
739
708
|
readonly drawerWidth: i0.WritableSignal<number>;
|
|
740
709
|
readonly drawerExpanded: i0.WritableSignal<boolean>;
|
|
@@ -763,7 +732,7 @@ declare class BimplusSidenavDrawerContentComponent {
|
|
|
763
732
|
}
|
|
764
733
|
|
|
765
734
|
declare class BimplusStorageInfoComponent extends BimplusLocalizedWidgetComponent {
|
|
766
|
-
constructor(
|
|
735
|
+
constructor();
|
|
767
736
|
/**--------------------------------------------------------------------------
|
|
768
737
|
* properties
|
|
769
738
|
--------------------------------------------------------------------------*/
|
|
@@ -832,7 +801,7 @@ declare class BimplusToolHubComponent extends BimplusLocalizedWidgetComponent im
|
|
|
832
801
|
private layoutManagerService;
|
|
833
802
|
private resizeObserverService;
|
|
834
803
|
private element;
|
|
835
|
-
constructor(
|
|
804
|
+
constructor();
|
|
836
805
|
get itemStates(): Array<ToolHubItemStates>;
|
|
837
806
|
set itemStates(value: Array<ToolHubItemStates>);
|
|
838
807
|
setItemStates(itemStates: Array<ToolHubItemStates>): void;
|
|
@@ -922,7 +891,7 @@ interface LangItem {
|
|
|
922
891
|
lCode: string | undefined;
|
|
923
892
|
}
|
|
924
893
|
declare class BimplusUserMenuComponent extends BimplusLocalizedWidgetComponent implements OnChanges {
|
|
925
|
-
constructor(
|
|
894
|
+
constructor();
|
|
926
895
|
_languagesList: LangItem[];
|
|
927
896
|
/**--------------------------------------------------------------------------
|
|
928
897
|
* States
|
|
@@ -1102,7 +1071,6 @@ declare class BimplusFlatTreeComponent implements OnInit, OnChanges {
|
|
|
1102
1071
|
enableDragAndDrop: boolean;
|
|
1103
1072
|
dataTestPrefix: string;
|
|
1104
1073
|
contextMenus: FlatTreeContextMenus | null | undefined;
|
|
1105
|
-
constructor(el: ElementRef);
|
|
1106
1074
|
hasCheckBox1: boolean;
|
|
1107
1075
|
hasCheckBox2: boolean;
|
|
1108
1076
|
get treeData(): Array<TreeNode>;
|
|
@@ -1172,7 +1140,7 @@ declare class BimplusContextMenuComponent {
|
|
|
1172
1140
|
private readonly _element;
|
|
1173
1141
|
private _interval;
|
|
1174
1142
|
items: i0.ModelSignal<BimplusContextMenuItem[] | null | undefined>;
|
|
1175
|
-
constructor(
|
|
1143
|
+
constructor();
|
|
1176
1144
|
get data(): undefined | object;
|
|
1177
1145
|
set data(data: object);
|
|
1178
1146
|
protected _clickOutside(): void;
|
|
@@ -1258,7 +1226,7 @@ declare class ObjectFilterResultComponent implements AfterViewInit {
|
|
|
1258
1226
|
}
|
|
1259
1227
|
|
|
1260
1228
|
declare class BimplusObjectNavigatorComponent extends BimplusLocalizedWidgetComponent implements OnInit {
|
|
1261
|
-
constructor(
|
|
1229
|
+
constructor();
|
|
1262
1230
|
objectFilterResult: ObjectFilterResultComponent | null;
|
|
1263
1231
|
hideFilterContextMenu: boolean;
|
|
1264
1232
|
filterContextMenu: Array<BimplusContextMenuItem>;
|
|
@@ -1335,7 +1303,7 @@ interface TooltipMessageData {
|
|
|
1335
1303
|
declare class BimplusTooltipMessageComponent implements OnChanges {
|
|
1336
1304
|
private el;
|
|
1337
1305
|
private _element;
|
|
1338
|
-
constructor(
|
|
1306
|
+
constructor();
|
|
1339
1307
|
get element(): HTMLElement;
|
|
1340
1308
|
messagePosition: TooltipMessagePosition;
|
|
1341
1309
|
messageData: TooltipMessageData;
|
|
@@ -1362,7 +1330,7 @@ declare class BimplusScrollableContainerComponent implements AfterViewInit, Afte
|
|
|
1362
1330
|
_simpleBar: SimpleBar;
|
|
1363
1331
|
_element: HTMLElement;
|
|
1364
1332
|
protected _scrollableContainerClassName: string;
|
|
1365
|
-
constructor(
|
|
1333
|
+
constructor();
|
|
1366
1334
|
private _initializationSimpleScrollBar;
|
|
1367
1335
|
ngAfterViewInit(): void;
|
|
1368
1336
|
private _recalculateScrollbar;
|
|
@@ -1372,7 +1340,7 @@ declare class BimplusScrollableContainerComponent implements AfterViewInit, Afte
|
|
|
1372
1340
|
}
|
|
1373
1341
|
|
|
1374
1342
|
declare class BimplusTouchMenuComponent extends BimplusLocalizedWidgetComponent implements OnChanges {
|
|
1375
|
-
constructor(
|
|
1343
|
+
constructor();
|
|
1376
1344
|
/**--------------------------------------------------------------------------
|
|
1377
1345
|
* List of menu items
|
|
1378
1346
|
* Note : action is used to identify action which should be executed
|
|
@@ -1421,7 +1389,7 @@ interface BimplusProjectMenuComponentAttribute {
|
|
|
1421
1389
|
[key: string]: unknown;
|
|
1422
1390
|
}
|
|
1423
1391
|
declare class BimplusProjectMenuComponent extends BimplusLocalizedWidgetComponent {
|
|
1424
|
-
constructor(
|
|
1392
|
+
constructor();
|
|
1425
1393
|
projectName: string;
|
|
1426
1394
|
projectImageUrl: string;
|
|
1427
1395
|
projectExplorerUrl: string;
|
|
@@ -1508,6 +1476,17 @@ declare class LanguageStringsService {
|
|
|
1508
1476
|
static ɵprov: i0.ɵɵInjectableDeclaration<LanguageStringsService>;
|
|
1509
1477
|
}
|
|
1510
1478
|
|
|
1479
|
+
declare class ResizeObserverService {
|
|
1480
|
+
private rectSize$;
|
|
1481
|
+
private internalRectSize;
|
|
1482
|
+
parentAppRect$: Observable<DOMRect | undefined>;
|
|
1483
|
+
constructor();
|
|
1484
|
+
setSize(newValue: DOMRect): void;
|
|
1485
|
+
getParentAppRect(): DOMRect;
|
|
1486
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResizeObserverService, never>;
|
|
1487
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ResizeObserverService>;
|
|
1488
|
+
}
|
|
1489
|
+
|
|
1511
1490
|
declare enum CursorType {
|
|
1512
1491
|
Pick = "cursor-pick",
|
|
1513
1492
|
Hide = "cursor-hide"
|
|
@@ -1525,74 +1504,6 @@ declare class CursorsService {
|
|
|
1525
1504
|
static ɵprov: i0.ɵɵInjectableDeclaration<CursorsService>;
|
|
1526
1505
|
}
|
|
1527
1506
|
|
|
1528
|
-
type DialogPosition = 'middle' | 'unset';
|
|
1529
|
-
interface IDialogOptions {
|
|
1530
|
-
width?: string;
|
|
1531
|
-
height?: string;
|
|
1532
|
-
position?: DialogPosition;
|
|
1533
|
-
positionOptions?: DialogPositionOptions;
|
|
1534
|
-
overlayClickEnabled?: boolean;
|
|
1535
|
-
overlayVisibilityEnabled?: boolean;
|
|
1536
|
-
draggable?: boolean;
|
|
1537
|
-
}
|
|
1538
|
-
interface DialogPositionOptions {
|
|
1539
|
-
top?: string;
|
|
1540
|
-
bottom?: string;
|
|
1541
|
-
left?: string;
|
|
1542
|
-
right?: string;
|
|
1543
|
-
}
|
|
1544
|
-
interface IDialogInputData {
|
|
1545
|
-
options: IDialogOptions;
|
|
1546
|
-
data?: unknown;
|
|
1547
|
-
}
|
|
1548
|
-
interface IDialogOutputData {
|
|
1549
|
-
data: unknown;
|
|
1550
|
-
}
|
|
1551
|
-
|
|
1552
|
-
declare class BimportalGeneralOverlayDialogComponent implements OnInit, AfterContentInit {
|
|
1553
|
-
private readonly dialogService;
|
|
1554
|
-
private readonly cdref;
|
|
1555
|
-
genDialogRefContainer: ElementRef<HTMLDivElement>;
|
|
1556
|
-
dialogOverlay: ElementRef<HTMLDivElement>;
|
|
1557
|
-
options: IDialogOptions | undefined;
|
|
1558
|
-
units: string;
|
|
1559
|
-
constructor(dialogService: DialogService, cdref: ChangeDetectorRef);
|
|
1560
|
-
ngOnInit(): void;
|
|
1561
|
-
onClose(): void;
|
|
1562
|
-
ngAfterContentInit(): void;
|
|
1563
|
-
setOptions(): void;
|
|
1564
|
-
private setDimensions;
|
|
1565
|
-
private setPosition;
|
|
1566
|
-
setPositionsUnset(): void;
|
|
1567
|
-
setPositionsMiddle(): void;
|
|
1568
|
-
private setOverlay;
|
|
1569
|
-
onKeyPress(event: KeyboardEvent): void;
|
|
1570
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BimportalGeneralOverlayDialogComponent, never>;
|
|
1571
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BimportalGeneralOverlayDialogComponent, "app-general-overlay-dialog", never, {}, {}, never, ["*"], true, never>;
|
|
1572
|
-
}
|
|
1573
|
-
|
|
1574
|
-
declare class DialogService {
|
|
1575
|
-
private readonly appRef;
|
|
1576
|
-
private readonly injector;
|
|
1577
|
-
generalDialogComponentBody: ComponentRef<unknown>;
|
|
1578
|
-
generalDialog: ComponentRef<BimportalGeneralOverlayDialogComponent>;
|
|
1579
|
-
private _isDialogOpen;
|
|
1580
|
-
inputData: unknown;
|
|
1581
|
-
private readonly outputData;
|
|
1582
|
-
options: IDialogOptions | undefined;
|
|
1583
|
-
constructor(appRef: ApplicationRef, injector: EnvironmentInjector);
|
|
1584
|
-
open(componentBody: Type<unknown>, data: IDialogInputData): void;
|
|
1585
|
-
initializeSettings(data: IDialogInputData): void;
|
|
1586
|
-
createComponentsRef(componentBody: Type<unknown>): void;
|
|
1587
|
-
close(outputData?: unknown): void;
|
|
1588
|
-
resetSettings(): void;
|
|
1589
|
-
isDialogOpened(): boolean;
|
|
1590
|
-
setOutputData(data: unknown): void;
|
|
1591
|
-
getOutputData(): Subject<unknown>;
|
|
1592
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, never>;
|
|
1593
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
|
|
1594
|
-
}
|
|
1595
|
-
|
|
1596
1507
|
interface WarningDialogInputData {
|
|
1597
1508
|
title: string;
|
|
1598
1509
|
message: string;
|
|
@@ -1611,7 +1522,7 @@ declare class BimplusOverlayDialogWarningComponent {
|
|
|
1611
1522
|
set title(value: string);
|
|
1612
1523
|
get message(): string;
|
|
1613
1524
|
set message(value: string);
|
|
1614
|
-
constructor(
|
|
1525
|
+
constructor();
|
|
1615
1526
|
close(): void;
|
|
1616
1527
|
keypressClose(event: KeyboardEvent): void;
|
|
1617
1528
|
buttonRowButtonClicked(): void;
|
|
@@ -1654,7 +1565,7 @@ interface CreateLinkData {
|
|
|
1654
1565
|
}
|
|
1655
1566
|
|
|
1656
1567
|
declare class ObjectPropertiesHeaderComponent extends BimplusLocalizedWidgetComponent implements OnChanges {
|
|
1657
|
-
constructor(
|
|
1568
|
+
constructor();
|
|
1658
1569
|
selectedObject: EventEmitter<SelectedObject>;
|
|
1659
1570
|
closePropertiesPanel: EventEmitter<any>;
|
|
1660
1571
|
selectedObjects: Array<SelectedObject>;
|
|
@@ -1719,23 +1630,13 @@ interface ObjectAttributeGroup {
|
|
|
1719
1630
|
expanded: boolean;
|
|
1720
1631
|
}
|
|
1721
1632
|
|
|
1722
|
-
declare class ObjectPropertiesService {
|
|
1723
|
-
_model: BehaviorSubject<WebSdk.ObjectData | null>;
|
|
1724
|
-
constructor();
|
|
1725
|
-
get modelValue(): WebSdk.ObjectData | null;
|
|
1726
|
-
get model$(): BehaviorSubject<WebSdk.ObjectData | null>;
|
|
1727
|
-
setModel(model: WebSdk.ObjectData): void;
|
|
1728
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectPropertiesService, never>;
|
|
1729
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ObjectPropertiesService>;
|
|
1730
|
-
}
|
|
1731
|
-
|
|
1732
1633
|
declare class ObjectPropertiesComponent extends BimplusLocalizedWidgetComponent implements OnInit {
|
|
1733
1634
|
private readonly formBuilder;
|
|
1734
1635
|
private readonly cdr;
|
|
1735
1636
|
private readonly objectPropertiesService;
|
|
1736
1637
|
protected _objectPropertiesForm: FormGroup<{}>;
|
|
1737
1638
|
protected _objectPropertiesGroupForm(group_name: string): FormGroup;
|
|
1738
|
-
constructor(
|
|
1639
|
+
constructor();
|
|
1739
1640
|
protected _editMode: WritableSignal<boolean>;
|
|
1740
1641
|
private _objectStructure;
|
|
1741
1642
|
get objectStructure(): ObjectStructureNode | null;
|
|
@@ -1816,17 +1717,6 @@ interface CommentOutputData {
|
|
|
1816
1717
|
data: unknown;
|
|
1817
1718
|
}
|
|
1818
1719
|
|
|
1819
|
-
declare class DecoratorsService {
|
|
1820
|
-
constructor();
|
|
1821
|
-
fmt(string: string, ...formats: unknown[]): string;
|
|
1822
|
-
/**--------------------------------------------------------------------------
|
|
1823
|
-
* decorate link
|
|
1824
|
-
--------------------------------------------------------------------------*/
|
|
1825
|
-
decorateLink(api: WebSdk.Api, link: WebSdk.AttachmentLink, objectIds: [string]): WebSdk.AttachmentLink;
|
|
1826
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DecoratorsService, never>;
|
|
1827
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<DecoratorsService>;
|
|
1828
|
-
}
|
|
1829
|
-
|
|
1830
1720
|
declare const EMBEDDED_MODAL_DIALOGE_TYPE_FILE = "file";
|
|
1831
1721
|
declare const postAttachmentLinks: (newAttachmentIDs: string[], objectId: string, api: WebSdk.Api) => rxjs.Observable<WebSdk.AttachmentLinksResponse>;
|
|
1832
1722
|
declare class LinksToDocumentsComponent extends BimplusLocalizedWidgetComponent implements OnInit, OnDestroy {
|
|
@@ -1834,7 +1724,7 @@ declare class LinksToDocumentsComponent extends BimplusLocalizedWidgetComponent
|
|
|
1834
1724
|
private readonly renderer;
|
|
1835
1725
|
private readonly el;
|
|
1836
1726
|
private readonly decorators;
|
|
1837
|
-
constructor(
|
|
1727
|
+
constructor();
|
|
1838
1728
|
private readonly shadowRootElement;
|
|
1839
1729
|
private _rootObjectId;
|
|
1840
1730
|
isDestroyed: boolean;
|
|
@@ -1891,7 +1781,7 @@ declare class ObjectHyperlinksComponent extends BimplusLocalizedWidgetComponent
|
|
|
1891
1781
|
private readonly dialogService;
|
|
1892
1782
|
private readonly formBuilder;
|
|
1893
1783
|
hyperlinkForm: FormGroup;
|
|
1894
|
-
constructor(
|
|
1784
|
+
constructor();
|
|
1895
1785
|
api: WebSdk.Api | null;
|
|
1896
1786
|
set rootObjectId(id: string);
|
|
1897
1787
|
get rootObjectId(): string;
|
|
@@ -1912,6 +1802,51 @@ declare class ObjectHyperlinksComponent extends BimplusLocalizedWidgetComponent
|
|
|
1912
1802
|
static ɵcmp: i0.ɵɵComponentDeclaration<ObjectHyperlinksComponent, "lib-object-hyperlinks", never, { "api": { "alias": "api"; "required": false; }; "rootObjectId": { "alias": "rootObjectId"; "required": false; }; "canCreateHyperlinks": { "alias": "canCreateHyperlinks"; "required": false; }; "canDeleteHyperlinks": { "alias": "canDeleteHyperlinks"; "required": false; }; }, {}, never, never, true, never>;
|
|
1913
1803
|
}
|
|
1914
1804
|
|
|
1805
|
+
type DialogPosition = 'middle' | 'unset';
|
|
1806
|
+
interface IDialogOptions {
|
|
1807
|
+
width?: string;
|
|
1808
|
+
height?: string;
|
|
1809
|
+
position?: DialogPosition;
|
|
1810
|
+
positionOptions?: DialogPositionOptions;
|
|
1811
|
+
overlayClickEnabled?: boolean;
|
|
1812
|
+
overlayVisibilityEnabled?: boolean;
|
|
1813
|
+
draggable?: boolean;
|
|
1814
|
+
}
|
|
1815
|
+
interface DialogPositionOptions {
|
|
1816
|
+
top?: string;
|
|
1817
|
+
bottom?: string;
|
|
1818
|
+
left?: string;
|
|
1819
|
+
right?: string;
|
|
1820
|
+
}
|
|
1821
|
+
interface IDialogInputData {
|
|
1822
|
+
options: IDialogOptions;
|
|
1823
|
+
data?: unknown;
|
|
1824
|
+
}
|
|
1825
|
+
interface IDialogOutputData {
|
|
1826
|
+
data: unknown;
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
declare class BimportalGeneralOverlayDialogComponent implements OnInit, AfterContentInit {
|
|
1830
|
+
private readonly dialogService;
|
|
1831
|
+
private readonly cdref;
|
|
1832
|
+
genDialogRefContainer: ElementRef<HTMLDivElement>;
|
|
1833
|
+
dialogOverlay: ElementRef<HTMLDivElement>;
|
|
1834
|
+
options: IDialogOptions | undefined;
|
|
1835
|
+
units: string;
|
|
1836
|
+
ngOnInit(): void;
|
|
1837
|
+
onClose(): void;
|
|
1838
|
+
ngAfterContentInit(): void;
|
|
1839
|
+
setOptions(): void;
|
|
1840
|
+
private setDimensions;
|
|
1841
|
+
private setPosition;
|
|
1842
|
+
setPositionsUnset(): void;
|
|
1843
|
+
setPositionsMiddle(): void;
|
|
1844
|
+
private setOverlay;
|
|
1845
|
+
onKeyPress(event: KeyboardEvent): void;
|
|
1846
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BimportalGeneralOverlayDialogComponent, never>;
|
|
1847
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BimportalGeneralOverlayDialogComponent, "app-general-overlay-dialog", never, {}, {}, never, ["*"], true, never>;
|
|
1848
|
+
}
|
|
1849
|
+
|
|
1915
1850
|
interface ErrorDialogInputData {
|
|
1916
1851
|
title: string;
|
|
1917
1852
|
message: string;
|
|
@@ -1928,7 +1863,7 @@ declare class BimplusOverlayDialogErrorComponent {
|
|
|
1928
1863
|
set title(value: string);
|
|
1929
1864
|
get message(): string;
|
|
1930
1865
|
set message(value: string);
|
|
1931
|
-
constructor(
|
|
1866
|
+
constructor();
|
|
1932
1867
|
close(): void;
|
|
1933
1868
|
keypressClose(event: KeyboardEvent): void;
|
|
1934
1869
|
buttonRowButtonClicked(): void;
|
|
@@ -1957,7 +1892,7 @@ declare class BimplusOverlayDialogConfirmComponent {
|
|
|
1957
1892
|
set title(value: string);
|
|
1958
1893
|
get message(): string;
|
|
1959
1894
|
set message(value: string);
|
|
1960
|
-
constructor(
|
|
1895
|
+
constructor();
|
|
1961
1896
|
initializeButtons(): void;
|
|
1962
1897
|
close(): void;
|
|
1963
1898
|
keypressClose(event: KeyboardEvent): void;
|
|
@@ -1993,6 +1928,27 @@ declare class BimplusInputTextFieldComponent implements ControlValueAccessor {
|
|
|
1993
1928
|
static ngAcceptInputType_validValue: unknown;
|
|
1994
1929
|
}
|
|
1995
1930
|
|
|
1931
|
+
declare class DialogService {
|
|
1932
|
+
private readonly appRef;
|
|
1933
|
+
private readonly injector;
|
|
1934
|
+
generalDialogComponentBody: ComponentRef<unknown>;
|
|
1935
|
+
generalDialog: ComponentRef<BimportalGeneralOverlayDialogComponent>;
|
|
1936
|
+
private _isDialogOpen;
|
|
1937
|
+
inputData: unknown;
|
|
1938
|
+
private readonly outputData;
|
|
1939
|
+
options: IDialogOptions | undefined;
|
|
1940
|
+
open(componentBody: Type<unknown>, data: IDialogInputData): void;
|
|
1941
|
+
initializeSettings(data: IDialogInputData): void;
|
|
1942
|
+
createComponentsRef(componentBody: Type<unknown>): void;
|
|
1943
|
+
close(outputData?: unknown): void;
|
|
1944
|
+
resetSettings(): void;
|
|
1945
|
+
isDialogOpened(): boolean;
|
|
1946
|
+
setOutputData(data: unknown): void;
|
|
1947
|
+
getOutputData(): Subject<unknown>;
|
|
1948
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, never>;
|
|
1949
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1996
1952
|
type BimplusTabComponentModel = {
|
|
1997
1953
|
id: string;
|
|
1998
1954
|
title: string;
|
|
@@ -2012,7 +1968,7 @@ type BimplusTabsSwitcherConfig = {
|
|
|
2012
1968
|
declare const BIMPLUS_TABS_SWITCHER_CONFIG: InjectionToken<BimplusTabsSwitcherConfig>;
|
|
2013
1969
|
|
|
2014
1970
|
declare class BimplusTabsSwitcherService {
|
|
2015
|
-
private readonly bimplusTabsSwitcherConfig
|
|
1971
|
+
private readonly bimplusTabsSwitcherConfig;
|
|
2016
1972
|
/** Default tab switcher elements. */
|
|
2017
1973
|
private readonly tabSwitcherElements;
|
|
2018
1974
|
readonly tabSwitcherElements$: rxjs.Observable<BimplusTabComponentModel[]>;
|
|
@@ -2020,8 +1976,8 @@ declare class BimplusTabsSwitcherService {
|
|
|
2020
1976
|
private readonly activeTab;
|
|
2021
1977
|
readonly activeTab$: rxjs.Observable<string>;
|
|
2022
1978
|
setActiveTab(key: string): void;
|
|
2023
|
-
constructor(
|
|
2024
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusTabsSwitcherService,
|
|
1979
|
+
constructor();
|
|
1980
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusTabsSwitcherService, never>;
|
|
2025
1981
|
static ɵprov: i0.ɵɵInjectableDeclaration<BimplusTabsSwitcherService>;
|
|
2026
1982
|
}
|
|
2027
1983
|
|
|
@@ -2044,7 +2000,7 @@ declare class BimplusTabComponent implements OnInit {
|
|
|
2044
2000
|
protected readonly onHoverOver: i0.WritableSignal<boolean>;
|
|
2045
2001
|
/** Whether all tabs is disabled based on configuration token. */
|
|
2046
2002
|
private readonly isAllDisabled;
|
|
2047
|
-
constructor(
|
|
2003
|
+
constructor();
|
|
2048
2004
|
protected onMouseEnter(): void;
|
|
2049
2005
|
protected onMouseLeave(): void;
|
|
2050
2006
|
ngOnInit(): void;
|
|
@@ -2054,7 +2010,7 @@ declare class BimplusTabComponent implements OnInit {
|
|
|
2054
2010
|
* @returns void
|
|
2055
2011
|
*/
|
|
2056
2012
|
protected activate(): void;
|
|
2057
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusTabComponent,
|
|
2013
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusTabComponent, never>;
|
|
2058
2014
|
static ɵcmp: i0.ɵɵComponentDeclaration<BimplusTabComponent, "lib-bimplus-tab", never, { "bimplusTabComponentModel": { "alias": "bimplusTabComponentModel"; "required": true; }; "imageBaseSrc": { "alias": "imageBaseSrc"; "required": false; }; "activeTab": { "alias": "activeTab"; "required": false; }; }, { "activeTabChange": "activeTabChange"; }, never, never, true, never>;
|
|
2059
2015
|
}
|
|
2060
2016
|
|
|
@@ -2066,8 +2022,8 @@ declare class BimplusTabsSwitcherComponent {
|
|
|
2066
2022
|
protected readonly tabSwitcherElements: Signal<BimplusTabComponentModel[]>;
|
|
2067
2023
|
/** app base href */
|
|
2068
2024
|
protected readonly baseHref: string | null;
|
|
2069
|
-
constructor(
|
|
2070
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusTabsSwitcherComponent,
|
|
2025
|
+
constructor();
|
|
2026
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusTabsSwitcherComponent, never>;
|
|
2071
2027
|
static ɵcmp: i0.ɵɵComponentDeclaration<BimplusTabsSwitcherComponent, "lib-bimplus-tabs-switcher", never, { "activeTab": { "alias": "activeTab"; "required": false; }; }, { "activeTabChange": "activeTabChange"; }, never, ["*"], true, never>;
|
|
2072
2028
|
}
|
|
2073
2029
|
|
|
@@ -2143,39 +2099,6 @@ declare class BimplusAttachmentsService {
|
|
|
2143
2099
|
static ɵprov: i0.ɵɵInjectableDeclaration<BimplusAttachmentsService>;
|
|
2144
2100
|
}
|
|
2145
2101
|
|
|
2146
|
-
declare class BimplusObjectCommentsListService {
|
|
2147
|
-
private readonly decorators;
|
|
2148
|
-
api: WebSdk.Api;
|
|
2149
|
-
private readonly bimplusAttachmentsService;
|
|
2150
|
-
constructor(decorators: DecoratorsService);
|
|
2151
|
-
deleteComment(commentId: string): Observable<void>;
|
|
2152
|
-
downloadAttachment(attachment: Attachment): void;
|
|
2153
|
-
postComments(rootObjectId: string, dataText: string, hyperlinks: Partial<WebSdk.Hyperlink>[], attachments: Attachment[], newAttachmentIDs: string[]): Observable<string | null>;
|
|
2154
|
-
private decorateComment;
|
|
2155
|
-
private decorateComments;
|
|
2156
|
-
loadComments(objectId: string): Observable<WebSdk.CommentsResponse>;
|
|
2157
|
-
manageHyperLinks(createdCommentId: string, hyperlinks: Partial<WebSdk.Hyperlink>[]): Observable<(void | WebSdk.Hyperlink | undefined)[]>;
|
|
2158
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusObjectCommentsListService, never>;
|
|
2159
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<BimplusObjectCommentsListService>;
|
|
2160
|
-
}
|
|
2161
|
-
|
|
2162
|
-
interface StatusBarData {
|
|
2163
|
-
statusBarVisible: boolean;
|
|
2164
|
-
title: string;
|
|
2165
|
-
}
|
|
2166
|
-
|
|
2167
|
-
declare class BimplusStatusBarService {
|
|
2168
|
-
_statusBarData: BehaviorSubject<StatusBarData>;
|
|
2169
|
-
constructor();
|
|
2170
|
-
get statusBarVisible(): boolean;
|
|
2171
|
-
get title(): string;
|
|
2172
|
-
get statusBarData(): StatusBarData;
|
|
2173
|
-
get statusBarDataSubscription(): BehaviorSubject<StatusBarData>;
|
|
2174
|
-
setStatusBarData(data: StatusBarData): void;
|
|
2175
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusStatusBarService, never>;
|
|
2176
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<BimplusStatusBarService>;
|
|
2177
|
-
}
|
|
2178
|
-
|
|
2179
2102
|
declare class BimplusObjectCommentsListComponent extends BimplusLocalizedWidgetComponent implements OnInit, OnChanges {
|
|
2180
2103
|
private readonly dialogService;
|
|
2181
2104
|
private readonly datePipe;
|
|
@@ -2214,7 +2137,7 @@ declare class BimplusObjectCommentsListComponent extends BimplusLocalizedWidgetC
|
|
|
2214
2137
|
get rootObjectId(): string;
|
|
2215
2138
|
set userId(id: string);
|
|
2216
2139
|
get userId(): string;
|
|
2217
|
-
constructor(
|
|
2140
|
+
constructor();
|
|
2218
2141
|
isCreateButtonDisabled(): boolean;
|
|
2219
2142
|
checkCreateButtonState(): void;
|
|
2220
2143
|
ngOnInit(): void;
|
|
@@ -2248,6 +2171,21 @@ declare class BimplusObjectCommentsListComponent extends BimplusLocalizedWidgetC
|
|
|
2248
2171
|
static ɵcmp: i0.ɵɵComponentDeclaration<BimplusObjectCommentsListComponent, "lib-bimplus-object-comments-list", never, { "api": { "alias": "api"; "required": true; }; "project": { "alias": "project"; "required": false; }; "wormholeSelector": { "alias": "wormholeSelector"; "required": false; }; "env": { "alias": "env"; "required": false; }; "attachmentLinkItems": { "alias": "attachmentLinkItems"; "required": false; }; "inputBaseUrl": { "alias": "inputBaseUrl"; "required": false; }; "rootObjectId": { "alias": "rootObjectId"; "required": false; }; "userId": { "alias": "userId"; "required": false; }; }, {}, never, never, true, never>;
|
|
2249
2172
|
}
|
|
2250
2173
|
|
|
2174
|
+
declare class BimplusObjectCommentsListService {
|
|
2175
|
+
private readonly decorators;
|
|
2176
|
+
api: WebSdk.Api;
|
|
2177
|
+
private readonly bimplusAttachmentsService;
|
|
2178
|
+
deleteComment(commentId: string): Observable<void>;
|
|
2179
|
+
downloadAttachment(attachment: Attachment): void;
|
|
2180
|
+
postComments(rootObjectId: string, dataText: string, hyperlinks: Partial<WebSdk.Hyperlink>[], attachments: Attachment[], newAttachmentIDs: string[]): Observable<string | null>;
|
|
2181
|
+
private decorateComment;
|
|
2182
|
+
private decorateComments;
|
|
2183
|
+
loadComments(objectId: string): Observable<WebSdk.CommentsResponse>;
|
|
2184
|
+
manageHyperLinks(createdCommentId: string, hyperlinks: Partial<WebSdk.Hyperlink>[]): Observable<(void | WebSdk.Hyperlink | undefined)[]>;
|
|
2185
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusObjectCommentsListService, never>;
|
|
2186
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BimplusObjectCommentsListService>;
|
|
2187
|
+
}
|
|
2188
|
+
|
|
2251
2189
|
interface CommentDialogData {
|
|
2252
2190
|
title: string;
|
|
2253
2191
|
message: string;
|
|
@@ -2265,7 +2203,7 @@ declare class BimplusOverlayDialogDeleteComponent {
|
|
|
2265
2203
|
set title(value: string);
|
|
2266
2204
|
get message(): string;
|
|
2267
2205
|
set message(value: string);
|
|
2268
|
-
constructor(
|
|
2206
|
+
constructor();
|
|
2269
2207
|
close(): void;
|
|
2270
2208
|
keypressClose(event: KeyboardEvent): void;
|
|
2271
2209
|
buttonRowButtonClicked($event: BimplusButtonClickEvent): void;
|
|
@@ -2353,7 +2291,6 @@ declare class BimplusStatusBarComponent implements OnInit {
|
|
|
2353
2291
|
private statusBarService;
|
|
2354
2292
|
private _title;
|
|
2355
2293
|
get title(): string;
|
|
2356
|
-
constructor(statusBarService: BimplusStatusBarService);
|
|
2357
2294
|
ngOnInit(): void;
|
|
2358
2295
|
closeClick(): void;
|
|
2359
2296
|
closeKeyDown($event: KeyboardEvent): void;
|
|
@@ -2382,5 +2319,41 @@ declare class BimplusLinkTooltipMessageComponent implements AfterViewInit {
|
|
|
2382
2319
|
static ɵcmp: i0.ɵɵComponentDeclaration<BimplusLinkTooltipMessageComponent, "lib-bimplus-link-tooltip-message", never, { "link": { "alias": "link"; "required": false; }; "titleHeader": { "alias": "titleHeader"; "required": false; }; "enableCopyPressKeys": { "alias": "enableCopyPressKeys"; "required": false; }; "arrowPosition": { "alias": "arrowPosition"; "required": false; }; "onClose": { "alias": "onClose"; "required": false; }; }, {}, never, never, true, never>;
|
|
2383
2320
|
}
|
|
2384
2321
|
|
|
2385
|
-
|
|
2322
|
+
declare class BimplusUpgradeLinkComponent extends BimplusLocalizedWidgetComponent {
|
|
2323
|
+
constructor();
|
|
2324
|
+
upgradeLinkUrl: string;
|
|
2325
|
+
linkClicked: EventEmitter<string>;
|
|
2326
|
+
_linkClicked(): void;
|
|
2327
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusUpgradeLinkComponent, never>;
|
|
2328
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BimplusUpgradeLinkComponent, "lib-bimplus-upgrade-link", never, { "upgradeLinkUrl": { "alias": "upgradeLinkUrl"; "required": false; }; }, { "linkClicked": "linkClicked"; }, never, never, true, never>;
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
interface StatusBarData {
|
|
2332
|
+
statusBarVisible: boolean;
|
|
2333
|
+
title: string;
|
|
2334
|
+
}
|
|
2335
|
+
|
|
2336
|
+
declare class BimplusStatusBarService {
|
|
2337
|
+
_statusBarData: BehaviorSubject<StatusBarData>;
|
|
2338
|
+
constructor();
|
|
2339
|
+
get statusBarVisible(): boolean;
|
|
2340
|
+
get title(): string;
|
|
2341
|
+
get statusBarData(): StatusBarData;
|
|
2342
|
+
get statusBarDataSubscription(): BehaviorSubject<StatusBarData>;
|
|
2343
|
+
setStatusBarData(data: StatusBarData): void;
|
|
2344
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusStatusBarService, never>;
|
|
2345
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BimplusStatusBarService>;
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2348
|
+
declare class ObjectPropertiesService {
|
|
2349
|
+
_model: BehaviorSubject<WebSdk.ObjectData | null>;
|
|
2350
|
+
constructor();
|
|
2351
|
+
get modelValue(): WebSdk.ObjectData | null;
|
|
2352
|
+
get model$(): BehaviorSubject<WebSdk.ObjectData | null>;
|
|
2353
|
+
setModel(model: WebSdk.ObjectData): void;
|
|
2354
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectPropertiesService, never>;
|
|
2355
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ObjectPropertiesService>;
|
|
2356
|
+
}
|
|
2357
|
+
|
|
2358
|
+
export { Attachment, AttachmentBuilder, BIMPLUS_ATTACHMENTS_CONFIG, BIMPLUS_TABS_SWITCHER_CONFIG, BimplusAttachmentsComponent, BimplusAttachmentsService, BimplusCommentComponent, BimplusConnectionDesignerComponent, BimplusConnectionDesignerResultsComponent, BimplusContactComponent, BimplusContextMenuComponent, BimplusFlatTreeComponent, BimplusFloatingBarHideObjectsComponent, BimplusFloatingBarIsolationObjectsComponent, BimplusFloatingBarProjectNavigatorComponent, BimplusInputTextFieldComponent, BimplusLanguageMenuComponent, BimplusLinkTooltipMessageComponent, BimplusLocalizedWidgetComponent, BimplusMainMenuComponent, BimplusNavbarComponent, BimplusNotifyComponent, BimplusObjectCommentsListComponent, BimplusObjectCommentsListService, BimplusObjectNavigatorComponent, BimplusOverlayDialogConfirmComponent, BimplusOverlayDialogDeleteComponent, BimplusOverlayDialogErrorComponent, BimplusOverlayDialogWarningComponent, BimplusOverlayMessageComponent, BimplusProjectMenuComponent, BimplusScrollableContainerComponent, BimplusSidenavComponent, BimplusSidenavDrawerContentComponent, BimplusStatusBarComponent, BimplusStatusBarService, BimplusStorageInfoComponent, BimplusTabComponent, BimplusTabsSwitcherComponent, BimplusTabsSwitcherService, BimplusTextareaComponent, BimplusToolHubComponent, BimplusTooltipMessageComponent, BimplusTouchMenuComponent, BimplusUpgradeLinkComponent, BimplusUserMenuComponent, BimplusZoomComponent, BimportalGeneralOverlayDialogComponent, CursorType, CursorsService, DEFAULT_TAB_SWITCHER_ELEMENTS, DialogService, EMBEDDED_MODAL_DIALOGE_TYPE_FILE, FilterCriteriaSelectionMode, LanguageStringsService, LinksToDocumentsComponent, LoadingSpinnerComponent, LogoState, MaxFilterCriteria, NgxBimplusComponentsComponent, NgxBimplusComponentsService, ObjectHyperlinksComponent, ObjectPropertiesComponent, ObjectPropertiesHeaderComponent, ObjectPropertiesService, ResizablePanelComponent, ResizeObserverService, postAttachmentLinks };
|
|
2386
2359
|
export type { BimplusAttachmentsConfig, BimplusContextMenuItem, BimplusContextMenuPosition, BimplusMainMenuComponentAttribute, BimplusProjectMenuComponentAttribute, BimplusTabComponentModel, BimplusTabsSwitcherConfig, CommentDialogData, ConfirmDialogInputData, ConnexisResult, ConnexisResultList, ConnexisResultsRoot, CreateLinkData, DesignCode, DialogPositionOptions, ErrorDialogInputData, FilterCriterium, FilterType, FlatNode, FlatTreeContextMenus, FloatingBarItem, IAttachment, IDialogInputData, IDialogOptions, IDialogOutputData, LangItem, LocalizedStrings, MenuItem, MenuItemEventData, MenuListType, OpacityProperties, ProjectNavigatorLayer, ProjectNavigatorModel, ProjectNavigatorProject, SelectedObject, SidenavItem, ToolHubItem, ToolHubItemStates, ToolHubItemUnits, ToolHubSubItem, ToolHubVisualSettings, TooltipMessageData, TooltipMessageItem, TooltipMessagePosition, TreeNode, VisibilityProperties, WarningDialogInputData };
|