@bimplus/navigation 0.0.201 → 0.0.202-modelviewer11
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/@bimplus/navigation/assets/bimplus_Components_Clear_Cache.svg +8 -14
- package/assets/@bimplus/navigation/assets/bimplus_Components_Contact_From.svg +6 -6
- package/assets/@bimplus/navigation/assets/bimplus_Components_Edit_Profile.svg +4 -7
- package/assets/@bimplus/navigation/assets/bimplus_Components_Forum.svg +3 -9
- package/assets/@bimplus/navigation/assets/bimplus_Components_Languages.svg +3 -4
- package/assets/@bimplus/navigation/assets/bimplus_Components_Logout.svg +3 -11
- package/assets/@bimplus/navigation/assets/bimplus_Components_Release_Notes.svg +11 -11
- package/assets/@bimplus/navigation/assets/bimplus_Components_User_Guide.svg +3 -16
- package/fesm2022/bimplus-navigation.mjs +75 -5
- package/fesm2022/bimplus-navigation.mjs.map +1 -1
- package/index.d.ts +16 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -374,6 +374,21 @@ declare class BimplusStorageInfoComponent extends BimplusLocalizedWidgetComponen
|
|
|
374
374
|
static ɵcmp: i0.ɵɵComponentDeclaration<BimplusStorageInfoComponent, "lib-bimplus-storage-info", never, { "usedStorage": { "alias": "usedStorage"; "required": false; "isSignal": true; }; }, { "bimplusStorageInfoClicked": "bimplusStorageInfoClicked"; }, never, never, true, never>;
|
|
375
375
|
}
|
|
376
376
|
|
|
377
|
+
declare class BimplusUpgradeLinkComponent extends BimplusLocalizedWidgetComponent {
|
|
378
|
+
constructor();
|
|
379
|
+
private _getLangParamValue;
|
|
380
|
+
private _getCountryIsoParam;
|
|
381
|
+
private defaultShopUrl;
|
|
382
|
+
shopUrl: string;
|
|
383
|
+
country: string;
|
|
384
|
+
isTouch: boolean;
|
|
385
|
+
bimplusUpgradeLinkClicked: EventEmitter<string>;
|
|
386
|
+
_linkClicked(): void;
|
|
387
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusUpgradeLinkComponent, never>;
|
|
388
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BimplusUpgradeLinkComponent, "lib-bimplus-upgrade-link", never, { "shopUrl": { "alias": "shopUrl"; "required": false; }; "country": { "alias": "country"; "required": false; }; "isTouch": { "alias": "isTouch"; "required": false; }; }, { "bimplusUpgradeLinkClicked": "bimplusUpgradeLinkClicked"; }, never, never, true, never>;
|
|
389
|
+
static ngAcceptInputType_isTouch: unknown;
|
|
390
|
+
}
|
|
391
|
+
|
|
377
392
|
interface MenuItem {
|
|
378
393
|
id: string;
|
|
379
394
|
action: string;
|
|
@@ -674,5 +689,5 @@ declare class LanguageStringsService {
|
|
|
674
689
|
static ɵprov: i0.ɵɵInjectableDeclaration<LanguageStringsService>;
|
|
675
690
|
}
|
|
676
691
|
|
|
677
|
-
export { BimplusContactComponent, BimplusLanguageMenuComponent, BimplusLocalizedWidgetComponent, BimplusMainMenuComponent, BimplusNavbarComponent, BimplusNotifyComponent, BimplusProjectMenuComponent, BimplusScrollableContainerComponent, BimplusStorageInfoComponent, BimplusTouchMenuComponent, BimplusUserMenuComponent, BimplusZoomComponent, LanguageStringsService, LogoState, NavigationComponent, NavigationService };
|
|
692
|
+
export { BimplusContactComponent, BimplusLanguageMenuComponent, BimplusLocalizedWidgetComponent, BimplusMainMenuComponent, BimplusNavbarComponent, BimplusNotifyComponent, BimplusProjectMenuComponent, BimplusScrollableContainerComponent, BimplusStorageInfoComponent, BimplusTouchMenuComponent, BimplusUpgradeLinkComponent, BimplusUserMenuComponent, BimplusZoomComponent, LanguageStringsService, LogoState, NavigationComponent, NavigationService };
|
|
678
693
|
export type { BimplusMainMenuComponentAttribute, BimplusProjectMenuComponentAttribute, LangItem, LocalizedStrings, MenuItem, MenuItemEventData, MenuListType };
|