Skip to content

Commit

Permalink
v0.8.0 Release
Browse files Browse the repository at this point in the history
- Codelessly Data support. Save and write data to Codelessly Cloud.
- New GridView widget.
- Codelessly Data Query Filters support. Sort and filter data.
- Variable improvements.
  - Include 'set' and 'replace' operations for list operations.
  - Add new ${value} predefined variable to expose internal node data. TextFields only for now.
  - Track internal value with new NodeProvider InheritedWidget per-widget.
- TextField improvements.
  - Add support for actions on prefix and suffix icons on text fields.
  - Fix set operation on map not showing input field.
  - Implement proper TextFieldModel minimum size computation.
  - Add support for TextInputType.numberWithOptions.
- JSON improvements.
  - Fix json variable controller highlighting.
  - Fix json syntax highlighting for storage operations.
  - Fix focus nodes for json variable input fields.
- List improvements.
  - Add insertAll option for list operations
  - Refactor insert list operation to use json input field.
- Add copy-paste and shortcuts support for actions.
- Add support for non-blocking actions.
- Implement option to enable/disable action.
- Add firebase queries support for grid view.
- Add support for number operations.
  • Loading branch information
rayliverified committed Dec 26, 2023
1 parent 0d18697 commit 45a8b72
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
## 0.8.0
- Codelessly Data support. Save and write data to Codelessly Cloud.
- New GridView widget.
- Codelessly Data Query Filters support. Sort and filter data.
- Variable improvements.
- Include 'set' and 'replace' operations for list operations.
- Add new ${value} predefined variable to expose internal node data. TextFields only for now.
- Track internal value with new NodeProvider InheritedWidget per-widget.
- TextField improvements.
- Add support for actions on prefix and suffix icons on text fields.
- Fix set operation on map not showing input field.
- Implement proper TextFieldModel minimum size computation.
- Add support for TextInputType.numberWithOptions.
- JSON improvements.
- Fix json variable controller highlighting.
- Fix json syntax highlighting for storage operations.
- Fix focus nodes for json variable input fields.
- List improvements.
- Add insertAll option for list operations
- Refactor insert list operation to use json input field.
- Add copy-paste and shortcuts support for actions.
- Add support for non-blocking actions.
- Implement option to enable/disable action.
- Add firebase queries support for grid view.
- Add support for number operations.

## 0.7.5
- Fix drag and drop insert to the edge of Accordion, Expansion Tile, ListView, and PageView.

Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: codelessly_api
description: Flutter's layouts and widgets represented as models and JSON data. This API is used by the Codelessly Editor and CloudUI SDK to render Flutter Widgets.
version: 0.7.5
version: 0.8.0
homepage: https://codelessly.com/
repository: https://github.com/Codelessly/CodelesslyAPI

Expand All @@ -13,7 +13,7 @@ dependencies:
vector_math: ">=2.1.4 <3.0.0"
collection: ">=1.17.0 <2.0.0"
meta: ">=1.9.0 <2.0.0"
intl: ^0.18.1
intl: '>=0.17.0 <1.0.0'

dev_dependencies:
codelessly_json_serializable: 6.7.1+1
Expand Down

0 comments on commit 45a8b72

Please sign in to comment.