@metropolle/design-system 1.0.0-beta.2025.9.30.1300.746e606 → 1.0.0-beta.2025.9.30.1603.ca4db6e

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.
@@ -100,3 +100,64 @@ html[data-theme='light'] .mermaid :is(g.node, g.cluster) g.label tspan,
100
100
  html[data-theme='light'] .mermaid :is(g.node, g.cluster) g.label foreignObject * {
101
101
  font-weight: var(--mds-mermaid-node-font-weight, 600);
102
102
  }
103
+
104
+ /*
105
+ * Metropolle Official Mermaid Diagram Classes
106
+ * Based on Arquitetura.md color standards - compatible with light/dark themes
107
+ */
108
+
109
+ /* Frontend/UI Components */
110
+ .mds-frontend {
111
+ fill: #e3f2fd;
112
+ stroke: #1976d2;
113
+ stroke-width: 2px;
114
+ color: #000;
115
+ }
116
+
117
+ /* AWS/Infrastructure Components */
118
+ .mds-aws {
119
+ fill: #fff3e0;
120
+ stroke: #f57c00;
121
+ stroke-width: 2px;
122
+ color: #000;
123
+ }
124
+
125
+ /* Runtime/Process Components */
126
+ .mds-runtime {
127
+ fill: #f3e5f5;
128
+ stroke: #8e24aa;
129
+ stroke-width: 2px;
130
+ color: #000;
131
+ }
132
+
133
+ /* Storage/Data Components */
134
+ .mds-storage {
135
+ fill: #e8f5e8;
136
+ stroke: #388e3c;
137
+ stroke-width: 2px;
138
+ color: #000;
139
+ }
140
+
141
+ /* Security/Authentication Components */
142
+ .mds-security {
143
+ fill: #ffebee;
144
+ stroke: #d32f2f;
145
+ stroke-width: 2px;
146
+ color: #000;
147
+ }
148
+
149
+ /* Results/Output Components */
150
+ .mds-result {
151
+ fill: #fce4ec;
152
+ stroke: #c2185b;
153
+ stroke-width: 2px;
154
+ color: #000;
155
+ }
156
+
157
+ /* Legacy compatibility aliases */
158
+ .pastelBlue { fill: #e3f2fd; stroke: #1976d2; stroke-width: 2px; color: #000; }
159
+ .accentOrange { fill: #fff3e0; stroke: #f57c00; stroke-width: 2px; color: #000; }
160
+ .pastelPurple { fill: #f3e5f5; stroke: #8e24aa; stroke-width: 2px; color: #000; }
161
+ .pastelGreen { fill: #e8f5e8; stroke: #388e3c; stroke-width: 2px; color: #000; }
162
+ .accentRed { fill: #ffebee; stroke: #d32f2f; stroke-width: 2px; color: #000; }
163
+ .pastelPink { fill: #fce4ec; stroke: #c2185b; stroke-width: 2px; color: #000; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metropolle/design-system",
3
- "version": "1.0.0-beta.2025.09.30.1300.746e606",
3
+ "version": "1.0.0-beta.2025.09.30.1603.ca4db6e",
4
4
  "description": "Sistema de design unificado para a plataforma Metropolle",
5
5
  "type": "module",
6
6
  "main": "dist/react/index.js",