@recursica/mantine-adapter 0.54.0 → 0.55.0

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 +15 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @recursica/mantine-adapter
2
2
 
3
+ ## 0.55.0
4
+
5
+ ### Minor Changes
6
+
7
+ - cb3796a: Added an `animate` prop to `Loader` (default `true`) — set `false` to freeze its CSS animation for a deterministic render, e.g. a visual-regression snapshot. The `Static*` Loader stories now use it, and the animated `Default`/`LayerTwoOval` stories are excluded from adapter-tester's visual regression.
8
+
9
+ ### Patch Changes
10
+
11
+ - cb3796a: Wired up unused design tokens (Accordion open state, Modal header/footer background, stacked Label width, TimePicker leading icon + placeholder opacity) and added `recursica-ignore` exemptions for tokens confirmed inapplicable by design.
12
+ - cb3796a: Fixed `Table` currency columns so header and footer cells right-align to match value cells. `Table.Th`/`Table.Cell` header context now supports `variant="currency"`.
13
+ - Updated dependencies [cb3796a]
14
+ - Updated dependencies [cb3796a]
15
+ - Updated dependencies [cb3796a]
16
+ - @recursica/adapter-common@0.28.0
17
+
3
18
  ## 0.54.0
4
19
 
5
20
  ### Minor Changes
package/package.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "url": "git+https://github.com/borderux/recursica.git",
14
14
  "directory": "packages/mantine-adapter"
15
15
  },
16
- "version": "0.54.0",
16
+ "version": "0.55.0",
17
17
  "type": "module",
18
18
  "main": "./dist/mantine-adapter.cjs",
19
19
  "module": "./dist/mantine-adapter.js",
@@ -57,7 +57,7 @@
57
57
  "build": "vite build --mode library",
58
58
  "build-storybook": "storybook build -o storybook-static",
59
59
  "lint": "eslint .",
60
- "storybook": "storybook dev -p 6011",
60
+ "storybook": "storybook dev",
61
61
  "analyze-tokens": "analyze-tokens --css ./recursica_variables_scoped.css --dir src/components --output token-analysis.json",
62
62
  "prebuild": "npm run analyze-tokens",
63
63
  "test": "vitest run --project unit",
@@ -103,7 +103,7 @@
103
103
  "vitest": "^3.2.4"
104
104
  },
105
105
  "dependencies": {
106
- "@recursica/adapter-common": "^0.27.0"
106
+ "@recursica/adapter-common": "^0.28.0"
107
107
  },
108
108
  "peerDependencies": {
109
109
  "@mantine/core": "^8.0.0",