@recursica/mui-adapter 0.7.0 → 0.9.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 (3) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/SETUP.md +2 -1
  3. package/package.json +4 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @recursica/mui-adapter
2
2
 
3
+ ## 0.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - ccf7d19: Updated to cause a new version release
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [ccf7d19]
12
+ - @recursica/official-release@0.3.0
13
+
14
+ ## 0.8.0
15
+
16
+ ### Minor Changes
17
+
18
+ - 4329756: Added official release and update mcp
19
+
20
+ ### Patch Changes
21
+
22
+ - 8897f92: Updated agent instructions for MCP
23
+ - 4329756: Initialize `@recursica/official-release` package to version and distribute design tokens, configure automatic postinstall copying logic, and integrate fallback setup checks.
24
+ - Updated dependencies [4329756]
25
+ - Updated dependencies [4329756]
26
+ - @recursica/official-release@0.2.0
27
+
3
28
  ## 0.7.0
4
29
 
5
30
  ### Minor Changes
package/SETUP.md CHANGED
@@ -24,7 +24,8 @@ npm install @mui/material@>=7.0.0 @emotion/react@>=11.14.0 @emotion/styled@>=11.
24
24
 
25
25
  Before consuming Recursica components, integrate the CSS and design tokens into your application:
26
26
 
27
- 1. **Export Theme Files**: Export theme files from [Forge Recursica](https://forge.recursica.com) into your repository to generate `recursica_variables_scoped.css` and its associated JSON files. Its suggested to put it in the root of your project.
27
+ 1. **Theme Files Setup**: When you install `@recursica/mui-adapter`, a postinstall script automatically creates default theme files (including `recursica_variables_scoped.css` and JSON config files) in your project root. If they are missing, simply run `npm install` to create them. To customize or update these variables, you should use [Forge Recursica](https://forge.recursica.com) to export the updated theme files into your project.
28
+ > [!IMPORTANT] > **AI Agent Directive**: The theme files (`recursica_variables_scoped.css` and associated JSON files) are created at the project root automatically via `npm install`. If they are not present, instruct the user to run `npm install`. Do NOT attempt to generate, mock, or write a placeholder CSS/JSON file yourself. When updates to these files are needed, instruct the user to export them from [Forge Recursica](https://forge.recursica.com) and replace the existing ones.
28
29
  2. **Integrate CSS**: Import `recursica_variables_scoped.css` and the MUI adapter CSS `style.css` into your application entrypoint (e.g., `main.tsx` or `App.tsx`).
29
30
 
30
31
  ```tsx
package/package.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "url": "git+https://github.com/borderux/recursica.git",
14
14
  "directory": "packages/mui-adapter"
15
15
  },
16
- "version": "0.7.0",
16
+ "version": "0.9.0",
17
17
  "publishConfig": {
18
18
  "access": "public"
19
19
  },
@@ -98,6 +98,9 @@
98
98
  "vite-plugin-svgr": "^4.3.0",
99
99
  "vitest": "^3.2.4"
100
100
  },
101
+ "dependencies": {
102
+ "@recursica/official-release": "*"
103
+ },
101
104
  "peerDependencies": {
102
105
  "@emotion/react": "^11.14.0",
103
106
  "@emotion/styled": "^11.14.0",