cypress-ag-grid 3.3.1 → 3.3.4

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 CHANGED
@@ -239,6 +239,26 @@ Example:
239
239
  ```
240
240
  ![alt text](./ag-grid-example-filter-text-floating-multi-condition.png "AG Grid Dom - Filter by Text Floating")
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