From 4e61982222646e9bb8ebf5d4aeab5c5e48ac85f1 Mon Sep 17 00:00:00 2001 From: li3317 Date: Wed, 13 Jan 2021 15:39:29 -0500 Subject: [PATCH] fix check attribute --- app/assets/sample_data.json | 19 +++++++++++++++++++ lib/models/documents/attribute.dart | 9 ++++++--- 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/app/assets/sample_data.json b/app/assets/sample_data.json index 18bafd52..e79b81d9 100644 --- a/app/assets/sample_data.json +++ b/app/assets/sample_data.json @@ -400,5 +400,24 @@ "list":"bullet" }, "insert":"\n" + }, + }, + { + "insert": "this is a check list" + }, + { + "attributes": { + "list": "checked" + }, + "insert": "\n" + }, + { + "insert": "this is a uncheck list" + }, + { + "attributes": { + "list": "unchecked" + }, + "insert": "\n" } ] \ No newline at end of file diff --git a/lib/models/documents/attribute.dart b/lib/models/documents/attribute.dart index 51f4726e..7ee2e4f0 100644 --- a/lib/models/documents/attribute.dart +++ b/lib/models/documents/attribute.dart @@ -4,7 +4,7 @@ enum AttributeScope { INLINE, // refer to https://quilljs.com/docs/formats/#inline BLOCK, // refer to https://quilljs.com/docs/formats/#block EMBEDS, // refer to https://quilljs.com/docs/formats/#embeds - IGNORE, // atttributes that can be igored + IGNORE, // attributes that can be ignored } class Attribute { @@ -116,8 +116,11 @@ class Attribute { // "attributes":{"list":"ordered"} static Attribute get ol => ListAttribute('ordered'); - // "attributes":{"list":"check"} - static Attribute get check => ListAttribute('check'); + // "attributes":{"list":"checked"} + static Attribute get checked => ListAttribute('checked'); + + // "attributes":{"list":"unchecked"} + static Attribute get unchecked => ListAttribute('unchecked'); // "attributes":{"indent":1"} static Attribute get indentL1 => IndentAttribute(level: 1);