-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dev UI: Replaced internal components with Qomponent
Signed-off-by: Phillip Kruger <phillip.kruger@gmail.com>
- Loading branch information
1 parent
6ed6432
commit bd0c6d3
Showing
18 changed files
with
282 additions
and
621 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
...tp/deployment/src/main/java/io/quarkus/devui/deployment/RelocationImportMapBuildItem.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package io.quarkus.devui.deployment; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
import io.quarkus.builder.item.SimpleBuildItem; | ||
|
||
/** | ||
* Used internally to relocate namespaces for backward compatibility | ||
*/ | ||
public final class RelocationImportMapBuildItem extends SimpleBuildItem { | ||
|
||
private final Map<String, String> relocations = new HashMap<>(); | ||
|
||
public RelocationImportMapBuildItem() { | ||
|
||
} | ||
|
||
public void add(String from, String to) { | ||
this.relocations.put(from, to); | ||
} | ||
|
||
public Map<String, String> getRelocationMap() { | ||
return relocations; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
167 changes: 0 additions & 167 deletions
167
extensions/vertx-http/dev-ui-resources/src/main/resources/dev-ui/qui/qui-alert.js
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.