ekms 8.9.0-beta.17 → 8.9.0-beta.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/helpers/dialogues.js +6 -6
- package/common/meta.js +2 -1
- package/common/wp.instance.json +5947 -60
- package/common/wp.js +5 -1
- package/common/wp.test.json +10866 -2652
- package/package.json +2 -2
package/common/wp.js
CHANGED
@@ -59,11 +59,13 @@ const setUpdate = (isA, update, states) => {
|
|
59
59
|
update.styles = []
|
60
60
|
}
|
61
61
|
let style = root(state.value)
|
62
|
+
/*
|
62
63
|
if (style == 'underlined') {
|
63
64
|
style = 'underline'
|
64
65
|
} else if (style == 'italicize') {
|
65
66
|
style = 'italic'
|
66
67
|
}
|
68
|
+
*/
|
67
69
|
update.styles.push(style)
|
68
70
|
} else {
|
69
71
|
update.color = root(state.value)
|
@@ -96,9 +98,11 @@ template = {
|
|
96
98
|
'words are countable and statefulElements',
|
97
99
|
'characters are countable',
|
98
100
|
'paragraphs are countable',
|
99
|
-
'bold, italic, code and underline are styles',
|
101
|
+
'bold, italic, code, capitalize and underline are styles',
|
100
102
|
'underlined means underline',
|
103
|
+
'capitalized means capitalize',
|
101
104
|
'italicize means italic',
|
105
|
+
'italicized means italic',
|
102
106
|
// 'styles are negatable',
|
103
107
|
"resetIdSuffix",
|
104
108
|
{
|