dtable-ui-component 0.1.75-beta1 → 0.1.75-beta2

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.
Files changed (227) hide show
  1. package/lib/AutoNumberFormatter/index.css +1 -0
  2. package/{es/components/cell-formatter/auto-number-formatter.js → lib/AutoNumberFormatter/index.js} +1 -0
  3. package/lib/ButtonFormatter/index.css +13 -0
  4. package/{es/components/cell-formatter/button-formatter.js → lib/ButtonFormatter/index.js} +1 -0
  5. package/lib/CTimeFormatter/index.css +1 -0
  6. package/{es/components/cell-formatter/ctime-formatter.js → lib/CTimeFormatter/index.js} +1 -0
  7. package/lib/CheckboxFormatter/index.css +1 -0
  8. package/{es/components/cell-formatter/checkbox-formatter.js → lib/CheckboxFormatter/index.js} +1 -0
  9. package/lib/CollaboratorFormatter/index.css +1 -0
  10. package/{es/components/cell-formatter/collaborator-formatter.js → lib/CollaboratorFormatter/index.js} +3 -2
  11. package/lib/CollaboratorItem/index.css +49 -0
  12. package/{es/components/common/collaborator-item.js → lib/CollaboratorItem/index.js} +1 -0
  13. package/lib/CreatorFormatter/index.css +1 -0
  14. package/{es/components/cell-formatter/creator-formatter.js → lib/CreatorFormatter/index.js} +3 -2
  15. package/lib/DateFormatter/index.css +1 -0
  16. package/{es/components/cell-formatter/date-formatter.js → lib/DateFormatter/index.js} +2 -1
  17. package/lib/DurationFormatter/index.css +1 -0
  18. package/{es/components/cell-formatter/duration-formatter.js → lib/DurationFormatter/index.js} +2 -1
  19. package/lib/EmailFormatter/index.css +5 -0
  20. package/{es/components/cell-formatter/email-formatter.js → lib/EmailFormatter/index.js} +1 -0
  21. package/lib/FileFormatter/index.css +29 -0
  22. package/{es/components/cell-formatter/file-formatter.js → lib/FileFormatter/index.js} +2 -1
  23. package/{es/components/cell-formatter/widgets/file-item-formatter.js → lib/FileItemFormatter/index.js} +2 -2
  24. package/{es/components/file-uploader → lib/FileUploader}/index.js +0 -0
  25. package/lib/FormulaFormatter/index.css +19 -0
  26. package/{es/components/cell-formatter/formula-formatter.js → lib/FormulaFormatter/index.js} +8 -8
  27. package/lib/GeolocationFormatter/index.css +1 -0
  28. package/{es/components/cell-formatter/geolocation-formatter.js → lib/GeolocationFormatter/index.js} +2 -1
  29. package/{es/components/common → lib/ImageFormatter}/images-lazy-load.js +2 -2
  30. package/lib/ImageFormatter/index.css +34 -0
  31. package/{es/components/cell-formatter/image-formatter.js → lib/ImageFormatter/index.js} +4 -3
  32. package/{es/css/image-previewer-ligntbox.css → lib/ImagePreviewerLightbox/index.css} +0 -0
  33. package/{es/components/cell-formatter/widgets/image-previewer-lightbox.js → lib/ImagePreviewerLightbox/index.js} +3 -3
  34. package/lib/LastModifierFormatter/index.css +1 -0
  35. package/{es/components/cell-formatter/last-modifier-formatter.js → lib/LastModifierFormatter/index.js} +5 -4
  36. package/lib/LinkFormatter/index.css +27 -0
  37. package/{es/components/cell-formatter/link-formatter.js → lib/LinkFormatter/index.js} +2 -2
  38. package/{es/css/loading.css → lib/Loading/index.css} +0 -0
  39. package/{es/components/loading.js → lib/Loading/index.js} +1 -1
  40. package/{es/components/cell-formatter/widgets/long-text-formatter → lib/LongTextFormatter}/html-long-text-formatter.js +1 -1
  41. package/lib/LongTextFormatter/index.css +63 -0
  42. package/{es/components/cell-formatter/long-text-formatter.js → lib/LongTextFormatter/index.js} +3 -2
  43. package/{es/components/cell-formatter/widgets/long-text-formatter → lib/LongTextFormatter}/simple-long-text-formatter.js +1 -1
  44. package/lib/MTimeFormatter/index.css +1 -0
  45. package/{es/components/cell-formatter/mtime-formatter.js → lib/MTimeFormatter/index.js} +1 -0
  46. package/{es/components/common/modal-portal.js → lib/ModalPortal/index.js} +0 -0
  47. package/lib/MultipleSelectFormatter/index.css +1 -0
  48. package/{es/components/cell-formatter/multiple-select-formatter.js → lib/MultipleSelectFormatter/index.js} +2 -1
  49. package/lib/NumberFormatter/index.css +1 -0
  50. package/{es/components/cell-formatter/number-formatter.js → lib/NumberFormatter/index.js} +2 -1
  51. package/lib/RateFormatter/index.css +1 -0
  52. package/{es/components/cell-formatter/rate-formatter.js → lib/RateFormatter/index.js} +1 -0
  53. package/{es/components/common/select-item.js → lib/SelectItem/index.js} +0 -0
  54. package/lib/SingleSelectFormatter/index.css +1 -0
  55. package/{es/components/cell-formatter/single-select-formatter.js → lib/SingleSelectFormatter/index.js} +2 -1
  56. package/lib/TextFormatter/index.css +1 -0
  57. package/{es/components/cell-formatter/text-formatter.js → lib/TextFormatter/index.js} +1 -0
  58. package/lib/UrlFormatter/index.css +5 -0
  59. package/{es/components/cell-formatter/url-formatter.js → lib/UrlFormatter/index.js} +1 -0
  60. package/lib/app.js +75 -80
  61. package/{es/components/cell-factory/cell-formatter-factory.js → lib/cellFormatterFactory/index.js} +3 -3
  62. package/lib/components/cell-editor/checkbox-editor.js +59 -66
  63. package/lib/components/cell-editor/collaborator-editor.js +113 -126
  64. package/lib/components/cell-editor/date-editor.js +99 -119
  65. package/lib/components/cell-editor/index.js +9 -40
  66. package/lib/components/cell-editor/link-editor.js +122 -140
  67. package/lib/components/cell-editor/multiple-select-editor.js +114 -127
  68. package/lib/components/cell-editor/number-editor.js +78 -86
  69. package/lib/components/cell-editor/single-select-editor.js +106 -120
  70. package/lib/components/cell-editor/text-editor.js +65 -72
  71. package/lib/components/cell-editor-dialog/pc-file-editor-dialog.js +31 -51
  72. package/lib/components/cell-editor-dialog/pc-files-addition/index.js +0 -1
  73. package/lib/components/cell-editor-dialog/pc-files-addition/pc-file-uploaded-item.js +0 -1
  74. package/lib/components/cell-editor-dialog/pc-files-preview/index.js +0 -1
  75. package/lib/components/cell-editor-dialog/pc-files-preview/pc-file-item-preview.js +0 -1
  76. package/lib/components/cell-editor-popover/mb-collaborator-editor-popover.js +105 -111
  77. package/lib/components/cell-editor-popover/mb-date-editor-popover.js +140 -157
  78. package/lib/components/cell-editor-popover/mb-link-editor-popover.js +103 -109
  79. package/lib/components/cell-editor-popover/mb-select-editor-popover.js +142 -155
  80. package/lib/components/cell-editor-popover/pc-collaborator-editor-popover.js +74 -89
  81. package/lib/components/cell-editor-popover/pc-date-editor-popover.js +88 -102
  82. package/lib/components/cell-editor-popover/pc-link-editor-popover.js +77 -91
  83. package/lib/components/cell-editor-popover/pc-select-editor-popover.js +91 -105
  84. package/lib/components/common/collaborator-item.js +43 -59
  85. package/lib/components/common/edit-editor-button.js +28 -39
  86. package/lib/components/common/link-editor-option.js +63 -71
  87. package/lib/components/common/mobile/mb-editor-header.js +39 -52
  88. package/lib/components/common/select-editor-option.js +58 -74
  89. package/lib/constants/cell-types.js +25 -54
  90. package/lib/constants/index.js +5 -26
  91. package/lib/css/cell-formatter.css +0 -243
  92. package/lib/formatterConfig/index.js +31 -0
  93. package/lib/index.js +31 -64
  94. package/lib/lang/index.js +11 -27
  95. package/lib/locals/de.js +1 -6
  96. package/lib/locals/en.js +1 -6
  97. package/lib/locals/fr.js +1 -6
  98. package/lib/locals/zh-CN.js +1 -6
  99. package/{es/components → lib}/toast/alert.js +0 -0
  100. package/{es/components → lib}/toast/index.js +0 -0
  101. package/{es/components → lib}/toast/toast.js +0 -0
  102. package/{es/components → lib}/toast/toastManager.js +0 -0
  103. package/{es/components → lib}/toast/toaster.js +0 -0
  104. package/lib/utils/cell-value-validator.js +4 -14
  105. package/lib/utils/column-utils.js +5 -13
  106. package/lib/utils/editor-utils.js +3 -13
  107. package/lib/utils/markdown2html.js +1 -7
  108. package/lib/utils/normalize-long-text-value.js +1 -6
  109. package/lib/utils/number-precision.js +13 -31
  110. package/lib/utils/utils.js +8 -33
  111. package/lib/utils/value-format-utils.js +58 -108
  112. package/package.json +5 -5
  113. package/es/app.css +0 -20
  114. package/es/app.js +0 -91
  115. package/es/assets/images/avatar/default_avatar.png +0 -0
  116. package/es/assets/images/file/192/excel.png +0 -0
  117. package/es/assets/images/file/192/file.png +0 -0
  118. package/es/assets/images/file/192/music.png +0 -0
  119. package/es/assets/images/file/192/pdf.png +0 -0
  120. package/es/assets/images/file/192/pic.png +0 -0
  121. package/es/assets/images/file/192/ppt.png +0 -0
  122. package/es/assets/images/file/192/txt.png +0 -0
  123. package/es/assets/images/file/192/video.png +0 -0
  124. package/es/assets/images/file/192/word.png +0 -0
  125. package/es/assets/images/file/24/excel.png +0 -0
  126. package/es/assets/images/file/24/file.png +0 -0
  127. package/es/assets/images/file/24/music.png +0 -0
  128. package/es/assets/images/file/24/pdf.png +0 -0
  129. package/es/assets/images/file/24/pic.png +0 -0
  130. package/es/assets/images/file/24/ppt.png +0 -0
  131. package/es/assets/images/file/24/txt.png +0 -0
  132. package/es/assets/images/file/24/video.png +0 -0
  133. package/es/assets/images/file/24/word.png +0 -0
  134. package/es/assets/images/folder/folder-192.png +0 -0
  135. package/es/assets/images/folder/folder-24.png +0 -0
  136. package/es/components/cell-editor/checkbox-editor.js +0 -104
  137. package/es/components/cell-editor/collaborator-editor.js +0 -236
  138. package/es/components/cell-editor/date-editor.js +0 -151
  139. package/es/components/cell-editor/index.js +0 -9
  140. package/es/components/cell-editor/link-editor.js +0 -303
  141. package/es/components/cell-editor/multiple-select-editor.js +0 -237
  142. package/es/components/cell-editor/number-editor.js +0 -154
  143. package/es/components/cell-editor/single-select-editor.js +0 -202
  144. package/es/components/cell-editor/text-editor.js +0 -122
  145. package/es/components/cell-editor-dialog/pc-file-editor-dialog.js +0 -46
  146. package/es/components/cell-editor-dialog/pc-files-addition/index.js +0 -0
  147. package/es/components/cell-editor-dialog/pc-files-addition/pc-file-uploaded-item.js +0 -0
  148. package/es/components/cell-editor-dialog/pc-files-preview/index.js +0 -0
  149. package/es/components/cell-editor-dialog/pc-files-preview/pc-file-item-preview.js +0 -0
  150. package/es/components/cell-editor-popover/mb-collaborator-editor-popover.js +0 -177
  151. package/es/components/cell-editor-popover/mb-date-editor-popover.js +0 -245
  152. package/es/components/cell-editor-popover/mb-link-editor-popover.js +0 -170
  153. package/es/components/cell-editor-popover/mb-select-editor-popover.js +0 -230
  154. package/es/components/cell-editor-popover/pc-collaborator-editor-popover.js +0 -109
  155. package/es/components/cell-editor-popover/pc-date-editor-popover.js +0 -142
  156. package/es/components/cell-editor-popover/pc-link-editor-popover.js +0 -114
  157. package/es/components/cell-editor-popover/pc-select-editor-popover.js +0 -143
  158. package/es/components/cell-formatter/formatter-config.js +0 -31
  159. package/es/components/cell-formatter/index.js +0 -27
  160. package/es/components/common/edit-editor-button.js +0 -56
  161. package/es/components/common/link-editor-option.js +0 -113
  162. package/es/components/common/mobile/mb-editor-header.js +0 -48
  163. package/es/components/common/select-editor-option.js +0 -106
  164. package/es/constants/cell-types.js +0 -25
  165. package/es/constants/index.js +0 -48
  166. package/es/css/cell-editor.css +0 -614
  167. package/es/css/cell-formatter.css +0 -247
  168. package/es/css/custom-rc-calendar.css +0 -118
  169. package/es/index.js +0 -6
  170. package/es/lang/index.js +0 -50
  171. package/es/locals/de.js +0 -2
  172. package/es/locals/en.js +0 -17
  173. package/es/locals/fr.js +0 -2
  174. package/es/locals/zh-CN.js +0 -17
  175. package/es/utils/cell-value-validator.js +0 -32
  176. package/es/utils/column-utils.js +0 -7
  177. package/es/utils/editor-utils.js +0 -71
  178. package/es/utils/markdown2html.js +0 -62
  179. package/es/utils/normalize-long-text-value.js +0 -69
  180. package/es/utils/number-precision.js +0 -163
  181. package/es/utils/unified/index.js +0 -470
  182. package/es/utils/utils.js +0 -116
  183. package/es/utils/value-format-utils.js +0 -495
  184. package/es/utils/vfile/core.js +0 -172
  185. package/es/utils/vfile/index.js +0 -48
  186. package/lib/components/cell-factory/cell-formatter-factory.js +0 -28
  187. package/lib/components/cell-formatter/auto-number-formatter.js +0 -45
  188. package/lib/components/cell-formatter/button-formatter.js +0 -66
  189. package/lib/components/cell-formatter/checkbox-formatter.js +0 -56
  190. package/lib/components/cell-formatter/collaborator-formatter.js +0 -111
  191. package/lib/components/cell-formatter/creator-formatter.js +0 -105
  192. package/lib/components/cell-formatter/ctime-formatter.js +0 -70
  193. package/lib/components/cell-formatter/date-formatter.js +0 -73
  194. package/lib/components/cell-formatter/duration-formatter.js +0 -49
  195. package/lib/components/cell-formatter/email-formatter.js +0 -45
  196. package/lib/components/cell-formatter/file-formatter.js +0 -77
  197. package/lib/components/cell-formatter/formatter-config.js +0 -66
  198. package/lib/components/cell-formatter/formula-formatter.js +0 -189
  199. package/lib/components/cell-formatter/geolocation-formatter.js +0 -66
  200. package/lib/components/cell-formatter/image-formatter.js +0 -171
  201. package/lib/components/cell-formatter/index.js +0 -112
  202. package/lib/components/cell-formatter/last-modifier-formatter.js +0 -105
  203. package/lib/components/cell-formatter/link-formatter.js +0 -165
  204. package/lib/components/cell-formatter/long-text-formatter.js +0 -46
  205. package/lib/components/cell-formatter/mtime-formatter.js +0 -70
  206. package/lib/components/cell-formatter/multiple-select-formatter.js +0 -84
  207. package/lib/components/cell-formatter/number-formatter.js +0 -60
  208. package/lib/components/cell-formatter/rate-formatter.js +0 -93
  209. package/lib/components/cell-formatter/single-select-formatter.js +0 -84
  210. package/lib/components/cell-formatter/text-formatter.js +0 -67
  211. package/lib/components/cell-formatter/url-formatter.js +0 -45
  212. package/lib/components/cell-formatter/widgets/file-item-formatter.js +0 -63
  213. package/lib/components/cell-formatter/widgets/image-previewer-lightbox.js +0 -152
  214. package/lib/components/cell-formatter/widgets/long-text-formatter/html-long-text-formatter.js +0 -107
  215. package/lib/components/cell-formatter/widgets/long-text-formatter/simple-long-text-formatter.js +0 -110
  216. package/lib/components/common/images-lazy-load.js +0 -158
  217. package/lib/components/common/modal-portal.js +0 -51
  218. package/lib/components/common/select-item.js +0 -73
  219. package/lib/components/file-uploader/index.js +0 -63
  220. package/lib/components/loading.js +0 -16
  221. package/lib/components/toast/alert.js +0 -164
  222. package/lib/components/toast/index.js +0 -12
  223. package/lib/components/toast/toast.js +0 -223
  224. package/lib/components/toast/toastManager.js +0 -189
  225. package/lib/components/toast/toaster.js +0 -92
  226. package/lib/css/image-previewer-ligntbox.css +0 -87
  227. package/lib/css/loading.css +0 -54
