Skip to content

Commit f68839f

Browse files
committed
v0.1.0 Release
- Optimize SDK size by 90% by switching to SVG icons. - Enable variables copy and paste. - Enable conditions copy and paste. - Fix canvas fill condition not working when there's only 1 fill.
1 parent 6a3fd4d commit f68839f

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.1.0
2+
- Optimize SDK size by 90% by switching to SVG icons.
3+
- Enable variables copy and paste.
4+
- Enable conditions copy and paste.
5+
- Fix canvas fill condition not working when there's only 1 fill.
6+
17
## 0.0.8
28
- Text field and code-gen improvements.
39
- Add `showCounter` for input decoration.

lib/src/api/models/color_rgb.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ class ColorRGB extends Equatable with SerializableMixin {
6868
/// Factory constructor for creating a new [ColorRGB] instance from JSON data.
6969
factory ColorRGB.fromJson(Map json) => _$ColorRGBFromJson(json);
7070

71+
/// Transform a [ColorRGBA] into this model.
7172
static ColorRGB? fromColorRGBA(ColorRGBA? color) {
7273
if (color == null) return null;
7374
return ColorRGB(r: color.r, g: color.g, b: color.b);

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: codelessly_api
22
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.
3-
version: 0.0.8
3+
version: 0.1.0
44
homepage: https://codelessly.com/
55
repository: https://github.com/Codelessly/CodelesslyAPI
66

0 commit comments

Comments
 (0)