dtable-ui-component 0.1.96-test3 → 0.1.96-test4
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.
|
@@ -190,7 +190,7 @@ var CollaboratorEditor = /*#__PURE__*/function (_React$Component) {
|
|
|
190
190
|
var enableDeleteCollaborator = !isReadOnly;
|
|
191
191
|
return /*#__PURE__*/React.createElement("div", {
|
|
192
192
|
ref: this.setEditorContainerRef,
|
|
193
|
-
className: "
|
|
193
|
+
className: "dtable-ui-collaborator-editor"
|
|
194
194
|
}, /*#__PURE__*/React.createElement("div", {
|
|
195
195
|
ref: this.setEditorRef,
|
|
196
196
|
className: "dtable-ui-collaborator-editor-container"
|
package/lib/LinkEditor/index.js
CHANGED
|
@@ -261,7 +261,7 @@ var LinkEditor = /*#__PURE__*/function (_React$Component) {
|
|
|
261
261
|
var isShowRemoveIcon = !isReadOnly;
|
|
262
262
|
return /*#__PURE__*/React.createElement("div", {
|
|
263
263
|
ref: this.setEditorContainerRef,
|
|
264
|
-
className: "
|
|
264
|
+
className: "dtable-ui-link-editor"
|
|
265
265
|
}, /*#__PURE__*/React.createElement("div", {
|
|
266
266
|
ref: this.setEditorRef,
|
|
267
267
|
className: "dtable-ui-link-editor-container",
|
package/lib/TextEditor/index.js
CHANGED
|
@@ -75,11 +75,7 @@ var TextEditor = /*#__PURE__*/function (_React$Component) {
|
|
|
75
75
|
key: "render",
|
|
76
76
|
value: function render() {
|
|
77
77
|
var isReadOnly = this.props.isReadOnly;
|
|
78
|
-
return /*#__PURE__*/React.createElement(
|
|
79
|
-
className: "cell-editor text-editor"
|
|
80
|
-
}, /*#__PURE__*/React.createElement("div", {
|
|
81
|
-
className: "text-editor-container"
|
|
82
|
-
}, /*#__PURE__*/React.createElement(Input, {
|
|
78
|
+
return /*#__PURE__*/React.createElement(Input, {
|
|
83
79
|
ref: this.setInputRef,
|
|
84
80
|
type: "text",
|
|
85
81
|
value: this.state.newValue,
|
|
@@ -89,7 +85,7 @@ var TextEditor = /*#__PURE__*/function (_React$Component) {
|
|
|
89
85
|
onBlur: this.onBlur,
|
|
90
86
|
onCut: this.onCut,
|
|
91
87
|
onPaste: this.onPaste
|
|
92
|
-
})
|
|
88
|
+
});
|
|
93
89
|
}
|
|
94
90
|
}]);
|
|
95
91
|
|