@movable/ui 3.4.0 → 3.5.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.
package/README.md CHANGED
@@ -32,21 +32,38 @@ export default InkCustomComponent() {
32
32
  }
33
33
  ```
34
34
 
35
- ### Yarn Linking
35
+ ## Alpha Pre-release Workflow
36
36
 
37
- 1. `@movable/ui`: `yarn link`
38
- 1. `@movable/ui`: `npm run watch`
39
- 1. `front-end/packages/studio`: `yarn link /path/to/local/@movable/ui`
40
- 1. `front-end/packages/studio`: `yarn dev --force`
41
- 1. Be sure afterwards to unlink from `front-end/packages/studio`: `yarn unlink @movable/ui`
37
+ This project supports alpha releases for testing changes before full releases.
42
38
 
43
- If yarn gets confused, try unlinking, removing `node_modules` and following the steps again.
39
+ ### Manual Alpha Release
40
+ For testing specific features or changes:
44
41
 
45
- ### NPM Linking
42
+ 1. **Navigate to Actions tab** in GitHub repository
43
+ 2. **Select "Pre-Release to NPM"** workflow
44
+ 3. **Click "Run workflow"** button
45
+ 4. **Configure options:**
46
+ - `dist_tag`: Leave as `alpha` or customize (e.g., `beta`, `feature-test`)
47
+ - `increment`: Leave empty for auto-increment or specify (`patch`, `minor`, `major`)
48
+ 5. **Click "Run workflow"** to trigger the release
46
49
 
47
- tbd
50
+ **Result:** Creates version like `3.4.1-alpha.0` and publishes to npm with `@alpha` tag
48
51
 
49
- #### Linking to local Studio
52
+ ### Using Alpha Versions in Other Projects
53
+
54
+ Install alpha versions in your consuming projects:
55
+
56
+ ```bash
57
+ # Install latest alpha
58
+ npm install @movable/ui@alpha
59
+ yarn add @movable/ui@alpha
60
+
61
+ # Install specific alpha version
62
+ npm install @movable/ui@3.4.1-alpha.0
63
+ yarn add @movable/ui@3.4.1-alpha.0
64
+ ```
65
+
66
+ View all available versions at: https://www.npmjs.com/package/@movable/ui?activeTab=versions
50
67
 
51
68
  ## Conventional Commits
52
69
 
package/lib/index.mjs CHANGED
@@ -22126,7 +22126,7 @@ function kO({ Header: e, children: t, sx: n, ...o }) {
22126
22126
  alignItems: "center",
22127
22127
  pt: 3,
22128
22128
  px: 3,
22129
- pb: 6,
22129
+ pb: 8,
22130
22130
  ...n
22131
22131
  }, size: 12, ...o, children: t })] });
22132
22132
  }