File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
### Fixed
10
10
- The ` id ` attribute was not being used as the id for the editor.
11
11
12
+ ### Added
13
+ - Added new ` statusbar ` attribute that sets the editors ` statusbar ` config option.
14
+
12
15
## 2.0.2 - 2023-03-27
13
16
14
17
### Fixed
Original file line number Diff line number Diff line change 49
49
"webpack" : " ^5.75.0"
50
50
},
51
51
"dependencies" : {},
52
- "version" : " 2.0.3 -rc" ,
52
+ "version" : " 2.1.0 -rc" ,
53
53
"name" : " @tinymce/tinymce-webcomponent"
54
54
}
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ const parseNumberOrString = (value: string) => /^\d+$/.test(value) ? Number.pars
48
48
49
49
const configAttributes : Record < string , ( v : string ) => unknown > = {
50
50
setup : parseGlobal , // function
51
+ statusbar : parseBooleanOrString , // boolean
51
52
toolbar : parseFalseOrString , // string or false
52
53
menubar : parseFalseOrString , // string or false
53
54
plugins : parseString , // string
You can’t perform that action at this time.
0 commit comments