Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions components/group/group-ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@
<groupId>org.eclipse.dirigible</groupId>
<artifactId>dirigible-components-resources-my</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.dirigible</groupId>
<artifactId>dirigible-components-resources-partner</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.dirigible</groupId>
<artifactId>dirigible-components-resources-inbox</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions components/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@
<module>resources/resources-dashboard</module>
<module>resources/resources-application</module>
<module>resources/resources-my</module>
<module>resources/resources-partner</module>
<module>resources/resources-inbox</module>
<module>resources/resources-documents</module>
<module>resources/resources-karavan-libs</module>
Expand Down Expand Up @@ -1381,6 +1382,11 @@
<artifactId>dirigible-components-resources-my</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.dirigible</groupId>
<artifactId>dirigible-components-resources-partner</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.dirigible</groupId>
<artifactId>dirigible-components-resources-inbox</artifactId>
Expand Down
21 changes: 21 additions & 0 deletions components/resources/resources-partner/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.eclipse.dirigible</groupId>
<artifactId>dirigible-components-parent</artifactId>
<version>14.0.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<name>Components - Resources - Partner</name>
<artifactId>dirigible-components-resources-partner</artifactId>
<packaging>jar</packaging>

<properties>
<license.header.location>../../../licensing-header.txt</license.header.location>
<parent.pom.folder>../../../</parent.pom.folder>
</properties>

</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
* Copyright (c) 2010-2026 Eclipse Dirigible contributors
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* SPDX-FileCopyrightText: Eclipse Dirigible contributors
* SPDX-License-Identifier: EPL-2.0
*/
/*
* The single navigation group of the Partner shell: every partner perspective declares
* groupId 'partner', defined once here (the same one-definition pattern as the application shell's
* navigation groups).
*/
exports.getPerspectiveGroup = () => ({
id: 'partner',
label: 'Partner',
order: 10,
// The service classifies a group by the presence of `items` - the aggregated personal
// perspectives are pushed into it by groupId.
items: []
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/*
* Copyright (c) 2026 Eclipse Dirigible contributors
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* SPDX-FileCopyrightText: Eclipse Dirigible contributors
* SPDX-License-Identifier: EPL-2.0
*/
const shellData = {
id: 'partnerShell',
path: '/services/web/partner/index.html',
label: 'Partner'
};
if (typeof exports !== 'undefined') {
exports.getShell = () => shellData;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/*
* Copyright (c) 2010-2026 Eclipse Dirigible contributors
* SPDX-License-Identifier: EPL-2.0
*
* Minimal shell styles on top of Harmonia. Layout is Harmonia's (vbox/hbox/size-full/x-h-*); this
* only hides x-cloak content until Alpine initialises and ensures the hosted iframe fills its panel.
*/
[x-cloak] {
display: none !important;
}

html,
body {
height: 100%;
margin: 0;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "application-partner-perspectives",
"description": "Extension Point for the External partner perspective providers, aggregated by the Partner shell"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"module": "partner/configs/partner-group.js",
"extensionPoint": "application-partner-perspectives",
"description": "Partner Shell - the 'partner' navigation group"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"module": "partner/configs/shell.js",
"extensionPoint": "platform-shells",
"description": "Partner Shell"
}
Loading
Loading