Support token attribute

pull/88/head
Xin Yao 4 years ago
parent cdfce302ac
commit a5277ffd3c
  1. 3
      CHANGELOG.md
  2. 18
      app/assets/sample_data.json
  3. 2
      app/pubspec.lock
  4. 7
      lib/models/documents/attribute.dart
  5. 2
      pubspec.yaml

@ -1,3 +1,6 @@
## [1.0.8]
* Support token attribute.
## [1.0.7]
* Fix crash on web (dart:io).

@ -497,6 +497,24 @@
},
"insert": "font size 20"
},
{
"attributes":{
"token":"built_in"
},
"insert":" diff"
},
{
"attributes":{
"token":"operator"
},
"insert":"-match"
},
{
"attributes":{
"token":"literal"
},
"insert":"-patch"
},
{
"insert": "\n"
}

@ -152,7 +152,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.7"
version: "1.0.8"
flutter_test:
dependency: "direct dev"
description: flutter

@ -34,6 +34,7 @@ class Attribute<T> {
Attribute.width.key: Attribute.width,
Attribute.height.key: Attribute.height,
Attribute.style.key: Attribute.style,
Attribute.token.key: Attribute.token,
};
static final BoldAttribute bold = BoldAttribute();
@ -74,6 +75,8 @@ class Attribute<T> {
static final StyleAttribute style = StyleAttribute(null);
static final TokenAttribute token = TokenAttribute(null);
static final Set<String> inlineKeys = {
Attribute.bold.key,
Attribute.italic.key,
@ -266,3 +269,7 @@ class HeightAttribute extends Attribute<String> {
class StyleAttribute extends Attribute<String> {
StyleAttribute(String val) : super('style', AttributeScope.IGNORE, val);
}
class TokenAttribute extends Attribute<String> {
TokenAttribute(String val) : super('token', AttributeScope.IGNORE, val);
}

@ -1,6 +1,6 @@
name: flutter_quill
description: One client and affiliated collaborator of Flutter Quill is Bullet Journal App.
version: 1.0.7
version: 1.0.8
#author: bulletjournal
homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill.git

Loading…
Cancel
Save