@ptlm-azulejo/themes 1.3.0 → 1.3.1

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/base.css CHANGED
@@ -16,8 +16,6 @@
16
16
  * // <html class="preset-lm" data-theme="dark"> (dark)
17
17
  */
18
18
 
19
- @import "./preflight.css";
20
-
21
19
  :root {
22
20
  /* ── Tailwind base scale (shipped to the consumer) ───────────
23
21
  Utilities like px-4, gap-2, w-4 compile to calc(var(--spacing)*N).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ptlm-azulejo/themes",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
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/preflight.css DELETED
@@ -1,48 +0,0 @@
1
- /**
2
- * @ptlm-azulejo/themes — preflight.css
3
- *
4
- * Minimal UA wipe for hosts that activate an Azulejo brand preset.
5
- * Scoped to `.preset-lm` / `.preset-adeo` (the same root class consumers already
6
- * apply). Storybook also runs full Tailwind Preflight via root `tailwind.css`;
7
- * this file is what bare consumers get when they only import a preset +
8
- * component `style.css`.
9
- *
10
- * Uses `:where(…)` so component utilities (e.g. `border`, `bg-accent`,
11
- * `cursor-not-allowed`) keep winning on specificity.
12
- *
13
- * Bundled from `base.css` — do not import this file on its own unless you know
14
- * you need the wipe without tokens.
15
- */
16
-
17
- :is(.preset-lm, .preset-adeo),
18
- :is(.preset-lm, .preset-adeo) :where(*, *::before, *::after) {
19
- box-sizing: border-box;
20
- }
21
-
22
- :is(.preset-lm, .preset-adeo)
23
- :where(button, input, select, textarea, optgroup) {
24
- font: inherit;
25
- letter-spacing: inherit;
26
- color: inherit;
27
- margin: 0;
28
- padding: 0;
29
- border: 0 solid transparent;
30
- border-radius: 0;
31
- background-color: transparent;
32
- appearance: none;
33
- }
34
-
35
- :is(.preset-lm, .preset-adeo)
36
- :where(button, [type="button"], [type="reset"], [type="submit"]) {
37
- cursor: pointer;
38
- }
39
-
40
- :is(.preset-lm, .preset-adeo)
41
- :where(
42
- button:disabled,
43
- [type="button"]:disabled,
44
- [type="reset"]:disabled,
45
- [type="submit"]:disabled
46
- ) {
47
- cursor: default;
48
- }