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