@@ -1,61 +1,48 @@
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 _inheritsLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/inheritsLoose"));
9
-
10
- var _react = _interopRequireDefault(require("react"));
11
-
12
- var _propTypes = _interopRequireDefault(require("prop-types"));
13
-
14
- var propTypes = {
15
- title: _propTypes.default.string,
16
- titleClass: _propTypes.default.string,
17
- leftContent: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.object]),
18
- rightContent: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.object]),
19
- onLeftClick: _propTypes.default.func,
20
- onRightClick: _propTypes.default.func
21
- };
1
+ import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
2
+ import _createClass from "@babel/runtime/helpers/esm/createClass";
3
+ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
+ import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
+ import React from 'react';
22
6
 
23
7
  var MBEditorHeader = /*#__PURE__*/function (_React$Component) {
24
- (0, _inheritsLoose2.default)(MBEditorHeader, _React$Component);
8
+ _inherits(MBEditorHeader, _React$Component);
9
+
10
+ var _super = _createSuper(MBEditorHeader);
25
11
 
26
12
  function MBEditorHeader() {
27
- return _React$Component.apply(this, arguments) || this;
28
- }
13
+ _classCallCheck(this, MBEditorHeader);
29
14
 
30
- var _proto = MBEditorHeader.prototype;
15
+ return _super.apply(this, arguments);
16
+ }
31
17
 
