PromucFlow_constructor/app/client/cypress/support/Pages
Rajat Agrawal 30f3d250c4
fix: Table Widget property to specify if prev or next buttons were pressed (#21712)
We have added two new boolean meta properties, previousPageVisited and
nextPageVisited, that are set whenever respective pagination button is
clicked. This property is updated for server side pagination mode as
well as non server side pagination mode.

By default, both properties are set to false.

When the user clicks on previous page button or tries to enter a page
number which is less than current page number, `previousPageVisited` is
set to `true` and `nextPageVisited` is set to `false`.

The users can use these property as follows in their code : 

```
myFun1: () => {
		if (Table1.nextPageVisited == true){
			NextQuery.run()
		}
		else if (Table1.prevPageVisited == true){
			PrevQuery.run()
		}
		else {
			BaseQuery.run()
		}
	}
```
2023-04-13 15:38:46 +05:30
..
AppSettings chore: upgrade to prettier v2 + enforce import types (#21013)Co-authored-by: Satish Gandham <hello@satishgandham.com> Co-authored-by: Satish Gandham <satish.iitg@gmail.com> 2023-03-16 17:11:47 +05:30
AdminSettings.ts test: Cypress - Added AdminSettings Helper (#21741) 2023-03-27 15:06:03 +05:30
AggregateHelper.ts test: Cypress - Flaky fix (#22263) 2023-04-12 00:34:32 +05:30
ApiPage.ts chore: improve husky and lint-staged checks (#21679) 2023-03-23 17:02:18 +05:30
DataSources.ts feat: Error Navigation (#21753) 2023-04-10 18:29:14 +05:30
DebuggerHelper.ts feat: Error Navigation (#21753) 2023-04-10 18:29:14 +05:30
DeployModeHelper.ts chore: improve husky and lint-staged checks (#21679) 2023-03-23 17:02:18 +05:30
EntityExplorer.ts test: Cypress - Flaky fix (#22263) 2023-04-12 00:34:32 +05:30
FakerHelper.ts chore: upgrade to prettier v2 + enforce import types (#21013)Co-authored-by: Satish Gandham <hello@satishgandham.com> Co-authored-by: Satish Gandham <satish.iitg@gmail.com> 2023-03-16 17:11:47 +05:30
GitSync.ts chore: improve husky and lint-staged checks (#21679) 2023-03-23 17:02:18 +05:30
HomePage.ts fix: Error navigation blockers (#22291) 2023-04-12 22:38:55 +05:30
InviteModal.ts chore: upgrade to prettier v2 + enforce import types (#21013)Co-authored-by: Satish Gandham <hello@satishgandham.com> Co-authored-by: Satish Gandham <satish.iitg@gmail.com> 2023-03-16 17:11:47 +05:30
JSEditor.ts feat: Error Navigation (#21753) 2023-04-10 18:29:14 +05:30
LibraryInstaller.ts chore: upgrade to prettier v2 + enforce import types (#21013)Co-authored-by: Satish Gandham <hello@satishgandham.com> Co-authored-by: Satish Gandham <satish.iitg@gmail.com> 2023-03-16 17:11:47 +05:30
PeekOverlay.ts feat: peek overlay (#20053) 2023-02-17 21:33:34 +05:30
PropertyPane.ts feat: Action selector (#21582) 2023-04-06 22:19:12 +05:30
Table.ts fix: Table Widget property to specify if prev or next buttons were pressed (#21712) 2023-04-13 15:38:46 +05:30
Templates.ts fix: fork template button not visible on page refresh (#20388) 2023-02-10 11:41:35 +05:30