@ah-oh/ao-workspaces-design-system 0.0.53 → 0.0.54
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/package.json
CHANGED
|
@@ -1375,7 +1375,8 @@ declare class WorkspaceNavbarService {
|
|
|
1375
1375
|
private readonly companies;
|
|
1376
1376
|
readonly companies$: Observable<ICompanyOverview[]>;
|
|
1377
1377
|
readonly companiesSignal: _angular_core.Signal<ICompanyOverview[]>;
|
|
1378
|
-
private activeAppId
|
|
1378
|
+
private readonly activeAppId;
|
|
1379
|
+
readonly activeAppIdSignal: _angular_core.Signal<string>;
|
|
1379
1380
|
private loginUrl;
|
|
1380
1381
|
private production;
|
|
1381
1382
|
private preserveRedirectUrl;
|
|
@@ -1411,6 +1412,11 @@ declare class WorkspaceNavbarService {
|
|
|
1411
1412
|
* @deprecated Use testingUrl from WorkspaceApp instead
|
|
1412
1413
|
*/
|
|
1413
1414
|
private getLegacyDevUrl;
|
|
1415
|
+
private normalizeWorkspaceAppsResponse;
|
|
1416
|
+
private withRuntimeBaseUrl;
|
|
1417
|
+
private getRuntimeBaseUrl;
|
|
1418
|
+
private buildJwtRedirectUrl;
|
|
1419
|
+
private buildLoginPathUrl;
|
|
1414
1420
|
getEnabledApps(): string[];
|
|
1415
1421
|
/**
|
|
1416
1422
|
* @deprecated Use session.enabledApps instead
|
|
@@ -1823,6 +1829,7 @@ declare class WorkspaceNavbarComponent implements AfterViewInit {
|
|
|
1823
1829
|
protected readonly activeTopNavItemId: _angular_core.Signal<string>;
|
|
1824
1830
|
protected readonly activeSubTopNavItems: _angular_core.Signal<NavItem[]>;
|
|
1825
1831
|
protected readonly activeSubTopNavItemId: _angular_core.Signal<string>;
|
|
1832
|
+
protected readonly activeWorkspaceAppId: _angular_core.Signal<string>;
|
|
1826
1833
|
protected readonly signOutIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\"><path d=\"M120,216a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V40a8,8,0,0,1,8-8h64a8,8,0,0,1,0,16H56V208h56A8,8,0,0,1,120,216Zm109.66-93.66-40-40a8,8,0,0,0-11.32,11.32L204.69,120H112a8,8,0,0,0,0,16h92.69l-26.35,26.34a8,8,0,0,0,11.32,11.32l40-40A8,8,0,0,0,229.66,122.34Z\"></path></svg>";
|
|
1827
1834
|
protected readonly plusIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\"><path d=\"M224,128a8,8,0,0,1-8,8H136v80a8,8,0,0,1-16,0V136H40a8,8,0,0,1,0-16h80V40a8,8,0,0,1,16,0v80h80A8,8,0,0,1,224,128Z\"></path></svg>";
|
|
1828
1835
|
protected readonly chatIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\"><path d=\"M200,48H136V16a8,8,0,0,0-16,0V48H56A32,32,0,0,0,24,80V192a32,32,0,0,0,32,32H200a32,32,0,0,0,32-32V80A32,32,0,0,0,200,48Zm16,144a16,16,0,0,1-16,16H56a16,16,0,0,1-16-16V80A16,16,0,0,1,56,64H200a16,16,0,0,1,16,16Zm-52-56H92a28,28,0,0,0,0,56h72a28,28,0,0,0,0-56Zm-24,16v24H116V152ZM80,164a12,12,0,0,1,12-12h8v24H92A12,12,0,0,1,80,164Zm84,12h-8V152h8a12,12,0,0,1,0,24ZM72,108a12,12,0,1,1,12,12A12,12,0,0,1,72,108Zm88,0a12,12,0,1,1,12,12A12,12,0,0,1,160,108Z\"></path></svg>";
|