@opentiny/vue-renderless 3.1.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (397) hide show
  1. package/action-sheet/index.js +28 -0
  2. package/action-sheet/vue.js +29 -0
  3. package/alert/index.js +23 -0
  4. package/alert/vue.js +37 -0
  5. package/autocomplete/index.js +175 -0
  6. package/autocomplete/vue.js +171 -0
  7. package/avatar/index.js +29 -0
  8. package/avatar/vue.js +24 -0
  9. package/badge/index.js +16 -0
  10. package/badge/vue.js +30 -0
  11. package/breadcrumb/vue.js +4 -0
  12. package/breadcrumb-item/vue.js +24 -0
  13. package/bulletin-board/index.js +21 -0
  14. package/bulletin-board/vue.js +36 -0
  15. package/button/index.js +19 -0
  16. package/button/vue.js +43 -0
  17. package/button-group/index.js +25 -0
  18. package/button-group/vue.js +51 -0
  19. package/calendar/index.js +279 -0
  20. package/calendar/vue.js +124 -0
  21. package/card-template/index.js +39 -0
  22. package/card-template/vue.js +34 -0
  23. package/carousel/index.js +206 -0
  24. package/carousel/vue.js +222 -0
  25. package/carousel-item/index.js +93 -0
  26. package/carousel-item/vue.js +57 -0
  27. package/cascader/index.js +511 -0
  28. package/cascader/vue.js +342 -0
  29. package/cascader-menu/index.js +41 -0
  30. package/cascader-menu/vue.js +36 -0
  31. package/cascader-node/index.js +63 -0
  32. package/cascader-node/vue.js +62 -0
  33. package/cascader-panel/index.js +359 -0
  34. package/cascader-panel/node.js +199 -0
  35. package/cascader-panel/store.js +80 -0
  36. package/cascader-panel/vue.js +217 -0
  37. package/checkbox/index.js +145 -0
  38. package/checkbox/vue.js +139 -0
  39. package/checkbox-button/index.js +102 -0
  40. package/checkbox-button/vue.js +150 -0
  41. package/checkbox-group/index.js +12 -0
  42. package/checkbox-group/vue.js +33 -0
  43. package/col/index.js +132 -0
  44. package/col/vue.js +34 -0
  45. package/collapse/index.js +45 -0
  46. package/collapse/vue.js +35 -0
  47. package/collapse-item/index.js +38 -0
  48. package/collapse-item/vue.js +48 -0
  49. package/common/array.js +120 -0
  50. package/common/bigInt.js +352 -0
  51. package/common/browser.js +69 -0
  52. package/common/dataset/index.js +135 -0
  53. package/common/date.js +352 -0
  54. package/common/decimal.js +203 -0
  55. package/common/deps/ResizeObserver.js +474 -0
  56. package/common/deps/after-leave.js +25 -0
  57. package/common/deps/clickoutside.js +61 -0
  58. package/common/deps/date-util.js +262 -0
  59. package/common/deps/date.js +308 -0
  60. package/common/deps/debounce.js +4 -0
  61. package/common/deps/dom.js +190 -0
  62. package/common/deps/fullscreen/apis.js +157 -0
  63. package/common/deps/fullscreen/screenfull.js +106 -0
  64. package/common/deps/letter-only.js +15 -0
  65. package/common/deps/memorize.js +149 -0
  66. package/common/deps/number-only.js +16 -0
  67. package/common/deps/popper.js +713 -0
  68. package/common/deps/popup-manager.js +179 -0
  69. package/common/deps/repeat-click.js +24 -0
  70. package/common/deps/requestAnimationFrame.js +25 -0
  71. package/common/deps/resize-event.js +29 -0
  72. package/common/deps/scroll-into-view.js +29 -0
  73. package/common/deps/scrollbar-width.js +25 -0
  74. package/common/deps/throttle.js +34 -0
  75. package/common/deps/touch.js +33 -0
  76. package/common/deps/tree-model/node.js +586 -0
  77. package/common/deps/tree-model/tree-store.js +377 -0
  78. package/common/deps/tree-model/util.js +14 -0
  79. package/common/deps/upload-ajax.js +71 -0
  80. package/common/deps/vue-emitter.js +30 -0
  81. package/common/deps/vue-popper.js +291 -0
  82. package/common/deps/vue-popup.js +211 -0
  83. package/common/event.js +17 -0
  84. package/common/index.js +288 -0
  85. package/common/object.js +228 -0
  86. package/common/runtime.js +52 -0
  87. package/common/string.js +446 -0
  88. package/common/type.js +65 -0
  89. package/common/validate/index.js +6 -0
  90. package/common/validate/messages.js +68 -0
  91. package/common/validate/rules/enum.js +8 -0
  92. package/common/validate/rules/index.js +14 -0
  93. package/common/validate/rules/pattern.js +16 -0
  94. package/common/validate/rules/range.js +62 -0
  95. package/common/validate/rules/required.js +13 -0
  96. package/common/validate/rules/type.js +110 -0
  97. package/common/validate/rules/whitespace.js +6 -0
  98. package/common/validate/schema.js +323 -0
  99. package/common/validate/util.js +198 -0
  100. package/common/validate/validations/array.js +25 -0
  101. package/common/validate/validations/date.js +35 -0
  102. package/common/validate/validations/enum.js +24 -0
  103. package/common/validate/validations/float.js +24 -0
  104. package/common/validate/validations/index.js +42 -0
  105. package/common/validate/validations/integer.js +24 -0
  106. package/common/validate/validations/method.js +23 -0
  107. package/common/validate/validations/number.js +27 -0
  108. package/common/validate/validations/pattern.js +23 -0
  109. package/common/validate/validations/required.js +15 -0
  110. package/common/validate/validations/string.js +29 -0
  111. package/common/validate/validations/type.js +25 -0
  112. package/common/xss.js +325 -0
  113. package/container/index.js +110 -0
  114. package/container/vue.js +63 -0
  115. package/credit-card/index.js +107 -0
  116. package/credit-card/vue.js +117 -0
  117. package/credit-card-form/index.js +143 -0
  118. package/credit-card-form/vue.js +150 -0
  119. package/crop/index.js +297 -0
  120. package/crop/vue.js +191 -0
  121. package/date-panel/index.js +584 -0
  122. package/date-panel/vue.js +319 -0
  123. package/date-picker/index.js +301 -0
  124. package/date-picker/vue.js +169 -0
  125. package/date-range/index.js +463 -0
  126. package/date-range/vue.js +297 -0
  127. package/date-table/index.js +457 -0
  128. package/date-table/vue.js +151 -0
  129. package/detail-page/index.js +135 -0
  130. package/detail-page/vue.js +145 -0
  131. package/dialog-box/index.js +268 -0
  132. package/dialog-box/vue.js +226 -0
  133. package/drop-times/index.js +23 -0
  134. package/drop-times/vue.js +28 -0
  135. package/dropdown/index.js +259 -0
  136. package/dropdown/vue.js +107 -0
  137. package/dropdown-item/index.js +155 -0
  138. package/dropdown-item/vue.js +124 -0
  139. package/dropdown-menu/index.js +148 -0
  140. package/dropdown-menu/vue.js +44 -0
  141. package/exception/index.js +13 -0
  142. package/exception/vue.js +25 -0
  143. package/fall-menu/index.js +121 -0
  144. package/fall-menu/vue.js +90 -0
  145. package/file-upload/index.js +1940 -0
  146. package/file-upload/vue.js +458 -0
  147. package/floatbar/index.js +10 -0
  148. package/floatbar/vue.js +17 -0
  149. package/form/index.js +186 -0
  150. package/form/vue.js +69 -0
  151. package/form-item/index.js +364 -0
  152. package/form-item/vue.js +210 -0
  153. package/fullscreen/index.js +138 -0
  154. package/fullscreen/vue.js +77 -0
  155. package/grid/core/index.js +3 -0
  156. package/grid/core/interceptor.js +38 -0
  157. package/grid/core/storeMap.js +19 -0
  158. package/grid/plugins/export.js +169 -0
  159. package/grid/plugins/exportExcel.js +749 -0
  160. package/grid/plugins/header.js +58 -0
  161. package/grid/plugins/resize.js +82 -0
  162. package/grid/static/array/arrayEach.js +12 -0
  163. package/grid/static/array/arrayIndexOf.js +11 -0
  164. package/grid/static/array/eachTree.js +32 -0
  165. package/grid/static/array/every.js +2 -0
  166. package/grid/static/array/filterTree.js +16 -0
  167. package/grid/static/array/find.js +3 -0
  168. package/grid/static/array/findTree.js +46 -0
  169. package/grid/static/array/helperCreateIterateHandle.js +59 -0
  170. package/grid/static/array/helperCreateTreeFunc.js +18 -0
  171. package/grid/static/array/includes.js +5 -0
  172. package/grid/static/array/lastArrayEach.js +6 -0
  173. package/grid/static/array/map.js +23 -0
  174. package/grid/static/array/mapTree.js +33 -0
  175. package/grid/static/array/slice.js +10 -0
  176. package/grid/static/array/sortBy.js +69 -0
  177. package/grid/static/array/sum.js +28 -0
  178. package/grid/static/array/toArray.js +7 -0
  179. package/grid/static/array/toTreeArray.js +24 -0
  180. package/grid/static/base/clear.js +44 -0
  181. package/grid/static/base/clone.js +18 -0
  182. package/grid/static/base/destructuring.js +18 -0
  183. package/grid/static/base/each.js +9 -0
  184. package/grid/static/base/eqNull.js +6 -0
  185. package/grid/static/base/findIndexOf.js +10 -0
  186. package/grid/static/base/get.js +42 -0
  187. package/grid/static/base/has.js +60 -0
  188. package/grid/static/base/hasOwnProp.js +4 -0
  189. package/grid/static/base/helperCreateGetObjects.js +26 -0
  190. package/grid/static/base/helperCreateInInObjectString.js +7 -0
  191. package/grid/static/base/helperCreateInTypeof.js +6 -0
  192. package/grid/static/base/helperCreateIndexOf.js +21 -0
  193. package/grid/static/base/helperCreateiterateIndexOf.js +21 -0
  194. package/grid/static/base/helperDefaultCompare.js +4 -0
  195. package/grid/static/base/helperDeleteProperty.js +8 -0
  196. package/grid/static/base/helperEqualCompare.js +60 -0
  197. package/grid/static/base/helperGetHGSKeys.js +4 -0
  198. package/grid/static/base/indexOf.js +3 -0
  199. package/grid/static/base/isArray.js +3 -0
  200. package/grid/static/base/isBoolean.js +4 -0
  201. package/grid/static/base/isDate.js +3 -0
  202. package/grid/static/base/isEmpty.js +8 -0
  203. package/grid/static/base/isEqual.js +11 -0
  204. package/grid/static/base/isFunction.js +4 -0
  205. package/grid/static/base/isNaN.js +5 -0
  206. package/grid/static/base/isNull.js +4 -0
  207. package/grid/static/base/isNumber.js +4 -0
  208. package/grid/static/base/isObject.js +5 -0
  209. package/grid/static/base/isPlainObject.js +2 -0
  210. package/grid/static/base/isRegExp.js +3 -0
  211. package/grid/static/base/isSet.js +5 -0
  212. package/grid/static/base/isString.js +4 -0
  213. package/grid/static/base/isUndefined.js +4 -0
  214. package/grid/static/base/keys.js +3 -0
  215. package/grid/static/base/lastEach.js +9 -0
  216. package/grid/static/base/remove.js +44 -0
  217. package/grid/static/base/set.js +43 -0
  218. package/grid/static/base/toJSONString.js +4 -0
  219. package/grid/static/base/toStringJSON.js +13 -0
  220. package/grid/static/base/uniqueId.js +5 -0
  221. package/grid/static/browse/browse.js +54 -0
  222. package/grid/static/function/property.js +7 -0
  223. package/grid/static/function/throttle.js +43 -0
  224. package/grid/static/index.js +55 -0
  225. package/grid/static/number/helperCreateToNumber.js +12 -0
  226. package/grid/static/number/toNumber.js +3 -0
  227. package/grid/static/object/assign.js +41 -0
  228. package/grid/static/object/extend.js +3 -0
  229. package/grid/static/object/lastObjectEach.js +8 -0
  230. package/grid/static/object/objectEach.js +11 -0
  231. package/grid/static/object/objectMap.js +20 -0
  232. package/grid/static/object/values.js +9 -0
  233. package/grid/static/static/staticDocument.js +4 -0
  234. package/grid/static/static/staticHGKeyRE.js +2 -0
  235. package/grid/static/static/staticParseInt.js +2 -0
  236. package/grid/static/static/staticStrUndefined.js +2 -0
  237. package/grid/static/static/staticWindow.js +4 -0
  238. package/grid/static/string/template.js +12 -0
  239. package/grid/static/string/toString.js +12 -0
  240. package/grid/utils/column.js +72 -0
  241. package/grid/utils/common.js +155 -0
  242. package/grid/utils/dom.js +213 -0
  243. package/grid/utils/event.js +40 -0
  244. package/grid/utils/index.js +5 -0
  245. package/image/index.js +187 -0
  246. package/image/vue.js +142 -0
  247. package/image-viewer/index.js +469 -0
  248. package/image-viewer/vue.js +243 -0
  249. package/input/index.js +319 -0
  250. package/input/vue.js +319 -0
  251. package/ip-address/index.js +370 -0
  252. package/ip-address/vue.js +185 -0
  253. package/layout/vue.js +4 -0
  254. package/link/index.js +10 -0
  255. package/link/vue.js +26 -0
  256. package/link-menu/index.js +146 -0
  257. package/link-menu/vue.js +138 -0
  258. package/list/index.js +13 -0
  259. package/list/vue.js +17 -0
  260. package/loading/index.js +29 -0
  261. package/loading/vue.js +28 -0
  262. package/milestone/index.js +92 -0
  263. package/milestone/vue.js +31 -0
  264. package/mini-picker/index.js +227 -0
  265. package/mini-picker/vue.js +142 -0
  266. package/modal/index.js +866 -0
  267. package/modal/vue.js +130 -0
  268. package/month-range/index.js +169 -0
  269. package/month-range/vue.js +104 -0
  270. package/month-table/index.js +232 -0
  271. package/month-table/vue.js +72 -0
  272. package/nav-menu/index.js +457 -0
  273. package/nav-menu/vue.js +187 -0
  274. package/notify/index.js +91 -0
  275. package/notify/vue.js +67 -0
  276. package/numeric/index.js +419 -0
  277. package/numeric/vue.js +218 -0
  278. package/option/index.js +79 -0
  279. package/option/vue.js +219 -0
  280. package/option-group/index.js +18 -0
  281. package/option-group/vue.js +37 -0
  282. package/package.json +179 -0
  283. package/pager-item/index.js +122 -0
  284. package/pager-item/vue.js +52 -0
  285. package/panel/index.js +30 -0
  286. package/panel/vue.js +26 -0
  287. package/picker/index.js +1039 -0
  288. package/picker/timezone.js +974 -0
  289. package/picker/vue.js +415 -0
  290. package/picker-column/index.js +261 -0
  291. package/picker-column/vue.js +163 -0
  292. package/pop-upload/index.js +324 -0
  293. package/pop-upload/vue.js +292 -0
  294. package/popeditor/index.js +884 -0
  295. package/popeditor/vue.js +368 -0
  296. package/popover/index.js +203 -0
  297. package/popover/vue.js +174 -0
  298. package/popup/index.js +139 -0
  299. package/popup/vue.js +129 -0
  300. package/progress/index.js +174 -0
  301. package/progress/vue.js +118 -0
  302. package/pull-refresh/index.js +104 -0
  303. package/pull-refresh/vue.js +64 -0
  304. package/radio/index.js +83 -0
  305. package/radio/vue.js +99 -0
  306. package/radio-button/index.js +58 -0
  307. package/radio-button/vue.js +70 -0
  308. package/radio-group/index.js +51 -0
  309. package/radio-group/vue.js +34 -0
  310. package/rate/index.js +254 -0
  311. package/rate/vue.js +158 -0
  312. package/row/index.js +19 -0
  313. package/row/vue.js +24 -0
  314. package/scroll-text/index.js +24 -0
  315. package/scroll-text/vue.js +31 -0
  316. package/scrollbar/index.js +127 -0
  317. package/scrollbar/vue-bar.js +49 -0
  318. package/scrollbar/vue.js +43 -0
  319. package/search/index.js +110 -0
  320. package/search/vue.js +110 -0
  321. package/select/index.js +1766 -0
  322. package/select/vue.js +693 -0
  323. package/select-dropdown/index.js +23 -0
  324. package/select-dropdown/vue.js +122 -0
  325. package/slide-bar/index.js +94 -0
  326. package/slide-bar/vue.js +58 -0
  327. package/slider/index.js +434 -0
  328. package/slider/vue.js +172 -0
  329. package/split/index.js +122 -0
  330. package/split/vue.js +131 -0
  331. package/steps/vue.js +4 -0
  332. package/switch/index.js +45 -0
  333. package/switch/vue.js +62 -0
  334. package/tab-bar/index.js +51 -0
  335. package/tab-bar/vue.js +16 -0
  336. package/tab-dropdown/index.js +11 -0
  337. package/tab-dropdown/vue.js +17 -0
  338. package/tab-item/index.js +37 -0
  339. package/tab-item/vue.js +49 -0
  340. package/tab-nav/index.js +247 -0
  341. package/tab-nav/vue.js +106 -0
  342. package/tabbar/index.js +32 -0
  343. package/tabbar/vue.js +54 -0
  344. package/tabbar-item/index.js +55 -0
  345. package/tabbar-item/vue.js +53 -0
  346. package/table/index.js +111 -0
  347. package/table/vue.js +66 -0
  348. package/tabs/index.js +174 -0
  349. package/tabs/vue.js +141 -0
  350. package/tag/index.js +14 -0
  351. package/tag/vue.js +13 -0
  352. package/tall-storage/index.js +161 -0
  353. package/tall-storage/vue-storage-box.js +25 -0
  354. package/tall-storage/vue.js +38 -0
  355. package/text-popup/index.js +75 -0
  356. package/text-popup/vue.js +64 -0
  357. package/time/index.js +121 -0
  358. package/time/vue.js +124 -0
  359. package/time-line/index.js +60 -0
  360. package/time-line/vue.js +49 -0
  361. package/time-panel/index.js +189 -0
  362. package/time-panel/scrollIntoView.js +23 -0
  363. package/time-panel/vue.js +110 -0
  364. package/time-range/index.js +199 -0
  365. package/time-range/vue.js +129 -0
  366. package/time-spinner/index.js +175 -0
  367. package/time-spinner/vue.js +122 -0
  368. package/toggle-menu/index.js +104 -0
  369. package/toggle-menu/vue.js +74 -0
  370. package/tooltip/index.js +171 -0
  371. package/tooltip/vue.js +133 -0
  372. package/top-box/index.js +81 -0
  373. package/top-box/vue.js +77 -0
  374. package/transfer/index.js +296 -0
  375. package/transfer/vue.js +138 -0
  376. package/transfer-panel/index.js +364 -0
  377. package/transfer-panel/vue.js +258 -0
  378. package/tree/index.js +642 -0
  379. package/tree/vue.js +268 -0
  380. package/tree-menu/index.js +124 -0
  381. package/tree-menu/vue.js +60 -0
  382. package/tree-node/index.js +271 -0
  383. package/tree-node/vue.js +211 -0
  384. package/upload/index.js +324 -0
  385. package/upload/vue.js +93 -0
  386. package/upload-dragger/index.js +50 -0
  387. package/upload-dragger/vue.js +27 -0
  388. package/upload-list/index.js +55 -0
  389. package/upload-list/vue.js +48 -0
  390. package/user-contact/index.js +13 -0
  391. package/user-contact/vue.js +20 -0
  392. package/user-head/index.js +71 -0
  393. package/user-head/vue.js +47 -0
  394. package/wizard/index.js +123 -0
  395. package/wizard/vue.js +45 -0
  396. package/year-table/index.js +40 -0
  397. package/year-table/vue.js +23 -0
