@eventcatalog/core 4.2.2 → 4.2.4

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.
Files changed (68) hide show
  1. package/dist/analytics/analytics.cjs +1 -1
  2. package/dist/analytics/analytics.js +2 -2
  3. package/dist/analytics/log-build.cjs +1 -1
  4. package/dist/analytics/log-build.js +3 -3
  5. package/dist/{chunk-Z2CMR4HM.js → chunk-5MIGBCON.js} +1 -1
  6. package/dist/{chunk-ZGQNCIRW.js → chunk-BXEGST4Z.js} +1 -1
  7. package/dist/{chunk-HIQ22EHS.js → chunk-GCEFDCZB.js} +1 -1
  8. package/dist/{chunk-A5LDEHRI.js → chunk-J2MVHSKA.js} +1 -1
  9. package/dist/{chunk-JV33GNVZ.js → chunk-WVIOZDVK.js} +1 -1
  10. package/dist/constants.cjs +1 -1
  11. package/dist/constants.js +1 -1
  12. package/dist/docs/development/00-why-eventcatalog.md +8 -8
  13. package/dist/docs/development/01-fundamentals.md +15 -12
  14. package/dist/docs/development/bring-your-own-documentation/diagrams/07-reference.md +4 -0
  15. package/dist/docs/development/components/components/07-custom-properties.md +85 -0
  16. package/dist/docs/development/components/components/{07-design.md → 08-design.md} +1 -1
  17. package/dist/docs/development/components/components/{08-entitymap.md → 09-entitymap.md} +2 -2
  18. package/dist/docs/development/components/components/{09-flow.md → 10-flow.md} +1 -1
  19. package/dist/docs/development/components/components/{10-link.md → 11-link.md} +1 -1
  20. package/dist/docs/development/components/components/{11-mermaid-file-loader.md → 12-mermaid-file-loader.md} +1 -1
  21. package/dist/docs/development/components/components/{12-message-table.md → 13-message-table.md} +1 -1
  22. package/dist/docs/development/components/components/{13-nodegraph.md → 14-nodegraph.md} +1 -2
  23. package/dist/docs/development/components/components/{14-openapi.md → 15-openapi.md} +1 -1
  24. package/dist/docs/development/components/components/{15-prompt.md → 16-prompt.md} +1 -1
  25. package/dist/docs/development/components/components/{16-remote-schema.md → 17-remote-schema.md} +1 -1
  26. package/dist/docs/development/components/components/{17-resource-group-table.md → 18-resource-group-table.md} +1 -1
  27. package/dist/docs/development/components/components/{18-resource-link.md → 19-resource-link.md} +1 -1
  28. package/dist/docs/development/components/components/{19-schema.md → 20-schema.md} +1 -1
  29. package/dist/docs/development/components/components/{20-schema-viewer.md → 21-schema-viewer.md} +1 -1
  30. package/dist/docs/development/components/components/{21-steps.md → 22-steps.md} +1 -1
  31. package/dist/docs/development/components/components/{22-tabs.md → 23-tabs.md} +1 -1
  32. package/dist/docs/development/components/components/{23-tiles.md → 24-tiles.md} +1 -1
  33. package/dist/docs/development/components/components/{24-visibility.md → 25-visibility.md} +1 -1
  34. package/dist/docs/development/customization/02-themes.md +1 -1
  35. package/dist/docs/development/customization/06-customize-tables.md +1 -1
  36. package/dist/docs/development/customization/07-resource-icons.md +1 -1
  37. package/dist/docs/development/customization/08-custom-properties.md +176 -0
  38. package/dist/docs/development/customization/customize-visualizer/_category_.json +1 -1
  39. package/dist/docs/development/deployment/build-ssr-mode.md +9 -1
  40. package/dist/docs/development/guides/domains/09-reference.md +4 -0
  41. package/dist/docs/development/guides/resources/adrs/06-reference.md +4 -0
  42. package/dist/docs/development/guides/resources/agents/11-reference.md +4 -0
  43. package/dist/docs/development/guides/resources/data/04-reference.md +4 -0
  44. package/dist/docs/development/guides/resources/data-products/07-reference.md +4 -0
  45. package/dist/docs/development/guides/resources/entities/06-reference.md +4 -0
  46. package/dist/docs/development/guides/resources/flows/06-reference.md +4 -0
  47. package/dist/docs/development/guides/resources/messages/04-connect-messages/02-shared-messages-across-boundaries.md +1 -0
  48. package/dist/docs/development/guides/resources/messages/04-connect-messages/04-map-commands-to-events.md +95 -0
  49. package/dist/docs/development/guides/resources/messages/04-message-channels/05-reference.md +4 -0
  50. package/dist/docs/development/guides/resources/messages/10-reference.md +4 -0
  51. package/dist/docs/development/guides/resources/services/08-reference.md +12 -0
  52. package/dist/docs/development/guides/systems/06-reference.md +4 -0
  53. package/dist/eventcatalog.cjs +1 -1
  54. package/dist/eventcatalog.js +5 -5
  55. package/dist/generate.cjs +1 -1
  56. package/dist/generate.js +3 -3
  57. package/dist/utils/cli-logger.cjs +1 -1
  58. package/dist/utils/cli-logger.js +2 -2
  59. package/eventcatalog/src/components/MDX/CustomProperties/CustomProperties.astro +39 -0
  60. package/eventcatalog/src/components/MDX/CustomProperties/CustomProperty.astro +37 -0
  61. package/eventcatalog/src/components/MDX/CustomProperties/CustomPropertyRow.astro +37 -0
  62. package/eventcatalog/src/components/MDX/CustomProperties/CustomPropertyValue.astro +51 -0
  63. package/eventcatalog/src/components/MDX/CustomProperties/custom-properties.spec.ts +38 -0
  64. package/eventcatalog/src/components/MDX/CustomProperties/custom-properties.ts +39 -0
  65. package/eventcatalog/src/components/MDX/components.tsx +4 -0
  66. package/eventcatalog/src/content.config.ts +402 -373
  67. package/eventcatalog/src/utils/collections/extension-properties.ts +25 -0
  68. package/package.json +12 -12
