@ptlm-azulejo/loader 1.1.3-alpha.251 → 1.1.3

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 (2) hide show
  1. package/package.json +1 -1
  2. package/CHANGELOG.md +0 -77
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ptlm-azulejo/loader",
3
- "version": "1.1.3-alpha.251",
3
+ "version": "1.1.3",
4
4
  "type": "module",
5
5
  "main": "./dist/index.umd.cjs",
6
6
  "module": "./dist/index.js",
package/CHANGELOG.md DELETED
@@ -1,77 +0,0 @@
1
- # Change Log
2
-
3
- ## 1.1.3
4
-
5
- ### Patch Changes
6
-
7
- - 06a62d2: Keep publishing the stylesheet as `./style.css`. Vite 6 stopped hardcoding that name in library mode and started deriving it from the entry name, which would have moved the file to `index.css` and broken the documented import path. The entry points and type definitions are unchanged.
8
- - 19ed560: Rebuild on Vite 8, which bundles with Rolldown and minifies CSS with Lightning CSS. The ESM, CJS and type entry points are unchanged, and `vue` stays external in both the ESM build and the UMD global. The published CSS is equivalent but slightly larger, because Lightning CSS expands shorthands to match the configured build target.
9
-
10
- ## 1.1.2
11
-
12
- ### Patch Changes
13
-
14
- - fbbee70: Formatting-only release. The repository adopted Prettier as its single
15
- formatting authority, and every shipped file was reformatted in one pass: the
16
- theme and font stylesheets (published verbatim, so their bytes change), each
17
- package's README, and the component sources behind `dist/`.
18
-
19
- No public API, prop, slot, event, CSS variable, class name or rendered output
20
- changed. Upgrading requires nothing, and skipping this version costs nothing.
21
-
22
- One internal cleanup rides along in `AzSegmentedControl`: a dead `null`
23
- initializer and the unreachable branch guarding it were removed from the
24
- keyboard handler. Arrow / Home / End navigation behaves exactly as before.
25
-
26
- ## 1.1.1
27
-
28
- ### Patch Changes
29
-
30
- - e5341cd: Documentation. Every package README now spells out both brands end to end instead
31
- of showing one snippet with an "or" comment: which preset stylesheet to import,
32
- which `.preset-*` class goes on `<html>` to select the theme at runtime,
33
- `data-theme` for light/dark, and which font package the project needs (Leroy
34
- Merlin → `@ptlm-azulejo/fonts-leroy-merlin`, Adeo → `@ptlm-azulejo/fonts-adeo`).
35
-
36
- No component behaviour, prop or token changed. The patch bump exists because npm
37
- ships `README.md` inside the tarball and renders it as the package page, so the
38
- corrected instructions only reach consumers on a release.
39
-
40
- ## 1.1.0
41
-
42
- ### Minor Changes
43
-
44
- - eb0b0f8: Make components follow the brand typeface, add the medium (500) font weight, and
45
- expose stable `data-testid` hooks.
46
-
47
- - Each preset now names its brand's typeface in `--font-family`
48
- (`presets/leroy-merlin.css` → LeroyMerlin, `presets/adeo.css` → Roboto), with
49
- `Arial, sans-serif` as the fallback stack.
50
- - Components apply that typeface on their root, so they follow the active brand
51
- instead of inheriting the host page's font. Opt out per component by setting
52
- `--font-family: inherit` on it.
53
- - `base.css` adds `--font-weight-medium: 500`, alongside the existing regular
54
- (400), semi-bold (600) and bold (700) weights.
55
- - Every component now exposes `data-testid` on its root and on meaningful
56
- sub-parts (`button` / `button-spinner`, `loader` / `loader-text`,
57
- `datepicker` / `datepicker-clear`, `segmented-control` /
58
- `segmented-control-segment`), so tests can target them without depending on
59
- CSS class names.
60
-
61
- As with upstream Mozaic, the presets **name** the typeface but ship no
62
- `@font-face` and no font binaries — loading the files stays the app's job, so you
63
- keep control of hosting, subsetting and preload. Until you load them the fallback
64
- stack renders and nothing breaks. Install the font package matching your brand
65
- alongside the preset:
66
-
67
- ```bash
68
- # Leroy Merlin
69
- yarn add @ptlm-azulejo/themes @ptlm-azulejo/fonts-leroy-merlin
70
- # Adeo
71
- yarn add @ptlm-azulejo/themes @ptlm-azulejo/fonts-adeo
72
- ```
73
-
74
- See the Fonts section of `packages/themes/README.md` for the full recipe.
75
-
76
- All notable changes to this project will be documented in this file.
77
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.