@ptlm-azulejo/themes 1.3.1-alpha.99 → 1.3.2

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/README.md CHANGED
@@ -45,15 +45,15 @@ styles**:
45
45
  **Leroy Merlin projects**
46
46
 
47
47
  ```js
48
- import "@ptlm-azulejo/themes/presets/leroy-merlin.css"; // includes base.css
49
- import "@ptlm-azulejo/button/style.css";
48
+ import '@ptlm-azulejo/themes/presets/leroy-merlin.css' // includes base.css
49
+ import '@ptlm-azulejo/button/style.css'
50
50
  ```
51
51
 
52
52
  **Adeo projects**
53
53
 
54
54
  ```js
55
- import "@ptlm-azulejo/themes/presets/adeo.css"; // includes base.css
56
- import "@ptlm-azulejo/button/style.css";
55
+ import '@ptlm-azulejo/themes/presets/adeo.css' // includes base.css
56
+ import '@ptlm-azulejo/button/style.css'
57
57
  ```
58
58
 
59
59
  > Each preset `@import`s `base.css` (the structural + status tokens **and** a
@@ -107,8 +107,8 @@ yarn add @ptlm-azulejo/themes @ptlm-azulejo/fonts-leroy-merlin
107
107
  ```
108
108
 
109
109
  ```js
110
- import "@ptlm-azulejo/themes/presets/leroy-merlin.css";
111
- import "@ptlm-azulejo/fonts-leroy-merlin";
110
+ import '@ptlm-azulejo/themes/presets/leroy-merlin.css'
111
+ import '@ptlm-azulejo/fonts-leroy-merlin'
112
112
  ```
113
113
 
114
114
  Until you load a typeface the fallback stack renders, so nothing breaks — it just
@@ -159,8 +159,8 @@ than inheriting your page's font. To hand a component back to the page font:
159
159
  Just swap the root class (both presets can be imported at the same time):
160
160
 
161
161
  ```js
162
- document.documentElement.classList.remove("preset-lm", "preset-adeo");
163
- document.documentElement.classList.add("preset-adeo");
162
+ document.documentElement.classList.remove('preset-lm', 'preset-adeo')
163
+ document.documentElement.classList.add('preset-adeo')
164
164
  ```
165
165
 
166
166
  ## Creating a custom brand
@@ -171,7 +171,7 @@ Define the same brand tokens of the contract under your brand class:
171
171
  .preset-my-brand {
172
172
  /* Typeface. The 400/500/600/700 weights come from base.css; override them here
173
173
  only if your typeface lacks those cuts. */
174
- --font-family: "Inter", Arial, sans-serif;
174
+ --font-family: 'Inter', Arial, sans-serif;
175
175
 
176
176
  --color-brand: #6c2bd9;
177
177
  --color-brand-dark: #531fb0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ptlm-azulejo/themes",
3
- "version": "1.3.1-alpha.99",
3
+ "version": "1.3.2",
4
4
  "description": "Multi-brand theme tokens (Leroy Merlin, Adeo) for the @ptlm-azulejo components, aligned with the Mozaic Design System.",
5
5
  "type": "module",
6
6
  "exports": {
package/presets/adeo.css CHANGED
@@ -12,7 +12,7 @@
12
12
 
13
13
  /* Structural + status tokens (brand-agnostic) come bundled with the preset, so
14
14
  consumers only need to import this single file. */
15
- @import "../base.css";
15
+ @import '../base.css';
16
16
 
17
17
  .preset-adeo {
18
18
  /* ── Palette · Teal (primary) ─────────────────────────────── */
@@ -64,7 +64,7 @@
64
64
  --color-brand-dark: var(--color-teal-700);
65
65
  --color-brand-light: var(--color-teal-100);
66
66
 
67
- --font-family: "Roboto", Arial, sans-serif;
67
+ --font-family: 'Roboto', Arial, sans-serif;
68
68
 
69
69
  /* ── Functional tokens · light (default) ──────────────────── */
70
70
  --color-text-primary: #000000;
@@ -89,7 +89,7 @@
89
89
  }
90
90
 
91
91
  /* ── Functional tokens · dark ────────────────────────────────── */
92
- .preset-adeo[data-theme="dark"] {
92
+ .preset-adeo[data-theme='dark'] {
93
93
  --color-text-primary: #e6e6e6;
94
94
  --color-text-secondary: #cccccc;
95
95
  --color-text-tertiary: #b3b3b3;
@@ -112,7 +112,7 @@
112
112
 
113
113
  /* ── Automatic fallback: follow the OS when data-theme is unset ── */
114
114
  @media (prefers-color-scheme: dark) {
115
- .preset-adeo:not([data-theme="light"]) {
115
+ .preset-adeo:not([data-theme='light']) {
116
116
  --color-text-primary: #e6e6e6;
117
117
  --color-text-secondary: #cccccc;
118
118
  --color-text-tertiary: #b3b3b3;
@@ -12,7 +12,7 @@
12
12
 
13
13
  /* Structural + status tokens (brand-agnostic) come bundled with the preset, so
14
14
  consumers only need to import this single file. */
15
- @import "../base.css";
15
+ @import '../base.css';
16
16
 
17
17
  .preset-lm {
18
18
  /* ── Palette · Green (primary) ────────────────────────────── */
@@ -42,7 +42,7 @@
42
42
  --color-brand-dark: var(--color-green-700);
43
43
  --color-brand-light: var(--color-green-100);
44
44
 
45
- --font-family: "LeroyMerlin", Arial, sans-serif;
45
+ --font-family: 'LeroyMerlin', Arial, sans-serif;
46
46
 
47
47
  /* ── Functional tokens · light (default) ──────────────────── */
48
48
  --color-text-primary: #000000;
@@ -67,7 +67,7 @@
67
67
  }
68
68
 
69
69
  /* ── Functional tokens · dark ────────────────────────────────── */
70
- .preset-lm[data-theme="dark"] {
70
+ .preset-lm[data-theme='dark'] {
71
71
  --color-text-primary: #e6e6e6;
72
72
  --color-text-secondary: #cccccc;
73
73
  --color-text-tertiary: #b3b3b3;
@@ -90,7 +90,7 @@
90
90
 
91
91
  /* ── Automatic fallback: follow the OS when data-theme is unset ── */
92
92
  @media (prefers-color-scheme: dark) {
93
- .preset-lm:not([data-theme="light"]) {
93
+ .preset-lm:not([data-theme='light']) {
94
94
  --color-text-primary: #e6e6e6;
95
95
  --color-text-secondary: #cccccc;
96
96
  --color-text-tertiary: #b3b3b3;
package/CHANGELOG.md DELETED
@@ -1,86 +0,0 @@
1
- # @ptlm-azulejo/themes
2
-
3
- ## 1.3.1
4
-
5
- ### Patch Changes
6
-
7
- - edbe6d9: Presets no longer bundle the scoped UA preflight that reset `button` / `input` / `select` / `textarea` under `.preset-lm` / `.preset-adeo`. Token and preset imports are unchanged.
8
-
9
- ## 1.3.0
10
-
11
- ### Minor Changes
12
-
13
- - dda8cdb: Add a scoped UA preflight to themes (bundled with every preset) so Azulejo
14
- controls don't depend on the host running Tailwind Preflight. Drop the
15
- per-segment button-reset utilities from SegmentedControl. Re-export
16
- `SegmentedControlItem`, `SegmentedControlSize`, and `SegmentedControlUi`
17
- from the package entry so consumers can import the types again.
18
-
19
- ## 1.2.1
20
-
21
- ### Patch Changes
22
-
23
- - e5341cd: Documentation. Every package README now spells out both brands end to end instead
24
- of showing one snippet with an "or" comment: which preset stylesheet to import,
25
- which `.preset-*` class goes on `<html>` to select the theme at runtime,
26
- `data-theme` for light/dark, and which font package the project needs (Leroy
27
- Merlin → `@ptlm-azulejo/fonts-leroy-merlin`, Adeo → `@ptlm-azulejo/fonts-adeo`).
28
-
29
- No component behaviour, prop or token changed. The patch bump exists because npm
30
- ships `README.md` inside the tarball and renders it as the package page, so the
31
- corrected instructions only reach consumers on a release.
32
-
33
- ## 1.2.0
34
-
35
- ### Minor Changes
36
-
37
- - eb0b0f8: Make components follow the brand typeface, add the medium (500) font weight, and
38
- expose stable `data-testid` hooks.
39
-
40
- - Each preset now names its brand's typeface in `--font-family`
41
- (`presets/leroy-merlin.css` → LeroyMerlin, `presets/adeo.css` → Roboto), with
42
- `Arial, sans-serif` as the fallback stack.
43
- - Components apply that typeface on their root, so they follow the active brand
44
- instead of inheriting the host page's font. Opt out per component by setting
45
- `--font-family: inherit` on it.
46
- - `base.css` adds `--font-weight-medium: 500`, alongside the existing regular
47
- (400), semi-bold (600) and bold (700) weights.
48
- - Every component now exposes `data-testid` on its root and on meaningful
49
- sub-parts (`button` / `button-spinner`, `loader` / `loader-text`,
50
- `datepicker` / `datepicker-clear`, `segmented-control` /
51
- `segmented-control-segment`), so tests can target them without depending on
52
- CSS class names.
53
-
54
- As with upstream Mozaic, the presets **name** the typeface but ship no
55
- `@font-face` and no font binaries — loading the files stays the app's job, so you
56
- keep control of hosting, subsetting and preload. Until you load them the fallback
57
- stack renders and nothing breaks. Install the font package matching your brand
58
- alongside the preset:
59
-
60
- ```bash
61
- # Leroy Merlin
62
- yarn add @ptlm-azulejo/themes @ptlm-azulejo/fonts-leroy-merlin
63
- # Adeo
64
- yarn add @ptlm-azulejo/themes @ptlm-azulejo/fonts-adeo
65
- ```
66
-
67
- See the Fonts section of `packages/themes/README.md` for the full recipe.
68
-
69
- ## 1.1.0
70
-
71
- ### Minor Changes
72
-
73
- - 53000f7: Add Mozaic-aligned multi-brand theming support.
74
-
75
- - New `@ptlm-azulejo/themes` package with structural/status tokens in `base.css`
76
- and brand presets selected by a root class (`presets/leroy-merlin.css`,
77
- `presets/adeo.css`), via `.preset-lm` / `.preset-adeo` and `data-theme` for
78
- light/dark.
79
- - `AzButton` now consumes theme tokens through utilities mapped in
80
- `@theme inline`, working across both brands and in light/dark.
81
-
82
- **BREAKING:** components no longer bake brand colors. The consumer must now
83
- import `@ptlm-azulejo/themes/base.css` + a preset and apply the
84
- `.preset-lm`/`.preset-adeo` class (and optional `data-theme="dark"`) on the root
85
- element; otherwise components render uncolored. See the migration notes in
86
- `packages/themes/README.md`.