ekms 8.9.0-beta.17 → 8.9.0-beta.19
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 +9309 -173
- package/common/wp.js +6 -1
- package/common/wp.test.json +12761 -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,12 @@ 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, lowercase and underline are styles',
|
100
102
|
'underlined means underline',
|
103
|
+
'capitalized means capitalize',
|
104
|
+
'uppercase means capitalize',
|
101
105
|
'italicize means italic',
|
106
|
+
'italicized means italic',
|
102
107
|
// 'styles are negatable',
|
103
108
|
"resetIdSuffix",
|
104
109
|
{
|