32
- _proto.render = function render() {
33
- var _this$props = this.props,
34
- title = _this$props.title,
35
- titleClass = _this$props.titleClass,
36
- leftContent = _this$props.leftContent,
37
- rightContent = _this$props.rightContent,
38
- onLeftClick = _this$props.onLeftClick,
39
- onRightClick = _this$props.onRightClick;
40
- return /*#__PURE__*/_react.default.createElement("div", {
41
- className: "dtable-ui-mb-editor-header " + (titleClass ? titleClass : '')
42
- }, /*#__PURE__*/_react.default.createElement("span", {
43
- className: "editor-header-left-content",
44
- onClick: onLeftClick
45
- }, leftContent), /*#__PURE__*/_react.default.createElement("span", {
46
- className: "editor-header-title"
47
- }, title), /*#__PURE__*/_react.default.createElement("span", {
48
- className: "editor-header-right-content",
49
- onClick: onRightClick,
50
- style: {
51
- color: '#f09f3f'
52
- }
53
- }, rightContent));
54
- };
18
+ _createClass(MBEditorHeader, [{
19
+ key: "render",
20
+ value: function render() {
21
+ var _this$props = this.props,
22
+ title = _this$props.title,
23
+ titleClass = _this$props.titleClass,
24
+ leftContent = _this$props.leftContent,
25
+ rightContent = _this$props.rightContent,
26
+ onLeftClick = _this$props.onLeftClick,
27
+ onRightClick = _this$props.onRightClick;
28
+ return /*#__PURE__*/React.createElement("div", {
29
+ className: "dtable-ui-mb-editor-header ".concat(titleClass ? titleClass : '')
30
+ }, /*#__PURE__*/React.createElement("span", {
31
+ className: "editor-header-left-content",
32
+ onClick: onLeftClick
33
+ }, leftContent), /*#__PURE__*/React.createElement("span", {
34
+ className: "editor-header-title"
35
+ }, title), /*#__PURE__*/React.createElement("span", {
36
+ className: "editor-header-right-content",
37
+ onClick: onRightClick,
38
+ style: {
39
+ color: '#f09f3f'
40
+ }
41
+ }, rightContent));
42
+ }
43
+ }]);
55
44
 
