@linzjs/step-ag-grid 27.3.2 → 27.3.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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@linzjs/step-ag-grid",
3
3
  "repository": "github:linz/step-ag-grid.git",
4
4
  "license": "MIT",
5
- "version": "27.3.2",
5
+ "version": "27.3.3",
6
6
  "keywords": [
7
7
  "aggrid",
8
8
  "ag-grid",
@@ -76,14 +76,14 @@
76
76
  ]
77
77
  },
78
78
  "optionalDependencies": {
79
- "@rollup/rollup-linux-x64-gnu": "^4.41.1",
80
- "@swc/core-linux-x64-gnu": "^1.11.29"
79
+ "@rollup/rollup-linux-x64-gnu": "^4.44.0",
80
+ "@swc/core-linux-x64-gnu": "^1.12.6"
81
81
  },
82
82
  "devDependencies": {
83
- "@chromatic-com/storybook": "^3.2.6",
84
- "@linzjs/lui": "^22.12.4",
83
+ "@chromatic-com/storybook": "^3.2.7",
84
+ "@linzjs/lui": "^22.12.5",
85
85
  "@linzjs/style": "^5.4.0",
86
- "@rollup/plugin-commonjs": "^28.0.3",
86
+ "@rollup/plugin-commonjs": "^28.0.6",
87
87
  "@rollup/plugin-json": "^6.1.0",
88
88
  "@rollup/plugin-node-resolve": "^16.0.1",
89
89
  "@semantic-release/git": "^10.0.1",
@@ -93,39 +93,39 @@
93
93
  "@storybook/react": "^8.6.12",
94
94
  "@storybook/react-vite": "^8.6.12",
95
95
  "@storybook/test": "^8.6.12",
96
- "@storybook/test-runner": "^0.22.0",
96
+ "@storybook/test-runner": "^0.22.1",
97
97
  "@testing-library/dom": "^10.4.0",
98
98
  "@testing-library/react": "^16.3.0",
99
99
  "@testing-library/user-event": "^14.6.1",
100
100
  "@types/debounce-promise": "^3.1.9",
101
101
  "@types/lodash-es": "^4.17.12",
102
- "@types/node": "^22.15.29",
103
- "@types/react": "^18.3.20",
102
+ "@types/node": "^22.15.33",
103
+ "@types/react": "^18.3.23",
104
104
  "@types/react-dom": "^18.3.7",
105
105
  "@types/uuid": "^10.0.0",
106
- "@vitejs/plugin-react-swc": "^3.10.1",
107
- "@vitest/ui": "^3.2.1",
108
- "ag-grid-community": "^33.3.1",
109
- "ag-grid-react": "^33.3.1",
106
+ "@vitejs/plugin-react-swc": "^3.10.2",
107
+ "@vitest/ui": "^3.2.4",
108
+ "ag-grid-community": "^33.3.2",
109
+ "ag-grid-react": "^33.3.2",
110
110
  "babel-preset-react-app": "^10.1.0",
111
- "chromatic": "^11.28.2",
111
+ "chromatic": "^11.29.0",
112
112
  "css-loader": "^7.1.2",
113
113
  "jsdom": "^26.1.0",
114
114
  "lodash-es": "^4.17.21",
115
115
  "mkdirp": "^3.0.1",
116
116
  "npm-run-all": "^4.1.5",
117
- "postcss": "^8.5.4",
117
+ "postcss": "^8.5.6",
118
118
  "postcss-loader": "^8.1.1",
119
119
  "postcss-scss": "^4.0.9",
120
120
  "react": ">=18",
121
121
  "react-app-polyfill": "^3.0.0",
122
122
  "react-dom": "^18.3.1",
123
- "rollup": "^4.41.1",
123
+ "rollup": "^4.44.0",
124
124
  "rollup-plugin-copy": "^3.5.0",
125
125
  "rollup-plugin-peer-deps-external": "^2.2.4",
126
126
  "rollup-plugin-postcss": "^4.0.2",
127
127
  "rollup-plugin-typescript2": "^0.36.0",
128
- "sass": "^1.89.1",
128
+ "sass": "^1.89.2",
129
129
  "sass-loader": "^16.0.5",
130
130
  "semantic-release": "^24.2.5",
131
131
  "storybook": "^8.6.12",
@@ -135,7 +135,7 @@
135
135
  "vite": "^6.3.5",
136
136
  "vite-plugin-html": "^3.2.2",
137
137
  "vite-tsconfig-paths": "^5.1.4",
138
- "vitest": "^3.2.1",
138
+ "vitest": "^3.2.4",
139
139
  "vitest-canvas-mock": "^0.3.3"
140
140
  },
141
141
  "babel": {
@@ -98,7 +98,7 @@ const _selectRow = async (
98
98
  const row = await findRow(rowId, within);
99
99
  const isSelected = row.className.includes('ag-row-selected');
100
100
  if (select === 'toggle' || (select === 'select' && !isSelected) || (select === 'deselect' && isSelected)) {
101
- const cell = await findCell(rowId, 'selection', within);
101
+ const cell = await findCell(rowId, 'ag-Grid-SelectionColumn', within);
102
102
  await user.click(cell);
103
103
  await waitFor(async () => {
104
104
  const row = await findRow(rowId, within);
@@ -99,7 +99,7 @@ const _selectRow = async (
99
99
  const row = await findRow(rowId, within);
100
100
  const isSelected = row.className.includes('ag-row-selected');
101
101
  if (select === 'toggle' || (select === 'select' && !isSelected) || (select === 'deselect' && isSelected)) {
102
- const cell = await findCell(rowId, 'selection', within);
102
+ const cell = await findCell(rowId, 'ag-Grid-SelectionColumn', within);
103
103
  await user.click(cell);
104
104
  await waitFor(async () => {
105
105
  const row = await findRow(rowId, within);