@fluentui-react-native/experimental-expander 0.8.5 → 0.8.7
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 +27 -3
- package/CHANGELOG.md +5 -3
- package/babel.config.js +1 -1
- package/lib/Expander.d.ts +1 -1
- package/lib/Expander.d.ts.map +1 -1
- package/lib-commonjs/Expander.d.ts +1 -1
- package/lib-commonjs/Expander.d.ts.map +1 -1
- package/package.json +3 -2
- package/tsconfig.json +1 -1
- package/just.config.js +0 -3
package/CHANGELOG.json
CHANGED
|
@@ -2,17 +2,29 @@
|
|
|
2
2
|
"name": "@fluentui-react-native/experimental-expander",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
6
|
-
"version": "0.8.
|
|
7
|
-
"tag": "@fluentui-react-native/experimental-expander_v0.8.
|
|
5
|
+
"date": "Tue, 15 Jul 2025 23:21:11 GMT",
|
|
6
|
+
"version": "0.8.7",
|
|
7
|
+
"tag": "@fluentui-react-native/experimental-expander_v0.8.7",
|
|
8
8
|
"comments": {
|
|
9
9
|
"none": [
|
|
10
|
+
{
|
|
11
|
+
"author": "sanajmi@microsoft.com",
|
|
12
|
+
"package": "@fluentui-react-native/experimental-expander",
|
|
13
|
+
"commit": "405ca368dc3f2963bfc252a1952b1e14ff503499",
|
|
14
|
+
"comment": "fix: run `beachball sync` to sync package versions with NPM"
|
|
15
|
+
},
|
|
10
16
|
{
|
|
11
17
|
"author": "ruaraki@microsoft.com",
|
|
12
18
|
"package": "@fluentui-react-native/experimental-expander",
|
|
13
19
|
"commit": "a245202877ef7f2be9ab5f0e1356b2270957e693",
|
|
14
20
|
"comment": "Run bump-versions"
|
|
15
21
|
},
|
|
22
|
+
{
|
|
23
|
+
"author": "jasonmo@microsoft.com",
|
|
24
|
+
"package": "@fluentui-react-native/experimental-expander",
|
|
25
|
+
"commit": "3e168e4363d1821818f219819d29532eace8d979",
|
|
26
|
+
"comment": "update scripts package to be fully js, use esm, and validate fully"
|
|
27
|
+
},
|
|
16
28
|
{
|
|
17
29
|
"author": "jasonmo@microsoft.com",
|
|
18
30
|
"package": "@fluentui-react-native/experimental-expander",
|
|
@@ -27,6 +39,18 @@
|
|
|
27
39
|
}
|
|
28
40
|
],
|
|
29
41
|
"patch": [
|
|
42
|
+
{
|
|
43
|
+
"author": "jasonmo@microsoft.com",
|
|
44
|
+
"package": "@fluentui-react-native/experimental-expander",
|
|
45
|
+
"commit": "6b4d59227b1e9bbbf25cc93a3502015f663b363e",
|
|
46
|
+
"comment": "add react-native entrypoints that ensure metro targets TS files rather than JS files for bundling"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"author": "sanajmi@microsoft.com",
|
|
50
|
+
"package": "@fluentui-react-native/experimental-expander",
|
|
51
|
+
"commit": "9cbe229ec7f6363d229dcaef506921b8d9f47d7d",
|
|
52
|
+
"comment": "fix: run beachball sync"
|
|
53
|
+
},
|
|
30
54
|
{
|
|
31
55
|
"author": "jasonmo@microsoft.com",
|
|
32
56
|
"package": "@fluentui-react-native/experimental-expander",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
# Change Log - @fluentui-react-native/experimental-expander
|
|
2
2
|
|
|
3
|
-
<!-- This log was last generated on
|
|
3
|
+
<!-- This log was last generated on Tue, 15 Jul 2025 23:21:11 GMT and should not be manually modified. -->
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.8.
|
|
7
|
+
## 0.8.7
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Tue, 15 Jul 2025 23:21:11 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
+
- add react-native entrypoints that ensure metro targets TS files rather than JS files for bundling (jasonmo@microsoft.com)
|
|
14
|
+
- fix: run beachball sync (sanajmi@microsoft.com)
|
|
13
15
|
- update builds to use node16 settings and modern export maps (jasonmo@microsoft.com)
|
|
14
16
|
|
|
15
17
|
## 0.8.4
|
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/lib/Expander.d.ts
CHANGED
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
import type { ExpanderProps, ExpanderViewProps } from './Expander.types';
|
|
7
7
|
export declare const Expander: import("@fluentui-react-native/framework").ComposableComponent<ExpanderProps, {
|
|
8
8
|
root: ExpanderViewProps;
|
|
9
|
-
}, import("./Expander.types").ExpanderTokens,
|
|
9
|
+
}, import("./Expander.types").ExpanderTokens, import("@fluentui-react-native/framework").ObjectBase>;
|
|
10
10
|
//# sourceMappingURL=Expander.d.ts.map
|
package/lib/Expander.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Expander.d.ts","sourceRoot":"","sources":["../src/Expander.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AASH,OAAO,KAAK,EAAgB,aAAa,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAQvF,eAAO,MAAM,QAAQ;;
|
|
1
|
+
{"version":3,"file":"Expander.d.ts","sourceRoot":"","sources":["../src/Expander.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AASH,OAAO,KAAK,EAAgB,aAAa,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAQvF,eAAO,MAAM,QAAQ;;oGA8BnB,CAAC"}
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
import type { ExpanderProps, ExpanderViewProps } from './Expander.types';
|
|
7
7
|
export declare const Expander: import("@fluentui-react-native/framework").ComposableComponent<ExpanderProps, {
|
|
8
8
|
root: ExpanderViewProps;
|
|
9
|
-
}, import("./Expander.types").ExpanderTokens,
|
|
9
|
+
}, import("./Expander.types").ExpanderTokens, import("@fluentui-react-native/framework").ObjectBase>;
|
|
10
10
|
//# sourceMappingURL=Expander.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Expander.d.ts","sourceRoot":"","sources":["../src/Expander.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AASH,OAAO,KAAK,EAAgB,aAAa,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAQvF,eAAO,MAAM,QAAQ;;
|
|
1
|
+
{"version":3,"file":"Expander.d.ts","sourceRoot":"","sources":["../src/Expander.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AASH,OAAO,KAAK,EAAgB,aAAa,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAQvF,eAAO,MAAM,QAAQ;;oGA8BnB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluentui-react-native/experimental-expander",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.7",
|
|
4
4
|
"description": "A cross-platform Native Expander component using the Fluent Design System. Currently only implemented on windows",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Microsoft <fluentuinativeowners@microsoft.com>",
|
|
7
7
|
"homepage": "https://github.com/microsoft/fluentui-react-native",
|
|
8
8
|
"main": "lib-commonjs/index.js",
|
|
9
9
|
"module": "lib/index.js",
|
|
10
|
+
"react-native": "src/index.ts",
|
|
10
11
|
"exports": {
|
|
11
12
|
".": {
|
|
12
13
|
"import": "./lib/index.js",
|
|
@@ -33,7 +34,7 @@
|
|
|
33
34
|
"directory": "packages/experimental/Expander"
|
|
34
35
|
},
|
|
35
36
|
"dependencies": {
|
|
36
|
-
"@fluentui-react-native/framework": "0.14.
|
|
37
|
+
"@fluentui-react-native/framework": "0.14.6"
|
|
37
38
|
},
|
|
38
39
|
"devDependencies": {
|
|
39
40
|
"@babel/core": "^7.20.0",
|
package/tsconfig.json
CHANGED
package/just.config.js
DELETED