56
45
  return MBEditorHeader;
57
- }(_react.default.Component);
46
+ }(React.Component);
58
47
 
59
- MBEditorHeader.propTypes = propTypes;
60
- var _default = MBEditorHeader;
61
- exports.default = _default;
48
+ export default MBEditorHeader;
@@ -1,51 +1,33 @@
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
- /**
19
- * option : {
20
- * id: '',
21
- * name: '',
22
- * color: '',
23
- * }
24
- */
25
- var propTypes = {
26
- option: _propTypes.default.object.isRequired,
27
- isShowRemoveIcon: _propTypes.default.bool,
28
- onDeleteSelectOption: _propTypes.default.func
29
- };
1
+ import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
2
+ import _createClass from "@babel/runtime/helpers/esm/createClass";
3
+ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
+ import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
+ import React from 'react';
30
6
 
31
7
  var SelectEditorOption = /*#__PURE__*/function (_React$Component) {
32
- (0, _inheritsLoose2.default)(SelectEditorOption, _React$Component);
8
+ _inherits(SelectEditorOption, _React$Component);
9
+
10
+ var _super = _createSuper(SelectEditorOption);
33
11
 
34
12
  function SelectEditorOption() {
35
13
  var _this;
36
14
 
15
+ _classCallCheck(this, SelectEditorOption);
16
+
37
17
  for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
38
18
  args[_key] = arguments[_key];
39
19
  }
40
20
 
41
- _this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;
42
- (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onDeleteOption", function (event) {
21
+ _this = _super.call.apply(_super, [this].concat(args));
22
+
23
+ _this.onDeleteOption = function (event) {
43
24
  event.nativeEvent.stopImmediatePropagation();
44
25
  event.stopPropagation();
45
26
 
46
27
  _this.props.onDeleteSelectOption(_this.props.option);
47
- });
48
- (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "getContainerStyle", function () {
28
+ };
29
+
30
+ _this.getContainerStyle = function () {
49
31
  var option = _this.props.option;
50
32
  return {
51
33
  display: 'inline-flex',
@@ -57,8 +39,9 @@ var SelectEditorOption = /*#__PURE__*/function (_React$Component) {
57
39
  fontSize: '13px',
58
40
  backgroundColor: option.color
59
41
  };
60
- });
61
- (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "getOptionStyle", function (option) {
42
+ };
43
+
44
+ _this.getOptionStyle = function (option) {
62
45
  var textColor = option.textColor || null;
63
46
  return {
64
47
  flex: 1,
@@ -67,8 +50,9 @@ var SelectEditorOption = /*#__PURE__*/function (_React$Component) {
67
50
  margin: '0 4px 0 2px',
68
51
  color: textColor
69
52
  };
70
- });
71
- (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "getOperationStyle", function (option) {
53
+ };
54
+
55
+ _this.getOperationStyle = function (option) {
72
56
  var textColor = option.textColor || null;
73
57
  return {
74
58
  height: '20px',
@@ -77,46 +61,46 @@ var SelectEditorOption = /*#__PURE__*/function (_React$Component) {
77
61
  color: textColor === '#FFFFFF' ? '#FFFFFF' : '#909090',
78
62
  transform: 'scale(.8)'
79
63
  };
80
- });
64
+ };
65
+
81
66
  return _this;
82
67
  }
83
68
 
84
- var _proto = SelectEditorOption.prototype;
85
-
86
- _proto.render = function render() {
87
- var _this$props = this.props,
88
- option = _this$props.option,
89
- isShowRemoveIcon = _this$props.isShowRemoveIcon;
90
- var containerStyle = this.getContainerStyle();
91
- var optionStyle = this.getOptionStyle(option);
92
- var operationStyle = this.getOperationStyle(option);
93
- return /*#__PURE__*/_react.default.createElement("div", {
94
- className: "dtable-ui select-option-item",
95
- style: containerStyle
96
- }, /*#__PURE__*/_react.default.createElement("div", {
97
- className: "option-info",
98
- style: optionStyle
99
- }, /*#__PURE__*/_react.default.createElement("div", {
100
- className: "option-name"
101
- }, option.name)), isShowRemoveIcon && /*#__PURE__*/_react.default.createElement("div", {
102
- className: "option-remove",
103
- style: operationStyle,
104
- onClick: this.onDeleteOption
105
- }, /*#__PURE__*/_react.default.createElement("i", {
106
- className: "dtable-font dtable-icon-fork-number",
107
- style: {
108
- fontSize: '12px',
109
- lineHeight: '20px'
110
- }
111
- })));
112
- };
69
+ _createClass(SelectEditorOption, [{
70
+ key: "render",
71
+ value: function render() {
72
+ var _this$props = this.props,
73
+ option = _this$props.option,
74
+ isShowRemoveIcon = _this$props.isShowRemoveIcon;
75
+ var containerStyle = this.getContainerStyle();
76
+ var optionStyle = this.getOptionStyle(option);
77
+ var operationStyle = this.getOperationStyle(option);
78
+ return /*#__PURE__*/React.createElement("div", {
79
+ className: "dtable-ui select-option-item",
80
+ style: containerStyle
81
+ }, /*#__PURE__*/React.createElement("div", {
82
+ className: "option-info",
83
+ style: optionStyle
84
+ }, /*#__PURE__*/React.createElement("div", {
85
+ className: "option-name"
86
+ }, option.name)), isShowRemoveIcon && /*#__PURE__*/React.createElement("div", {
87
+ className: "option-remove",
88
+ style: operationStyle,
89
+ onClick: this.onDeleteOption
90
+ }, /*#__PURE__*/React.createElement("i", {
91
+ className: "dtable-font dtable-icon-fork-number",
92
+ style: {
93
+ fontSize: '12px',
94
+ lineHeight: '20px'
95
+ }
96
+ })));
97
+ }
98
+ }]);
113
99
 
114
100
  return SelectEditorOption;
115
- }(_react.default.Component);
101
+ }(React.Component);
116
102
 