@@ -36,7 +36,7 @@ module.exports = __toCommonJS(analytics_exports);
36
36
  var import_os = __toESM(require("os"), 1);
37
37
 
38
38
  // package.json
39
- var version = "4.2.2";
39
+ var version = "4.2.4";
40
40
 
41
41
  // src/constants.ts
42
42
  var VERSION = version;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  raiseEvent
3
- } from "../chunk-ZGQNCIRW.js";
4
- import "../chunk-A5LDEHRI.js";
3
+ } from "../chunk-BXEGST4Z.js";
4
+ import "../chunk-J2MVHSKA.js";
5
5
  export {
6
6
  raiseEvent
7
7
  };
@@ -140,7 +140,7 @@ var verifyRequiredFieldsAreInCatalogConfigFile = async (projectDirectory) => {
140
140
  var import_os = __toESM(require("os"), 1);
141
141
 
142
142
  // package.json
143
- var version = "4.2.2";
143
+ var version = "4.2.4";
144
144
 
145
145
  // src/constants.ts
146
146
  var VERSION = version;
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  log_build_default
3
- } from "../chunk-HIQ22EHS.js";
3
+ } from "../chunk-GCEFDCZB.js";
4
4
  import "../chunk-K2XIENVT.js";
5
- import "../chunk-ZGQNCIRW.js";
6
- import "../chunk-A5LDEHRI.js";
5
+ import "../chunk-BXEGST4Z.js";
6
+ import "../chunk-J2MVHSKA.js";
7
7
  import "../chunk-6QENHZZP.js";
8
8
  export {
9
9
  log_build_default as default
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  VERSION
3
- } from "./chunk-A5LDEHRI.js";
3
+ } from "./chunk-J2MVHSKA.js";
4
4
 
5
5
  // src/utils/cli-logger.ts
6
6
  import pc from "picocolors";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  VERSION
