@eventcatalog/core 2.7.15 → 2.8.0
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/.all-contributorsrc +9 -0
- package/.github/workflows/test-bin.yml +29 -0
- package/CHANGELOG.md +13 -0
- package/README.md +2 -2
- package/bin/dist/eventcatalog.cjs +11 -3050
- package/bin/dist/eventcatalog.js +9 -3042
- package/package.json +13 -8
- package/scripts/eventcatalog-config-file-utils.js +5 -2
- package/src/components/DocsNavigation.astro +2 -2
- package/src/components/Header.astro +2 -2
- package/src/components/Lists/BasicList.tsx +2 -2
- package/src/components/Lists/OwnersList.tsx +5 -5
- package/src/components/Lists/PillList.tsx +3 -3
- package/src/components/Lists/SpecificationsList.astro +2 -2
- package/src/components/Lists/VersionList.astro +1 -1
- package/src/components/MDX/NodeGraph/DownloadButton.tsx +2 -2
- package/src/components/MDX/NodeGraph/NodeGraph.astro +3 -1
- package/src/components/MDX/NodeGraph/NodeGraph.tsx +81 -25
- package/src/components/MDX/NodeGraph/Nodes/ExternalSystem.tsx +1 -1
- package/src/components/MDX/Steps/Step.astro +1 -1
- package/src/components/MDX/Tiles/Tile.astro +2 -2
- package/src/components/MDX/page-components.tsx +1 -1
- package/src/components/SideBars/DomainSideBar.astro +2 -2
- package/src/components/SideBars/MessageSideBar.astro +2 -2
- package/src/components/SideBars/ServiceSideBar.astro +2 -2
- package/src/components/Tables/columns/DomainTableColumns.tsx +3 -3
- package/src/components/Tables/columns/FlowTableColumns.tsx +2 -2
- package/src/components/Tables/columns/MessageTableColumns.tsx +4 -4
- package/src/components/Tables/columns/ServiceTableColumns.tsx +4 -4
- package/src/layouts/CustomDocsPageLayout.astro +11 -18
- package/src/layouts/Footer.astro +4 -4
- package/src/layouts/VisualiserLayout.astro +1 -1
- package/src/pages/docs/[type]/[id]/[version]/changelog/index.astro +1 -1
- package/src/pages/docs/[type]/[id]/[version]/index.astro +2 -1
- package/src/pages/docs/teams/[id]/index.astro +2 -2
- package/src/pages/docs/users/[id]/index.astro +2 -2
- package/src/pages/index.astro +1 -1
- package/src/pages/visualiser/[type]/[id]/[version]/index.astro +1 -0
- package/tailwind.config.mjs +18 -5
- package/bin/dist/chunk-62DEEFN2.js +0 -48
package/.all-contributorsrc
CHANGED
|
@@ -401,6 +401,15 @@
|
|
|
401
401
|
"contributions": [
|
|
402
402
|
"code"
|
|
403
403
|
]
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"login": "hpatoio",
|
|
407
|
+
"name": "Simone Fumagalli",
|
|
408
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/249948?v=4",
|
|
409
|
+
"profile": "https://github.com/hpatoio",
|
|
410
|
+
"contributions": [
|
|
411
|
+
"doc"
|
|
412
|
+
]
|
|
404
413
|
}
|
|
405
414
|
],
|
|
406
415
|
"contributorsPerLine": 7,
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: Verify install with dependencies
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
env:
|
|
9
|
+
TEST_TAG: eventcatalog/bin:test
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
docker:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
steps:
|
|
15
|
+
- name: Set up QEMU
|
|
16
|
+
uses: docker/setup-qemu-action@v3
|
|
17
|
+
|
|
18
|
+
- name: Set up Docker Buildx
|
|
19
|
+
uses: docker/setup-buildx-action@v3
|
|
20
|
+
|
|
21
|
+
- name: Build and export to Docker
|
|
22
|
+
uses: docker/build-push-action@v6
|
|
23
|
+
with:
|
|
24
|
+
load: true
|
|
25
|
+
tags: ${{ env.TEST_TAG }}
|
|
26
|
+
|
|
27
|
+
- name: Test
|
|
28
|
+
run: |
|
|
29
|
+
docker run --rm ${{ env.TEST_TAG }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @eventcatalog/core
|
|
2
2
|
|
|
3
|
+
## 2.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 6f882b3: feat(core): added ability to focus nodes in the node graph on visualiser
|
|
8
|
+
- dddb730: feat(core): added basic theming support for colors
|
|
9
|
+
|
|
10
|
+
## 2.7.16
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 4d15fdf: fix(core): fixed windows issue for fetching config files
|
|
15
|
+
|
|
3
16
|
## 2.7.15
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<h4>Features: Documentation generator for Event Driven Architectures, Markdown driven, Document Domains/Services/Messages/Schemas and more, Content versioning, Assign Owners, Schemas, OpenAPI, MDX Components and more...</h4>
|
|
30
30
|
|
|
31
31
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
32
|
-
[](#contributors-)
|
|
33
33
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
34
34
|
|
|
35
35
|
[Read the Docs](https://eventcatalog.dev/) | [Edit the Docs](https://github.com/event-catalog/docs) | [View Demo](https://demo.eventcatalog.dev/docs)
|
|
@@ -227,7 +227,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
227
227
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/XaaXaaX"><img src="https://avatars.githubusercontent.com/u/13409925?v=4?s=100" width="100px;" alt="omid eidivandi"/><br /><sub><b>omid eidivandi</b></sub></a><br /><a href="https://github.com/event-catalog/eventcatalog/commits?author=XaaXaaX" title="Code">💻</a></td>
|
|
228
228
|
</tr>
|
|
229
229
|
<tr>
|
|
230
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/
|
|
230
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hpatoio"><img src="https://avatars.githubusercontent.com/u/249948?v=4?s=100" width="100px;" alt="Simone Fumagalli"/><br /><sub><b>Simone Fumagalli</b></sub></a><br /><a href="https://github.com/event-catalog/eventcatalog/commits?author=hpatoio" title="Documentation">📖</a></td>
|
|
231
231
|
</tr>
|
|
232
232
|
</tbody>
|
|
233
233
|
</table>
|