@@ -0,0 +1,749 @@
1
+ import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
+ import { extend } from '@opentiny/vue-renderless/common/object';
3
+ import browser from '@opentiny/vue-renderless/common/browser';
4
+ var isIE = browser.name === 'ie';
5
+ var rgbRegExp = /^rgba?\((\d+),\s(\d+),\s(\d+)([\s\S]*)\)$/;
6
+ var hexRegExp = /^#([a-zA-Z0-9]{3}|[a-zA-Z0-9]{6})$/;
7
+ function computeColor(rgbColor) {
8
+ var rgb = rgbRegExp.exec(rgbColor).slice(1, 4);
9
+ return parseInt(rgb[0]).toString(16) + parseInt(rgb[1]).toString(16) + parseInt(rgb[2]).toString(16);
10
+ }
11
+ function getBgc(dom) {
12
+ var getComputedStyle = window.getComputedStyle;
13
+ var backgroundColor = isIE ? dom.currentStyle.backgroundColor : getComputedStyle(dom).backgroundColor;
14
+ if (rgbRegExp.test(backgroundColor)) {
15
+ return computeColor(backgroundColor);
16
+ } else if (hexRegExp.test(backgroundColor)) {
17
+ var bgc = backgroundColor.slice(1);
18
+ if (bgc.length === 3) {
19
+ return bgc.split('').map(function (s) {
20
+ return s + s;
21
+ }).join('');
22
+ }
23
+ return bgc;
24
+ }
25
+ return 'ffffff';
26
+ }
27
+ function funcFromCodePoint() {
28
+ var codeUnitArr = [];
29
+ var codeLength = 0;
30
+ var resultStr = '';
31
+ for (var i = 0, length = arguments.length; i !== length; ++i) {
32
+ var cp = +arguments[i];
33
+ if (!(cp < 0x10ffff && cp >>> 0 === cp)) throw new RangeError('Invalid code point: ' + cp);
34
+ if (cp <= 0xffff) {
35
+ codeLength = codeUnitArr.push(cp);
36
+ } else {
37
+ cp -= 0x10000;
38
+ codeLength = codeUnitArr.push((cp >> 10) + 0xd800, cp % 0x400 + 0xdc00);
39
+ }
40
+ if (codeLength >= 0x3fff) {
41
+ resultStr += String.fromCharCode.apply(null, codeUnitArr);
42
+ codeUnitArr.length = 0;
43
+ }
44
+ }
45
+ return resultStr + String.fromCharCode.apply(null, codeUnitArr);
46
+ }
47
+ var defaultOptions = {
48
+ plugins: {
49
+ XLSX: null,
50
+ XLSXX: null,
51
+ FileSaver: null
52
+ },
53
+ table: {
54
+ sheetName: 'tiny-sheet',
55
+ formatMethod: function formatMethod(_ref) {
56
+ var value = _ref.value,
57
+ type = _ref.type;
58
+ return {
59
+ value: value,
60
+ type: type
61
+ };
62
+ },
63
+ styleMethod: function styleMethod(_ref2) {
64
+ var style = _ref2.style;
65
+ return style;
66
+ },
67
+ rowHeightMethod: function rowHeightMethod(_ref3) {
68
+ var height = _ref3.height;
69
+ return height;
70
+ },
71
+ columnWidthMethod: function columnWidthMethod(_ref4) {
72
+ var width = _ref4.width;
73
+ return width;
74
+ },
75
+ mergesMethod: function mergesMethod(merges) {
76
+ return merges;
77
+ }
78
+ }
79
+ };
80
+ function s2ab(s) {
81
+ var buf = new ArrayBuffer(s.length);
82
+ var view = new Uint8Array(buf);
83
+ for (var i = 0; i !== s.length; i++) {
84
+ view[i] = s.charCodeAt(i) & 0xff;
85
+ }
86
+ return buf;
87
+ }
88
+ function adjustHeight(hpx) {
89
+ var n = parseInt(hpx / 36);
90
+ return hpx - 10 * n;
91
+ }
92
+ function initHeaderDatas(_ref5) {
93
+ var datas = _ref5.datas,
94
+ headerRowCount = _ref5.headerRowCount,
95
+ headerTrs = _ref5.headerTrs;
96
+ var maxColSpanCount = [-1, 0];
97
+ for (var i = 0; i < headerRowCount; i++) {
98
+ var childNodes = headerTrs[i].childNodes;
99
+ var colSpanCount = 0;
100
+ for (var j = 0; j < childNodes.length; j++) {
101
+ if (~childNodes[j].className.split(/\s/).indexOf('col__gutter')) break;
102
+ colSpanCount += childNodes[j].colSpan;
103
+ }
104
+ if (colSpanCount > maxColSpanCount[1]) {
105
+ maxColSpanCount[0] = i;
106
+ maxColSpanCount[1] = colSpanCount;
107
+ }
108
+ }
109
+ for (var _i = 0; _i < headerRowCount; _i++) {
110
+ datas.push([]);
111
+ for (var _j = 0; _j < maxColSpanCount[1]; _j++) {
112
+ datas[_i].push('');
113
+ }
114
+ }
115
+ }
116
+ function buildHeaderMerges(_ref6) {
117
+ var datas = _ref6.datas,
118
+ headerTrs = _ref6.headerTrs,
119
+ rowHeightMethod = _ref6.rowHeightMethod,
120
+ ths = _ref6.ths,
121
+ ws = _ref6.ws;
122
+ for (var i = 0; i < headerTrs.length; i++) {
123
+ var headerTrRect = headerTrs[i].getBoundingClientRect();
124
+ var childNodes = headerTrs[i].childNodes;
125
+ var rowHeight = Math.round(headerTrRect.height);
126
+ var lastColSpan = 0;
127
+ rowHeight = rowHeightMethod ? rowHeightMethod({
128
+ rowIndex: i,
129
+ height: rowHeight
130
+ }) : rowHeight;
131
+ ws['!rows'].push({
132
+ hpx: adjustHeight(rowHeight)
133
+ });
134
+ for (var j = 0; j < childNodes.length; j++) {
135
+ if (~childNodes[j].className.split(/\s/).indexOf('col__gutter')) break;
136
+ ths.push(childNodes[j]);
137
+ var colSpan = childNodes[j].colSpan;
138
+ var rowSpan = childNodes[j].rowSpan;
139
+ var textContent = childNodes[j].textContent;
140
+ if (colSpan > 1) {
141
+ ws['!merges'].push({
142
+ s: {
143
+ r: i,
144
+ c: lastColSpan
145
+ },
146
+ e: {
147
+ r: i,
148
+ c: lastColSpan + colSpan - 1
149
+ }
150
+ });
151
+ }
152
+ if (rowSpan > 1) {
153
+ ws['!merges'].push({
154
+ s: {
155
+ r: i,
156
+ c: lastColSpan
157
+ },
158
+ e: {
159
+ r: i + rowSpan - 1,
160
+ c: lastColSpan
161
+ }
162
+ });
163
+ }
164
+ if (i !== headerTrs.length - 1) {
165
+ datas[i].splice(lastColSpan, 1, textContent);
166
+ }
167
+ lastColSpan += colSpan;
168
+ }
169
+ }
170
+ }
171
+ function buildColids(_ref7) {
172
+ var $table = _ref7.$table,
173
+ colids = _ref7.colids,
174
+ columnWidthMethod = _ref7.columnWidthMethod,
175
+ datas = _ref7.datas,
176
+ ths = _ref7.ths,
177
+ ws = _ref7.ws;
178
+ var getColWidth = function getColWidth(column, level) {
179
+ if (column.children) {
180
+ for (var i = 0; i < column.children.length; i++) {
181
+ getColWidth(column.children[i], level + 1);
182
+ }
183
+ } else {
184
+ var colid = column.id;
185
+ for (var _i2 = 0; _i2 < ths.length; _i2++) {
186
+ if (ths[_i2].dataset.colid === colid) {
187
+ colids.push(colid);
188
+ var thRect = ths[_i2].getBoundingClientRect();
189
+ var columnWidth = Math.round(thRect.width);
190
+ columnWidth = columnWidthMethod ? columnWidthMethod({
191
+ columnIndex: colids.length - 1,
192
+ width: columnWidth
193
+ }) : columnWidth;
194
+ ws['!cols'].push({
195
+ wch: Math.round(columnWidth / 10)
196
+ });
197
+ datas[level].splice(colids.length - 1, 1, typeof column.title === 'string' ? column.title : ths[_i2].textContent);
198
+ break;
199
+ }
200
+ }
201
+ }
202
+ };
203
+ var collectColumn = $table.collectColumn;
204
+ for (var i = 0; i < collectColumn.length; i++) {
205
+ getColWidth(collectColumn[i], 0);
206
+ }
207
+ }
208
+ function buildHeader(_ref8) {
209
+ var $table = _ref8.$table,
210
+ colids = _ref8.colids,
211
+ datas = _ref8.datas,
212
+ headerRowCount = _ref8.headerRowCount,
213
+ headerTrs = _ref8.headerTrs,
214
+ opts = _ref8.opts,
215
+ ws = _ref8.ws;
216
+ if (headerRowCount === 0) return;
217
+ var rowHeightMethod = opts.table.rowHeightMethod;
218
+ var columnWidthMethod = opts.table.columnWidthMethod;
219
+ var ths = [];
220
+ initHeaderDatas({
221
+ datas: datas,
222
+ headerRowCount: headerRowCount,
223
+ headerTrs: headerTrs
224
+ });
225
+ buildHeaderMerges({
226
+ datas: datas,
227
+ headerTrs: headerTrs,
228
+ rowHeightMethod: rowHeightMethod,
229
+ ths: ths,
230
+ ws: ws
231
+ });
232
+ buildColids({
233
+ $table: $table,
234
+ colids: colids,
235
+ columnWidthMethod: columnWidthMethod,
236
+ datas: datas,
237
+ ths: ths,
238
+ ws: ws
239
+ });
240
+ }
241
+ function updateRowsDatas(_ref9) {
242
+ var childNodes = _ref9.childNodes,
243
+ colids = _ref9.colids,
244
+ datas = _ref9.datas,
245
+ i = _ref9.i,
246
+ offset = _ref9.offset,
247
+ rowHeight = _ref9.rowHeight,
248
+ rowHeightMethod = _ref9.rowHeightMethod,
249
+ ws = _ref9.ws;
250
+ rowHeight = rowHeightMethod ? rowHeightMethod({
251
+ rowIndex: i + offset,
252
+ height: rowHeight
253
+ }) : rowHeight;
254
+ ws['!rows'].push({
255
+ hpx: adjustHeight(rowHeight)
256
+ });
257
+ datas.push([]);
258
+ for (var j = 0; j < colids.length; j++) {
259
+ var rowTd = null;
260
+ var textContent = '';
261
+ for (var k = 0; k < childNodes.length; k++) {
262
+ if (childNodes[k].dataset.colid === colids[j]) {
263
+ rowTd = childNodes[k];
264
+ break;
265
+ }
266
+ }
267
+ if (rowTd) {
268
+ textContent = rowTd.textContent;
269
+ rowTd = null;
270
+ }
271
+ datas[offset + i].push(textContent);
272
+ }
273
+ }
274
+ function updateMerges(_ref10) {
275
+ var childNodes = _ref10.childNodes,
276
+ colids = _ref10.colids,
277
+ i = _ref10.i,
278
+ offset = _ref10.offset,
279
+ ws = _ref10.ws;
280
+ for (var j = 0; j < childNodes.length; j++) {
281
+ var colSpan = childNodes[j].colSpan;
282
+ var rowSpan = childNodes[j].rowSpan;
283
+ var colid = childNodes[j].dataset.colid;
284
+ var sc = colids.indexOf(colid);
285
+ var sr = offset + i;
286
+ if (colSpan > 1 && rowSpan > 1) {
287
+ ws['!merges'].push({
288
+ s: {
289
+ r: sr,
290
+ c: sc
291
+ },
292
+ e: {
293
+ r: sr + rowSpan - 1,
294
+ c: sc + colSpan - 1
295
+ }
296
+ });
297
+ } else if (colSpan > 1) {
298
+ ws['!merges'].push({
299
+ s: {
300
+ r: sr,
301
+ c: sc
302
+ },
303
+ e: {
304
+ r: sr,
305
+ c: sc + colSpan - 1
306
+ }
307
+ });
308
+ } else if (rowSpan > 1) {
309
+ ws['!merges'].push({
310
+ s: {
311
+ r: sr,
312
+ c: sc
313
+ },
314
+ e: {
315
+ r: sr + rowSpan - 1,
316
+ c: sc
317
+ }
318
+ });
319
+ }
320
+ }
321
+ }
322
+ function buildBody(_ref11) {
323
+ var bodyRowCount = _ref11.bodyRowCount,
324
+ bodyTrs = _ref11.bodyTrs,
325
+ colids = _ref11.colids,
326
+ datas = _ref11.datas,
327
+ headerRowCount = _ref11.headerRowCount,
328
+ opts = _ref11.opts,
329
+ ws = _ref11.ws;
330
+ if (bodyRowCount === 0) return;
331
+ var rowHeightMethod = opts.table.rowHeightMethod;
332
+ var offset = headerRowCount;
333
+ for (var i = 0; i < bodyTrs.length; i++) {
334
+ var bodyTrRect = bodyTrs[i].getBoundingClientRect();
335
+ var childNodes = bodyTrs[i].childNodes;
336
+ var rowHeight = Math.round(bodyTrRect.height);
337
+ updateRowsDatas({
338
+ colids: colids,
339
+ childNodes: childNodes,
340
+ i: i,
341
+ datas: datas,
342
+ rowHeight: rowHeight,
343
+ rowHeightMethod: rowHeightMethod,
344
+ offset: offset,
345
+ ws: ws
346
+ });
347
+ updateMerges({
348
+ childNodes: childNodes,
349
+ colids: colids,
350
+ i: i,
351
+ offset: offset,
352
+ ws: ws
353
+ });
354
+ }
355
+ }
356
+ function genExcelColNames() {
357
+ var excelColNames = [];
358
+ var f = funcFromCodePoint;
359
+ for (var i = -1; i < 26; i++) {
360
+ for (var j = 0; j < 26; j++) {
361
+ excelColNames.push((i === -1 ? '' : f(65 + i)) + f(65 + j));
362
+ }
363
+ }
364
+ return excelColNames;
365
+ }
366
+ function buildRef(_ref12) {
367
+ var colids = _ref12.colids,
368
+ datas = _ref12.datas,
369
+ excelColNames = _ref12.excelColNames,
370
+ ws = _ref12.ws;
371
+ var fullref = '';
372
+ if (colids.length > 0 && datas.length > 0) {
373
+ fullref = 'A1:' + excelColNames[colids.length - 1] + datas.length;
374
+ }
375
+ ws['!fullref'] = fullref;
376
+ ws['!ref'] = fullref;
377
+ }
378
+ function updateCellStyle(_ref13) {
379
+ var bodyRowCount = _ref13.bodyRowCount,
380
+ bodyTrBgcArr = _ref13.bodyTrBgcArr,
381
+ footerTrBgc = _ref13.footerTrBgc,
382
+ headerRowCount = _ref13.headerRowCount,
383
+ headerWrapperBgc = _ref13.headerWrapperBgc,
384
+ rowIndex = _ref13.rowIndex,
385
+ showBorder = _ref13.showBorder,
386
+ style = _ref13.style;
387
+ style.font = {
388
+ name: 'Microsoft YaHei',
389
+ sz: 12,
390
+ color: {
391
+ rgb: '000000'
392
+ }
393
+ };
394
+ if (rowIndex < headerRowCount) {
395
+ style.fill = {
396
+ fgColor: {
397
+ rgb: headerWrapperBgc
398
+ }
399
+ };
400
+ style.font.bold = true;
401
+ } else if (rowIndex < headerRowCount + bodyRowCount) {
402
+ style.fill = {
403
+ fgColor: {
404
+ rgb: bodyTrBgcArr[rowIndex - headerRowCount]
405
+ }
406
+ };
407
+ } else {
408
+ style.fill = {
409
+ fgColor: {
410
+ rgb: footerTrBgc
411
+ }
412
+ };
413
+ }
414
+ if (showBorder) {
415
+ style.border = {
416
+ top: {
417
+ style: 'thin',
418
+ color: {
419
+ rgb: '000000'
420
+ }
421
+ },
422
+ bottom: {
423
+ style: 'thin',
424
+ color: {
425
+ rgb: '000000'
426
+ }
427
+ },
428
+ left: {
429
+ style: 'thin',
430
+ color: {
431
+ rgb: '000000'
432
+ }
433
+ },
434
+ right: {
435
+ style: 'thin',
436
+ color: {
437
+ rgb: '000000'
438
+ }
439
+ }
440
+ };
441
+ }
442
+ style.alignment = {
443
+ vertical: 'center',
444
+ horizontal: 'left',
445
+ wrapText: false
446
+ };
447
+ }
448
+ function buildDatas(_ref14) {
449
+ var showBorder = _ref14.showBorder,
450
+ bodyRowCount = _ref14.bodyRowCount,
451
+ bodyTrBgcArr = _ref14.bodyTrBgcArr,
452
+ headerRowCount = _ref14.headerRowCount,
453
+ colids = _ref14.colids,
454
+ datas = _ref14.datas,
455
+ footerTrBgc = _ref14.footerTrBgc,
456
+ headerWrapperBgc = _ref14.headerWrapperBgc,
457
+ excelColNames = _ref14.excelColNames,
458
+ opts = _ref14.opts,
459
+ $table = _ref14.$table,
460
+ ws = _ref14.ws;
461
+ if (datas.length === 0) return;
462
+ var styleMethod = opts.table.styleMethod;
463
+ var formatMethod = opts.table.formatMethod;
464
+ var fullColumn = $table.getTableColumn().fullColumn;
465
+ var isIndexColData = function isIndexColData(i, j, indexColIndex, headerRowCount, bodyRowCount) {
466
+ return indexColIndex === j && i >= headerRowCount && i < headerRowCount + bodyRowCount;
467
+ };
468
+ var indexColIndex;
469
+ for (var i = 0; i < fullColumn.length; i++) {
470
+ if (fullColumn[i].type === 'index') {
471
+ indexColIndex = colids.indexOf(fullColumn[i].id);
472
+ break;
473
+ }
474
+ }
475
+ for (var _i3 = 0; _i3 < datas.length; _i3++) {
476
+ for (var j = 0; j < datas[_i3].length; j++) {
477
+ var type = isIndexColData(_i3, j, indexColIndex, headerRowCount, bodyRowCount) ? 'n' : 's';
478
+ var value = isIndexColData(_i3, j, indexColIndex, headerRowCount, bodyRowCount) ? parseInt(datas[_i3][j]) : datas[_i3][j].trim();
479
+ var style = {};
480
+ updateCellStyle({
481
+ bodyRowCount: bodyRowCount,
482
+ bodyTrBgcArr: bodyTrBgcArr,
483
+ columnIndex: j,
484
+ footerTrBgc: footerTrBgc,
485
+ headerRowCount: headerRowCount,
486
+ headerWrapperBgc: headerWrapperBgc,
487
+ rowIndex: _i3,
488
+ showBorder: showBorder,
489
+ style: style
490
+ });
491
+ if (styleMethod) {
492
+ style = styleMethod({
493
+ rowIndex: _i3,
494
+ columnIndex: j,
495
+ style: style
496
+ });
497
+ }
498
+ if (formatMethod) {
499
+ var ret = formatMethod({
500
+ rowIndex: _i3,
501
+ columnIndex: j,
502
+ value: value,
503
+ type: type
504
+ });
505
+ type = ret.type;
506
+ value = ret.value;
507
+ }
508
+ ws[excelColNames[j] + (_i3 + 1)] = {
509
+ t: type,
510
+ v: value,
511
+ s: style
512
+ };
513
+ }
514
+ }
515
+ }
516
+ function buildWb(_ref15) {
517
+ var XLSXX = _ref15.XLSXX,
518
+ opts = _ref15.opts,
519
+ ws = _ref15.ws;
520
+ ws = ws['!cols'].length === 0 || ws['!rows'].length === 0 ? {} : ws;
521
+ var sheetName = opts.table.sheetName;
522
+ var merges = ws['!merges'];
523
+ if (merges) {
524
+ var mergesMethod = opts.table.mergesMethod;
525
+ ws['!merges'] = mergesMethod ? mergesMethod(merges) : merges;
526
+ }
527
+ var wb = {
528
+ Props: {
529
+ Application: 'SheetJS',
530
+ SheetNames: [sheetName],
531
+ Worksheets: 1
532
+ },
533
+ SSF: XLSXX.SSF.get_table(),
534
+ SheetNames: [sheetName],
535
+ Sheets: _defineProperty({}, sheetName, ws)
536
+ };
537
+ return wb;
538
+ }
539
+ function computeBodyTrBgcArr(bodyTrs, isStripe) {
540
+ var arr = [];
541
+ for (var i = 0; i < bodyTrs.length; i++) {
542
+ arr.push(isStripe ? getBgc(bodyTrs[i]) : 'ffffff');
543
+ }
544
+ return arr;
545
+ }
546
+ function queryDom($table) {
547
+ var headerTrs = $table.$el.querySelectorAll('.tiny-grid__header-wrapper.body__wrapper .tiny-grid-header__row');
548
+ var bodyTrs = $table.$el.querySelectorAll('.tiny-grid__body-wrapper.body__wrapper .tiny-grid-body__row:not(.group)');
549
+ var footerTrs = $table.$el.querySelectorAll('.tiny-grid__footer-wrapper.body__wrapper .tiny-grid-footer__row');
550
+ var headerWrapper = $table.$el.querySelector('.tiny-grid__header-wrapper.body__wrapper');
551
+ return {
552
+ bodyTrs: bodyTrs,
553
+ footerTrs: footerTrs,
554
+ headerTrs: headerTrs,
555
+ headerWrapper: headerWrapper
556
+ };
557
+ }
558
+ function getTableAttr($table, headerWrapper, bodyTrs) {
559
+ var showBorder = ~$table.$el.className.split(/\s/).indexOf('tiny-grid__border');
560
+ var isStripe = ~$table.$el.className.split(/\s/).indexOf('tiny-grid__stripe');
561
+ var headerWrapperBgc = headerWrapper ? getBgc(headerWrapper) : 'ffffff';
562
+ var bodyTrBgcArr = computeBodyTrBgcArr(bodyTrs, isStripe);
563
+ var footerTrBgc = 'ffffff';
564
+ return {
565
+ showBorder: showBorder,
566
+ headerWrapperBgc: headerWrapperBgc,
567
+ bodyTrBgcArr: bodyTrBgcArr,
568
+ footerTrBgc: footerTrBgc
569
+ };
570
+ }
571
+ function buildColidsByVisibleColumn(_ref16) {
572
+ var $table = _ref16.$table,
573
+ bodyRowCount = _ref16.bodyRowCount,
574
+ bodyTrs = _ref16.bodyTrs,
575
+ colids = _ref16.colids,
576
+ opts = _ref16.opts,
577
+ ws = _ref16.ws;
578
+ if (colids.length > 0 || bodyRowCount === 0) return;
579
+ var columnWidthMethod = opts.table.columnWidthMethod;
580
+ var tds = [];
581
+ for (var i = 0; i < bodyTrs.length; i++) {
582
+ for (var j = 0; j < bodyTrs[i].childNodes.length; j++) {
583
+ tds.push(bodyTrs[i].childNodes[j]);
584
+ }
585
+ }
586
+ for (var _i4 = 0; _i4 < $table.visibleColumn.length; _i4++) {
587
+ var colid = $table.visibleColumn[_i4].id;
588
+ for (var _j2 = 0; _j2 < tds.length; _j2++) {
589
+ if (tds[_j2].dataset.colid === colid) {
590
+ colids.push(colid);
591
+ var tdRect = tds[_j2].getBoundingClientRect();
592
+ var colSpan = tds[_j2].colSpan;
593
+ var columnWidth = Math.round(tdRect.width / colSpan);
594
+ columnWidth = columnWidthMethod ? columnWidthMethod({
595
+ columnIndex: colids.length - 1,
596
+ width: columnWidth
597
+ }) : columnWidth;
598
+ ws['!cols'].push({
599
+ wch: Math.round(columnWidth / 10)
600
+ });
601
+ break;
602
+ }
603
+ }
604
+ }
605
+ }
606
+ function buildFooter(_ref17) {
607
+ var bodyRowCount = _ref17.bodyRowCount,
608
+ colids = _ref17.colids,
609
+ datas = _ref17.datas,
610
+ footerRowCount = _ref17.footerRowCount,
611
+ footerTrs = _ref17.footerTrs,
612
+ headerRowCount = _ref17.headerRowCount,
613
+ opts = _ref17.opts,
614
+ ws = _ref17.ws;
615
+ if (footerRowCount === 0) return;
616
+ var rowHeightMethod = opts.table.rowHeightMethod;
617
+ var offset = headerRowCount + bodyRowCount;
618
+ for (var i = 0; i < footerTrs.length; i++) {
619
+ var footerTrRect = footerTrs[i].getBoundingClientRect();
620
+ var childNodes = footerTrs[i].childNodes;
621
+ var rowHeight = Math.round(footerTrRect.height);
622
+ updateRowsDatas({
623
+ childNodes: childNodes,
624
+ colids: colids,
625
+ datas: datas,
626
+ i: i,
627
+ offset: offset,
628
+ rowHeight: rowHeight,
629
+ rowHeightMethod: rowHeightMethod,
630
+ ws: ws
631
+ });
632
+ updateMerges({
633
+ childNodes: childNodes,
634
+ colids: colids,
635
+ i: i,
636
+ offset: offset,
637
+ ws: ws
638
+ });
639
+ }
640
+ }
641
+ function createExcelFromDom($table, opts) {
642
+ var XLSXX = opts.plugins.XLSXX;
643
+ var _queryDom = queryDom($table),
644
+ bodyTrs = _queryDom.bodyTrs,
645
+ footerTrs = _queryDom.footerTrs,
646
+ headerTrs = _queryDom.headerTrs,
647
+ headerWrapper = _queryDom.headerWrapper;
648
+ var _getTableAttr = getTableAttr($table, headerWrapper, bodyTrs),
649
+ showBorder = _getTableAttr.showBorder,
650
+ headerWrapperBgc = _getTableAttr.headerWrapperBgc,
651
+ bodyTrBgcArr = _getTableAttr.bodyTrBgcArr,
652
+ footerTrBgc = _getTableAttr.footerTrBgc;
653
+ var headerRowCount = headerTrs.length;
654
+ var bodyRowCount = bodyTrs.length;
655
+ var footerRowCount = footerTrs.length;
656
+ var ws = {};
657
+ var datas = [];
658
+ var colids = [];
659
+ var excelColNames = genExcelColNames();
660
+ ws['!rows'] = [];
661
+ ws['!cols'] = [];
662
+ ws['!merges'] = [];
663
+ buildHeader({
664
+ $table: $table,
665
+ colids: colids,
666
+ datas: datas,
667
+ headerRowCount: headerRowCount,
668
+ headerTrs: headerTrs,
669
+ opts: opts,
670
+ ws: ws
671
+ });
672
+ buildColidsByVisibleColumn({
673
+ $table: $table,
674
+ bodyRowCount: bodyRowCount,
675
+ bodyTrs: bodyTrs,
676
+ colids: colids,
677
+ opts: opts,
678
+ ws: ws
679
+ });
680
+ buildBody({
681
+ bodyRowCount: bodyRowCount,
682
+ bodyTrs: bodyTrs,
683
+ colids: colids,
684
+ datas: datas,
685
+ headerRowCount: headerRowCount,
686
+ opts: opts,
687
+ ws: ws
688
+ });
689
+ buildFooter({
690
+ bodyRowCount: bodyRowCount,
691
+ colids: colids,
692
+ datas: datas,
693
+ footerRowCount: footerRowCount,
694
+ footerTrs: footerTrs,
695
+ headerRowCount: headerRowCount,
696
+ opts: opts,
697
+ ws: ws
698
+ });
699
+ buildRef({
700
+ colids: colids,
701
+ datas: datas,
702
+ excelColNames: excelColNames,
703
+ ws: ws
704
+ });
705
+ buildDatas({
706
+ $table: $table,
707
+ bodyRowCount: bodyRowCount,
708
+ bodyTrBgcArr: bodyTrBgcArr,
709
+ colids: colids,
710
+ datas: datas,
711
+ excelColNames: excelColNames,
712
+ footerTrBgc: footerTrBgc,
713
+ headerRowCount: headerRowCount,
714
+ headerWrapperBgc: headerWrapperBgc,
715
+ opts: opts,
716
+ showBorder: showBorder,
717
+ ws: ws
718
+ });
719
+ return buildWb({
720
+ XLSXX: XLSXX,
721
+ opts: opts,
722
+ ws: ws
723
+ });
724
+ }
725
+ export function exportExcel($table, options) {
726
+ var opts = extend(true, {}, options);
727
+ opts.plugins = opts.plugins || {};
728
+ if (!opts.plugins.XLSX || !opts.plugins.XLSXX || !opts.plugins.FileSaver) return;
729
+ opts.table = opts.table || {};
730
+ opts.table.sheetName = opts.table.sheetName || defaultOptions.table.sheetName;
731
+ opts.table.formatMethod = opts.table.formatMethod || defaultOptions.table.formatMethod;
732
+ opts.table.styleMethod = opts.table.styleMethod || defaultOptions.table.styleMethod;
733
+ opts.table.rowHeightMethod = opts.table.rowHeightMethod || defaultOptions.table.rowHeightMethod;
734
+ opts.table.columnWidthMethod = opts.table.columnWidthMethod || defaultOptions.table.columnWidthMethod;
735
+ opts.table.mergesMethod = opts.table.mergesMethod || defaultOptions.table.mergesMethod;
736
+ var wb = createExcelFromDom($table, opts);
737
+ var _opts$plugins = opts.plugins,
738
+ XLSXX = _opts$plugins.XLSXX,
739
+ FileSaver = _opts$plugins.FileSaver;
740
+ var wopts = {
741
+ bookType: 'xlsx',
742
+ bookSST: false,
743
+ type: 'binary'
744
+ };
745
+ var wbout = XLSXX.write(wb, wopts);
746
+ FileSaver.saveAs(new Blob([s2ab(wbout)], {
747
+ type: ''
748
+ }), opts.table.sheetName + '.xlsx');
749
+ }