@fluentui-react-native/experimental-expander 0.9.1 → 0.9.3

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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # Change Log - @fluentui-react-native/experimental-expander
2
2
 
3
+ ## 0.9.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 9cf4444: Migrate from ESLint to oxlint
8
+ - Updated dependencies [9cf4444]
9
+ - @fluentui-react-native/framework@0.15.3
10
+
11
+ ## 0.9.2
12
+
13
+ ### Patch Changes
14
+
15
+ - 8a7b549: Update to the latest rnx-kit versions, fix some typing issues, and correct the vscode settings
16
+ - Updated dependencies [8a7b549]
17
+ - @fluentui-react-native/framework@0.15.2
18
+
3
19
  ## 0.9.1
4
20
 
5
21
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui-react-native/experimental-expander",
3
- "version": "0.9.1",
3
+ "version": "0.9.3",
4
4
  "description": "A cross-platform Native Expander component using the Fluent Design System. Currently only implemented on windows",
5
5
  "homepage": "https://github.com/microsoft/fluentui-react-native",
6
6
  "license": "MIT",
@@ -27,7 +27,7 @@
27
27
  "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler",
28
28
  "clean": "fluentui-scripts clean",
29
29
  "depcheck": "fluentui-scripts depcheck",
30
- "lint": "fluentui-scripts eslint",
30
+ "lint": "fluentui-scripts lint",
31
31
  "lint-package": "fluentui-scripts lint-package",
32
32
  "test": "fluentui-scripts jest",
33
33
  "update-api": "fluentui-scripts update-api-extractor",
@@ -36,30 +36,30 @@
36
36
  "windows": "react-native run-windows"
37
37
  },
38
38
  "dependencies": {
39
- "@fluentui-react-native/framework": "0.15.1"
39
+ "@fluentui-react-native/framework": "0.15.3"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@babel/core": "^7.20.0",
43
43
  "@fluentui-react-native/babel-config": "0.1.1",
44
- "@fluentui-react-native/eslint-config-rules": "0.1.2",
45
- "@fluentui-react-native/framework-base": "0.3.1",
44
+ "@fluentui-react-native/framework-base": "0.3.3",
46
45
  "@fluentui-react-native/kit-config": "0.1.2",
46
+ "@fluentui-react-native/lint-config-rules": "0.1.3",
47
47
  "@fluentui-react-native/scripts": "0.1.0",
48
48
  "@react-native-community/cli": "^20.0.0",
49
49
  "@react-native-community/cli-platform-android": "^20.0.0",
50
50
  "@react-native-community/cli-platform-ios": "^20.0.0",
51
51
  "@react-native/metro-config": "^0.81.0",
52
- "@types/react": "~19.1.0",
53
- "react": "19.1.0",
54
- "react-native": "^0.81.0",
52
+ "@types/react": "~19.1.4",
53
+ "react": "19.1.4",
54
+ "react-native": "^0.81.6",
55
55
  "react-native-macos": "^0.81.0",
56
56
  "react-native-windows": "^0.81.0"
57
57
  },
58
58
  "peerDependencies": {
59
59
  "@office-iss/react-native-win32": "^0.74.0",
60
- "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0",
61
- "react": "18.2.0 || 19.0.0 || 19.1.0",
62
- "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0",
60
+ "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4",
61
+ "react": "18.2.0 || 19.0.0 || 19.1.4",
62
+ "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6",
63
63
  "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0",
64
64
  "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0"
65
65
  },
package/eslint.config.js DELETED
@@ -1,3 +0,0 @@
1
- const baseConfig = require('@fluentui-react-native/eslint-config-rules');
2
-
3
- module.exports = baseConfig;