* TableUITestCases
Commit
* Table-widget-testcases
On Search Text Change Action
Default array data
On Row Selected Action
Explore Widget related documents Verification
On Page Change Action
Default search text
Default selected row
Delete Table Widget
Changing Column data type to "Image"
Changing Column data type to "URL"
Table Widget Functionality To Verify Row Height Functionality
Drage and Drop Table widget and verify default data
Table Widget Functionality To Filter The Data using 'Empty
Table Widget Functionality To Filter The Data using 'Not Empty'
* Discarded changes in cypress.json
Discarded changes in cypress.json
* Updated the test cases
* Undo changes to Cypress.json
Undo changes to Cypress.json
* Added new dsl json file
* Merge branch 'release' into SelectUITestCases
* table test cases fix
Co-authored-by: arslan <>
* Add s3 support for generate CRUD
- Dropdown enhancement to open options on initial load
- Hide column selection option for s3
* Refactor the prop name
* Dropdown enchancement & Fix small issues
* Add fetch all sheets query
* Fix issues related to dropdown
* Add hooks to fetch sheets and spreadsheets
* Resolve warnings
* complete gheets basic support
* Add UI changes for Gsheet column names
- Fix Page Scroll issue
* Add debounce to avoid to many API calls
* Add request object formation via plugin config
* Resolve comments & remove executingDatasourceQuery
* Send sheetName in the tableName key.
* Add loader and Column name UI Fix
* Add Column Headers Label
* Fix logic to show comma separator btn column names
- Make "Column Header Fetched" text Bold
* Add tooltip info for searchable column
* Add value prop to TextInput
- Fix Table header Index Invalid Input issue
* Hotfix validator logic
* Add errorType to response
* Fix Test Failures
* group the errors
* Add errorType to categorise the issue/error
* remove the helper class
* update changes as per review
* Update the logical groupings of errors
* Fix formatting issues
* Updated the error types
* Update error classification
We have reverted a code which is coming in from #4819, which caused a bug in the table filter input element to hide, We will log this issue to be fixed in the release env separately, We will cherry pick this commit to RC to resolve the current build error
* Change the name of the mock datasource
* Remove the hardcoded value for Cloud services
* Handle index out of exception
* Add check if the response contains necessary credentials for mockdb
* Change as per review comments
* Fix cypress test failures
* minor changes to fix cypress test for mock data according to new changes
* updated mock data locator
* Update the mockdata source name
Co-authored-by: Pranav Kanade <pranav@appsmith.com>
* updated collab event names
* added a canvas to record the mouse movement
* can show pointers
* temp
* can draw multiple pointers using canvas, moved multiplayer canvas to artboard level
* using constants to draw the cursors on canvas
* can show pointers with different colors
* showing proper username
* added constants for collab events and namespace
* updated the page socket var name
* defined a id constant, and resizing the canvas if needed on window resizing, and then clearing it
* minor refactor
* hide pointer of users leaving the page
* moved our the share pointer func
* defined separate types
* added minor comment
* using requestAnimationFrame to improve performance.
* added connection checks before emitting events. Added mechanism to try to reconnect manually
* using ref to keep animation step id
* updated the way using requestAnimationFrame
* passing pageId as prop to canvas and pointer canvas
* emitting events only if there are more than one realtime editors
* added pageId dependency
* removed unnecessary prop and using reactive state
* remove explicit connection event
* maintaining connection state of page level socket
* fixed the multipointer text background width
* updated collab event names
* added a canvas to record the mouse movement
* can show pointers
* temp
* can draw multiple pointers using canvas, moved multiplayer canvas to artboard level
* using constants to draw the cursors on canvas
* can show pointers with different colors
* showing proper username
* added constants for collab events and namespace
* updated the page socket var name
* defined a id constant, and resizing the canvas if needed on window resizing, and then clearing it
* minor refactor
* hide pointer of users leaving the page
* moved our the share pointer func
* defined separate types
* added minor comment
* using requestAnimationFrame to improve performance.
* added connection checks before emitting events. Added mechanism to try to reconnect manually
* using ref to keep animation step id
* updated the way using requestAnimationFrame
* passing pageId as prop to canvas and pointer canvas
* emitting events only if there are more than one realtime editors
* added pageId dependency
* removed unnecessary prop and using reactive state
* remove explicit connection event
* maintaining connection state of page level socket
* -added socket io namespace and events to broadcast start and edit page
* -broadcast mouse pointers from rts
-add a mouse pointer simulator to show the events in action
* -removed sample file
* A fix had been introduced earlier (I had introduced it a few months back) to remove data type info keys from the raw response. However, the transformation was not getting applied to the Query action as the transformation was explicitly limited to few actions. This PR removes that check and allows the transformation for all actions as there does not seem to be any reason to withhold this transformation for other actions.
* The earlier fix also restricted this transformation to results that had specific keys. This PR removes this check as well as it does not seem to be required and further may lead to similar issues if any particular key gets missed.
* Some other redundant checks have been removed from the flow as the transformation function itself takes care of it as edge/base case.
* -limit the rate for sending password reset requests
* -used encrypted token in password reset
* -add unit tests for the password reset issue
* -improved formatting
* -updated PR as per review comments
* -hanled IllegalStateException instead of Exception when parsing the encrypted token
Many new input widget enhancement added. The widget now has the capability to have its own label and tooltip as helper. The user can now add Icons inside the input widget and align them as well, The user can allow choose the max allowed length of the input. We have also added the isValid property in tandem to the regex property for additional validations using JS expressions
Introducing a new widget: `Checkbox Group`, Users can now create a group of checkboxes and have an action trigger and also be able to refer the selected values from the internal API.
* Earlier split method was used to segregate cmd and args which failed when multiple words inside a quoted string formed one argument. e.g. set key "my value" would produce set, key, "my, value" as the tokens when split method is used, which is not correct. This change introduces a regex that would create the following tokens: set, key, "my value"