* Add custom spacing for table cells
* Add migration to set every tables cell spacing compact
* Rename cellSpacing to cellSize
* Add documentation for table cellSize
* Add default value for text widget
* Revert "Add default value for text widget"
This reverts commit fc03b3bdcf.
t
* Remove extra space and add text widget
* add value at proper place and remove from display
* widgets dimensions updated: follow up PR-#869
* removed unwanted console.log
* toggle widget minor tweaks
* Fixes the padding of dropdown & multi-select dropdown
* Minor corrections
* Fix padding of datepicker and date range picker
* Fix for toggle switch
* fix checkbox and removed duplicate classname in radio widget
* multi-select width update
Co-authored-by: navaneeth <[email protected]>
* Add functionality to highlight selected row
* Add migration to set highlightSelectRow to false for existing tables
* Add documentation for highlighting selected row
* Support highlighting selected row for striped table
* Functional implementation of checkbox selector for table
* Add inspector toggle to display bulk selector checkboxes
* Expose selectedRows variable of Table
* Refactor select-all checkbox into a separate function
* Remove unnecessary import of v4 package
* Add TODO comment for adding checkbox color
* Revert typo that accidentally got committed
* Add explanatory comment in selectedRows data generation code
* Combine original row data and displayed row data for selectedRows
* Show only original data in selectedRows
* Use useRowSelect hook to for implementing table selector
* Show selector column only when it is enable from inspector
* Add migration to set showBulkSelector to false for all tables
* Add documentation for bulk selection
* Set label of toggle that (en/dis)ables bulk selection: 'Bulk selection'
* Order of state computation
* default values for textInput and numberInput widgets
* number input value should be an integer
Co-authored-by: navaneeth <[email protected]>
* widgets can be disabled
* removed whitespace
* move to styles definitions
* default values fixed with nullish operator
* proper data attributes
* generic resolver function for widget value
* renamed the style property
* feat: add star rating widget
* add events, properties
* add the number of stars as variable
* fix animation
* add half star logic, properties, definations
* add hover index property
* on dismiss show star outline
* show tooltip on hover + fix half icon display on click
* make text inline
* feat: add import svg as react component
* update star rating component for managing color change
* fix: conflicts
* Delete half-star.svg
* Delete star.svg
* change default color to gold
* fix widget settings events
* add default selection of stars
* change default selection to 5
* css changes
* add star rating onchange fix
* Multiple handlers for each events
* Fixes
* Migration
* ormconfig to use entities in migrations
* use connection object to build queries
* fixes for bulk update
* Fix for table action button
* use query runner to wrap migration in same transaction
Co-authored-by: Akshay Sasidharan <[email protected]>
* Add option to enable/disable search bar in Table
This commit also makes the app hide the entire top bar of table
if server pagination is enabled and search bar is disabled.
* Display server-side search option only if search is enabled
* Add documentation for search box enable/disable toggler