@fvc/notification 1.2.3-rc.0 → 1.2.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/CHANGELOG.md +30 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # @fvc/notification
2
2
 
3
+ ## 1.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 740f7cc: Add CSS customisation API to `@fvc/notification`, `@fvc/badge`, and `@fvc/card`. Each package now ships a `src/styles/variables.scss` with `--<package>-*` CSS custom properties covering all visual tokens (colours, typography, spacing, border-radius). Hard-coded values in the component SCSS and JSX files are replaced with references to these variables, giving consumers a declarative theming surface without forking any component.
8
+ - 51a1a4c: Include `CHANGELOG.md` inside every published `@fvc/*` tarball.
9
+
10
+ Until this patch, `packages/<pkg>/package.json#files` only declared
11
+ `dist/lib/index.js`, `dist/lib/<pkg>`, and `package.json`, which
12
+ meant `npm pack` skipped the package's `CHANGELOG.md` even though
13
+ it is generated by Changesets at release time and lives at the
14
+ package root. Consumers had no way to read the changelog after
15
+ installing the package — they had to visit GitLab.
16
+
17
+ This patch adds `"CHANGELOG.md"` to every publishable package's
18
+ `files` array, including the scaffolder template
19
+ (`codegen/templates/component/package.json.hbs`) so new packages
20
+ inherit the setting from day one. After this ships, running
21
+ `npm view @fvc/<pkg>@<latest>` returns a tarball whose manifest
22
+ includes `CHANGELOG.md`, and `cat node_modules/@fvc/<pkg>/CHANGELOG.md`
23
+ on the consumer side returns the changelog content directly.
24
+
25
+ No component source changes. This is metadata-only, but it is a
26
+ patch bump on every package because the published-tarball contents
27
+ change — a deliberately conservative semver choice for a release
28
+ that materially affects what consumers receive on `npm install`.
29
+
30
+ - Updated dependencies [51a1a4c]
31
+ - @fvc/icons@1.1.5
32
+
3
33
  ## 1.2.3-rc.0
4
34
 
5
35
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fvc/notification",
3
- "version": "1.2.3-rc.0",
3
+ "version": "1.2.3",
4
4
  "main": "./dist/lib/index.js",
5
5
  "types": "./dist/lib/notification/src/index.d.ts",
6
6
  "files": [
@@ -29,7 +29,7 @@
29
29
  "test": "bun test --preload ../../tests/happydom.ts --preload ../../tests/testing-library.tsx"
30
30
  },
31
31
  "peerDependencies": {
32
- "@fvc/icons": "^1.1.5-rc.0",
32
+ "@fvc/icons": "^1.1.5",
33
33
  "react": "^18.0.0",
34
34
  "antd": "^5.0.0"
35
35
  },