@modusoperandi/licit 1.2.1 → 1.3.0
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/LinkSetURLCommand.js +4 -3
- package/LinkSetURLCommand.js.flow +8 -1
- package/LinkTooltipPlugin.js +4 -3
- package/LinkTooltipPlugin.js.flow +8 -1
- package/TextColorMarkSpec.js +1 -1
- package/TextColorMarkSpec.js.flow +1 -1
- package/TextHighlightMarkSpec.js +1 -1
- package/TextHighlightMarkSpec.js.flow +1 -1
- package/bom.xml +597 -558
- package/package.json +2 -2
- package/ui/LinkURLEditor.js +1 -1
- package/ui/LinkURLEditor.js.flow +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@modusoperandi/licit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"subversion": "1",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"exports-loader": "^5.0.0",
|
|
91
91
|
"express": "^5.1.0",
|
|
92
92
|
"file-loader": "^6.2.0",
|
|
93
|
-
"flow-bin": "^0.
|
|
93
|
+
"flow-bin": "^0.268.0",
|
|
94
94
|
"flow-copy-source": "^2.0.9",
|
|
95
95
|
"flow-typed": "^4.0.0",
|
|
96
96
|
"flow-webpack-plugin": "^1.2.0",
|
package/ui/LinkURLEditor.js
CHANGED
|
@@ -186,7 +186,7 @@ var LinkURLEditor = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
186
186
|
})))), !isValid ? /*#__PURE__*/React.createElement("div", {
|
|
187
187
|
className: "tabcontent",
|
|
188
188
|
id: "innerlink"
|
|
189
|
-
}, /*#__PURE__*/React.createElement("p", null, "No TOC styles"), /*#__PURE__*/React.createElement("div", {
|
|
189
|
+
}, /*#__PURE__*/React.createElement("p", null, "No TOC/TOT/TOF styles"), /*#__PURE__*/React.createElement("div", {
|
|
190
190
|
className: "czi-form-buttons"
|
|
191
191
|
}, /*#__PURE__*/React.createElement(CustomButton, {
|
|
192
192
|
label: "Cancel",
|
package/ui/LinkURLEditor.js.flow
CHANGED
|
@@ -138,7 +138,7 @@ class LinkURLEditor extends React.PureComponent<any, any> {
|
|
|
138
138
|
</div>
|
|
139
139
|
{!isValid ? (
|
|
140
140
|
<div className="tabcontent" id="innerlink">
|
|
141
|
-
<p>No TOC styles</p>
|
|
141
|
+
<p>No TOC/TOT/TOF styles</p>
|
|
142
142
|
<div className="czi-form-buttons">
|
|
143
143
|
<CustomButton label="Cancel" onClick={this._cancel} />
|
|
144
144
|
</div>
|