@recursica/adapter-mantine-v8 1.0.0 → 1.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @recursica/adapter-mantine-v8
2
2
 
3
+ ## 1.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - f071d5d: Updated theme files from the latest Forge Recursica export: brand primary/secondary fonts swapped to Dongle/Nunito Sans, and the tertiary font role was dropped. No component code changes required.
8
+
3
9
  ## 0.55.2
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  A modern React component library built with TypeScript and **Mantine 8**. This package serves as the core UI kit for Recursica applications, providing reusable UI components, centralized theme configurations, and a comprehensive Storybook environment for development.
4
4
 
5
+ ## Storybook & PR Previews
6
+
7
+ You can view the current adapters Storybook at [https://borderux.github.io/recursica-adapter-mantine-v8/](https://borderux.github.io/recursica-adapter-mantine-v8/) Every pull request also gets its own preview build, deployed under `pr-preview/pr-<number>/` on the same site and linked automatically in the PR description. In order to create a preview though, your pull request must have the
8
+ word **preview** in the title.
9
+
10
+ ## Using Theme Forge to update styles
11
+
12
+ You can publish new themes by creating pull requests directly from [https://forge.recursica.com](https://forge.recursica.com).
13
+ Your pull request will have a preview build you can review your styles changes.
14
+
5
15
  ## Installation
6
16
 
7
17
  ```bash
package/llms.txt CHANGED
@@ -16,6 +16,7 @@ This adapter converts Recursica design tokens into Mantine-specific themes and c
16
16
  - [SETUP](SETUP.md): Installation and integration steps.
17
17
  - [ARCHITECTURE](ARCHITECTURE.md): Package architecture and dependencies.
18
18
  - [README](README.md)
19
+ - [ADAPTER_USAGE](ADAPTER_USAGE.md)
19
20
 
20
21
  ## Components
21
22
 
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "type": "git",
13
13
  "url": "git+https://github.com/borderux/recursica-adapter-mantine-v8.git"
14
14
  },
15
- "version": "1.0.0",
15
+ "version": "1.0.1",
16
16
  "publishConfig": {
17
17
  "access": "public"
18
18
  },
@@ -72,8 +72,9 @@
72
72
  "adapter-tester:automated": "adapter-tester",
73
73
  "adapter-tester:update-golden": "adapter-tester --update-golden",
74
74
  "format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css,scss}\"",
75
+ "validate-adapter-status": "node scripts/validate-adapter-status.mjs",
75
76
  "prepare": "node .husky/install.mjs",
76
- "precommit": "npm run check-types && npm run lint && npm run format",
77
+ "precommit": "npm run check-types && npm run lint && npm run format && npm run validate-adapter-status",
77
78
  "version": "changeset version",
78
79
  "release": "changeset publish"
79
80
  },
@@ -81,16 +82,16 @@
81
82
  "@changesets/cli": "^2.29.7",
82
83
  "@eslint/js": "^9.25.0",
83
84
  "@playwright/test": "^1.62.1",
84
- "@recursica/adapter-tester": "^5.0.2",
85
+ "@recursica/adapter-tester": "^5.1.1",
85
86
  "@recursica/recursica-postcss-vars": "^1.5.0",
86
87
  "@recursica/storybook-template": "^0.7.11",
87
88
  "@recursica/token-analyzer": "^1.5.0",
88
89
  "@storybook/addon-a11y": "^10.3.3",
89
- "@types/node": "^24.0.0",
90
90
  "@storybook/addon-docs": "^10.3.3",
91
91
  "@storybook/addon-mcp": "^0.4.2",
92
92
  "@storybook/addon-vitest": "^10.3.3",
93
93
  "@storybook/react-vite": "^10.3.3",
94
+ "@types/node": "^24.0.0",
94
95
  "@types/react": "^19.1.2",
95
96
  "@types/react-dom": "^19.1.2",
96
97
  "@vitejs/plugin-react": "^4.4.1",
@@ -2461,7 +2461,7 @@
2461
2461
  "fontWeight": "{tokens.font.weights.bold}",
2462
2462
  "fontStyle": "{tokens.font.styles.normal}",
2463
2463
  "letterSpacing": "{tokens.font.letter-spacings.default}",
2464
- "lineHeight": "{tokens.font.line-heights.default}",
2464
+ "lineHeight": "{tokens.font.line-heights.shortest}",
2465
2465
  "textCase": "{tokens.font.cases.original}",
2466
2466
  "textDecoration": "{tokens.font.decorations.none}"
2467
2467
  }
@@ -2474,7 +2474,7 @@
2474
2474
  "fontWeight": "{tokens.font.weights.semi-bold}",
2475
2475
  "fontStyle": "{tokens.font.styles.normal}",
2476
2476
  "letterSpacing": "{tokens.font.letter-spacings.default}",
2477
- "lineHeight": "{tokens.font.line-heights.default}",
2477
+ "lineHeight": "{tokens.font.line-heights.shortest}",
2478
2478
  "textCase": "{tokens.font.cases.original}",
2479
2479
  "textDecoration": "{tokens.font.decorations.none}"
2480
2480
  }
@@ -2487,7 +2487,7 @@
2487
2487
  "fontWeight": "{tokens.font.weights.regular}",
2488
2488
  "fontStyle": "{tokens.font.styles.normal}",
2489
2489
  "letterSpacing": "{tokens.font.letter-spacings.default}",
2490
- "lineHeight": "{tokens.font.line-heights.default}",
2490
+ "lineHeight": "{tokens.font.line-heights.shortest}",
2491
2491
  "textCase": "{tokens.font.cases.original}",
2492
2492
  "textDecoration": "{tokens.font.decorations.none}"
2493
2493
  }
@@ -2500,7 +2500,7 @@
2500
2500
  "fontWeight": "{tokens.font.weights.bold}",
2501
2501
  "fontStyle": "{tokens.font.styles.normal}",
2502
2502
  "letterSpacing": "{tokens.font.letter-spacings.default}",
2503
- "lineHeight": "{tokens.font.line-heights.default}",
2503
+ "lineHeight": "{tokens.font.line-heights.shorter}",
2504
2504
  "textCase": "{tokens.font.cases.original}",
2505
2505
  "textDecoration": "{tokens.font.decorations.none}"
2506
2506
  }
@@ -2513,7 +2513,7 @@
2513
2513
  "fontWeight": "{tokens.font.weights.medium}",
2514
2514
  "fontStyle": "{tokens.font.styles.normal}",
2515
2515
  "letterSpacing": "{tokens.font.letter-spacings.default}",
2516
- "lineHeight": "{tokens.font.line-heights.default}",
2516
+ "lineHeight": "{tokens.font.line-heights.shorter}",
2517
2517
  "textCase": "{tokens.font.cases.original}",
2518
2518
  "textDecoration": "{tokens.font.decorations.none}"
2519
2519
  }
@@ -2526,7 +2526,7 @@
2526
2526
  "fontWeight": "{tokens.font.weights.regular}",
2527
2527
  "fontStyle": "{tokens.font.styles.normal}",
2528
2528
  "letterSpacing": "{tokens.font.letter-spacings.default}",
2529
- "lineHeight": "{tokens.font.line-heights.default}",
2529
+ "lineHeight": "{tokens.font.line-heights.short}",
2530
2530
  "textCase": "{tokens.font.cases.original}",
2531
2531
  "textDecoration": "{tokens.font.decorations.none}"
2532
2532
  }
@@ -2539,7 +2539,7 @@
2539
2539
  "fontWeight": "{tokens.font.weights.light}",
2540
2540
  "fontStyle": "{tokens.font.styles.normal}",
2541
2541
  "letterSpacing": "{tokens.font.letter-spacings.default}",
2542
- "lineHeight": "{tokens.font.line-heights.default}",
2542
+ "lineHeight": "{tokens.font.line-heights.tall}",
2543
2543
  "textCase": "{tokens.font.cases.original}",
2544
2544
  "textDecoration": "{tokens.font.decorations.none}"
2545
2545
  }
@@ -2552,7 +2552,7 @@
2552
2552
  "fontWeight": "{tokens.font.weights.bold}",
2553
2553
  "fontStyle": "{tokens.font.styles.normal}",
2554
2554
  "letterSpacing": "{tokens.font.letter-spacings.default}",
2555
- "lineHeight": "{tokens.font.line-heights.default}",
2555
+ "lineHeight": "{tokens.font.line-heights.tall}",
2556
2556
  "textCase": "{tokens.font.cases.original}",
2557
2557
  "textDecoration": "{tokens.font.decorations.none}"
2558
2558
  }
@@ -2565,7 +2565,7 @@
2565
2565
  "fontWeight": "{tokens.font.weights.regular}",
2566
2566
  "fontStyle": "{tokens.font.styles.normal}",
2567
2567
  "letterSpacing": "{tokens.font.letter-spacings.default}",
2568
- "lineHeight": "{tokens.font.line-heights.default}",
2568
+ "lineHeight": "{tokens.font.line-heights.tallest}",
2569
2569
  "textCase": "{tokens.font.cases.original}",
2570
2570
  "textDecoration": "{tokens.font.decorations.none}"
2571
2571
  }
@@ -2578,7 +2578,7 @@
2578
2578
  "fontWeight": "{tokens.font.weights.regular}",
2579
2579
  "fontStyle": "{tokens.font.styles.normal}",
2580
2580
  "letterSpacing": "{tokens.font.letter-spacings.wide}",
2581
- "lineHeight": "{tokens.font.line-heights.default}",
2581
+ "lineHeight": "{tokens.font.line-heights.taller}",
2582
2582
  "textCase": "{tokens.font.cases.original}",
2583
2583
  "textDecoration": "{tokens.font.decorations.none}"
2584
2584
  }
@@ -2586,7 +2586,7 @@
2586
2586
  "caption": {
2587
2587
  "$type": "typography",
2588
2588
  "$value": {
2589
- "fontFamily": "{brand.fonts.primary}",
2589
+ "fontFamily": "{brand.fonts.secondary}",
2590
2590
  "fontSize": "{tokens.font.sizes.xs}",
2591
2591
  "fontWeight": "{tokens.font.weights.regular}",
2592
2592
  "fontStyle": "{tokens.font.styles.normal}",
@@ -2599,7 +2599,7 @@
2599
2599
  "overline": {
2600
2600
  "$type": "typography",
2601
2601
  "$value": {
2602
- "fontFamily": "{brand.fonts.primary}",
2602
+ "fontFamily": "{brand.fonts.secondary}",
2603
2603
  "fontSize": "{tokens.font.sizes.2xs}",
2604
2604
  "fontWeight": "{tokens.font.weights.medium}",
2605
2605
  "fontStyle": "{tokens.font.styles.normal}",
@@ -2614,15 +2614,11 @@
2614
2614
  "$type": "fontFamily",
2615
2615
  "primary": {
2616
2616
  "$type": "fontFamily",
2617
- "$value": "{tokens.font.typefaces.lexend}"
2617
+ "$value": "{tokens.font.typefaces.dongle}"
2618
2618
  },
2619
2619
  "secondary": {
2620
2620
  "$type": "fontFamily",
2621
- "$value": "{tokens.font.typefaces.bellota-text}"
2622
- },
2623
- "tertiary": {
2624
- "$type": "fontFamily",
2625
- "$value": "{tokens.font.typefaces.quattrocento}"
2621
+ "$value": "{tokens.font.typefaces.nunito-sans}"
2626
2622
  }
2627
2623
  },
2628
2624
  "layer": {
@@ -2670,8 +2666,8 @@
2670
2666
  },
2671
2667
  "$extensions": {
2672
2668
  "recursica.metadata": {
2673
- "exportedAt": "2026-08-29T19:56:06.626Z",
2674
- "version": "0.26.2"
2669
+ "exportedAt": "2026-09-04T14:32:17.569Z",
2670
+ "version": "0.27.1"
2675
2671
  }
2676
2672
  }
2677
- }
2673
+ }
@@ -410,7 +410,10 @@
410
410
  "$type": "fontFamily",
411
411
  "lexend": {
412
412
  "$type": "fontFamily",
413
- "$value": ["Lexend", "sans-serif"],
413
+ "$value": [
414
+ "Lexend",
415
+ "sans-serif"
416
+ ],
414
417
  "$extensions": {
415
418
  "com.google.fonts": {
416
419
  "url": "https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap",
@@ -458,7 +461,10 @@
458
461
  },
459
462
  "bellota-text": {
460
463
  "$type": "fontFamily",
461
- "$value": ["Bellota Text", "sans-serif"],
464
+ "$value": [
465
+ "Bellota Text",
466
+ "sans-serif"
467
+ ],
462
468
  "$extensions": {
463
469
  "com.google.fonts": {
464
470
  "url": "https://fonts.googleapis.com/css2?family=Bellota+Text&display=swap"
@@ -493,7 +499,10 @@
493
499
  },
494
500
  "quattrocento": {
495
501
  "$type": "fontFamily",
496
- "$value": ["Quattrocento", "serif"],
502
+ "$value": [
503
+ "Quattrocento",
504
+ "serif"
505
+ ],
497
506
  "$extensions": {
498
507
  "com.google.fonts": {
499
508
  "url": "https://fonts.googleapis.com/css2?family=Quattrocento&display=swap"
@@ -509,6 +518,78 @@
509
518
  }
510
519
  ]
511
520
  }
521
+ },
522
+ "dongle": {
523
+ "$type": "fontFamily",
524
+ "$value": [
525
+ "Dongle",
526
+ "sans-serif"
527
+ ],
528
+ "$extensions": {
529
+ "com.google.fonts": {
530
+ "url": "https://fonts.googleapis.com/css2?family=Dongle:wght@300;400;700&display=swap"
531
+ },
532
+ "variants": [
533
+ {
534
+ "weight": "{tokens.font.weights.light}",
535
+ "style": "{tokens.font.styles.normal}"
536
+ },
537
+ {
538
+ "weight": "{tokens.font.weights.regular}",
539
+ "style": "{tokens.font.styles.normal}"
540
+ },
541
+ {
542
+ "weight": "{tokens.font.weights.bold}",
543
+ "style": "{tokens.font.styles.normal}"
544
+ }
545
+ ]
546
+ }
547
+ },
548
+ "nunito-sans": {
549
+ "$type": "fontFamily",
550
+ "$value": [
551
+ "Nunito Sans",
552
+ "sans-serif"
553
+ ],
554
+ "$extensions": {
555
+ "com.google.fonts": {
556
+ "url": "https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;500;600;700;800;900&display=swap"
557
+ },
558
+ "variants": [
559
+ {
560
+ "weight": "{tokens.font.weights.extra-light}",
561
+ "style": "{tokens.font.styles.normal}"
562
+ },
563
+ {
564
+ "weight": "{tokens.font.weights.light}",
565
+ "style": "{tokens.font.styles.normal}"
566
+ },
567
+ {
568
+ "weight": "{tokens.font.weights.regular}",
569
+ "style": "{tokens.font.styles.normal}"
570
+ },
571
+ {
572
+ "weight": "{tokens.font.weights.medium}",
573
+ "style": "{tokens.font.styles.normal}"
574
+ },
575
+ {
576
+ "weight": "{tokens.font.weights.semi-bold}",
577
+ "style": "{tokens.font.styles.normal}"
578
+ },
579
+ {
580
+ "weight": "{tokens.font.weights.bold}",
581
+ "style": "{tokens.font.styles.normal}"
582
+ },
583
+ {
584
+ "weight": "{tokens.font.weights.extra-bold}",
585
+ "style": "{tokens.font.styles.normal}"
586
+ },
587
+ {
588
+ "weight": "{tokens.font.weights.black}",
589
+ "style": "{tokens.font.styles.normal}"
590
+ }
591
+ ]
592
+ }
512
593
  }
513
594
  },
514
595
  "weights": {
@@ -792,8 +873,8 @@
792
873
  },
793
874
  "$extensions": {
794
875
  "recursica.metadata": {
795
- "exportedAt": "2026-08-29T19:56:06.621Z",
796
- "version": "0.26.2"
876
+ "exportedAt": "2026-09-04T14:32:17.564Z",
877
+ "version": "0.27.1"
797
878
  }
798
879
  }
799
- }
880
+ }