@fluentui-react-native/use-tokens 0.6.5 → 0.6.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 CHANGED
@@ -2,9 +2,9 @@
2
2
  "name": "@fluentui-react-native/use-tokens",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 11 Jul 2025 19:50:40 GMT",
6
- "version": "0.6.5",
7
- "tag": "@fluentui-react-native/use-tokens_v0.6.5",
5
+ "date": "Tue, 15 Jul 2025 23:20:44 GMT",
6
+ "version": "0.6.6",
7
+ "tag": "@fluentui-react-native/use-tokens_v0.6.6",
8
8
  "comments": {
9
9
  "patch": [
10
10
  {
@@ -12,6 +12,18 @@
12
12
  "package": "@fluentui-react-native/use-tokens",
13
13
  "commit": "479b93cea460a26df70c55b5d3335927ed374713",
14
14
  "comment": "update builds to use node16 settings and modern export maps"
15
+ },
16
+ {
17
+ "author": "jasonmo@microsoft.com",
18
+ "package": "@fluentui-react-native/use-tokens",
19
+ "commit": "6b4d59227b1e9bbbf25cc93a3502015f663b363e",
20
+ "comment": "add react-native entrypoints that ensure metro targets TS files rather than JS files for bundling"
21
+ },
22
+ {
23
+ "author": "sanajmi@microsoft.com",
24
+ "package": "@fluentui-react-native/use-tokens",
25
+ "commit": "9cbe229ec7f6363d229dcaef506921b8d9f47d7d",
26
+ "comment": "fix: run beachball sync"
15
27
  }
16
28
  ],
17
29
  "none": [
@@ -33,6 +45,12 @@
33
45
  "commit": "54087dca787180bbf34630470cd0d06e88366b30",
34
46
  "comment": "update eslint to 9.x and use new flat config format with security rules"
35
47
  },
48
+ {
49
+ "author": "jasonmo@microsoft.com",
50
+ "package": "@fluentui-react-native/use-tokens",
51
+ "commit": "3e168e4363d1821818f219819d29532eace8d979",
52
+ "comment": "update scripts package to be fully js, use esm, and validate fully"
53
+ },
36
54
  {
37
55
  "author": "sanajmi@microsoft.com",
38
56
  "package": "@fluentui-react-native/use-tokens",
package/CHANGELOG.md CHANGED
@@ -1,16 +1,18 @@
1
1
  # Change Log - @fluentui-react-native/use-tokens
2
2
 
3
- <!-- This log was last generated on Fri, 11 Jul 2025 19:50:40 GMT and should not be manually modified. -->
3
+ <!-- This log was last generated on Tue, 15 Jul 2025 23:20:44 GMT and should not be manually modified. -->
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## 0.6.5
7
+ ## 0.6.6
8
8
 
9
- Fri, 11 Jul 2025 19:50:40 GMT
9
+ Tue, 15 Jul 2025 23:20:44 GMT
10
10
 
11
11
  ### Patches
12
12
 
13
13
  - update builds to use node16 settings and modern export maps (jasonmo@microsoft.com)
14
+ - add react-native entrypoints that ensure metro targets TS files rather than JS files for bundling (jasonmo@microsoft.com)
15
+ - fix: run beachball sync (sanajmi@microsoft.com)
14
16
 
15
17
  ## 0.6.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/use-tokens",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "description": "Utilities and hook function for getting themed tokens for a component",
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,13 +35,13 @@
34
35
  "author": "",
35
36
  "license": "MIT",
36
37
  "dependencies": {
37
- "@fluentui-react-native/immutable-merge": "1.2.4",
38
- "@fluentui-react-native/memo-cache": "1.3.5",
38
+ "@fluentui-react-native/immutable-merge": "1.2.5",
39
+ "@fluentui-react-native/memo-cache": "1.3.6",
39
40
  "tslib": "^2.3.1"
40
41
  },
41
42
  "devDependencies": {
42
43
  "@babel/core": "^7.20.0",
43
- "@fluentui-react-native/merge-props": "0.9.4",
44
+ "@fluentui-react-native/merge-props": "0.9.5",
44
45
  "@fluentui-react-native/scripts": "0.1.1",
45
46
  "@react-native/babel-preset": "^0.74.0",
46
47
  "@react-native/metro-config": "^0.74.0",
package/just.config.js DELETED
@@ -1,3 +0,0 @@
1
- const { preset } = require('@fluentui-react-native/scripts');
2
-
3
- preset();