@react-native-aria/overlays 0.3.11 → 0.3.12
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 +17 -0
- package/babel.config.js +3 -0
- package/package.json +7 -4
- package/scripts/bootstrap.js +24 -0
- package/tsconfig.build.json +5 -0
package/CHANGELOG.md
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# @react-native-aria/overlays
|
2
|
+
|
3
|
+
## 0.3.12
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies
|
8
|
+
- @react-native-aria/utils@0.2.11
|
9
|
+
|
10
|
+
## 0.3.11
|
11
|
+
|
12
|
+
### Patch Changes
|
13
|
+
|
14
|
+
- - Popover arrow support [PR](https://github.com/gluestack/gluestack-ui/pull/1677)
|
15
|
+
- Popover animation improvements
|
16
|
+
|
17
|
+
- Popover top placement position for mobile
|
package/babel.config.js
ADDED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-aria/overlays",
|
3
|
-
"version": "0.3.
|
3
|
+
"version": "0.3.12",
|
4
4
|
"description": "Overlay utilities. Part of react-native-aria",
|
5
5
|
"main": "lib/commonjs/index",
|
6
6
|
"module": "lib/module/index",
|
@@ -35,7 +35,7 @@
|
|
35
35
|
"dependencies": {
|
36
36
|
"@react-aria/interactions": "^3.3.2",
|
37
37
|
"@react-aria/overlays": "^3.7.0",
|
38
|
-
"@react-native-aria/utils": "
|
38
|
+
"@react-native-aria/utils": "0.2.11",
|
39
39
|
"@react-stately/overlays": "^3.1.1",
|
40
40
|
"@react-types/overlays": "^3.4.0",
|
41
41
|
"dom-helpers": "^5.0.0"
|
@@ -45,13 +45,16 @@
|
|
45
45
|
"ios",
|
46
46
|
"android"
|
47
47
|
],
|
48
|
-
"
|
48
|
+
"homepage": "https://github.com/gluestack/gluestack-ui/tree/main/packages/react-native-aria/overlays#readme",
|
49
|
+
"repository": {
|
50
|
+
"type": "git",
|
51
|
+
"url": "git+https://github.com/gluestack/gluestack-ui.git"
|
52
|
+
},
|
49
53
|
"author": "nishan <nishanbende@gmail.com> (https://github.com/intergalacticspacehighway)",
|
50
54
|
"license": "MIT",
|
51
55
|
"bugs": {
|
52
56
|
"url": "https://github.com/intergalacticspacehighway/react-native-bob-mono/issues"
|
53
57
|
},
|
54
|
-
"homepage": "https://github.com/intergalacticspacehighway/react-native-bob-mono#readme",
|
55
58
|
"publishConfig": {
|
56
59
|
"registry": "https://registry.npmjs.org/"
|
57
60
|
},
|
@@ -0,0 +1,24 @@
|
|
1
|
+
const path = require('path');
|
2
|
+
const child_process = require('child_process');
|
3
|
+
|
4
|
+
const root = path.resolve(__dirname, '..');
|
5
|
+
const args = process.argv.slice(2);
|
6
|
+
const options = {
|
7
|
+
cwd: process.cwd(),
|
8
|
+
env: process.env,
|
9
|
+
stdio: 'inherit',
|
10
|
+
encoding: 'utf-8',
|
11
|
+
};
|
12
|
+
|
13
|
+
let result;
|
14
|
+
|
15
|
+
if (process.cwd() !== root || args.length) {
|
16
|
+
// We're not in the root of the project, or additional arguments were passed
|
17
|
+
// In this case, forward the command to `yarn`
|
18
|
+
result = child_process.spawnSync('yarn', args, options);
|
19
|
+
} else {
|
20
|
+
// If `yarn` is run without arguments, perform bootstrap
|
21
|
+
result = child_process.spawnSync('yarn', ['bootstrap'], options);
|
22
|
+
}
|
23
|
+
|
24
|
+
process.exitCode = result.status;
|