@xsolla/xui-bounding 0.96.0 → 0.97.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/README.md +26 -0
  2. package/package.json +3 -3
package/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # @xsolla/xui-bounding
2
+
3
+ Layout wrapper that constrains content within configurable min/max width boundaries.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ yarn add @xsolla/xui-bounding
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```tsx
14
+ import { Bounding } from '@xsolla/xui-bounding';
15
+
16
+ const MyComponent = () => (
17
+ <Bounding maxWidth={400} minWidth={140}>
18
+ <MyContent />
19
+ </Bounding>
20
+ );
21
+ ```
22
+
23
+ ## Exports
24
+
25
+ - `Bounding` — Container component with `minWidth` (default 140), `maxWidth` (default 400), `flexible` (inline-flex when true), and `minimal` (removes min-width constraint) props; extends `BoxProps`
26
+ - `BoundingProps` — TypeScript props interface for `Bounding`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xsolla/xui-bounding",
3
- "version": "0.96.0",
3
+ "version": "0.97.0",
4
4
  "main": "./web/index.js",
5
5
  "module": "./web/index.mjs",
6
6
  "types": "./web/index.d.ts",
@@ -10,8 +10,8 @@
10
10
  "build:native": "PLATFORM=native tsup"
11
11
  },
12
12
  "dependencies": {
13
- "@xsolla/xui-core": "0.96.0",
14
- "@xsolla/xui-primitives-core": "0.96.0"
13
+ "@xsolla/xui-core": "0.97.0",
14
+ "@xsolla/xui-primitives-core": "0.97.0"
15
15
  },
16
16
  "peerDependencies": {
17
17
  "react": ">=16.8.0",