cypress-ag-grid 3.3.2 → 3.3.5
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/README.md +20 -0
- package/app/ag-grid.css +1253 -194
- package/app/ag-theme-alpine.css +175 -23
- package/app/animation-wait/ag-owned.html +28 -0
- package/app/animation-wait/animation-grid.js +123 -0
- package/app/animation-wait/third-party-subtree.html +41 -0
- package/app/data.json +21 -21
- package/app/grid-basic.js +62 -4
- package/app/grid-grouped.js +8 -2
- package/app/index.html +45 -2
- package/app/v33/index.html +62 -0
- package/app/v34/index.html +62 -0
- package/cypress/e2e/ag-grid-animation-wait.v35.cy.js +46 -0
- package/cypress/e2e/ag-grid-data.v33.cy.js +6 -0
- package/cypress/e2e/ag-grid-data.v34.cy.js +6 -0
- package/cypress/e2e/ag-grid-data.v35.cy.js +6 -0
- package/cypress/e2e/ag-grid-elements.v33.cy.js +6 -0
- package/cypress/e2e/ag-grid-elements.v34.cy.js +6 -0
- package/cypress/e2e/ag-grid-elements.v35.cy.js +6 -0
- package/cypress/e2e/shared/run-ag-grid-data-suite.js +842 -0
- package/cypress/e2e/shared/run-ag-grid-elements-suite.js +56 -0
- package/cypress/fixtures/cardata.json +20 -20
- package/package.json +6 -3
- package/src/agGrid/agGridInteractions.js +184 -36
- package/src/index.d.ts +8 -4
- package/cypress/e2e/ag-grid-data.cy.js +0 -641
- package/cypress/e2e/ag-grid-elements.cy.js +0 -59
package/README.md
CHANGED
|
@@ -239,6 +239,26 @@ Example:
|
|
|
239
239
|
```
|
|
240
240
|

|
|
241
241
|
|
|
242
|
+
For `Between`, pass the lower and upper bounds as two entries for the same column. The command will target the first and second visible inputs for that single `Between` condition:
|
|
243
|
+
|
|
244
|
+
```javascript
|
|
245
|
+
cy.get(agGridSelector).agGridColumnFilterTextFloating({
|
|
246
|
+
searchCriteria: [
|
|
247
|
+
{
|
|
248
|
+
columnName: "Year",
|
|
249
|
+
filterValue: "1990",
|
|
250
|
+
operator: filterOperator.inRange,
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
columnName: "Year",
|
|
254
|
+
filterValue: "2011",
|
|
255
|
+
operator: filterOperator.inRange,
|
|
256
|
+
},
|
|
257
|
+
],
|
|
258
|
+
hasApplyButton: true,
|
|
259
|
+
});
|
|
260
|
+
```
|
|
261
|
+
|
|
242
262
|
<br/>
|
|
243
263
|
</br>
|
|
244
264
|
|