-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6052 from deutschebank/db-contrib/waltz-6038-call…
…outs-on-sections-history Db contrib/waltz 6038 callouts on sections history
- Loading branch information
Showing
14 changed files
with
171 additions
and
64 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
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
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
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
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
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
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
33 changes: 33 additions & 0 deletions
33
...-ng/client/aggregate-overlay-diagram/services/aggregate-overlay-diagram-instance-store.js
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,33 @@ | ||
function store($http, baseApiUrl) { | ||
const baseUrl = `${baseApiUrl}/aggregate-overlay-diagram-instance`; | ||
|
||
const getById = (id) => $http | ||
.get(`${baseUrl}/id/${id}`) | ||
.then(d => d.data); | ||
|
||
return { | ||
getById | ||
}; | ||
} | ||
|
||
|
||
store.$inject = [ | ||
"$http", | ||
"BaseApiUrl" | ||
]; | ||
|
||
|
||
const serviceName = "AggregateOverlayDiagramInstanceStore"; | ||
|
||
export default { | ||
serviceName, | ||
store | ||
}; | ||
|
||
export const AggregateOverlayDiagramInstanceStore_API = { | ||
getById: { | ||
serviceName, | ||
serviceFnName: "getById", | ||
description: "getById [id]" | ||
} | ||
} |
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
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,11 @@ | ||
<script> | ||
export let width; | ||
export let height; | ||
</script> | ||
|
||
<g class="callout-box"> | ||
<rect {width} | ||
{height} | ||
fill="none"> | ||
</rect> | ||
</g> |
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
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
Oops, something went wrong.