@fluentui-react-native/composition 0.11.5 → 0.11.6
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.json +21 -3
- package/CHANGELOG.md +5 -3
- package/babel.config.js +1 -1
- package/package.json +6 -5
- package/just.config.js +0 -3
package/CHANGELOG.json
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"name": "@fluentui-react-native/composition",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
6
|
-
"version": "0.11.
|
|
7
|
-
"tag": "@fluentui-react-native/composition_v0.11.
|
|
5
|
+
"date": "Tue, 15 Jul 2025 23:21:20 GMT",
|
|
6
|
+
"version": "0.11.6",
|
|
7
|
+
"tag": "@fluentui-react-native/composition_v0.11.6",
|
|
8
8
|
"comments": {
|
|
9
9
|
"none": [
|
|
10
10
|
{
|
|
@@ -30,14 +30,32 @@
|
|
|
30
30
|
"package": "@fluentui-react-native/composition",
|
|
31
31
|
"commit": "a245202877ef7f2be9ab5f0e1356b2270957e693",
|
|
32
32
|
"comment": "Run bump-versions"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"author": "jasonmo@microsoft.com",
|
|
36
|
+
"package": "@fluentui-react-native/composition",
|
|
37
|
+
"commit": "3e168e4363d1821818f219819d29532eace8d979",
|
|
38
|
+
"comment": "update scripts package to be fully js, use esm, and validate fully"
|
|
33
39
|
}
|
|
34
40
|
],
|
|
35
41
|
"patch": [
|
|
42
|
+
{
|
|
43
|
+
"author": "sanajmi@microsoft.com",
|
|
44
|
+
"package": "@fluentui-react-native/composition",
|
|
45
|
+
"commit": "9cbe229ec7f6363d229dcaef506921b8d9f47d7d",
|
|
46
|
+
"comment": "fix: run beachball sync"
|
|
47
|
+
},
|
|
36
48
|
{
|
|
37
49
|
"author": "jasonmo@microsoft.com",
|
|
38
50
|
"package": "@fluentui-react-native/composition",
|
|
39
51
|
"commit": "479b93cea460a26df70c55b5d3335927ed374713",
|
|
40
52
|
"comment": "update builds to use node16 settings and modern export maps"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"author": "jasonmo@microsoft.com",
|
|
56
|
+
"package": "@fluentui-react-native/composition",
|
|
57
|
+
"commit": "6b4d59227b1e9bbbf25cc93a3502015f663b363e",
|
|
58
|
+
"comment": "add react-native entrypoints that ensure metro targets TS files rather than JS files for bundling"
|
|
41
59
|
}
|
|
42
60
|
]
|
|
43
61
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
# Change Log - @fluentui-react-native/composition
|
|
2
2
|
|
|
3
|
-
<!-- This log was last generated on
|
|
3
|
+
<!-- This log was last generated on Tue, 15 Jul 2025 23:21:20 GMT and should not be manually modified. -->
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.11.
|
|
7
|
+
## 0.11.6
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Tue, 15 Jul 2025 23:21:20 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
+
- fix: run beachball sync (sanajmi@microsoft.com)
|
|
13
14
|
- update builds to use node16 settings and modern export maps (jasonmo@microsoft.com)
|
|
15
|
+
- add react-native entrypoints that ensure metro targets TS files rather than JS files for bundling (jasonmo@microsoft.com)
|
|
14
16
|
|
|
15
17
|
## 0.11.3
|
|
16
18
|
|
package/babel.config.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
module.exports = require('@fluentui-react-native/scripts/babel.config');
|
|
1
|
+
module.exports = require('@fluentui-react-native/scripts/configs/babel.config');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluentui-react-native/composition",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.6",
|
|
4
4
|
"description": "Composition factories for building HOCs",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"main": "lib-commonjs/index.js",
|
|
11
11
|
"module": "lib/index.js",
|
|
12
|
+
"react-native": "src/index.ts",
|
|
12
13
|
"exports": {
|
|
13
14
|
".": {
|
|
14
15
|
"import": "./lib/index.js",
|
|
@@ -34,10 +35,10 @@
|
|
|
34
35
|
"author": "",
|
|
35
36
|
"license": "MIT",
|
|
36
37
|
"dependencies": {
|
|
37
|
-
"@fluentui-react-native/immutable-merge": "1.2.
|
|
38
|
-
"@fluentui-react-native/use-slot": "0.6.
|
|
39
|
-
"@fluentui-react-native/use-slots": "0.10.
|
|
40
|
-
"@fluentui-react-native/use-styling": "0.13.
|
|
38
|
+
"@fluentui-react-native/immutable-merge": "1.2.5",
|
|
39
|
+
"@fluentui-react-native/use-slot": "0.6.6",
|
|
40
|
+
"@fluentui-react-native/use-slots": "0.10.6",
|
|
41
|
+
"@fluentui-react-native/use-styling": "0.13.6"
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|
|
43
44
|
"@babel/core": "^7.20.0",
|
package/just.config.js
DELETED