117
- (0, _defineProperty2.default)(SelectEditorOption, "defaultProps", {
103
+ SelectEditorOption.defaultProps = {
118
104
  isShowRemoveIcon: false
119
- });
120
- SelectEditorOption.propTypes = propTypes;
121
- var _default = SelectEditorOption;
122
- exports.default = _default;
105
+ };
106
+ export default SelectEditorOption;
@@ -1,54 +1,25 @@
1
- "use strict";
2
-
3
- exports.__esModule = true;
4
- exports.URL = exports.TEXT = exports.SINGLE_SELECT = exports.RATE = exports.NUMBER = exports.MULTIPLE_SELECT = exports.MTIME = exports.LONG_TEXT = exports.LINK_FORMULA = exports.LINK = exports.LAST_MODIFIER = exports.IMAGE = exports.GEOLOCATION = exports.FORMULA = exports.FILE = exports.EMAIL = exports.DURATION = exports.DEFAULT = exports.DATE = exports.CTIME = exports.CREATOR = exports.COLLABORATOR = exports.CHECKBOX = exports.BUTTON = exports.AUTO_NUMBER = void 0;
5
- var DEFAULT = 'default';
6
- exports.DEFAULT = DEFAULT;
7
- var NUMBER = 'number';
8
- exports.NUMBER = NUMBER;
9
- var TEXT = 'text';
10
- exports.TEXT = TEXT;
11
- var CHECKBOX = 'checkbox';
12
- exports.CHECKBOX = CHECKBOX;
13
- var DATE = 'date';
14
- exports.DATE = DATE;
15
- var SINGLE_SELECT = 'single-select';
16
- exports.SINGLE_SELECT = SINGLE_SELECT;
17
- var LONG_TEXT = 'long-text';
18
- exports.LONG_TEXT = LONG_TEXT;
19
- var IMAGE = 'image';
20
- exports.IMAGE = IMAGE;
21
- var FILE = 'file';
22
- exports.FILE = FILE;
23
- var MULTIPLE_SELECT = 'multiple-select';
24
- exports.MULTIPLE_SELECT = MULTIPLE_SELECT;
25
- var COLLABORATOR = 'collaborator';
26
- exports.COLLABORATOR = COLLABORATOR;
27
- var LINK = 'link';
28
- exports.LINK = LINK;
29
- var FORMULA = 'formula';
30
- exports.FORMULA = FORMULA;
31
- var LINK_FORMULA = 'link-formula';
32
- exports.LINK_FORMULA = LINK_FORMULA;
33
- var CREATOR = 'creator';
34
- exports.CREATOR = CREATOR;
35
- var CTIME = 'ctime';
36
- exports.CTIME = CTIME;
37
- var LAST_MODIFIER = 'last-modifier';
38
- exports.LAST_MODIFIER = LAST_MODIFIER;
39
- var MTIME = 'mtime';
40
- exports.MTIME = MTIME;
41
- var GEOLOCATION = 'geolocation';
42
- exports.GEOLOCATION = GEOLOCATION;
43
- var AUTO_NUMBER = 'auto-number';
44
- exports.AUTO_NUMBER = AUTO_NUMBER;
45
- var URL = 'url';
46
- exports.URL = URL;
47
- var EMAIL = 'email';
48
- exports.EMAIL = EMAIL;
49
- var DURATION = 'duration';
50
- exports.DURATION = DURATION;
51
- var RATE = 'rate';
52
- exports.RATE = RATE;
53
- var BUTTON = 'button';
54
- exports.BUTTON = BUTTON;
1
+ export var DEFAULT = 'default';
2
+ export var NUMBER = 'number';
3
+ export var TEXT = 'text';
4
+ export var CHECKBOX = 'checkbox';
5
+ export var DATE = 'date';
6
+ export var SINGLE_SELECT = 'single-select';
7
+ export var LONG_TEXT = 'long-text';
8
+ export var IMAGE = 'image';
9
+ export var FILE = 'file';
10
+ export var MULTIPLE_SELECT = 'multiple-select';
11
+ export var COLLABORATOR = 'collaborator';
12
+ export var LINK = 'link';
13
+ export var FORMULA = 'formula';
14
+ export var LINK_FORMULA = 'link-formula';
15
+ export var CREATOR = 'creator';
16
+ export var CTIME = 'ctime';
17
+ export var LAST_MODIFIER = 'last-modifier';
18
+ export var MTIME = 'mtime';
19
+ export var GEOLOCATION = 'geolocation';
20
+ export var AUTO_NUMBER = 'auto-number';
21
+ export var URL = 'url';
22
+ export var EMAIL = 'email';
23
+ export var DURATION = 'duration';
24
+ export var RATE = 'rate';
25
+ export var BUTTON = 'button';
@@ -1,16 +1,8 @@
1
- "use strict";
2
-
3
- exports.__esModule = true;
4
- exports.SIMPLE_CELL_FORMULA_RESULTS = exports.SIMPLE_CELL_COLUMNS = exports.NUMBER_TYPES = exports.FORMULA_RESULT_TYPE = exports.DURATION_ZERO_DISPLAY = exports.DURATION_FORMATS_MAP = exports.DURATION_FORMATS = exports.DURATION_DECIMAL_DIGITS = exports.DEFAULT_NUMBER_FORMAT = exports.DEFAULT_DATE_FORMAT = exports.DATE_TYPES = exports.COLLABORATOR_COLUMN_TYPES = exports.ARRAY_FORMAL_COLUMNS_TYPES = exports.ARRAY_FORMAL_COLUMNS = void 0;
5
-
6
- var CellType = _interopRequireWildcard(require("./cell-types"));
1
+ import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
7
2
 
