@ledgerhq/live-countervalues-react 0.12.0 → 0.13.0-nightly.20260404030214

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,23 @@
1
1
  # @ledgerhq/live-countervalues-react
2
2
 
3
+ ## 0.13.0-nightly.20260404030214
4
+
5
+ ### Minor Changes
6
+
7
+ - [#15881](https://github.com/LedgerHQ/ledger-live/pull/15881) [`2ece647`](https://github.com/LedgerHQ/ledger-live/commit/2ece647f386e40f261662fc6e4e6624f302ee34f) Thanks [@iqbalibrahim-ledger](https://github.com/iqbalibrahim-ledger)! - Migrate `libs/live-*` packages from ESLint to Oxlint with shared config under `libs/oxc-live-libs`, add Oxfmt for `live-currency-format`, and align tooling with `ledger-live-common` / apps.
8
+
9
+ LIVE-28279
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [[`24e8f80`](https://github.com/LedgerHQ/ledger-live/commit/24e8f80dc314619f954e6966aff8698591d6e05e), [`ea34195`](https://github.com/LedgerHQ/ledger-live/commit/ea34195c1115aaa40c69259ee2d2ee581e0349ab), [`7ffc0c5`](https://github.com/LedgerHQ/ledger-live/commit/7ffc0c5a7623aea32cdff2e093c14fae87352e71), [`9413def`](https://github.com/LedgerHQ/ledger-live/commit/9413def2fb1eccfc0ec8ce38bbcaf982981a0dd9), [`008a4bd`](https://github.com/LedgerHQ/ledger-live/commit/008a4bdb87f0e65fa23de3a29818a4d02f28f4f8), [`2ece647`](https://github.com/LedgerHQ/ledger-live/commit/2ece647f386e40f261662fc6e4e6624f302ee34f), [`55c01bc`](https://github.com/LedgerHQ/ledger-live/commit/55c01bcd8e43f9a54e93a41bb383d6d5c633b35f), [`4cf9b8c`](https://github.com/LedgerHQ/ledger-live/commit/4cf9b8cde388aebfe04a894e9a35584856d1713d), [`fd3a7d3`](https://github.com/LedgerHQ/ledger-live/commit/fd3a7d37d539a28f3623b2e3c7a3c1f9b073b8e6), [`fd2311d`](https://github.com/LedgerHQ/ledger-live/commit/fd2311d643f4002c1441bfa4fe79d7288df04c21)]:
14
+ - @ledgerhq/types-live@6.104.0-nightly.20260404030214
15
+ - @ledgerhq/ledger-wallet-framework@1.2.0-nightly.20260404030214
16
+ - @ledgerhq/cryptoassets@13.45.0-nightly.20260404030214
17
+ - @ledgerhq/types-cryptoassets@7.36.0-nightly.20260404030214
18
+ - @ledgerhq/live-countervalues@0.18.0-nightly.20260404030214
19
+ - @ledgerhq/live-hooks@0.6.0-nightly.20260404030214
20
+
3
21
  ## 0.12.0
4
22
 
5
23
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/live-countervalues-react",
3
- "version": "0.12.0",
3
+ "version": "0.13.0-nightly.20260404030214",
4
4
  "description": "Ledger Live countervalues React module",
5
5
  "keywords": [
6
6
  "Ledger"
@@ -25,12 +25,12 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "bignumber.js": "9",
28
- "@ledgerhq/types-live": "6.103.0",
29
- "@ledgerhq/types-cryptoassets": "7.35.0",
30
- "@ledgerhq/cryptoassets": "13.44.0",
31
- "@ledgerhq/live-countervalues": "0.17.0",
32
- "@ledgerhq/ledger-wallet-framework": "^1.1.0",
33
- "@ledgerhq/live-hooks": "0.5.0"
28
+ "@ledgerhq/types-live": "6.104.0-nightly.20260404030214",
29
+ "@ledgerhq/types-cryptoassets": "7.36.0-nightly.20260404030214",
30
+ "@ledgerhq/cryptoassets": "13.45.0-nightly.20260404030214",
31
+ "@ledgerhq/live-countervalues": "0.18.0-nightly.20260404030214",
32
+ "@ledgerhq/ledger-wallet-framework": "^1.2.0-nightly.20260404030214",
33
+ "@ledgerhq/live-hooks": "0.6.0-nightly.20260404030214"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/node": "24.12.0",
@@ -94,7 +94,7 @@
94
94
  "prewatch": "pnpm build",
95
95
  "watch": "tsc --watch --project tsconfig.build.json",
96
96
  "watch:es": "tsc --watch --project tsconfig.build.json -m esnext --moduleResolution bundler --outDir lib-es",
97
- "lint": "eslint ./src --no-error-on-unmatched-pattern --ext .ts,.tsx --cache",
97
+ "lint": "oxlint -c ../oxc-live-libs/.oxlintrc.json ./src",
98
98
  "lint:fix": "pnpm lint --fix",
99
99
  "typecheck": "tsc --noEmit --customConditions node",
100
100
  "unimported": "pnpm knip --directory ../.. -W libs/live-countervalues-react",
package/.eslintrc.js DELETED
@@ -1,38 +0,0 @@
1
- module.exports = {
2
- settings: {
3
- react: {
4
- version: "detect",
5
- },
6
- },
7
- env: {
8
- browser: true,
9
- es6: true,
10
- },
11
- globals: {
12
- Atomics: "readonly",
13
- SharedArrayBuffer: "readonly",
14
- },
15
- extends: [
16
- "plugin:import/typescript",
17
- "plugin:jsx-a11y/recommended",
18
- "plugin:react/recommended",
19
- "plugin:react-hooks/recommended",
20
- ],
21
- plugins: ["react", "react-hooks", "import", "jsx-a11y"],
22
- rules: {
23
- "no-console": ["error", { allow: ["warn", "error"] }],
24
- "linebreak-style": ["error", "unix"],
25
- "@typescript-eslint/no-empty-function": "off",
26
- "@typescript-eslint/no-namespace": ["error", { allowDeclarations: true }],
27
- "@typescript-eslint/no-explicit-any": "warn",
28
- },
29
- overrides: [
30
- {
31
- files: ["src/**/*.test.{ts,tsx}"],
32
- env: {
33
- "jest/globals": true,
34
- },
35
- plugins: ["jest"],
36
- },
37
- ],
38
- };