ngx-bimplus-components 0.0.150 → 0.0.151
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/images/default/ic_view_orthographic.svg +7 -0
- package/assets/images/default/ic_view_orthographic_maincolor.svg +7 -0
- package/assets/images/default/ic_view_perspective.svg +3 -0
- package/assets/images/default/ic_view_perspective_disabled.svg +3 -0
- package/assets/images/default/ic_view_perspective_maincolor.svg +3 -0
- package/assets/languages/strings_en.json +4 -1
- package/esm2022/lib/components/bimplus-tool-hub/bimplus-tool-hub.component.mjs +58 -10
- package/esm2022/lib/components/bimplus-tool-hub/bimplus-tool-hub.interface.mjs +1 -1
- package/esm2022/lib/components/bimplus-tool-hub/tool-hub-item/tool-hub-item.component.mjs +3 -3
- package/esm2022/lib/components/bimplus-tool-hub/tool-hub-sub-item/tool-hub-sub-item.component.mjs +3 -3
- package/fesm2022/ngx-bimplus-components.mjs +61 -13
- package/fesm2022/ngx-bimplus-components.mjs.map +1 -1
- package/lib/components/bimplus-tool-hub/bimplus-tool-hub.component.d.ts +6 -1
- package/lib/components/bimplus-tool-hub/bimplus-tool-hub.interface.d.ts +1 -0
- package/package.json +1 -1
|
@@ -18,6 +18,8 @@ export declare class BimplusToolHubComponent extends BimplusLocalizedWidgetCompo
|
|
|
18
18
|
get activeSubItems(): Array<ToolHubSubItem> | null;
|
|
19
19
|
get isCollapsed(): boolean;
|
|
20
20
|
set isCollapsed(value: boolean);
|
|
21
|
+
get isPerspectiveProjection(): boolean;
|
|
22
|
+
set isPerspectiveProjection(value: boolean);
|
|
21
23
|
get units(): ToolHubItemUnits;
|
|
22
24
|
get subMenuUnits(): ToolHubItemUnits;
|
|
23
25
|
get annularSector(): string;
|
|
@@ -42,6 +44,7 @@ export declare class BimplusToolHubComponent extends BimplusLocalizedWidgetCompo
|
|
|
42
44
|
clickToolHubSubItem(action: string): void;
|
|
43
45
|
toggleToolHubItemActive(buttonId: string): void;
|
|
44
46
|
toggleSubItemsView(buttonId: string): void;
|
|
47
|
+
toggleCameraProjection(buttonId: string): void;
|
|
45
48
|
closeActiveSubItemsView(): void;
|
|
46
49
|
setHoveredState(element: string, hovered: boolean): void;
|
|
47
50
|
private getSelector;
|
|
@@ -52,6 +55,7 @@ export declare class BimplusToolHubComponent extends BimplusLocalizedWidgetCompo
|
|
|
52
55
|
private _items;
|
|
53
56
|
private _activeSubItemsView;
|
|
54
57
|
private _activeSubItems;
|
|
58
|
+
private _isPerspectiveProjection;
|
|
55
59
|
private _visualSettings;
|
|
56
60
|
private _units;
|
|
57
61
|
private _subMenuUnits;
|
|
@@ -65,8 +69,9 @@ export declare class BimplusToolHubComponent extends BimplusLocalizedWidgetCompo
|
|
|
65
69
|
private _oneOrMoreItemsActive;
|
|
66
70
|
private _updateActivationState;
|
|
67
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusToolHubComponent, never>;
|
|
68
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BimplusToolHubComponent, "lib-bimplus-tool-hub", never, { "itemStates": { "alias": "itemStates"; "required": false; }; "items": { "alias": "items"; "required": false; }; "isCollapsed": { "alias": "isCollapsed"; "required": false; }; "isEmbedded": { "alias": "isEmbedded"; "required": false; }; "isFocused": { "alias": "isFocused"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; }, { "itemClicked": "itemClicked"; "subItemClicked": "subItemClicked"; }, never, never, true, never>;
|
|
72
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BimplusToolHubComponent, "lib-bimplus-tool-hub", never, { "itemStates": { "alias": "itemStates"; "required": false; }; "items": { "alias": "items"; "required": false; }; "isCollapsed": { "alias": "isCollapsed"; "required": false; }; "isPerspectiveProjection": { "alias": "isPerspectiveProjection"; "required": false; }; "isEmbedded": { "alias": "isEmbedded"; "required": false; }; "isFocused": { "alias": "isFocused"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; }, { "itemClicked": "itemClicked"; "subItemClicked": "subItemClicked"; }, never, never, true, never>;
|
|
69
73
|
static ngAcceptInputType_isCollapsed: unknown;
|
|
74
|
+
static ngAcceptInputType_isPerspectiveProjection: unknown;
|
|
70
75
|
static ngAcceptInputType_isEmbedded: unknown;
|
|
71
76
|
static ngAcceptInputType_isFocused: unknown;
|
|
72
77
|
static ngAcceptInputType_isActive: unknown;
|