dtable-ui-component 0.1.74 → 0.1.75-beta3
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/es/AutoNumberFormatter/index.css +1 -0
- package/es/{components/cell-formatter/auto-number-formatter.js → AutoNumberFormatter/index.js} +1 -0
- package/es/ButtonFormatter/index.css +13 -0
- package/es/{components/cell-formatter/button-formatter.js → ButtonFormatter/index.js} +1 -0
- package/es/CTimeFormatter/index.css +1 -0
- package/es/{components/cell-formatter/ctime-formatter.js → CTimeFormatter/index.js} +1 -0
- package/es/CheckboxFormatter/index.css +1 -0
- package/es/{components/cell-formatter/checkbox-formatter.js → CheckboxFormatter/index.js} +1 -0
- package/es/CollaboratorFormatter/index.css +1 -0
- package/es/{components/cell-formatter/collaborator-formatter.js → CollaboratorFormatter/index.js} +3 -2
- package/es/CollaboratorItem/index.css +49 -0
- package/es/CollaboratorItem/index.js +64 -0
- package/es/CreatorFormatter/index.css +1 -0
- package/es/{components/cell-formatter/creator-formatter.js → CreatorFormatter/index.js} +3 -2
- package/es/DateFormatter/index.css +1 -0
- package/es/{components/cell-formatter/date-formatter.js → DateFormatter/index.js} +2 -1
- package/es/DurationFormatter/index.css +1 -0
- package/es/{components/cell-formatter/duration-formatter.js → DurationFormatter/index.js} +2 -1
- package/es/EmailFormatter/index.css +5 -0
- package/es/{components/cell-formatter/email-formatter.js → EmailFormatter/index.js} +1 -0
- package/es/FileFormatter/index.css +29 -0
- package/es/{components/cell-formatter/file-formatter.js → FileFormatter/index.js} +2 -1
- package/es/{components/cell-formatter/widgets/file-item-formatter.js → FileItemFormatter/index.js} +2 -2
- package/es/{components/file-uploader → FileUploader}/index.js +0 -0
- package/es/FormulaFormatter/index.css +19 -0
- package/es/{components/cell-formatter/formula-formatter.js → FormulaFormatter/index.js} +8 -8
- package/es/GeolocationFormatter/index.css +1 -0
- package/es/{components/cell-formatter/geolocation-formatter.js → GeolocationFormatter/index.js} +2 -1
- package/es/{components/common → ImageFormatter}/images-lazy-load.js +2 -2
- package/es/ImageFormatter/index.css +34 -0
- package/es/{components/cell-formatter/image-formatter.js → ImageFormatter/index.js} +4 -3
- package/es/{css/image-previewer-ligntbox.css → ImagePreviewerLightbox/index.css} +0 -0
- package/es/{components/cell-formatter/widgets/image-previewer-lightbox.js → ImagePreviewerLightbox/index.js} +3 -3
- package/es/LastModifierFormatter/index.css +1 -0
- package/es/{components/cell-formatter/last-modifier-formatter.js → LastModifierFormatter/index.js} +5 -4
- package/es/LinkFormatter/index.css +27 -0
- package/es/{components/cell-formatter/link-formatter.js → LinkFormatter/index.js} +2 -2
- package/es/{css/loading.css → Loading/index.css} +0 -0
- package/es/{components/loading.js → Loading/index.js} +1 -1
- package/es/{components/cell-formatter/widgets/long-text-formatter → LongTextFormatter}/html-long-text-formatter.js +1 -1
- package/es/LongTextFormatter/index.css +63 -0
- package/es/{components/cell-formatter/long-text-formatter.js → LongTextFormatter/index.js} +3 -2
- package/es/{components/cell-formatter/widgets/long-text-formatter → LongTextFormatter}/simple-long-text-formatter.js +1 -1
- package/es/MTimeFormatter/index.css +1 -0
- package/es/{components/cell-formatter/mtime-formatter.js → MTimeFormatter/index.js} +1 -0
- package/es/{components/common/modal-portal.js → ModalPortal/index.js} +0 -0
- package/es/MultipleSelectFormatter/index.css +1 -0
- package/es/{components/cell-formatter/multiple-select-formatter.js → MultipleSelectFormatter/index.js} +2 -1
- package/es/NumberFormatter/index.css +1 -0
- package/es/{components/cell-formatter/number-formatter.js → NumberFormatter/index.js} +2 -1
- package/es/RateFormatter/index.css +1 -0
- package/es/{components/cell-formatter/rate-formatter.js → RateFormatter/index.js} +1 -0
- package/es/{components/common/select-item.js → SelectItem/index.js} +0 -0
- package/es/SingleSelectFormatter/index.css +1 -0
- package/es/{components/cell-formatter/single-select-formatter.js → SingleSelectFormatter/index.js} +2 -1
- package/es/TextFormatter/index.css +1 -0
- package/es/{components/cell-formatter/text-formatter.js → TextFormatter/index.js} +1 -0
- package/es/UrlFormatter/index.css +5 -0
- package/es/{components/cell-formatter/url-formatter.js → UrlFormatter/index.js} +1 -0
- package/es/app.js +1 -1
- package/es/{components/cell-factory/cell-formatter-factory.js → cellFormatterFactory/index.js} +3 -3
- package/es/components/cell-editor/checkbox-editor.js +104 -0
- package/es/components/cell-editor/collaborator-editor.js +236 -0
- package/es/components/cell-editor/date-editor.js +151 -0
- package/es/components/cell-editor/index.js +9 -0
- package/es/components/cell-editor/link-editor.js +303 -0
- package/es/components/cell-editor/multiple-select-editor.js +237 -0
- package/es/components/cell-editor/number-editor.js +154 -0
- package/es/components/cell-editor/single-select-editor.js +202 -0
- package/es/components/cell-editor/text-editor.js +122 -0
- package/es/components/cell-editor-dialog/pc-file-editor-dialog.js +46 -0
- package/es/components/cell-editor-dialog/pc-files-addition/index.js +0 -0
- package/es/components/cell-editor-dialog/pc-files-addition/pc-file-uploaded-item.js +0 -0
- package/es/components/cell-editor-dialog/pc-files-preview/index.js +0 -0
- package/es/components/cell-editor-dialog/pc-files-preview/pc-file-item-preview.js +0 -0
- package/es/components/cell-editor-popover/mb-collaborator-editor-popover.js +177 -0
- package/es/components/cell-editor-popover/mb-date-editor-popover.js +245 -0
- package/es/components/cell-editor-popover/mb-link-editor-popover.js +170 -0
- package/es/components/cell-editor-popover/mb-select-editor-popover.js +230 -0
- package/es/components/cell-editor-popover/pc-collaborator-editor-popover.js +109 -0
- package/es/components/cell-editor-popover/pc-date-editor-popover.js +142 -0
- package/es/components/cell-editor-popover/pc-link-editor-popover.js +114 -0
- package/es/components/cell-editor-popover/pc-select-editor-popover.js +143 -0
- package/es/constants/index.js +15 -14
- package/es/css/cell-formatter.css +0 -243
- package/es/formatterConfig/index.js +31 -0
- package/es/index.js +29 -3
- package/es/{components/toast → toaster}/alert.js +0 -0
- package/es/{components/toast → toaster}/index.js +0 -0
- package/es/{components/toast → toaster}/toast.js +0 -0
- package/es/{components/toast → toaster}/toastManager.js +0 -0
- package/es/{components/toast → toaster}/toaster.js +0 -0
- package/es/utils/cell-value-validator.js +1 -2
- package/es/utils/editor-utils.js +71 -0
- package/es/utils/normalize-long-text-value.js +2 -2
- package/es/utils/number-precision.js +1 -0
- package/es/utils/value-format-utils.js +2 -0
- package/lib/AutoNumberFormatter/index.css +1 -0
- package/lib/AutoNumberFormatter/index.js +47 -0
- package/lib/ButtonFormatter/index.css +13 -0
- package/lib/ButtonFormatter/index.js +68 -0
- package/lib/CTimeFormatter/index.css +1 -0
- package/lib/CTimeFormatter/index.js +72 -0
- package/lib/CheckboxFormatter/index.css +1 -0
- package/lib/CheckboxFormatter/index.js +58 -0
- package/lib/CollaboratorFormatter/index.css +1 -0
- package/lib/CollaboratorFormatter/index.js +113 -0
- package/lib/CollaboratorItem/index.css +49 -0
- package/lib/CollaboratorItem/index.js +81 -0
- package/lib/CreatorFormatter/index.css +1 -0
- package/lib/CreatorFormatter/index.js +107 -0
- package/lib/DateFormatter/index.css +1 -0
- package/lib/DateFormatter/index.js +75 -0
- package/lib/DurationFormatter/index.css +1 -0
- package/lib/DurationFormatter/index.js +51 -0
- package/lib/EmailFormatter/index.css +5 -0
- package/lib/EmailFormatter/index.js +47 -0
- package/lib/FileFormatter/index.css +29 -0
- package/lib/FileFormatter/index.js +79 -0
- package/lib/FileItemFormatter/index.js +63 -0
- package/lib/FileUploader/index.js +63 -0
- package/lib/FormulaFormatter/index.css +19 -0
- package/lib/FormulaFormatter/index.js +185 -0
- package/lib/GeolocationFormatter/index.css +1 -0
- package/lib/GeolocationFormatter/index.js +68 -0
- package/lib/ImageFormatter/images-lazy-load.js +158 -0
- package/lib/ImageFormatter/index.css +34 -0
- package/lib/ImageFormatter/index.js +173 -0
- package/lib/ImagePreviewerLightbox/index.css +87 -0
- package/lib/ImagePreviewerLightbox/index.js +152 -0
- package/lib/LastModifierFormatter/index.css +1 -0
- package/lib/LastModifierFormatter/index.js +107 -0
- package/lib/LinkFormatter/index.css +27 -0
- package/lib/LinkFormatter/index.js +165 -0
- package/lib/Loading/index.css +54 -0
- package/lib/Loading/index.js +16 -0
- package/lib/LongTextFormatter/html-long-text-formatter.js +107 -0
- package/lib/LongTextFormatter/index.css +63 -0
- package/lib/LongTextFormatter/index.js +48 -0
- package/lib/LongTextFormatter/simple-long-text-formatter.js +110 -0
- package/lib/MTimeFormatter/index.css +1 -0
- package/lib/MTimeFormatter/index.js +72 -0
- package/lib/ModalPortal/index.js +51 -0
- package/lib/MultipleSelectFormatter/index.css +1 -0
- package/lib/MultipleSelectFormatter/index.js +86 -0
- package/lib/NumberFormatter/index.css +1 -0
- package/lib/NumberFormatter/index.js +62 -0
- package/lib/RateFormatter/index.css +1 -0
- package/lib/RateFormatter/index.js +95 -0
- package/lib/SelectItem/index.js +73 -0
- package/lib/SingleSelectFormatter/index.css +1 -0
- package/lib/SingleSelectFormatter/index.js +86 -0
- package/lib/TextFormatter/index.css +1 -0
- package/lib/TextFormatter/index.js +69 -0
- package/lib/UrlFormatter/index.css +5 -0
- package/lib/UrlFormatter/index.js +47 -0
- package/lib/app.css +20 -0
- package/lib/app.js +96 -0
- package/lib/assets/images/avatar/default_avatar.png +0 -0
- package/lib/assets/images/file/192/excel.png +0 -0
- package/lib/assets/images/file/192/file.png +0 -0
- package/lib/assets/images/file/192/music.png +0 -0
- package/lib/assets/images/file/192/pdf.png +0 -0
- package/lib/assets/images/file/192/pic.png +0 -0
- package/lib/assets/images/file/192/ppt.png +0 -0
- package/lib/assets/images/file/192/txt.png +0 -0
- package/lib/assets/images/file/192/video.png +0 -0
- package/lib/assets/images/file/192/word.png +0 -0
- package/lib/assets/images/file/24/excel.png +0 -0
- package/lib/assets/images/file/24/file.png +0 -0
- package/lib/assets/images/file/24/music.png +0 -0
- package/lib/assets/images/file/24/pdf.png +0 -0
- package/lib/assets/images/file/24/pic.png +0 -0
- package/lib/assets/images/file/24/ppt.png +0 -0
- package/lib/assets/images/file/24/txt.png +0 -0
- package/lib/assets/images/file/24/video.png +0 -0
- package/lib/assets/images/file/24/word.png +0 -0
- package/lib/assets/images/folder/folder-192.png +0 -0
- package/lib/assets/images/folder/folder-24.png +0 -0
- package/lib/cellFormatterFactory/index.js +28 -0
- package/lib/components/cell-editor/checkbox-editor.js +111 -0
- package/lib/components/cell-editor/collaborator-editor.js +249 -0
- package/lib/components/cell-editor/date-editor.js +171 -0
- package/lib/components/cell-editor/index.js +40 -0
- package/lib/components/cell-editor/link-editor.js +321 -0
- package/lib/components/cell-editor/multiple-select-editor.js +250 -0
- package/lib/components/cell-editor/number-editor.js +162 -0
- package/lib/components/cell-editor/single-select-editor.js +216 -0
- package/lib/components/cell-editor/text-editor.js +129 -0
- package/lib/components/cell-editor-dialog/pc-file-editor-dialog.js +66 -0
- package/lib/components/cell-editor-dialog/pc-files-addition/index.js +1 -0
- package/lib/components/cell-editor-dialog/pc-files-addition/pc-file-uploaded-item.js +1 -0
- package/lib/components/cell-editor-dialog/pc-files-preview/index.js +1 -0
- package/lib/components/cell-editor-dialog/pc-files-preview/pc-file-item-preview.js +1 -0
- package/lib/components/cell-editor-popover/mb-collaborator-editor-popover.js +183 -0
- package/lib/components/cell-editor-popover/mb-date-editor-popover.js +262 -0
- package/lib/components/cell-editor-popover/mb-link-editor-popover.js +176 -0
- package/lib/components/cell-editor-popover/mb-select-editor-popover.js +243 -0
- package/lib/components/cell-editor-popover/pc-collaborator-editor-popover.js +124 -0
- package/lib/components/cell-editor-popover/pc-date-editor-popover.js +156 -0
- package/lib/components/cell-editor-popover/pc-link-editor-popover.js +128 -0
- package/lib/components/cell-editor-popover/pc-select-editor-popover.js +157 -0
- package/lib/components/common/collaborator-item.js +79 -0
- package/lib/components/common/edit-editor-button.js +67 -0
- package/lib/components/common/link-editor-option.js +121 -0
- package/lib/components/common/mobile/mb-editor-header.js +61 -0
- package/lib/components/common/select-editor-option.js +122 -0
- package/lib/constants/cell-types.js +54 -0
- package/lib/constants/index.js +72 -0
- package/lib/css/cell-editor.css +614 -0
- package/lib/css/cell-formatter.css +4 -0
- package/lib/css/custom-rc-calendar.css +118 -0
- package/lib/formatterConfig/index.js +62 -0
- package/lib/index.js +139 -0
- package/lib/lang/index.js +66 -0
- package/lib/locals/de.js +7 -0
- package/lib/locals/en.js +22 -0
- package/lib/locals/fr.js +7 -0
- package/lib/locals/zh-CN.js +22 -0
- package/lib/toaster/alert.js +164 -0
- package/lib/toaster/index.js +12 -0
- package/lib/toaster/toast.js +223 -0
- package/lib/toaster/toastManager.js +189 -0
- package/lib/toaster/toaster.js +92 -0
- package/lib/utils/cell-value-validator.js +35 -0
- package/lib/utils/column-utils.js +15 -0
- package/lib/utils/editor-utils.js +81 -0
- package/lib/utils/markdown2html.js +68 -0
- package/lib/utils/normalize-long-text-value.js +74 -0
- package/lib/utils/number-precision.js +182 -0
- package/lib/utils/unified/index.js +470 -0
- package/lib/utils/utils.js +141 -0
- package/lib/utils/value-format-utils.js +547 -0
- package/lib/utils/vfile/core.js +172 -0
- package/lib/utils/vfile/index.js +48 -0
- package/package.json +5 -3
- package/es/components/cell-formatter/formatter-config.js +0 -31
- package/es/components/cell-formatter/index.js +0 -27
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
exports.__esModule = true;
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _formatterConfig = _interopRequireDefault(require("../formatterConfig"));
|
|
9
|
+
|
|
10
|
+
var CellFormatterFactory = /*#__PURE__*/function () {
|
|
11
|
+
function CellFormatterFactory() {}
|
|
12
|
+
|
|
13
|
+
var _proto = CellFormatterFactory.prototype;
|
|
14
|
+
|
|
15
|
+
_proto.createFormatter = function createFormatter(formatterType) {
|
|
16
|
+
if (_formatterConfig.default[formatterType]) {
|
|
17
|
+
return _formatterConfig.default[formatterType];
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
return null;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
return CellFormatterFactory;
|
|
24
|
+
}();
|
|
25
|
+
|
|
26
|
+
var cellFormatterFactory = new CellFormatterFactory();
|
|
27
|
+
var _default = cellFormatterFactory;
|
|
28
|
+
exports.default = _default;
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
exports.__esModule = true;
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
|
|
9
|
+
|
|
10
|
+
var _inheritsLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/inheritsLoose"));
|
|
11
|
+
|
|
12
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
13
|
+
|
|
14
|
+
var _react = _interopRequireDefault(require("react"));
|
|
15
|
+
|
|
16
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
17
|
+
|
|
18
|
+
var propTypes = {
|
|
19
|
+
isReadOnly: _propTypes.default.bool,
|
|
20
|
+
value: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.bool]),
|
|
21
|
+
column: _propTypes.default.object,
|
|
22
|
+
onCommit: _propTypes.default.func
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
var CheckboxEditor = /*#__PURE__*/function (_React$Component) {
|
|
26
|
+
(0, _inheritsLoose2.default)(CheckboxEditor, _React$Component);
|
|
27
|
+
|
|
28
|
+
function CheckboxEditor(props) {
|
|
29
|
+
var _this;
|
|
30
|
+
|
|
31
|
+
_this = _React$Component.call(this, props) || this;
|
|
32
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "getValue", function () {
|
|
33
|
+
var updated = {};
|
|
34
|
+
var column = _this.props.column;
|
|
35
|
+
updated[column.key] = _this.state.value;
|
|
36
|
+
return updated;
|
|
37
|
+
});
|
|
38
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onCommit", function () {
|
|
39
|
+
var updated = _this.getValue();
|
|
40
|
+
|
|
41
|
+
_this.props.onCommit(updated);
|
|
42
|
+
});
|
|
43
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onChange", function (event) {
|
|
44
|
+
if (_this.props.isReadOnly) {
|
|
45
|
+
return;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
var value = event.target.checked;
|
|
49
|
+
|
|
50
|
+
if (value === _this.state.value) {
|
|
51
|
+
return;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
_this.setState({
|
|
55
|
+
value: value
|
|
56
|
+
}, function () {
|
|
57
|
+
_this.onCommit();
|
|
58
|
+
});
|
|
59
|
+
});
|
|
60
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onKeyDown", function (event) {
|
|
61
|
+
event.stopPropagation();
|
|
62
|
+
});
|
|
63
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onBlur", function () {// this.onCommit();
|
|
64
|
+
});
|
|
65
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "setInputRef", function (input) {
|
|
66
|
+
_this.input = input;
|
|
67
|
+
});
|
|
68
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "getStyle", function () {
|
|
69
|
+
return {
|
|
70
|
+
marginLeft: 0,
|
|
71
|
+
transform: 'scale(1.1)'
|
|
72
|
+
};
|
|
73
|
+
});
|
|
74
|
+
_this.state = {
|
|
75
|
+
value: props.value ? props.value : false
|
|
76
|
+
};
|
|
77
|
+
return _this;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
var _proto = CheckboxEditor.prototype;
|
|
81
|
+
|
|
82
|
+
_proto.render = function render() {
|
|
83
|
+
var style = this.getStyle();
|
|
84
|
+
return /*#__PURE__*/_react.default.createElement("div", {
|
|
85
|
+
className: "cell-editor checkbox-editor"
|
|
86
|
+
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
87
|
+
className: "checkbox-editor-container"
|
|
88
|
+
}, /*#__PURE__*/_react.default.createElement("input", {
|
|
89
|
+
ref: this.setInputRef,
|
|
90
|
+
type: "checkbox",
|
|
91
|
+
className: "checkbox",
|
|
92
|
+
checked: this.state.value,
|
|
93
|
+
onBlur: this.onBlur,
|
|
94
|
+
onPaste: this.onPaste,
|
|
95
|
+
onKeyDown: this.onKeyDown,
|
|
96
|
+
onChange: this.onChange,
|
|
97
|
+
style: style,
|
|
98
|
+
readOnly: this.props.isReadOnly
|
|
99
|
+
})));
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
return CheckboxEditor;
|
|
103
|
+
}(_react.default.Component);
|
|
104
|
+
|
|
105
|
+
(0, _defineProperty2.default)(CheckboxEditor, "defaultProps", {
|
|
106
|
+
isReadOnly: false,
|
|
107
|
+
value: false
|
|
108
|
+
});
|
|
109
|
+
CheckboxEditor.propTypes = propTypes;
|
|
110
|
+
var _default = CheckboxEditor;
|
|
111
|
+
exports.default = _default;
|
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
exports.__esModule = true;
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
|
|
9
|
+
|
|
10
|
+
var _inheritsLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/inheritsLoose"));
|
|
11
|
+
|
|
12
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
13
|
+
|
|
14
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
15
|
+
|
|
16
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
17
|
+
|
|
18
|
+
var _reactResponsive = _interopRequireDefault(require("react-responsive"));
|
|
19
|
+
|
|
20
|
+
var _lang = require("../../lang");
|
|
21
|
+
|
|
22
|
+
var _collaboratorItem = _interopRequireDefault(require("../common/collaborator-item"));
|
|
23
|
+
|
|
24
|
+
var _editEditorButton = _interopRequireDefault(require("../common/edit-editor-button"));
|
|
25
|
+
|
|
26
|
+
var _pcCollaboratorEditorPopover = _interopRequireDefault(require("../cell-editor-popover/pc-collaborator-editor-popover"));
|
|
27
|
+
|
|
28
|
+
var _mbCollaboratorEditorPopover = _interopRequireDefault(require("../cell-editor-popover/mb-collaborator-editor-popover"));
|
|
29
|
+
|
|
30
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
31
|
+
|
|
32
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
33
|
+
|
|
34
|
+
var propTypes = {
|
|
35
|
+
isReadOnly: _propTypes.default.bool,
|
|
36
|
+
value: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.array]),
|
|
37
|
+
column: _propTypes.default.object,
|
|
38
|
+
collaborators: _propTypes.default.array.isRequired,
|
|
39
|
+
onCommit: _propTypes.default.func
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
var CollaboratorEditor = /*#__PURE__*/function (_React$Component) {
|
|
43
|
+
(0, _inheritsLoose2.default)(CollaboratorEditor, _React$Component);
|
|
44
|
+
|
|
45
|
+
function CollaboratorEditor(props) {
|
|
46
|
+
var _this;
|
|
47
|
+
|
|
48
|
+
_this = _React$Component.call(this, props) || this;
|
|
49
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onDocumentToggle", function (e) {
|
|
50
|
+
if (_this.editorContainer !== e.target && !_this.editorContainer.contains(e.target)) {
|
|
51
|
+
_this.onClosePopover();
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "getFormattedCollaborators", function () {
|
|
55
|
+
var newValue = _this.state.newValue;
|
|
56
|
+
|
|
57
|
+
if (Array.isArray(newValue) && newValue.length > 0) {
|
|
58
|
+
var collaborators = _this.props.collaborators;
|
|
59
|
+
return newValue.map(function (collaboratorEmail) {
|
|
60
|
+
return collaborators.find(function (collaborator) {
|
|
61
|
+
return collaborator.email === collaboratorEmail;
|
|
62
|
+
});
|
|
63
|
+
}).filter(function (collaborator) {
|
|
64
|
+
return !!collaborator;
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
return [];
|
|
69
|
+
});
|
|
70
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onAddOptionToggle", function (event) {
|
|
71
|
+
event.nativeEvent.stopImmediatePropagation();
|
|
72
|
+
event.stopPropagation();
|
|
73
|
+
|
|
74
|
+
if (_this.props.isReadOnly) {
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
var isPopoverShow = !_this.state.isPopoverShow;
|
|
79
|
+
|
|
80
|
+
if (isPopoverShow) {
|
|
81
|
+
var popoverPosition = _this.caculatePopoverPosition();
|
|
82
|
+
|
|
83
|
+
_this.setState({
|
|
84
|
+
isPopoverShow: isPopoverShow,
|
|
85
|
+
popoverPosition: popoverPosition
|
|
86
|
+
});
|
|
87
|
+
} else {
|
|
88
|
+
_this.setState({
|
|
89
|
+
isPopoverShow: isPopoverShow
|
|
90
|
+
});
|
|
91
|
+
}
|
|
92
|
+
});
|
|
93
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onCommit", function (newValue) {
|
|
94
|
+
var updated = {};
|
|
95
|
+
var column = _this.props.column;
|
|
96
|
+
updated[column.key] = newValue;
|
|
97
|
+
|
|
98
|
+
_this.props.onCommit(updated);
|
|
99
|
+
});
|
|
100
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onCollaboratorItemToggle", function (collaborator) {
|
|
101
|
+
var newValue = _this.state.newValue.slice();
|
|
102
|
+
|
|
103
|
+
var collaboratorIndex = newValue.findIndex(function (collaboratorEmail) {
|
|
104
|
+
return collaboratorEmail === collaborator.email;
|
|
105
|
+
});
|
|
106
|
+
|
|
107
|
+
if (collaboratorIndex !== -1) {
|
|
108
|
+
newValue.splice(collaboratorIndex, 1);
|
|
109
|
+
} else {
|
|
110
|
+
newValue.push(collaborator.email);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
_this.setState({
|
|
114
|
+
newValue: newValue
|
|
115
|
+
}, function () {
|
|
116
|
+
_this.onCommit(newValue);
|
|
117
|
+
|
|
118
|
+
_this.onClosePopover();
|
|
119
|
+
});
|
|
120
|
+
});
|
|
121
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onDeleteCollaborator", function (collaborator) {
|
|
122
|
+
var newValue = _this.state.newValue.slice();
|
|
123
|
+
|
|
124
|
+
var optionIndex = newValue.findIndex(function (collaboratorEmail) {
|
|
125
|
+
return collaboratorEmail === collaborator.email;
|
|
126
|
+
});
|
|
127
|
+
|
|
128
|
+
if (optionIndex > -1) {
|
|
129
|
+
newValue.splice(optionIndex, 1);
|
|
130
|
+
|
|
131
|
+
_this.setState({
|
|
132
|
+
newValue: newValue
|
|
133
|
+
}, function () {
|
|
134
|
+
_this.onCommit(newValue);
|
|
135
|
+
});
|
|
136
|
+
}
|
|
137
|
+
});
|
|
138
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "caculatePopoverPosition", function () {
|
|
139
|
+
var POPOVER_MAX_HEIGHT = 200;
|
|
140
|
+
var innerHeight = window.innerHeight;
|
|
141
|
+
|
|
142
|
+
var _this$editor$getClien = _this.editor.getClientRects()[0],
|
|
143
|
+
top = _this$editor$getClien.top,
|
|
144
|
+
height = _this$editor$getClien.height;
|
|
145
|
+
|
|
146
|
+
var isBelow = innerHeight - (top + height) > POPOVER_MAX_HEIGHT;
|
|
147
|
+
var position = {
|
|
148
|
+
top: height + 1,
|
|
149
|
+
left: 0
|
|
150
|
+
};
|
|
151
|
+
|
|
152
|
+
if (!isBelow) {
|
|
153
|
+
var bottom = height + 1;
|
|
154
|
+
position = {
|
|
155
|
+
bottom: bottom,
|
|
156
|
+
left: 0
|
|
157
|
+
};
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
return position;
|
|
161
|
+
});
|
|
162
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onClosePopover", function () {
|
|
163
|
+
_this.setState({
|
|
164
|
+
isPopoverShow: false
|
|
165
|
+
});
|
|
166
|
+
});
|
|
167
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "setEditorContainerRef", function (editorContainer) {
|
|
168
|
+
_this.editorContainer = editorContainer;
|
|
169
|
+
});
|
|
170
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "setEditorRef", function (editor) {
|
|
171
|
+
_this.editor = editor;
|
|
172
|
+
});
|
|
173
|
+
_this.state = {
|
|
174
|
+
newValue: Array.isArray(props.value) ? props.value : [],
|
|
175
|
+
isPopoverShow: false,
|
|
176
|
+
popoverPosition: {}
|
|
177
|
+
};
|
|
178
|
+
return _this;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
var _proto = CollaboratorEditor.prototype;
|
|
182
|
+
|
|
183
|
+
_proto.componentDidMount = function componentDidMount() {
|
|
184
|
+
document.addEventListener('click', this.onDocumentToggle);
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
_proto.componentWillUnmount = function componentWillUnmount() {
|
|
188
|
+
document.removeEventListener('click', this.onDocumentToggle);
|
|
189
|
+
};
|
|
190
|
+
|
|
191
|
+
_proto.render = function render() {
|
|
192
|
+
var _this2 = this;
|
|
193
|
+
|
|
194
|
+
var _this$props = this.props,
|
|
195
|
+
collaborators = _this$props.collaborators,
|
|
196
|
+
isReadOnly = _this$props.isReadOnly;
|
|
197
|
+
var _this$state = this.state,
|
|
198
|
+
isPopoverShow = _this$state.isPopoverShow,
|
|
199
|
+
popoverPosition = _this$state.popoverPosition;
|
|
200
|
+
var selectedCollaborators = this.getFormattedCollaborators();
|
|
201
|
+
var enableDeleteCollaborator = !isReadOnly;
|
|
202
|
+
return /*#__PURE__*/_react.default.createElement("div", {
|
|
203
|
+
ref: this.setEditorContainerRef,
|
|
204
|
+
className: "cell-editor dtable-ui-collaborator-editor"
|
|
205
|
+
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
206
|
+
ref: this.setEditorRef,
|
|
207
|
+
className: "dtable-ui-collaborator-editor-container"
|
|
208
|
+
}, /*#__PURE__*/_react.default.createElement(_editEditorButton.default, {
|
|
209
|
+
text: (0, _lang.getLocale)('Add_a_collaborator'),
|
|
210
|
+
onClick: this.onAddOptionToggle
|
|
211
|
+
}), /*#__PURE__*/_react.default.createElement("div", {
|
|
212
|
+
className: "collaborators-container"
|
|
213
|
+
}, selectedCollaborators.length > 0 && selectedCollaborators.map(function (collaborator) {
|
|
214
|
+
return /*#__PURE__*/_react.default.createElement(_collaboratorItem.default, {
|
|
215
|
+
key: collaborator.email,
|
|
216
|
+
collaborator: collaborator,
|
|
217
|
+
enableDeleteCollaborator: enableDeleteCollaborator,
|
|
218
|
+
onDeleteCollaborator: _this2.onDeleteCollaborator
|
|
219
|
+
});
|
|
220
|
+
}))), isPopoverShow && /*#__PURE__*/_react.default.createElement(_react.Fragment, null, /*#__PURE__*/_react.default.createElement(_reactResponsive.default, {
|
|
221
|
+
query: '(min-width: 768px)'
|
|
222
|
+
}, /*#__PURE__*/_react.default.createElement(_pcCollaboratorEditorPopover.default, {
|
|
223
|
+
popoverPosition: popoverPosition,
|
|
224
|
+
isReadOnly: this.props.isReadOnly,
|
|
225
|
+
selectedCollaborators: selectedCollaborators,
|
|
226
|
+
collaborators: collaborators,
|
|
227
|
+
onCollaboratorItemToggle: this.onCollaboratorItemToggle
|
|
228
|
+
})), /*#__PURE__*/_react.default.createElement(_reactResponsive.default, {
|
|
229
|
+
query: '(max-width: 767.8px)'
|
|
230
|
+
}, /*#__PURE__*/_react.default.createElement(_mbCollaboratorEditorPopover.default, {
|
|
231
|
+
isReadOnly: this.props.isReadOnly,
|
|
232
|
+
value: this.state.newValue,
|
|
233
|
+
column: this.props.column,
|
|
234
|
+
collaborators: this.props.collaborators,
|
|
235
|
+
onCollaboratorItemToggle: this.onCollaboratorItemToggle,
|
|
236
|
+
onClosePopover: this.onClosePopover
|
|
237
|
+
}))));
|
|
238
|
+
};
|
|
239
|
+
|
|
240
|
+
return CollaboratorEditor;
|
|
241
|
+
}(_react.default.Component);
|
|
242
|
+
|
|
243
|
+
(0, _defineProperty2.default)(CollaboratorEditor, "defaultProps", {
|
|
244
|
+
isReadOnly: false,
|
|
245
|
+
value: []
|
|
246
|
+
});
|
|
247
|
+
CollaboratorEditor.propTypes = propTypes;
|
|
248
|
+
var _default = CollaboratorEditor;
|
|
249
|
+
exports.default = _default;
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
exports.__esModule = true;
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
|
|
9
|
+
|
|
10
|
+
var _inheritsLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/inheritsLoose"));
|
|
11
|
+
|
|
12
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
13
|
+
|
|
14
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
15
|
+
|
|
16
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
17
|
+
|
|
18
|
+
var _reactResponsive = _interopRequireDefault(require("react-responsive"));
|
|
19
|
+
|
|
20
|
+
var _moment = _interopRequireDefault(require("moment"));
|
|
21
|
+
|
|
22
|
+
var _valueFormatUtils = require("../../utils/value-format-utils");
|
|
23
|
+
|
|
24
|
+
var _pcDateEditorPopover = _interopRequireDefault(require("../cell-editor-popover/pc-date-editor-popover"));
|
|
25
|
+
|
|
26
|
+
var _mbDateEditorPopover = _interopRequireDefault(require("../cell-editor-popover/mb-date-editor-popover"));
|
|
27
|
+
|
|
28
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
29
|
+
|
|
30
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
31
|
+
|
|
32
|
+
var propTypes = {
|
|
33
|
+
isReadOnly: _propTypes.default.bool,
|
|
34
|
+
value: _propTypes.default.string,
|
|
35
|
+
lang: _propTypes.default.string,
|
|
36
|
+
column: _propTypes.default.object.isRequired,
|
|
37
|
+
onCommit: _propTypes.default.func.isRequired
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
var DateEditor = /*#__PURE__*/function (_React$Component) {
|
|
41
|
+
(0, _inheritsLoose2.default)(DateEditor, _React$Component);
|
|
42
|
+
|
|
43
|
+
function DateEditor(props) {
|
|
44
|
+
var _this;
|
|
45
|
+
|
|
46
|
+
_this = _React$Component.call(this, props) || this;
|
|
47
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "getDateFormat", function () {
|
|
48
|
+
var column = _this.props.column;
|
|
49
|
+
var defaultDateFormat = 'YYYY-MM-DD';
|
|
50
|
+
var dateFormat = column.data && column.data.format;
|
|
51
|
+
return dateFormat || defaultDateFormat;
|
|
52
|
+
});
|
|
53
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onDateEditorToggle", function () {
|
|
54
|
+
var isReadOnly = _this.props.isReadOnly;
|
|
55
|
+
|
|
56
|
+
if (isReadOnly) {
|
|
57
|
+
return;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
_this.setState({
|
|
61
|
+
isPopoverShow: !_this.state.isPopoverShow
|
|
62
|
+
});
|
|
63
|
+
});
|
|
64
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onValueChanged", function (value) {
|
|
65
|
+
if (value !== _this.state.newValue) {
|
|
66
|
+
_this.setState({
|
|
67
|
+
newValue: value
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
_this.onCommit(value);
|
|
71
|
+
}
|
|
72
|
+
});
|
|
73
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onCommit", function (newValue) {
|
|
74
|
+
var updated = {};
|
|
75
|
+
var column = _this.props.column;
|
|
76
|
+
updated[column.key] = newValue;
|
|
77
|
+
|
|
78
|
+
_this.props.onCommit(updated);
|
|
79
|
+
});
|
|
80
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onClosePopover", function () {
|
|
81
|
+
_this.setState({
|
|
82
|
+
isPopoverShow: false
|
|
83
|
+
});
|
|
84
|
+
});
|
|
85
|
+
_this.state = {
|
|
86
|
+
isDateInit: false,
|
|
87
|
+
newValue: '',
|
|
88
|
+
isPopoverShow: false,
|
|
89
|
+
showHourAndMinute: false,
|
|
90
|
+
defaultCalendarValue: null
|
|
91
|
+
};
|
|
92
|
+
return _this;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
var _proto = DateEditor.prototype;
|
|
96
|
+
|
|
97
|
+
_proto.componentDidMount = function componentDidMount() {
|
|
98
|
+
var _this$props = this.props,
|
|
99
|
+
value = _this$props.value,
|
|
100
|
+
lang = _this$props.lang;
|
|
101
|
+
|
|
102
|
+
_moment.default.locale(lang);
|
|
103
|
+
|
|
104
|
+
var dateFormat = this.getDateFormat();
|
|
105
|
+
this.setState({
|
|
106
|
+
isDateInit: true,
|
|
107
|
+
newValue: value,
|
|
108
|
+
dateFormat: dateFormat,
|
|
109
|
+
showHourAndMinute: dateFormat.indexOf('HH:mm') > -1
|
|
110
|
+
});
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
_proto.render = function render() {
|
|
114
|
+
if (!this.state.isDateInit) {
|
|
115
|
+
return /*#__PURE__*/_react.default.createElement("div", {
|
|
116
|
+
className: "cell-editor date-editor"
|
|
117
|
+
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
118
|
+
className: "date-editor-conteinr"
|
|
119
|
+
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
120
|
+
className: "control-form"
|
|
121
|
+
})));
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
var _this$props2 = this.props,
|
|
125
|
+
lang = _this$props2.lang,
|
|
126
|
+
column = _this$props2.column;
|
|
127
|
+
var _this$state = this.state,
|
|
128
|
+
newValue = _this$state.newValue,
|
|
129
|
+
isPopoverShow = _this$state.isPopoverShow,
|
|
130
|
+
dateFormat = _this$state.dateFormat,
|
|
131
|
+
showHourAndMinute = _this$state.showHourAndMinute;
|
|
132
|
+
return /*#__PURE__*/_react.default.createElement("div", {
|
|
133
|
+
className: "cell-editor dtable-ui-date-editor"
|
|
134
|
+
}, !isPopoverShow && /*#__PURE__*/_react.default.createElement("div", {
|
|
135
|
+
className: "dtable-ui-date-editor-container"
|
|
136
|
+
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
137
|
+
className: "form-control",
|
|
138
|
+
onClick: this.onDateEditorToggle
|
|
139
|
+
}, (0, _valueFormatUtils.getDateDisplayString)(newValue, dateFormat))), isPopoverShow && /*#__PURE__*/_react.default.createElement(_react.Fragment, null, /*#__PURE__*/_react.default.createElement(_reactResponsive.default, {
|
|
140
|
+
query: '(min-width: 768px)'
|
|
141
|
+
}, /*#__PURE__*/_react.default.createElement(_pcDateEditorPopover.default, {
|
|
142
|
+
lang: lang,
|
|
143
|
+
value: newValue,
|
|
144
|
+
dateFormat: dateFormat,
|
|
145
|
+
showHourAndMinute: showHourAndMinute,
|
|
146
|
+
onValueChanged: this.onValueChanged
|
|
147
|
+
})), /*#__PURE__*/_react.default.createElement(_reactResponsive.default, {
|
|
148
|
+
query: '(max-width: 767.8px)'
|
|
149
|
+
}, /*#__PURE__*/_react.default.createElement(_mbDateEditorPopover.default, {
|
|
150
|
+
isReadOnly: this.props.isReadOnly,
|
|
151
|
+
lang: lang,
|
|
152
|
+
value: newValue,
|
|
153
|
+
dateFormat: dateFormat,
|
|
154
|
+
showHourAndMinute: showHourAndMinute,
|
|
155
|
+
column: column,
|
|
156
|
+
onValueChanged: this.onValueChanged,
|
|
157
|
+
onClosePopover: this.onClosePopover
|
|
158
|
+
}))));
|
|
159
|
+
};
|
|
160
|
+
|
|
161
|
+
return DateEditor;
|
|
162
|
+
}(_react.default.Component);
|
|
163
|
+
|
|
164
|
+
(0, _defineProperty2.default)(DateEditor, "defaultProps", {
|
|
165
|
+
isReadOnly: false,
|
|
166
|
+
value: '',
|
|
167
|
+
lang: 'en'
|
|
168
|
+
});
|
|
169
|
+
DateEditor.propTypes = propTypes;
|
|
170
|
+
var _default = DateEditor;
|
|
171
|
+
exports.default = _default;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
exports.__esModule = true;
|
|
6
|
+
exports.TextEditor = exports.SingleSelectEditor = exports.NumberEditor = exports.MultipleSelectEditor = exports.LinkEditor = exports.DateEditor = exports.CollaboratorEditor = exports.CheckboxEditor = void 0;
|
|
7
|
+
|
|
8
|
+
require("../../css/cell-editor.css");
|
|
9
|
+
|
|
10
|
+
var _numberEditor = _interopRequireDefault(require("./number-editor"));
|
|
11
|
+
|
|
12
|
+
exports.NumberEditor = _numberEditor.default;
|
|
13
|
+
|
|
14
|
+
var _textEditor = _interopRequireDefault(require("./text-editor"));
|
|
15
|
+
|
|
16
|
+
exports.TextEditor = _textEditor.default;
|
|
17
|
+
|
|
18
|
+
var _checkboxEditor = _interopRequireDefault(require("./checkbox-editor"));
|
|
19
|
+
|
|
20
|
+
exports.CheckboxEditor = _checkboxEditor.default;
|
|
21
|
+
|
|
22
|
+
var _singleSelectEditor = _interopRequireDefault(require("./single-select-editor"));
|
|
23
|
+
|
|
24
|
+
exports.SingleSelectEditor = _singleSelectEditor.default;
|
|
25
|
+
|
|
26
|
+
var _multipleSelectEditor = _interopRequireDefault(require("./multiple-select-editor"));
|
|
27
|
+
|
|
28
|
+
exports.MultipleSelectEditor = _multipleSelectEditor.default;
|
|
29
|
+
|
|
30
|
+
var _collaboratorEditor = _interopRequireDefault(require("./collaborator-editor"));
|
|
31
|
+
|
|
32
|
+
exports.CollaboratorEditor = _collaboratorEditor.default;
|
|
33
|
+
|
|
34
|
+
var _linkEditor = _interopRequireDefault(require("./link-editor"));
|
|
35
|
+
|
|
36
|
+
exports.LinkEditor = _linkEditor.default;
|
|
37
|
+
|
|
38
|
+
var _dateEditor = _interopRequireDefault(require("./date-editor"));
|
|
39
|
+
|
|
40
|
+
exports.DateEditor = _dateEditor.default;
|