3
- } from "./chunk-A5LDEHRI.js";
3
+ } from "./chunk-J2MVHSKA.js";
4
4
 
5
5
  // src/analytics/analytics.js
6
6
  import os from "os";
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-K2XIENVT.js";
5
5
  import {
6
6
  raiseEvent
7
- } from "./chunk-ZGQNCIRW.js";
7
+ } from "./chunk-BXEGST4Z.js";
8
8
  import {
9
9
  getEventCatalogConfigFile,
10
10
  verifyRequiredFieldsAreInCatalogConfigFile
@@ -1,5 +1,5 @@
1
1
  // package.json
2
- var version = "4.2.2";
2
+ var version = "4.2.4";
3
3
 
4
4
  // src/constants.ts
5
5
  var VERSION = version;
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  logger
3
- } from "./chunk-Z2CMR4HM.js";
3
+ } from "./chunk-5MIGBCON.js";
4
4
  import {
5
5
  cleanup,
6
6
  getEventCatalogConfigFile
@@ -25,7 +25,7 @@ __export(constants_exports, {
25
25
  module.exports = __toCommonJS(constants_exports);
26
26
 
27
27
  // package.json
28
- var version = "4.2.2";
28
+ var version = "4.2.4";
29
29
 
30
30
  // src/constants.ts
31
31
  var VERSION = version;
package/dist/constants.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  VERSION
3
- } from "./chunk-A5LDEHRI.js";
3
+ } from "./chunk-J2MVHSKA.js";
4
4
  export {
5
5
  VERSION
6
6
  };
@@ -18,33 +18,33 @@ As systems grow, complexity grows. Documentation becomes important for teams but
18
18
 
19
19
  ### What is EventCatalog?
20
20
 
21
- EventCatalog is a documentation and governance tool that is built for architects.
21
+ EventCatalog is an open source documentation tool that is built for software architecture.
22
22
 
23
- It lets you document and visualize your architecture with primitives you are already familiar with. You can document domains, systems, applications and schemas and visualize how they all relate to each other.
23
+ We focus on architecture primitives like domains, systems and resources (e.g services, messages) and let you document your architecture with primitives you are already familiar with.
24
24
 
25
25
  EventCatalog creates an internal architecture graph of how your systems work. This makes EventCatalog accessible to your AI agents, LLMs and AI workflows and [creates context of your business and architecture](/docs/development/ask-your-architecture/intro).
26
26
 
27
- EventCatalog is technology agnostic, this means you can document and model any systems you have
27
+ EventCatalog is technology agnostic, this means you can document and model any systems you have.
28
28
 
29
29
 
30
- #### What can EventCatalog do for you?
30
+ #### Our project goals for you
31
31
 
32
- - **Save time across the organization**
32
+ - **Help you save time across the organization**
33
33
  - Help teams find information they need across your business and organization
34
34
  - Document high level information for stakeholders while providing lower level details to your teams.
35
35
  - Connect to your AI Agents and AI Workflows. Give your LLMs the context they need.
36
- - **Create documentation you can trust**
36
+ - **Create a documentation solution you can trust**
37
37
  - Sync documentation from your code with our Agent
38
38
  - Automate documentation from your OpenAPI, AsyncAPI, or schema registries
39
39
  - Use EventCatalog Agent to sync code to docs from your CI/CD workflows.
40
40
  - Write your own automation and plugins with the [EventCatalog SDK](/docs/sdk)
41
- - **Detect breaking changes before they reach production**
41
+ - **Help you detect breaking changes before they reach production**
42
42
  - Use EventCatalog Agent to detect breaking schema changes
43
43
  - Bring your own model and get notified when things break
44
44
  - **Use natural langugage to query your architecture**
45
45
  - Connect AI tools to your architecture using [EventCatalog's MCP server](/docs/development/ask-your-architecture/mcp-server/introduction)
46
46
  - Ask architectural questions grounded in your documented domains, services, events, data products, and schemas
47
- - **Show the bigger picture**
47
+ - **Help your teams understand the bigger picture**
48
48
  - Help business stakeholders understand the bigger picture
49
49
  - Visualize your architecture and future ideas
50
50
  - Document key business workflows
@@ -8,27 +8,28 @@ title: Fundamentals
8
8
  description: Understanding the fundamentals of EventCatalog
9
9
  ---
10
10
 
11
- EventCatalog is a architecture catalog built around software primitives and domain-driven design patterns, so you can model the systems you actually build instead of creating disconnected documentation pages.
11
+ EventCatalog is a self hosted [open source documentation tool](https://github.com/event-catalog/eventcatalog/stargazers) for software architecture. It allows you to document your architecture using software primitives and patterns such as domains, systems and resources rather than random documentation pages (e.g Confluence).
12
12
 
13
- EventCatalog gives your teams and AI agents a shared understanding of how your systems work across your organization.
13
+ EventCatalog follows the [docs-as-code](https://www.writethedocs.org/guide/docs-as-code/) pattern. Your documentation is stored in code using [markdown (MDX)](https://mdxjs.com/) and stays private, in your own repository and infrastructure.
14
14
 
15
- EventCatalog is an open source project and is self-hosted and follows the [docs-as-code](https://www.writethedocs.org/guide/docs-as-code/) pattern. All pages in EventCatalog are powered by [markdown (MDX)](https://mdxjs.com/).
15
+ At its core, EventCatalog gives you a small set of building blocks for your documentation.
16
16
 
17
- Your catalog is private, stays in your own repository and infrastructure.
18
-
19
- At its core, EventCatalog gives you a small set of building blocks.
17
+ ![EventCatalog model showing domains, systems, resources, contracts, and ownership](./img/levels-catalog.png)
20
18
 
21
19
  - **Domains (Level 1)** - a domain describes a business boundary
22
20
  - **Systems (Level 2)** - a system is a collection of resources that work together to perform a function.
23
21
  - **Resources (Level 3)** - individual resources (e.g services, messages, data stores) that can be assigned to systems or domains.
24
22
 
25
- All building blocks are optional, it's up to you how you want to model your architecture in your catalog.
23
+ :::info What blocks to use?
24
+ All building blocks are optional in your catalog. It's up to you how you want to model your documentation.
26
25
 
27
- ![EventCatalog model showing domains, systems, resources, contracts, and ownership](./img/ec-types.png)
26
+ Want to match your c4 model?, you can. Want to document a monolith you can. Want to document distributed systems you can.
27
+ We focus on architecture primitives and let you fill in the details.
28
+ :::
28
29
 
29
30
  ## The EventCatalog model
30
31
 
31
- Domains give your catalog a business shape. They help users understand the boundaries in your architecture, such as `Shopping`, `Payments`, `Fulfilment`, or `Customer`.
32
+ Domains describe a business capability or boundary. They help users understand the boundaries in your architecture, such as `Shopping`, `Payments`, `Fulfilment`, or `Customer`.
32
33
 
33
34
  Systems give your catalog an operating shape. A system is a collection of resources that work together to perform a function. For example, a `Shopping` domain might contain a `Cart System` and a `Promotion System`.
34
35
 
@@ -48,7 +49,9 @@ Teams and users can own domains, systems, resources, and contracts. This makes o
48
49
 
49
50
  ## Levels of detail
50
51
 
51
- EventCatalog is useful to anyone in your organization. You can define high level primitives whilst giving lower level implementation details.
52
+ Architecture documentation all have different audiences, and EventCatalog can be useful to anyone in your organization.
53
+
54
+ You can define a high level of information for stakeholders whilst whilst giving lower level implementation details for developers.
52
55
 
53
56
  | Level | Name | What it answers | Example |
54
57
  |-------|------|-----------------|---------|
@@ -76,9 +79,9 @@ It's up to you where you define your catalog (or catalogs). Here are some exampl
76
79
  | **Federated** | Multiple EventCatalog instances connected into one view |
77
80
 
78
81
 
79
- ## Automation
82
+ ## Living documentation
80
83
 
81
- Your documentation can also be automated, keeping your implementation details close to your documentation. There are many [integrations](/integrations) or you can create your own automations with our [SDK](/docs/sdk).
84
+ Your documentation can also be automated, keeping your implementation details close to your documentation. There are many [integrations](/integrations) or you can create your own automations with our [SDK](/docs/sdk). We also have started building some [AI Agents to help you manage your documentation](https://github.com/event-catalog/agents) in CI/CD environments.
82
85
 
83
86
  ## Visual editing
84
87
 
@@ -142,3 +142,7 @@ attachments:
142
142
  ## Content
143
143
 
144
144
  Diagram pages can contain any MDX supported by EventCatalog, including Mermaid, PlantUML, Miro, IcePanel, Lucid, Draw.io, FigJam, images, and normal markdown.
145
+
146
+ ## Custom properties
147
+
148
+ You can add organization-specific metadata to this resource using frontmatter fields prefixed with `x-`. Learn how to define, render, and reference them in [Custom properties on resources](/docs/development/customization/custom-properties).
@@ -0,0 +1,85 @@
1
+ ---
2
+ sidebar_position: 7
3
+ keywords:
4
+ - components
5
+ - custom properties
6
+ - resource metadata
7
+ sidebar_label: CustomProperties
8
+ title: CustomProperties
9
+ description: Render custom x-* resource properties in EventCatalog.
10
+ ---
11
+
12
+ import AddedIn from '@site/src/components/MDX/AddedIn';
13
+
14
+ <AddedIn version="4.3.0" />
15
+
16
+ `<CustomProperties />` and `<CustomProperty />` render organization-specific `x-*` properties from the current resource.
17
+
18
+ Both are built-in components, so you can use them in resource MDX without importing them.
19
+
20
+ Read [Custom properties on resources](/docs/development/customization/custom-properties) to learn how to define `x-*` properties and reference them from MDX or your own components.
21
+
22
+ ## Render all custom properties
23
+
24
+ Add custom properties to the resource frontmatter, then add `<CustomProperties />` to its Markdown content.
25
+
26
+ ```jsx title="/adrs/adr-001-use-transactional-outbox/index.mdx"
27
+ ---
28
+ id: adr-001-use-transactional-outbox
29
+ name: 'ADR-001: Publish product events via a transactional outbox'
30
+ version: 1.0.0
31
+ status: accepted
32
+ date: 2026-02-10
33
+ x-next-review-date: '2027-02-10'
34
+ x-risk-level: medium
35
+ ---
36
+
37
+ ## Context
38
+
39
+ The Product Catalog System publishes product changes through a transactional outbox.
40
+
41
+ <CustomProperties title="Review metadata" />
42
+ ```
43
+
44
+ ### Output
45
+
46
+ ![CustomProperties rendering review metadata on an architecture decision record](/img/docs/components/custom-properties.png)
47
+
48
+ Property names are converted into readable labels. For example, `x-next-review-date` is displayed as **Next Review Date**. The information icon beside each label shows the original `x-*` property name.
49
+
50
+ Strings, numbers, and booleans are rendered directly. Arrays are rendered as bullet lists, and nested objects are rendered recursively as grouped values.
51
+
52
+ ### CustomProperties props
53
+
54
+ | Name | Type | Default | Description |
55
+ | --- | --- | --- | --- |
56
+ | `title` | `string` | `Custom properties` | Heading displayed above the properties table. Pass an empty string to hide the heading. |
57
+
58
+ ## Render one custom property
59
+
60
+ Use `<CustomProperty />` when you only want to render one `x-*` value.
61
+
62
+ ```mdx
63
+ <CustomProperty name="x-risk-level" />
64
+ ```
65
+
66
+ Use `label` to override the generated property label.
67
+
68
+ ```mdx
69
+ <CustomProperty name="x-next-review-date" label="Review again on" />
70
+ ```
71
+
72
+ If the named property is not defined on the current resource, the component renders nothing.
73
+
74
+ ### CustomProperty props
75
+
76
+ | Name | Type | Required | Description |
77
+ | --- | --- | --- | --- |
78
+ | `name` | `string` | Yes | Name of the `x-*` property to render. |
79
+ | `label` | `string` | No | Label displayed for the property. By default, EventCatalog generates a label from `name`. |
80
+
81
+ ## Support
82
+
83
+ `<CustomProperties />` and `<CustomProperty />` are supported on domains, systems, services, agents, events, commands, queries, channels, flows, containers, entities, data products, diagrams, and ADRs.
84
+
85
+ The components require an `.mdx` resource file. Plain `.md` files do not evaluate MDX components.
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 7
2
+ sidebar_position: 8
3
3
  keywords:
4
4
  - components
5
5
  - remote schema
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 8
2
+ sidebar_position: 9
3
3
  keywords:
4
4
  - components
5
5
  sidebar_label: EntityMap
@@ -68,4 +68,4 @@ If you want to render a subset of the entities in the map, you can use the `enti
68
68
 
69
69
  In this example, only the `Order` and `Customer` entities will be chosen to be rendered in the map.
70
70
 
71
- If the `Order` or `Customer` entity references other entities, they will also be rendered in the map
71
+ If the `Order` or `Customer` entity references other entities, they will also be rendered in the map
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 9
2
+ sidebar_position: 10
3
3
  keywords:
4
4
  - components
5
5
  sidebar_label: Flow
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 10
2
+ sidebar_position: 11
3
3
  keywords:
4
4
  - components
5
5
  sidebar_label: Link
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 11
2
+ sidebar_position: 12
3
3
  keywords:
4
4
  - components
5
5
  - remote schema
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 12
2
+ sidebar_position: 13
3
3
  keywords:
4
4
  - components
5
5
  sidebar_label: MessageTable
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 13
2
+ sidebar_position: 14
3
3
  keywords:
4
4
  - components
5
5
  sidebar_label: NodeGraph
@@ -167,4 +167,3 @@ You can see a demo of this [here](https://demo.eventcatalog.dev/docs/domains/E-C
167
167
 
168
168
 
169
169
 
170
-
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 14
2
+ sidebar_position: 15
3
3
  keywords:
4
4
  - components
5
5
  sidebar_label: OpenAPI
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 15
2
+ sidebar_position: 16
3
3
  keywords:
4
4
  - components
5
5
  - prompt
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 16
2
+ sidebar_position: 17
3
3
  keywords:
4
4
  - components
5
5
  - remote schema
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 17
2
+ sidebar_position: 18
3
3
  keywords:
4
4
  - components
5
5
  sidebar_label: ResourceGroupTable
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 18
2
+ sidebar_position: 19
3
3
  keywords:
4
4
  - components
5
5
  sidebar_label: ResourceLink
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 19
2
+ sidebar_position: 20
3
3
  keywords:
4
4
  - components
5
5
  sidebar_label: Schema
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 20
2
+ sidebar_position: 21
3
3
  keywords:
4
4
  - components
5
5
  sidebar_label: SchemaViewer
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 21
2
+ sidebar_position: 22
3
3
  keywords:
4
4
  - components
5
5
  sidebar_label: Steps
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 22
2
+ sidebar_position: 23
3
3
  keywords:
4
4
  - components
5
5
  sidebar_label: Tabs
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 23
2
+ sidebar_position: 24
3
3
  keywords:
4
4
  - components
5
5
  sidebar_label: Tiles
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 24
2
+ sidebar_position: 25
3
3
  keywords:
4
4
  - components
5
5
  - visibility
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 6
2
+ sidebar_position: 8
3
3
  keywords:
4
4
  - EventCatalog themes
5
5
  - dark mode
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 5
2
+ sidebar_position: 7
3
3
  keywords:
4
4
  - EventCatalog tables
5
5
  sidebar_label: Tables
@@ -1,5 +1,5 @@
1
1
  ---
2
- sidebar_position: 7
2
+ sidebar_position: 9
3
3
  keywords:
4
4
  - EventCatalog resource icons
5
5
  - custom icons