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
@@ -0,0 +1 @@
1
+ @import url('../css/cell-formatter.css');
@@ -4,6 +4,7 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
+ import './index.css';
7
8
 
8
9
  var AutoNumberFormatter = /*#__PURE__*/function (_React$Component) {
9
10
  _inherits(AutoNumberFormatter, _React$Component);
@@ -0,0 +1,13 @@
1
+ @import url('../css/cell-formatter.css');
2
+
3
+ .dtable-ui.button-formatter {
4
+ height: 26px;
5
+ width: 80px;
6
+ padding: 5px 8px;
7
+ border-width: 1px;
8
+ border-style: solid;
9
+ border-radius: 3px;
10
+ overflow: hidden;
11
+ white-space: nowrap;
12
+ text-overflow: ellipsis;
13
+ }
@@ -4,6 +4,7 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
+ import './index.css';
7
8
 
8
9
  var ButtonFormatter = /*#__PURE__*/function (_React$Component) {
9
10
  _inherits(ButtonFormatter, _React$Component);
@@ -0,0 +1 @@
1
+ @import url('../css/cell-formatter.css');
@@ -5,6 +5,7 @@ import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
7
  import moment from 'moment';
8
+ import './index.css';
8
9
 
9
10
  var CTimeFormatter = /*#__PURE__*/function (_React$Component) {
10
11
  _inherits(CTimeFormatter, _React$Component);
@@ -0,0 +1 @@
1
+ @import url('../css/cell-formatter.css');
@@ -4,6 +4,7 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
+ import './index.css';
7
8
 
8
9
  var CheckboxFormatter = /*#__PURE__*/function (_React$PureComponent) {
9
10
  _inherits(CheckboxFormatter, _React$PureComponent);
@@ -0,0 +1 @@
1
+ @import url('../css/cell-formatter.css');
@@ -4,8 +4,9 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
- import CollaboratorItem from '../common/collaborator-item';
8
- import DefaultAvatar from '../../assets/images/avatar/default_avatar.png';
7
+ import CollaboratorItem from '../CollaboratorItem';
8
+ import DefaultAvatar from '../assets/images/avatar/default_avatar.png';
9
+ import './index.css';
9
10
 
10
11
  // there will be there conditions
11
12
  // 1 value is not exist, typeof value is array, but it's length is 0
@@ -0,0 +1,49 @@
1
+ .dtable-ui.collaborator-item {
2
+ display: inline-flex;
3
+ align-items: center;
4
+ margin-right: 10px;
5
+ padding: 0 8px 0 2px;
6
+ height: 20px;
7
+ font-size: 13px;
8
+ border-radius: 10px;
9
+ background: #eaeaea;
10
+ }
11
+
12
+ .dtable-ui.collaborator-item .collaborator-avatar,
13
+ .dtable-ui.collaborator-item .collaborator-name,
14
+ .dtable-ui.collaborator-item .collaborator-remove {
15
+ height: 20px;
16
+ line-height: 20px;
17
+ }
18
+
19
+ .dtable-ui.collaborator-item .collaborator-avatar {
20
+ display: flex;
21
+ align-items: center;
22
+ justify-content: center;
23
+ margin: 0 4px 0 2px;
24
+ }
25
+
26
+ .dtable-ui.collaborator-item .collaborator-avatar img {
27
+ width: 16px;
28
+ height: 16px;
29
+ border-radius: 50%;
30
+ }
31
+
32
+ .dtable-ui.collaborator-item .collaborator-remove {
33
+ display: inline-block;
34
+ width: 14px;
35
+ margin: 0 -2px 0 2px;
36
+ }
37
+
38
+ .dtable-ui.collaborator-item .collaborator-remove .dtable-font {
39
+ display: inline-block;
40
+ font-size: 12px;
41
+ color: #909090;
42
+ transform: scale(.8);
43
+ cursor: pointer;
44
+ }
45
+
46
+ .dtable-ui.collaborator-item .collaborator-remove .dtable-font:hover {
47
+ color: #666666;
48
+ cursor: pointer;
49
+ }
@@ -3,6 +3,7 @@ import _createClass from "@babel/runtime/helpers/esm/createClass";
3
3
  import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
+ import './index.css';
6
7
 
7
8
  var CollaboratorItem = /*#__PURE__*/function (_React$Component) {
8
9
  _inherits(CollaboratorItem, _React$Component);
@@ -0,0 +1 @@
1
+ @import url('../css/cell-formatter.css');
@@ -4,8 +4,9 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
- import CollaboratorItem from '../common/collaborator-item';
8
- import DefaultAvatar from '../../assets/images/avatar/default_avatar.png';
7
+ import CollaboratorItem from '../CollaboratorItem';
8
+ import DefaultAvatar from '../assets/images/avatar/default_avatar.png';
9
+ import './index.css';
9
10
 
10
11
  // there will be there conditions
11
12
  // 1 value is not exist, typeof value is array, but it's length is 0
@@ -0,0 +1 @@
1
+ @import url('../css/cell-formatter.css');
@@ -4,7 +4,8 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
- import { getDateDisplayString } from '../../utils/value-format-utils';
7
+ import { getDateDisplayString } from '../utils/value-format-utils';
8
+ import './index.css';
8
9
 
9
10
  var DateFormatter = /*#__PURE__*/function (_React$Component) {
10
11
  _inherits(DateFormatter, _React$Component);
@@ -0,0 +1 @@
1
+ @import url('../css/cell-formatter.css');
@@ -4,7 +4,8 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
- import { getDurationDisplayString } from '../../utils/value-format-utils';
7
+ import { getDurationDisplayString } from '../utils/value-format-utils';
8
+ import './index.css';
8
9
 
9
10
  var DurationFormatter = /*#__PURE__*/function (_React$Component) {
10
11
  _inherits(DurationFormatter, _React$Component);
@@ -0,0 +1,5 @@
1
+ @import url('../css/cell-formatter.css');
2
+
3
+ .dtable-ui.email-formatter {
4
+ text-decoration: underline;
5
+ }
@@ -4,6 +4,7 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
+ import './index.css';
7
8
 
8
9
  var EmailFormatter = /*#__PURE__*/function (_React$Component) {
9
10
  _inherits(EmailFormatter, _React$Component);
@@ -0,0 +1,29 @@
1
+ @import url('../css/cell-formatter.css');
2
+
3
+ .dtable-ui.file-formatter {
4
+ display: flex;
5
+ align-items: center;
6
+ }
7
+
8
+ .dtable-ui.file-formatter .file-item-icon {
9
+ display: inline-block;
10
+ height: 28px;
11
+ width: 28px;
12
+ border: 1px solid #f0f0f0;
13
+ }
14
+
15
+ .dtable-ui.file-formatter .file-item-count {
16
+ display: inline-block;
17
+ padding: 0 3px;
18
+ min-width: 14px;
19
+ line-height: 14px;
20
+ font-size: 12px;
21
+ border-radius: 6px;
22
+ text-align: center;
23
+ text-overflow: ellipsis;
24
+ white-space: nowrap;
25
+ color: #fff;
26
+ background-color: #999;
27
+ -webkit-transform: translate(-50%, 8px) scale(.8);
28
+ transform: translate(-50%, 8px) scale(.8);
29
+ }
@@ -4,7 +4,8 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
- import FileItemFormatter from './widgets/file-item-formatter';
7
+ import FileItemFormatter from '../FileItemFormatter';
8
+ import './index.css';
8
9
 
9
10
  var FileFormatter = /*#__PURE__*/function (_React$PureComponent) {
10
11
  _inherits(FileFormatter, _React$PureComponent);
@@ -3,7 +3,7 @@ import _createClass from "@babel/runtime/helpers/esm/createClass";
3
3
  import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React, { Component } from 'react';
6
- import { getFileIconUrl } from '../../../utils/utils';
6
+ import { getFileIconUrl } from '../utils/utils';
7
7
 
8
8
  var FileItemFormatter = /*#__PURE__*/function (_Component) {
9
9
  _inherits(FileItemFormatter, _Component);
@@ -24,7 +24,7 @@ var FileItemFormatter = /*#__PURE__*/function (_Component) {
24
24
  _this.getFileIconData = function (item) {
25
25
  var fileIconUrl = getFileIconUrl(item.name, item.type);
26
26
 
27
- var fileIconData = require('../../../' + fileIconUrl);
27
+ var fileIconData = require(fileIconUrl);
28
28
 
29
29
  return fileIconData;
30
30
  };
@@ -0,0 +1,19 @@
1
+ @import url('../css/cell-formatter.css');
2
+
3
+ .dtable-ui.formula-formatter.multiple .formula-formatter-content-item {
4
+ display: inline-flex;
5
+ margin-right: 10px;
6
+ }
7
+
8
+
9
+ .dtable-ui.formula-formatter.multiple .formula-formatter-content-item.simple-cell-formatter {
10
+ height: 20px;
11
+ padding: 0 8px;
12
+ align-items: center;
13
+ background: #eceff4;
14
+ border-radius: 3px;
15
+ }
16
+
17
+ .dtable-ui.formula-formatter.multiple .formula-formatter-content-item .collaborator {
18
+ margin-right: 0;
19
+ }
@@ -4,14 +4,14 @@ import _createClass from "@babel/runtime/helpers/esm/createClass";
4
4
  import _inherits from "@babel/runtime/helpers/esm/inherits";
5
5
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
6
6
  import React from 'react';
7
- import { FORMULA_RESULT_TYPE } from '../../constants';
8
- import cellFormatterFactory from '../cell-factory/cell-formatter-factory';
9
- import * as CellType from '../../constants/cell-types';
10
- import { isFunction } from '../../utils/utils';
11
- import TextFormatter from './text-formatter';
12
- import { isArrayFormalColumn, isSimpleCellFormatter } from '../../utils/column-utils';
13
- import cellValueValidator from '../../utils/cell-value-validator';
14
- import { getFormulaDisplayString } from '../../utils/value-format-utils';
7
+ import { FORMULA_RESULT_TYPE, CellType } from '../constants';
8
+ import cellFormatterFactory from '../cellFormatterFactory';
9
+ import { isFunction } from '../utils/utils';
10
+ import TextFormatter from '../TextFormatter';
11
+ import { isArrayFormalColumn, isSimpleCellFormatter } from '../utils/column-utils';
12
+ import cellValueValidator from '../utils/cell-value-validator';
13
+ import { getFormulaDisplayString } from '../utils/value-format-utils';
14
+ import './index.css';
15
15
 
16
16
  var FormulaFormatter = /*#__PURE__*/function (_React$Component) {
17
17
  _inherits(FormulaFormatter, _React$Component);
@@ -0,0 +1 @@
1
+ @import url('../css/cell-formatter.css');
@@ -4,7 +4,8 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
- import { getGeolocationDisplayString } from '../../utils/value-format-utils';
7
+ import { getGeolocationDisplayString } from '../utils/value-format-utils';
8
+ import './index.css';
8
9
 
9
10
  var GeolocationFormatter = /*#__PURE__*/function (_React$Component) {
10
11
  _inherits(GeolocationFormatter, _React$Component);
@@ -3,8 +3,8 @@ import _createClass from "@babel/runtime/helpers/esm/createClass";
3
3
  import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
- import Loading from '../loading';
7
- import { getImageThumbnailUrl } from '../../utils/utils';
6
+ import Loading from '../Loading';
7
+ import { getImageThumbnailUrl } from '../utils/utils';
8
8
 
9
9
  var ImagesLazyLoad = /*#__PURE__*/function (_React$Component) {
10
10
  _inherits(ImagesLazyLoad, _React$Component);
@@ -0,0 +1,34 @@
1
+ @import url('../css/cell-formatter.css');
2
+
3
+ .dtable-ui.image-formatter {
4
+ display: flex;
5
+ align-items: center;
6
+ }
7
+
8
+ .dtable-ui.image-formatter .image-item {
9
+ display: inline-block;
10
+ height: 28px;
11
+ width: 28px;
12
+ margin-right: 4px;
13
+ border: 1px solid #f0f0f0;
14
+ }
15
+
16
+ .dtable-ui.image-formatter .image-item:hover {
17
+ border: 1px solid #c9c9c9;
18
+ }
19
+
20
+ .dtable-ui.image-formatter .image-item-count {
21
+ display: inline-block;
22
+ padding: 0 3px;
23
+ min-width: 14px;
24
+ line-height: 14px;
25
+ font-size: 12px;
26
+ border-radius: 6px;
27
+ text-align: center;
28
+ text-overflow: ellipsis;
29
+ white-space: nowrap;
30
+ color: #fff;
31
+ background-color: #999;
32
+ -webkit-transform: translate(-50%, 8px) scale(.8);
33
+ transform: translate(-50%, 8px) scale(.8);
34
+ }
@@ -4,9 +4,10 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React, { Fragment } from 'react';
6
6
  import cn from 'astro-classname';
7
- import ImagesLazyLoad from '../common/images-lazy-load';
8
- import { getImageThumbnailUrl } from '../../utils/utils';
9
- import ImagePreviewerLightbox from './widgets/image-previewer-lightbox';
7
+ import ImagesLazyLoad from './images-lazy-load';
8
+ import { getImageThumbnailUrl } from '../utils/utils';
9
+ import ImagePreviewerLightbox from '../ImagePreviewerLightbox';
10
+ import './index.css';
10
11
 
11
12
  var ImageFormatter = /*#__PURE__*/function (_React$Component) {
12
13
  _inherits(ImageFormatter, _React$Component);
@@ -1,10 +1,10 @@
1
1
  import React, { Fragment } from 'react';
2
2
  import MediaQuery from 'react-responsive';
3
- import ModalPortal from '../../common/modal-portal';
3
+ import ModalPortal from '../ModalPortal';
4
4
  import Lightbox from '@seafile/react-image-lightbox';
5
- import { checkSVGImage, isInternalImg } from '../../../utils/utils';
5
+ import { checkSVGImage, isInternalImg } from '../utils/utils';
6
6
  import '@seafile/react-image-lightbox/style.css';
7
- import '../../../css/image-previewer-ligntbox.css';
7
+ import './index.css';
8
8
 
9
9
  function ImagePreviewerLightbox(props) {
10
10
  var imageItems = props.imageItems,
@@ -0,0 +1 @@
1
+ @import url('../css/cell-formatter.css');
@@ -4,14 +4,15 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
- import ColloboratorItem from '../common/collaborator-item';
8
- import DefaultAvatar from '../../assets/images/avatar/default_avatar.png';
7
+ import CollaboratorItem from '../CollaboratorItem';
8
+ import DefaultAvatar from '../assets/images/avatar/default_avatar.png';
9
+ import './index.css';
9
10
 
10
11
  // there will be there conditions
11
12
  // 1 value is not exist, typeof value is array, but it's length is 0
12
13
  // 2 value is exist, but can't find in collaborators
13
14
  // 3 value is exist, typeof value is a string
14
- // 4 vlaue is exist, typeof value is array
15
+ // 4 value is exist, typeof value is array
15
16
  var LastModifierFormatter = /*#__PURE__*/function (_React$PureComponent) {
16
17
  _inherits(LastModifierFormatter, _React$PureComponent);
17
18
 
@@ -49,7 +50,7 @@ var LastModifierFormatter = /*#__PURE__*/function (_React$PureComponent) {
49
50
  };
50
51
  }
51
52
 
52
- return /*#__PURE__*/React.createElement(ColloboratorItem, {
53
+ return /*#__PURE__*/React.createElement(CollaboratorItem, {
53
54
  key: index,
54
55
  collaborator: collaborator
55
56
  });
@@ -0,0 +1,27 @@
1
+ @import url('../css/cell-formatter.css');
2
+
3
+ .dtable-ui.link-formmatter {
4
+ display: inline-flex;
5
+ align-items: center;
6
+ overflow: hidden;
7
+ flex-wrap: nowrap;
8
+ }
9
+
10
+ .dtable-ui.link-formatter .link-item {
11
+ display: inline-flex;
12
+ height: 20px;
13
+ max-width: 230px;
14
+ padding: 0 8px 0 2px;
15
+ align-items: center;
16
+ font-size: 13px;
17
+ margin-right: 10px;
18
+ border-radius: 3px;
19
+ background: #eceff4;
20
+ cursor: pointer;
21
+ }
22
+
23
+ .dtable-ui.link-formatter .link-item .link-name {
24
+ overflow: hidden;
25
+ white-space: nowrap;
26
+ text-overflow: ellipsis;
27
+ }
@@ -5,8 +5,8 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
5
5
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
6
6
  import React from 'react';
7
7
  import cn from 'astro-classname';
8
- import * as CellTypes from '../../constants/cell-types';
9
- import { getNumberDisplayString, getDateDisplayString } from '../../utils/value-format-utils';
8
+ import * as CellTypes from '../constants/cell-types';
9
+ import { getNumberDisplayString, getDateDisplayString } from '../utils/value-format-utils';
10
10
 
11
11
  // link value is get form parant's interface
12
12
  var LinkFormatter = /*#__PURE__*/function (_React$Component) {
File without changes
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import '../css/loading.css';
2
+ import './index.css';
3
3
  export default function Loading() {
4
4
  return /*#__PURE__*/React.createElement("span", {
5
5
  className: "loading-icon loading-tip"
@@ -3,7 +3,7 @@ import _createClass from "@babel/runtime/helpers/esm/createClass";
3
3
  import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React, { Component } from 'react';
6
- import { processor } from '../../../../utils/markdown2html';
6
+ import { processor } from '../utils/markdown2html';
7
7
 
8
8
  var HtmlLongTextFormatter = /*#__PURE__*/function (_Component) {
9
9
  _inherits(HtmlLongTextFormatter, _Component);
@@ -0,0 +1,63 @@
1
+ @import url('../css/cell-formatter.css');
2
+
3
+ .dtable-ui.long-text-formatter {
4
+ display: flex;
5
+ align-items: center;
6
+ height: 28px;
7
+ overflow: hidden;
8
+ text-overflow: ellipsis;
9
+ white-space: nowrap;
10
+ }
11
+
12
+ .dtable-ui.long-text-formatter.article {
13
+ display: block;
14
+ height: auto;
15
+ overflow: auto;
16
+ }
17
+
18
+ .dtable-ui.long-text-formatter .long-text-links,
19
+ .dtable-ui.long-text-formatter .long-text-check-list {
20
+ display: inline-block;
21
+ height: 20px;
22
+ padding: 2px;
23
+ margin: 4px;
24
+ color: #9c9c9c;
25
+ background-color: #f0f0f0;
26
+ border-radius: 3px;
27
+ line-height: 16px;
28
+ }
29
+
30
+ .dtable-ui.long-text-formatter .long-text-check-list .dtable-font,
31
+ .dtable-ui.long-text-formatter .long-text-links .dtable-font {
32
+ margin-right: 4px;
33
+ font-size: 12px;
34
+ }
35
+
36
+ .dtable-ui.long-text-formatter .long-text-check-list .long-text-check-list-completed {
37
+ color: #61BD4F;
38
+ }
39
+
40
+ .dtable-ui.long-text-formatter .long-text-images {
41
+ margin-right: -10px;
42
+ }
43
+
44
+ .dtable-ui.long-text-formatter .long-text-images img {
45
+ max-width: 28px;
46
+ max-height: 28px;
47
+ border: 1px solid #f0f0f0;
48
+ box-sizing: border-box;
49
+ border-radius: 3px;
50
+ }
51
+
52
+ .dtable-ui.long-text-formatter .long-text-images .image-number {
53
+ display: inline-block;
54
+ min-width: 14px;
55
+ padding: 0 3px;
56
+ line-height: 14px;
57
+ font-style: normal;
58
+ font-size: 12px;
59
+ border-radius: 6px;
60
+ background-color: #999;
61
+ color: #fff;
62
+ transform: translate(-50%, 9px) scale(0.8);
63
+ }
@@ -1,7 +1,8 @@
1
1
  import React from 'react';
2
2
  import cn from 'astro-classname';
3
- import HtmlLongTextFormatter from './widgets/long-text-formatter/html-long-text-formatter';
4
- import SimpleLongTextFormatter from './widgets/long-text-formatter/simple-long-text-formatter';
3
+ import HtmlLongTextFormatter from './html-long-text-formatter';
4
+ import SimpleLongTextFormatter from './simple-long-text-formatter';
5
+ import './index.css';
5
6
 
6
7
  function LongTextFormatter(props) {
7
8
  var isSample = props.isSample,
@@ -3,7 +3,7 @@ import _createClass from "@babel/runtime/helpers/esm/createClass";
3
3
  import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
- import getPreviewContent from '../../../../utils/normalize-long-text-value';
6
+ import getPreviewContent from '../utils/normalize-long-text-value';
7
7
 
8
8
  var SimpleLongTextFormatter = /*#__PURE__*/function (_React$Component) {
9
9
  _inherits(SimpleLongTextFormatter, _React$Component);
@@ -0,0 +1 @@
1
+ @import url('../css/cell-formatter.css');
@@ -5,6 +5,7 @@ import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
7
  import moment from 'moment';
8
+ import './index.css';
8
9
 
9
10
  var MTimeFormatter = /*#__PURE__*/function (_React$Component) {
10
11
  _inherits(MTimeFormatter, _React$Component);
@@ -0,0 +1 @@
1
+ @import url('../css/cell-formatter.css');
@@ -4,7 +4,8 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
- import SelectItem from '../common/select-item';
7
+ import SelectItem from '../SelectItem';
8
+ import './index.css';
8
9
 
9
10
  var MultipleSelectFormatter = /*#__PURE__*/function (_React$PureComponent) {
10
11
  _inherits(MultipleSelectFormatter, _React$PureComponent);
@@ -0,0 +1 @@
1
+ @import url('../css/cell-formatter.css');
@@ -4,7 +4,8 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
- import { getNumberDisplayString } from '../../utils/value-format-utils';
7
+ import { getNumberDisplayString } from '../utils/value-format-utils';
8
+ import './index.css';
8
9
 
9
10
  var NumberFormatter = /*#__PURE__*/function (_React$Component) {
10
11
  _inherits(NumberFormatter, _React$Component);
@@ -0,0 +1 @@
1
+ @import url('../css/cell-formatter.css');
@@ -4,6 +4,7 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
4
  import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
5
  import React from 'react';
6
6
  import cn from 'astro-classname';
7
+ import './index.css';
7
8
 
8
9
  var RateFormatter = /*#__PURE__*/function (_React$Component) {
9
10
  _inherits(RateFormatter, _React$Component);