@metropolle/design-system 1.0.0-beta.2025.8.21.317.6121376 → 1.0.0-beta.2025.8.22.427.5fa8495

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.
@@ -273,19 +273,22 @@
273
273
  .mds-text--brand,
274
274
  .mds-brand-logo {
275
275
  font-size: var(--mds-typography-fontSize-4xl);
276
- line-height: var(--mds-typography-lineHeight-tight);
276
+ line-height: var(--mds-typography-lineHeight-brand);
277
277
  letter-spacing: var(--mds-typography-letterSpacing-brand);
278
- font-weight: var(--mds-typography-fontWeight-normal);
278
+ font-weight: var(--mds-typography-fontWeight-bold);
279
279
  color: var(--mds-color-text-primary);
280
+ margin: 0;
280
281
  }
281
282
 
282
- /* Logo brand class for consistent branding */
283
+ /* Logo brand class for consistent branding - matches @back implementation exactly */
283
284
  .logo-brand {
284
285
  font-size: var(--mds-typography-fontSize-4xl);
285
286
  color: var(--mds-color-text-primary);
287
+ line-height: var(--mds-typography-lineHeight-brand);
286
288
  letter-spacing: var(--mds-typography-letterSpacing-brand);
287
289
  font-weight: var(--mds-typography-fontWeight-bold);
288
290
  font-family: var(--mds-typography-fontFamily-brand);
291
+ margin: 0;
289
292
  }
290
293
 
291
294
  /* Brand Logo Responsive */
@@ -12,6 +12,7 @@
12
12
  --mds-typography-fontSize-2xl: 1.5rem;
13
13
  --mds-typography-fontSize-3xl: 1.875rem;
14
14
  --mds-typography-fontSize-4xl: 2.125rem;
15
+ --mds-typography-lineHeight-brand: 1.0;
15
16
  --mds-typography-lineHeight-tight: 1.2;
16
17
  --mds-typography-lineHeight-normal: 1.5;
17
18
  --mds-typography-lineHeight-relaxed: 1.75;
@@ -11,6 +11,7 @@ export interface DesignTokens {
11
11
  'fontSize-2xl': string;
12
12
  'fontSize-3xl': string;
13
13
  'fontSize-4xl': string;
14
+ 'lineHeight-brand': string;
14
15
  'lineHeight-tight': string;
15
16
  'lineHeight-normal': string;
16
17
  'lineHeight-relaxed': string;
@@ -11,6 +11,7 @@ export const tokens = {
11
11
  "fontSize-2xl": "1.5rem",
12
12
  "fontSize-3xl": "1.875rem",
13
13
  "fontSize-4xl": "2.125rem",
14
+ "lineHeight-brand": "1.0",
14
15
  "lineHeight-tight": "1.2",
15
16
  "lineHeight-normal": "1.5",
16
17
  "lineHeight-relaxed": "1.75",
@@ -163,6 +163,11 @@
163
163
  }
164
164
  },
165
165
  "lineHeight": {
166
+ "brand": {
167
+ "value": "1.0",
168
+ "type": "lineHeight",
169
+ "description": "Line height exato para logo brand (100%)"
170
+ },
166
171
  "tight": {
167
172
  "value": "1.2",
168
173
  "type": "lineHeight",
@@ -58,6 +58,11 @@
58
58
  }
59
59
  },
60
60
  "lineHeight": {
61
+ "brand": {
62
+ "value": "1.0",
63
+ "type": "lineHeight",
64
+ "description": "Line height exato para logo brand (100%)"
65
+ },
61
66
  "tight": {
62
67
  "value": "1.2",
63
68
  "type": "lineHeight",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metropolle/design-system",
3
- "version": "1.0.0-beta.2025.08.21.0317.6121376",
3
+ "version": "1.0.0-beta.2025.08.22.0427.5fa8495",
4
4
  "description": "Sistema de design unificado para a plataforma Metropolle",
5
5
  "type": "module",
6
6
  "main": "dist/react/index.js",
@@ -8,9 +8,9 @@
8
8
  "types": "dist/react/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
+ "types": "./dist/react/index.d.ts",
11
12
  "import": "./dist/react/index.esm.js",
12
- "require": "./dist/react/index.js",
13
- "types": "./dist/react/index.d.ts"
13
+ "require": "./dist/react/index.js"
14
14
  },
15
15
  "./tokens": {
16
16
  "import": "./dist/tokens/index.js",