@neo4j-ndl/react 2.14.0 → 2.14.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +6 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.14.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`f0fa91005a9252fcec465d52966d2e89729ff2fd`](https://github.com/neo4j/needle/commit/f0fa91005a9252fcec465d52966d2e89729ff2fd)]:
8
+ - @neo4j-ndl/base@2.10.1
9
+
3
10
  ## 2.14.0
4
11
 
5
12
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neo4j-ndl/react",
3
- "version": "2.14.0",
3
+ "version": "2.14.1",
4
4
  "sideEffects": false,
5
5
  "description": "React implementation of Neo4j Design System",
6
6
  "keywords": [
@@ -44,8 +44,9 @@
44
44
  "pretest": "yarn run lint",
45
45
  "test": "yarn test:unit && yarn test:playwright",
46
46
  "test:unit": "vitest --run --typecheck",
47
- "test:playwright": "playwright test -c playwright-component-testing.config.ts",
47
+ "test:playwright": "npx --no playwright test -c playwright-component-testing.config.ts",
48
48
  "build": "yarn build:esm && yarn build:cjs && yarn build:types",
49
+ "postinstall": "npx --no playwright install",
49
50
  "build:esm": "tsc -p tsconfig.esm.json",
50
51
  "build:cjs": "tsc -p tsconfig.cjs.json",
51
52
  "watch:esm": "tsc -p tsconfig.esm.json --watch",
@@ -55,7 +56,8 @@
55
56
  "lint": "eslint --ext .jsx,.tsx,.js,.ts src",
56
57
  "generate:all": "yarn generate:custom-icons && yarn generate:hero-icons",
57
58
  "generate:custom-icons": "svgr --template svgr-template.js --index-template svgr-index-template.js --icon --typescript --no-svgo --replace-attr-values '#535B66=currentColor' --jsx-runtime 'automatic' --out-dir ./src/icons/generated/custom -- ../base/src/icons",
58
- "generate:hero-icons": "ts-node ./scripts/generatedHeroIcons.ts"
59
+ "generate:hero-icons": "ts-node ./scripts/generatedHeroIcons.ts",
60
+ "nuke:local": "npx --yes rimraf@5.0.5 .tsbuildinfo node_modules playwright-report test-results playwright/.cache"
59
61
  },
60
62
  "devDependencies": {
61
63
  "@axe-core/playwright": "4.9.0",
@@ -90,7 +92,7 @@
90
92
  "@floating-ui/react": "0.25.1",
91
93
  "@heroicons/react": "2.0.13",
92
94
  "@neo4j-cypher/react-codemirror": "^1.0.1",
93
- "@neo4j-ndl/base": "^2.10.0",
95
+ "@neo4j-ndl/base": "^2.10.1",
94
96
  "@table-nav/core": "0.0.7",
95
97
  "@table-nav/react": "0.0.7",
96
98
  "@tanstack/react-table": "^8.9.3",