8
3
  var _DURATION_ZERO_DISPLA, _DURATION_DECIMAL_DIG;
9
4
 
10
- 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); }
11
-
12
- 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; }
13
-
5
+ import * as CellType from './cell-types';
14
6
  var NUMBER_TYPES = {
15
7
  'NUMBER': 'number',
16
8
  'NUMBER_WITH_COMMAS': 'number-with-commas',
@@ -19,7 +11,6 @@ var NUMBER_TYPES = {
19
11
  'EURO': 'euro',
20
12
  'DOLLAR': 'dollar'
21
13
  };
22
- exports.NUMBER_TYPES = NUMBER_TYPES;
23
14
  var DATE_TYPES = {
24
15
  'D/M/YYYY': 'D/M/YYYY',
25
16
  'D/M/YYYY HH:mm': 'D/M/YYYY HH:mm',
@@ -28,7 +19,6 @@ var DATE_TYPES = {
28
19
  'YYYY-MM-DD': 'YYYY-MM-DD',
29
20
  'YYYY-MM-DD HH:mm': 'YYYY-MM-DD HH:mm'
30
21
  };
31
- exports.DATE_TYPES = DATE_TYPES;
32
22
  var FORMULA_RESULT_TYPE = {
33
23
  NUMBER: 'number',
34
24
  STRING: 'string',
@@ -36,26 +26,17 @@ var FORMULA_RESULT_TYPE = {
36
26
  BOOL: 'bool',
37
27
  ARRAY: 'array'
38
28
  };
39
- exports.FORMULA_RESULT_TYPE = FORMULA_RESULT_TYPE;
40
29
  var SIMPLE_CELL_COLUMNS = [CellType.TEXT, CellType.NUMBER, CellType.DATE, CellType.CTIME, CellType.MTIME, CellType.GEOLOCATION, CellType.AUTO_NUMBER, CellType.URL, CellType.EMAIL, CellType.DURATION, CellType.CHECKBOX, CellType.RATE];
41
- exports.SIMPLE_CELL_COLUMNS = SIMPLE_CELL_COLUMNS;
42
30
  var ARRAY_FORMAL_COLUMNS = [CellType.IMAGE, CellType.FILE, CellType.MULTIPLE_SELECT, CellType.COLLABORATOR];
43
- exports.ARRAY_FORMAL_COLUMNS = ARRAY_FORMAL_COLUMNS;
44
31
  var SIMPLE_CELL_FORMULA_RESULTS = [FORMULA_RESULT_TYPE.NUMBER, FORMULA_RESULT_TYPE.STRING, FORMULA_RESULT_TYPE.DATE, FORMULA_RESULT_TYPE.BOOL];
45
- exports.SIMPLE_CELL_FORMULA_RESULTS = SIMPLE_CELL_FORMULA_RESULTS;
46
32
  var COLLABORATOR_COLUMN_TYPES = [CellType.COLLABORATOR, CellType.CREATOR, CellType.LAST_MODIFIER];
47
- exports.COLLABORATOR_COLUMN_TYPES = COLLABORATOR_COLUMN_TYPES;
48
33
  var ARRAY_FORMAL_COLUMNS_TYPES = [CellType.IMAGE, CellType.FILE, CellType.MULTIPLE_SELECT, CellType.COLLABORATOR];
49
- exports.ARRAY_FORMAL_COLUMNS_TYPES = ARRAY_FORMAL_COLUMNS_TYPES;
50
34
  var DEFAULT_NUMBER_FORMAT = 'number';
51
- exports.DEFAULT_NUMBER_FORMAT = DEFAULT_NUMBER_FORMAT;
52
35
  var DEFAULT_DATE_FORMAT = 'YYYY-MM-DD';
53
- exports.DEFAULT_DATE_FORMAT = DEFAULT_DATE_FORMAT;
54
36
  var DURATION_FORMATS_MAP = {
55
37
  H_MM: 'h:mm',
56
38
  H_MM_SS: 'h:mm:ss'
57
39
  };
58
- exports.DURATION_FORMATS_MAP = DURATION_FORMATS_MAP;
59
40
  var DURATION_FORMATS = [{
60
41
  name: DURATION_FORMATS_MAP.H_MM,
61
42
  type: DURATION_FORMATS_MAP.H_MM
@@ -63,8 +44,6 @@ var DURATION_FORMATS = [{
63
44
  name: DURATION_FORMATS_MAP.H_MM_SS,
64
45
  type: DURATION_FORMATS_MAP.H_MM_SS
65
46
  }];
66
- exports.DURATION_FORMATS = DURATION_FORMATS;
67
- var DURATION_ZERO_DISPLAY = (_DURATION_ZERO_DISPLA = {}, _DURATION_ZERO_DISPLA[DURATION_FORMATS_MAP.H_MM] = '0:00', _DURATION_ZERO_DISPLA[DURATION_FORMATS_MAP.H_MM_SS] = '0:00', _DURATION_ZERO_DISPLA);
68
- exports.DURATION_ZERO_DISPLAY = DURATION_ZERO_DISPLAY;
69
- var DURATION_DECIMAL_DIGITS = (_DURATION_DECIMAL_DIG = {}, _DURATION_DECIMAL_DIG[DURATION_FORMATS_MAP.H_MM] = 0, _DURATION_DECIMAL_DIG[DURATION_FORMATS_MAP.H_MM_SS] = 0, _DURATION_DECIMAL_DIG);
70
- exports.DURATION_DECIMAL_DIGITS = DURATION_DECIMAL_DIGITS;
47
+ var DURATION_ZERO_DISPLAY = (_DURATION_ZERO_DISPLA = {}, _defineProperty(_DURATION_ZERO_DISPLA, DURATION_FORMATS_MAP.H_MM, '0:00'), _defineProperty(_DURATION_ZERO_DISPLA, DURATION_FORMATS_MAP.H_MM_SS, '0:00'), _DURATION_ZERO_DISPLA);
48
+ var DURATION_DECIMAL_DIGITS = (_DURATION_DECIMAL_DIG = {}, _defineProperty(_DURATION_DECIMAL_DIG, DURATION_FORMATS_MAP.H_MM, 0), _defineProperty(_DURATION_DECIMAL_DIG, DURATION_FORMATS_MAP.H_MM_SS, 0), _DURATION_DECIMAL_DIG);
49
+ export { CellType, NUMBER_TYPES, DATE_TYPES, FORMULA_RESULT_TYPE, SIMPLE_CELL_COLUMNS, ARRAY_FORMAL_COLUMNS, SIMPLE_CELL_FORMULA_RESULTS, COLLABORATOR_COLUMN_TYPES, ARRAY_FORMAL_COLUMNS_TYPES, DEFAULT_NUMBER_FORMAT, DEFAULT_DATE_FORMAT, DURATION_FORMATS_MAP, DURATION_FORMATS, DURATION_ZERO_DISPLAY, DURATION_DECIMAL_DIGITS };
@@ -2,246 +2,3 @@
2
2
  overflow: hidden;
3
3
  line-height: 1;
4
4
  }
5
-
6
- /* collaborator */
7
- .dtable-ui.collaborator-item {
8
- display: inline-flex;
9
- align-items: center;
10
- margin-right: 10px;
11
- padding: 0 8px 0 2px;
12
- height: 20px;
13
- font-size: 13px;
14
- border-radius: 10px;
15
- background: #eaeaea;
16
- }
17
-
18
- .dtable-ui.collaborator-item .collaborator-avatar,
19
- .dtable-ui.collaborator-item .collaborator-name,
20
- .dtable-ui.collaborator-item .collaborator-remove {
21
- height: 20px;
22
- line-height: 20px;
23
- }
24
-
25
- .dtable-ui.collaborator-item .collaborator-avatar {
26
- display: flex;
27
- align-items: center;
28
- justify-content: center;
29
- margin: 0 4px 0 2px;
30
- }
31
-
32
- .dtable-ui.collaborator-item .collaborator-avatar img {
33
- width: 16px;
34
- height: 16px;
35
- border-radius: 50%;
36
- }
37
-
38
- .dtable-ui.collaborator-item .collaborator-remove {
39
- display: inline-block;
40
- width: 14px;
41
- margin: 0 -2px 0 2px;
42
- }
43
-
44
- .dtable-ui.collaborator-item .collaborator-remove .dtable-font {
45
- display: inline-block;
46
- font-size: 12px;
47
- color: #909090;
48
- transform: scale(.8);
49
- cursor: pointer;
50
- }
51
-
52
- .dtable-ui.collaborator-item .collaborator-remove .dtable-font:hover {
53
- color: #666666;
54
- cursor: pointer;
55
- }
56
-
57
- /* long-text */
58
- .dtable-ui.long-text-formatter {
59
- display: flex;
60
- align-items: center;
61
- height: 28px;
62
- overflow: hidden;
63
- text-overflow: ellipsis;
64
- white-space: nowrap;
65
- }
66
-
67
- .dtable-ui.long-text-formatter.article {
68
- display: block;
69
- height: auto;
70
- overflow: auto;
71
- }
72
-
73
- .dtable-ui.long-text-formatter .long-text-links,
74
- .dtable-ui.long-text-formatter .long-text-check-list {
75
- display: inline-block;
76
- height: 20px;
77
- padding: 2px;
78
- margin: 4px;
79
- color: #9c9c9c;
80
- background-color: #f0f0f0;
81
- border-radius: 3px;
82
- line-height: 16px;
83
- }
84
-
85
- .dtable-ui.long-text-formatter .long-text-check-list .dtable-font,
86
- .dtable-ui.long-text-formatter .long-text-links .dtable-font {
87
- margin-right: 4px;
88
- font-size: 12px;
89
- }
90
-
91
- .dtable-ui.long-text-formatter .long-text-check-list .long-text-check-list-completed {
92
- color: #61BD4F;
93
- }
94
-
95
- .dtable-ui.long-text-formatter .long-text-images {
96
- margin-right: -10px;
97
- }
98
-
99
- .dtable-ui.long-text-formatter .long-text-images img {
100
- max-width: 28px;
101
- max-height: 28px;
102
- border: 1px solid #f0f0f0;
103
- box-sizing: border-box;
104
- border-radius: 3px;
105
- }
106
-
107
- .dtable-ui.long-text-formatter .long-text-images .image-number {
108
- display: inline-block;
109
- min-width: 14px;
110
- padding: 0 3px;
111
- line-height: 14px;
112
- font-style: normal;
113
- font-size: 12px;
114
- border-radius: 6px;
115
- background-color: #999;
116
- color: #fff;
117
- transform: translate(-50%, 9px) scale(0.8);
118
- }
119
-
120
- .dtable-ui.file-formatter {
121
- display: flex;
122
- align-items: center;
123
- }
124
-
125
- .dtable-ui.file-formatter .file-item-icon {
126
- display: inline-block;
127
- height: 28px;
128
- width: 28px;
129
- border: 1px solid #f0f0f0;
130
- }
131
-
132
- .dtable-ui.file-formatter .file-item-count {
133
- display: inline-block;
134
- padding: 0 3px;
135
- min-width: 14px;
136
- line-height: 14px;
137
- font-size: 12px;
138
- border-radius: 6px;
139
- text-align: center;
140
- text-overflow: ellipsis;
141
- white-space: nowrap;
142
- color: #fff;
143
- background-color: #999;
144
- -webkit-transform: translate(-50%, 8px) scale(.8);
145
- transform: translate(-50%, 8px) scale(.8);
146
- }
147
-
148
-
149
- .dtable-ui.image-formatter {
150
- display: flex;
151
- align-items: center;
152
- }
153
-
154
- .dtable-ui.image-formatter .image-item {
155
- display: inline-block;
156
- height: 28px;
157
- width: 28px;
158
- margin-right: 4px;
159
- border: 1px solid #f0f0f0;
160
- }
161
-
162
- .dtable-ui.image-formatter .image-item:hover {
163
- border: 1px solid #c9c9c9;
164
- }
165
-
166
- .dtable-ui.image-formatter .image-item-count {
167
- display: inline-block;
168
- padding: 0 3px;
169
- min-width: 14px;
170
- line-height: 14px;
171
- font-size: 12px;
172
- border-radius: 6px;
173
- text-align: center;
174
- text-overflow: ellipsis;
175
- white-space: nowrap;
176
- color: #fff;
177
- background-color: #999;
178
- -webkit-transform: translate(-50%, 8px) scale(.8);
179
- transform: translate(-50%, 8px) scale(.8);
180
- }
181
-
182
- .dtable-ui.link-formmatter {
183
- display: inline-flex;
184
- align-items: center;
185
- overflow: hidden;
186
- flex-wrap: nowrap;
187
- }
188
-
189
- .dtable-ui.link-formatter .link-item {
190
- display: inline-flex;
191
- height: 20px;
192
- max-width: 230px;
193
- padding: 0 8px 0 2px;
194
- align-items: center;
195
- font-size: 13px;
196
- margin-right: 10px;
197
- border-radius: 3px;
198
- background: #eceff4;
199
- cursor: pointer;
200
- }
201
-
202
- .dtable-ui.link-formatter .link-item .link-name {
203
- overflow: hidden;
204
- white-space: nowrap;
205
- text-overflow: ellipsis;
206
- }
207
-
208
- /*
209
- * url formatter
210
- * email formatter
211
- */
212
-
213
- .dtable-ui.url-formatter,
214
- .dtable-ui.email-formatter {
215
- text-decoration: underline;
216
- }
217
-
218
- .dtable-ui.formula-formatter.multiple .formula-formatter-content-item {
219
- display: inline-flex;
220
- margin-right: 10px;
221
- }
222
-
223
-
224
- .dtable-ui.formula-formatter.multiple .formula-formatter-content-item.simple-cell-formatter {
225
- height: 20px;
226
- padding: 0 8px;
227
- align-items: center;
228
- background: #eceff4;
229
- border-radius: 3px;
230
- }
231
-
232
- .dtable-ui.formula-formatter.multiple .formula-formatter-content-item .collaborator {
233
- margin-right: 0;
234
- }
235
-
236
- /* button */
237
- .dtable-ui.button-formatter {
238
- height: 26px;
239
- width: 80px;
240
- padding: 5px 8px;
241
- border-width: 1px;
242
- border-style: solid;
243
- border-radius: 3px;
244
- overflow: hidden;
245
- white-space: nowrap;
246
- text-overflow: ellipsis;
247
- }