@taiga-ui/addon-table 2.59.1 → 3.0.0-rc.1

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 (284) hide show
  1. package/bundles/taiga-ui-addon-table-components-reorder.umd.js +422 -297
  2. package/bundles/taiga-ui-addon-table-components-reorder.umd.js.map +1 -1
  3. package/bundles/taiga-ui-addon-table-components-table-pagination.umd.js +445 -314
  4. package/bundles/taiga-ui-addon-table-components-table-pagination.umd.js.map +1 -1
  5. package/bundles/taiga-ui-addon-table-components-table.umd.js +863 -659
  6. package/bundles/taiga-ui-addon-table-components-table.umd.js.map +1 -1
  7. package/bundles/taiga-ui-addon-table-components.umd.js +11 -25
  8. package/bundles/taiga-ui-addon-table-components.umd.js.map +1 -1
  9. package/bundles/taiga-ui-addon-table-directives-table-filters.umd.js +453 -320
  10. package/bundles/taiga-ui-addon-table-directives-table-filters.umd.js.map +1 -1
  11. package/bundles/taiga-ui-addon-table-directives.umd.js +5 -7
  12. package/bundles/taiga-ui-addon-table-directives.umd.js.map +1 -1
  13. package/bundles/taiga-ui-addon-table-interfaces.umd.js +2 -2
  14. package/bundles/taiga-ui-addon-table-interfaces.umd.js.map +1 -1
  15. package/bundles/taiga-ui-addon-table-tokens.umd.js +9 -5
  16. package/bundles/taiga-ui-addon-table-tokens.umd.js.map +1 -1
  17. package/bundles/taiga-ui-addon-table-types.umd.js +2 -2
  18. package/bundles/taiga-ui-addon-table-types.umd.js.map +1 -1
  19. package/bundles/taiga-ui-addon-table-utils.umd.js +9 -11
  20. package/bundles/taiga-ui-addon-table-utils.umd.js.map +1 -1
  21. package/bundles/taiga-ui-addon-table.umd.js +19 -21
  22. package/bundles/taiga-ui-addon-table.umd.js.map +1 -1
  23. package/components/index.d.ts +0 -1
  24. package/components/package.json +2 -5
  25. package/components/reorder/package.json +2 -5
  26. package/components/reorder/reorder.component.d.ts +3 -0
  27. package/components/reorder/reorder.module.d.ts +9 -0
  28. package/components/reorder/taiga-ui-addon-table-components-reorder.d.ts +1 -0
  29. package/components/table/directives/cell.directive.d.ts +3 -0
  30. package/components/table/directives/head.directive.d.ts +3 -0
  31. package/components/table/directives/resized.directive.d.ts +3 -0
  32. package/components/table/directives/row.directive.d.ts +3 -0
  33. package/components/table/directives/sort-by.directive.d.ts +3 -0
  34. package/components/table/directives/sortable.directive.d.ts +3 -0
  35. package/components/table/directives/table.directive.d.ts +5 -2
  36. package/components/table/directives/thead.directive.d.ts +3 -0
  37. package/components/table/package.json +2 -5
  38. package/components/table/pipes/table-sort.pipe.d.ts +3 -0
  39. package/components/table/providers/stuck.provider.d.ts +1 -3
  40. package/components/table/providers/table.provider.d.ts +0 -2
  41. package/components/table/providers/table.providers.d.ts +0 -6
  42. package/components/table/table.module.d.ts +22 -0
  43. package/components/table/taiga-ui-addon-table-components-table.d.ts +1 -0
  44. package/components/table/tbody/tbody.component.d.ts +3 -0
  45. package/components/table/td/td.component.d.ts +3 -0
  46. package/components/table/th/th.component.d.ts +3 -0
  47. package/components/table/th-group/th-group.component.d.ts +3 -0
  48. package/components/table/tr/tr.component.d.ts +3 -0
  49. package/components/table-pagination/package.json +2 -5
  50. package/components/table-pagination/table-pagination.component.d.ts +3 -0
  51. package/components/table-pagination/table-pagination.module.d.ts +8 -0
  52. package/components/table-pagination/taiga-ui-addon-table-components-table-pagination.d.ts +1 -0
  53. package/components/taiga-ui-addon-table-components.d.ts +1 -0
  54. package/directives/package.json +2 -5
  55. package/directives/table-filters/generic-filter.directive.d.ts +3 -0
  56. package/directives/table-filters/package.json +2 -5
  57. package/directives/table-filters/table-filter.directive.d.ts +3 -0
  58. package/directives/table-filters/table-filters.directive.d.ts +3 -0
  59. package/directives/table-filters/table-filters.module.d.ts +8 -0
  60. package/directives/table-filters/table-filters.pipe.d.ts +3 -0
  61. package/directives/table-filters/taiga-ui-addon-table-directives-table-filters.d.ts +1 -0
  62. package/directives/taiga-ui-addon-table-directives.d.ts +1 -0
  63. package/esm2015/components/index.js +1 -2
  64. package/esm2015/components/reorder/index.js +1 -1
  65. package/esm2015/components/reorder/reorder.component.js +34 -28
  66. package/esm2015/components/reorder/reorder.module.js +26 -13
  67. package/esm2015/components/reorder/taiga-ui-addon-table-components-reorder.js +1 -1
  68. package/esm2015/components/table/directives/cell.directive.js +18 -15
  69. package/esm2015/components/table/directives/head.directive.js +17 -17
  70. package/esm2015/components/table/directives/resized.directive.js +26 -25
  71. package/esm2015/components/table/directives/row.directive.js +18 -15
  72. package/esm2015/components/table/directives/sort-by.directive.js +26 -23
  73. package/esm2015/components/table/directives/sortable.directive.js +24 -18
  74. package/esm2015/components/table/directives/table.directive.js +48 -39
  75. package/esm2015/components/table/directives/thead.directive.js +33 -25
  76. package/esm2015/components/table/index.js +1 -1
  77. package/esm2015/components/table/pipes/table-sort.pipe.js +18 -15
  78. package/esm2015/components/table/providers/stuck.provider.js +6 -8
  79. package/esm2015/components/table/providers/table.provider.js +3 -5
  80. package/esm2015/components/table/providers/table.providers.js +7 -15
  81. package/esm2015/components/table/table.module.js +69 -41
  82. package/esm2015/components/table/taiga-ui-addon-table-components-table.js +1 -1
  83. package/esm2015/components/table/tbody/tbody.component.js +43 -32
  84. package/esm2015/components/table/td/td.component.js +23 -17
  85. package/esm2015/components/table/th/th.component.js +56 -36
  86. package/esm2015/components/table/th-group/th-group.component.js +27 -23
  87. package/esm2015/components/table/tr/tr.component.js +28 -22
  88. package/esm2015/components/table-pagination/index.js +1 -1
  89. package/esm2015/components/table-pagination/table-pagination-options.js +1 -1
  90. package/esm2015/components/table-pagination/table-pagination.component.js +40 -32
  91. package/esm2015/components/table-pagination/table-pagination.module.js +30 -13
  92. package/esm2015/components/table-pagination/taiga-ui-addon-table-components-table-pagination.js +1 -1
  93. package/esm2015/components/taiga-ui-addon-table-components.js +1 -1
  94. package/esm2015/directives/index.js +1 -1
  95. package/esm2015/directives/table-filters/abstract-table-filter.js +1 -1
  96. package/esm2015/directives/table-filters/generic-filter.directive.js +25 -20
  97. package/esm2015/directives/table-filters/index.js +2 -1
  98. package/esm2015/directives/table-filters/table-filter.directive.js +32 -24
  99. package/esm2015/directives/table-filters/table-filter.js +2 -1
  100. package/esm2015/directives/table-filters/table-filters.directive.js +12 -10
  101. package/esm2015/directives/table-filters/table-filters.module.js +30 -21
  102. package/esm2015/directives/table-filters/table-filters.pipe.js +16 -14
  103. package/esm2015/directives/table-filters/taiga-ui-addon-table-directives-table-filters.js +1 -1
  104. package/esm2015/directives/taiga-ui-addon-table-directives.js +1 -1
  105. package/esm2015/index.js +2 -1
  106. package/esm2015/interfaces/index.js +2 -1
  107. package/esm2015/interfaces/row-context.js +2 -1
  108. package/esm2015/interfaces/taiga-ui-addon-table-interfaces.js +2 -1
  109. package/esm2015/taiga-ui-addon-table.js +1 -1
  110. package/esm2015/tokens/i18n.js +4 -4
  111. package/esm2015/tokens/index.js +1 -1
  112. package/esm2015/tokens/taiga-ui-addon-table-tokens.js +1 -1
  113. package/esm2015/types/comparator.js +2 -1
  114. package/esm2015/types/index.js +2 -1
  115. package/esm2015/types/taiga-ui-addon-table-types.js +2 -1
  116. package/esm2015/utils/default-sort.js +4 -9
  117. package/esm2015/utils/index.js +1 -1
  118. package/esm2015/utils/taiga-ui-addon-table-utils.js +1 -1
  119. package/fesm2015/taiga-ui-addon-table-components-reorder.js +59 -38
  120. package/fesm2015/taiga-ui-addon-table-components-reorder.js.map +1 -1
  121. package/fesm2015/taiga-ui-addon-table-components-table-pagination.js +68 -41
  122. package/fesm2015/taiga-ui-addon-table-components-table-pagination.js.map +1 -1
  123. package/fesm2015/taiga-ui-addon-table-components-table.js +436 -347
  124. package/fesm2015/taiga-ui-addon-table-components-table.js.map +1 -1
  125. package/fesm2015/taiga-ui-addon-table-components.js +0 -1
  126. package/fesm2015/taiga-ui-addon-table-components.js.map +1 -1
  127. package/fesm2015/taiga-ui-addon-table-directives-table-filters.js +104 -76
  128. package/fesm2015/taiga-ui-addon-table-directives-table-filters.js.map +1 -1
  129. package/fesm2015/taiga-ui-addon-table-directives.js.map +1 -1
  130. package/fesm2015/taiga-ui-addon-table-interfaces.js.map +1 -1
  131. package/fesm2015/taiga-ui-addon-table-tokens.js +3 -3
  132. package/fesm2015/taiga-ui-addon-table-tokens.js.map +1 -1
  133. package/fesm2015/taiga-ui-addon-table-types.js.map +1 -1
  134. package/fesm2015/taiga-ui-addon-table-utils.js +4 -9
  135. package/fesm2015/taiga-ui-addon-table-utils.js.map +1 -1
  136. package/fesm2015/taiga-ui-addon-table.js +1 -0
  137. package/fesm2015/taiga-ui-addon-table.js.map +1 -1
  138. package/interfaces/package.json +2 -5
  139. package/interfaces/taiga-ui-addon-table-interfaces.d.ts +1 -0
  140. package/package.json +12 -15
  141. package/taiga-ui-addon-table.d.ts +1 -0
  142. package/tokens/package.json +2 -5
  143. package/tokens/taiga-ui-addon-table-tokens.d.ts +1 -0
  144. package/types/package.json +2 -5
  145. package/types/taiga-ui-addon-table-types.d.ts +1 -0
  146. package/utils/default-sort.d.ts +1 -5
  147. package/utils/package.json +2 -5
  148. package/utils/taiga-ui-addon-table-utils.d.ts +1 -0
  149. package/bundles/taiga-ui-addon-table-components-reorder.umd.min.js +0 -2
  150. package/bundles/taiga-ui-addon-table-components-reorder.umd.min.js.map +0 -1
  151. package/bundles/taiga-ui-addon-table-components-resizable-column.umd.js +0 -338
  152. package/bundles/taiga-ui-addon-table-components-resizable-column.umd.js.map +0 -1
  153. package/bundles/taiga-ui-addon-table-components-resizable-column.umd.min.js +0 -2
  154. package/bundles/taiga-ui-addon-table-components-resizable-column.umd.min.js.map +0 -1
  155. package/bundles/taiga-ui-addon-table-components-table-pagination.umd.min.js +0 -2
  156. package/bundles/taiga-ui-addon-table-components-table-pagination.umd.min.js.map +0 -1
  157. package/bundles/taiga-ui-addon-table-components-table.umd.min.js +0 -2
  158. package/bundles/taiga-ui-addon-table-components-table.umd.min.js.map +0 -1
  159. package/bundles/taiga-ui-addon-table-components.umd.min.js +0 -2
  160. package/bundles/taiga-ui-addon-table-components.umd.min.js.map +0 -1
  161. package/bundles/taiga-ui-addon-table-directives-table-filters.umd.min.js +0 -2
  162. package/bundles/taiga-ui-addon-table-directives-table-filters.umd.min.js.map +0 -1
  163. package/bundles/taiga-ui-addon-table-directives.umd.min.js +0 -2
  164. package/bundles/taiga-ui-addon-table-directives.umd.min.js.map +0 -1
  165. package/bundles/taiga-ui-addon-table-interfaces.umd.min.js +0 -2
  166. package/bundles/taiga-ui-addon-table-interfaces.umd.min.js.map +0 -1
  167. package/bundles/taiga-ui-addon-table-tokens.umd.min.js +0 -2
  168. package/bundles/taiga-ui-addon-table-tokens.umd.min.js.map +0 -1
  169. package/bundles/taiga-ui-addon-table-types.umd.min.js +0 -2
  170. package/bundles/taiga-ui-addon-table-types.umd.min.js.map +0 -1
  171. package/bundles/taiga-ui-addon-table-utils.umd.min.js +0 -2
  172. package/bundles/taiga-ui-addon-table-utils.umd.min.js.map +0 -1
  173. package/bundles/taiga-ui-addon-table.umd.min.js +0 -2
  174. package/bundles/taiga-ui-addon-table.umd.min.js.map +0 -1
  175. package/components/reorder/taiga-ui-addon-table-components-reorder.metadata.json +0 -1
  176. package/components/resizable-column/index.d.ts +0 -3
  177. package/components/resizable-column/package.json +0 -13
  178. package/components/resizable-column/resizable-column.component.d.ts +0 -5
  179. package/components/resizable-column/resizable-column.directive.d.ts +0 -9
  180. package/components/resizable-column/resizable-column.module.d.ts +0 -3
  181. package/components/resizable-column/taiga-ui-addon-table-components-resizable-column.d.ts +0 -4
  182. package/components/resizable-column/taiga-ui-addon-table-components-resizable-column.metadata.json +0 -1
  183. package/components/table/taiga-ui-addon-table-components-table.metadata.json +0 -1
  184. package/components/table-pagination/taiga-ui-addon-table-components-table-pagination.metadata.json +0 -1
  185. package/components/taiga-ui-addon-table-components.metadata.json +0 -1
  186. package/directives/table-filters/taiga-ui-addon-table-directives-table-filters.metadata.json +0 -1
  187. package/directives/taiga-ui-addon-table-directives.metadata.json +0 -1
  188. package/esm2015/components/resizable-column/index.js +0 -4
  189. package/esm2015/components/resizable-column/resizable-column.component.js +0 -30
  190. package/esm2015/components/resizable-column/resizable-column.directive.js +0 -37
  191. package/esm2015/components/resizable-column/resizable-column.module.js +0 -15
  192. package/esm2015/components/resizable-column/taiga-ui-addon-table-components-resizable-column.js +0 -5
  193. package/esm5/components/index.js +0 -5
  194. package/esm5/components/reorder/index.js +0 -3
  195. package/esm5/components/reorder/reorder.component.js +0 -72
  196. package/esm5/components/reorder/reorder.module.js +0 -27
  197. package/esm5/components/reorder/taiga-ui-addon-table-components-reorder.js +0 -5
  198. package/esm5/components/resizable-column/index.js +0 -4
  199. package/esm5/components/resizable-column/resizable-column.component.js +0 -31
  200. package/esm5/components/resizable-column/resizable-column.directive.js +0 -42
  201. package/esm5/components/resizable-column/resizable-column.module.js +0 -18
  202. package/esm5/components/resizable-column/taiga-ui-addon-table-components-resizable-column.js +0 -5
  203. package/esm5/components/table/directives/cell.directive.js +0 -25
  204. package/esm5/components/table/directives/head.directive.js +0 -22
  205. package/esm5/components/table/directives/resized.directive.js +0 -41
  206. package/esm5/components/table/directives/row.directive.js +0 -28
  207. package/esm5/components/table/directives/sort-by.directive.js +0 -41
  208. package/esm5/components/table/directives/sortable.directive.js +0 -52
  209. package/esm5/components/table/directives/table.directive.js +0 -88
  210. package/esm5/components/table/directives/thead.directive.js +0 -33
  211. package/esm5/components/table/index.js +0 -19
  212. package/esm5/components/table/pipes/table-sort.pipe.js +0 -31
  213. package/esm5/components/table/providers/stuck.provider.js +0 -21
  214. package/esm5/components/table/providers/table.provider.js +0 -17
  215. package/esm5/components/table/providers/table.providers.js +0 -48
  216. package/esm5/components/table/table.module.js +0 -63
  217. package/esm5/components/table/taiga-ui-addon-table-components-table.js +0 -5
  218. package/esm5/components/table/tbody/tbody.component.js +0 -70
  219. package/esm5/components/table/td/td.component.js +0 -22
  220. package/esm5/components/table/th/th.component.js +0 -88
  221. package/esm5/components/table/th-group/th-group.component.js +0 -42
  222. package/esm5/components/table/tr/tr.component.js +0 -45
  223. package/esm5/components/table-pagination/index.js +0 -4
  224. package/esm5/components/table-pagination/table-pagination-options.js +0 -17
  225. package/esm5/components/table-pagination/table-pagination.component.js +0 -113
  226. package/esm5/components/table-pagination/table-pagination.module.js +0 -28
  227. package/esm5/components/table-pagination/taiga-ui-addon-table-components-table-pagination.js +0 -5
  228. package/esm5/components/taiga-ui-addon-table-components.js +0 -5
  229. package/esm5/directives/index.js +0 -2
  230. package/esm5/directives/table-filters/abstract-table-filter.js +0 -7
  231. package/esm5/directives/table-filters/generic-filter.directive.js +0 -34
  232. package/esm5/directives/table-filters/index.js +0 -7
  233. package/esm5/directives/table-filters/table-filter.directive.js +0 -59
  234. package/esm5/directives/table-filters/table-filter.js +0 -1
  235. package/esm5/directives/table-filters/table-filters.directive.js +0 -39
  236. package/esm5/directives/table-filters/table-filters.module.js +0 -29
  237. package/esm5/directives/table-filters/table-filters.pipe.js +0 -23
  238. package/esm5/directives/table-filters/taiga-ui-addon-table-directives-table-filters.js +0 -5
  239. package/esm5/directives/taiga-ui-addon-table-directives.js +0 -5
  240. package/esm5/index.js +0 -5
  241. package/esm5/interfaces/index.js +0 -1
  242. package/esm5/interfaces/row-context.js +0 -1
  243. package/esm5/interfaces/taiga-ui-addon-table-interfaces.js +0 -4
  244. package/esm5/taiga-ui-addon-table.js +0 -5
  245. package/esm5/tokens/i18n.js +0 -9
  246. package/esm5/tokens/index.js +0 -2
  247. package/esm5/tokens/taiga-ui-addon-table-tokens.js +0 -5
  248. package/esm5/types/comparator.js +0 -1
  249. package/esm5/types/index.js +0 -1
  250. package/esm5/types/taiga-ui-addon-table-types.js +0 -4
  251. package/esm5/utils/default-sort.js +0 -18
  252. package/esm5/utils/index.js +0 -2
  253. package/esm5/utils/taiga-ui-addon-table-utils.js +0 -5
  254. package/fesm2015/taiga-ui-addon-table-components-resizable-column.js +0 -79
  255. package/fesm2015/taiga-ui-addon-table-components-resizable-column.js.map +0 -1
  256. package/fesm5/taiga-ui-addon-table-components-reorder.js +0 -99
  257. package/fesm5/taiga-ui-addon-table-components-reorder.js.map +0 -1
  258. package/fesm5/taiga-ui-addon-table-components-resizable-column.js +0 -88
  259. package/fesm5/taiga-ui-addon-table-components-resizable-column.js.map +0 -1
  260. package/fesm5/taiga-ui-addon-table-components-table-pagination.js +0 -156
  261. package/fesm5/taiga-ui-addon-table-components-table-pagination.js.map +0 -1
  262. package/fesm5/taiga-ui-addon-table-components-table.js +0 -669
  263. package/fesm5/taiga-ui-addon-table-components-table.js.map +0 -1
  264. package/fesm5/taiga-ui-addon-table-components.js +0 -9
  265. package/fesm5/taiga-ui-addon-table-components.js.map +0 -1
  266. package/fesm5/taiga-ui-addon-table-directives-table-filters.js +0 -174
  267. package/fesm5/taiga-ui-addon-table-directives-table-filters.js.map +0 -1
  268. package/fesm5/taiga-ui-addon-table-directives.js +0 -6
  269. package/fesm5/taiga-ui-addon-table-directives.js.map +0 -1
  270. package/fesm5/taiga-ui-addon-table-interfaces.js +0 -4
  271. package/fesm5/taiga-ui-addon-table-interfaces.js.map +0 -1
  272. package/fesm5/taiga-ui-addon-table-tokens.js +0 -16
  273. package/fesm5/taiga-ui-addon-table-tokens.js.map +0 -1
  274. package/fesm5/taiga-ui-addon-table-types.js +0 -4
  275. package/fesm5/taiga-ui-addon-table-types.js.map +0 -1
  276. package/fesm5/taiga-ui-addon-table-utils.js +0 -25
  277. package/fesm5/taiga-ui-addon-table-utils.js.map +0 -1
  278. package/fesm5/taiga-ui-addon-table.js +0 -9
  279. package/fesm5/taiga-ui-addon-table.js.map +0 -1
  280. package/interfaces/taiga-ui-addon-table-interfaces.metadata.json +0 -1
  281. package/taiga-ui-addon-table.metadata.json +0 -1
  282. package/tokens/taiga-ui-addon-table-tokens.metadata.json +0 -1
  283. package/types/taiga-ui-addon-table-types.metadata.json +0 -1
  284. package/utils/taiga-ui-addon-table-utils.metadata.json +0 -1
@@ -1,256 +1,359 @@
1
1
  (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/cdk/drag-drop'), require('@angular/core'), require('@taiga-ui/addon-table/tokens'), require('@taiga-ui/cdk'), require('rxjs'), require('@angular/common'), require('@taiga-ui/core')) :
3
- typeof define === 'function' && define.amd ? define('@taiga-ui/addon-table/components/reorder', ['exports', '@angular/cdk/drag-drop', '@angular/core', '@taiga-ui/addon-table/tokens', '@taiga-ui/cdk', 'rxjs', '@angular/common', '@taiga-ui/core'], factory) :
4
- (global = global || self, factory((global['taiga-ui'] = global['taiga-ui'] || {}, global['taiga-ui']['addon-table'] = global['taiga-ui']['addon-table'] || {}, global['taiga-ui']['addon-table'].components = global['taiga-ui']['addon-table'].components || {}, global['taiga-ui']['addon-table'].components.reorder = {}), global.ng.cdk.dragDrop, global.ng.core, global['taiga-ui']['addon-table'].tokens, global.cdk, global.rxjs, global.ng.common, global.core$1));
5
- }(this, (function (exports, dragDrop, core, tokens, cdk, rxjs, common, core$1) { 'use strict';
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/cdk/drag-drop'), require('@angular/core'), require('@taiga-ui/addon-table/tokens'), require('@taiga-ui/cdk'), require('@taiga-ui/core'), require('@angular/common'), require('rxjs')) :
3
+ typeof define === 'function' && define.amd ? define('@taiga-ui/addon-table/components/reorder', ['exports', '@angular/cdk/drag-drop', '@angular/core', '@taiga-ui/addon-table/tokens', '@taiga-ui/cdk', '@taiga-ui/core', '@angular/common', 'rxjs'], factory) :
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global["taiga-ui"] = global["taiga-ui"] || {}, global["taiga-ui"]["addon-table"] = global["taiga-ui"]["addon-table"] || {}, global["taiga-ui"]["addon-table"].components = global["taiga-ui"]["addon-table"].components || {}, global["taiga-ui"]["addon-table"].components.reorder = {}), global.ng.cdk.dragDrop, global.ng.core, global["taiga-ui"]["addon-table"].tokens, global.i4, global.i1, global.ng.common, global.rxjs));
5
+ })(this, (function (exports, i2, i0, tokens, i4, i1, i3, i5) { 'use strict';
6
6
 
7
- /******************************************************************************
8
- Copyright (c) Microsoft Corporation.
9
-
10
- Permission to use, copy, modify, and/or distribute this software for any
11
- purpose with or without fee is hereby granted.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
14
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
15
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
16
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
17
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
18
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19
- PERFORMANCE OF THIS SOFTWARE.
20
- ***************************************************************************** */
21
- /* global Reflect, Promise */
22
-
23
- var extendStatics = function(d, b) {
24
- extendStatics = Object.setPrototypeOf ||
25
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
27
- return extendStatics(d, b);
28
- };
29
-
30
- function __extends(d, b) {
31
- if (typeof b !== "function" && b !== null)
32
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
33
- extendStatics(d, b);
34
- function __() { this.constructor = d; }
35
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
36
- }
37
-
38
- var __assign = function() {
39
- __assign = Object.assign || function __assign(t) {
40
- for (var s, i = 1, n = arguments.length; i < n; i++) {
41
- s = arguments[i];
42
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
43
- }
44
- return t;
45
- };
46
- return __assign.apply(this, arguments);
47
- };
48
-
49
- function __rest(s, e) {
50
- var t = {};
51
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
52
- t[p] = s[p];
53
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
54
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
55
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
56
- t[p[i]] = s[p[i]];
57
- }
58
- return t;
59
- }
60
-
61
- function __decorate(decorators, target, key, desc) {
62
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
63
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
64
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
65
- return c > 3 && r && Object.defineProperty(target, key, r), r;
66
- }
67
-
68
- function __param(paramIndex, decorator) {
69
- return function (target, key) { decorator(target, key, paramIndex); }
70
- }
71
-
72
- function __metadata(metadataKey, metadataValue) {
73
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
74
- }
75
-
76
- function __awaiter(thisArg, _arguments, P, generator) {
77
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
78
- return new (P || (P = Promise))(function (resolve, reject) {
79
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
80
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
81
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
82
- step((generator = generator.apply(thisArg, _arguments || [])).next());
83
- });
84
- }
85
-
86
- function __generator(thisArg, body) {
87
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
88
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
89
- function verb(n) { return function (v) { return step([n, v]); }; }
90
- function step(op) {
91
- if (f) throw new TypeError("Generator is already executing.");
92
- while (_) try {
93
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
94
- if (y = 0, t) op = [op[0] & 2, t.value];
95
- switch (op[0]) {
96
- case 0: case 1: t = op; break;
97
- case 4: _.label++; return { value: op[1], done: false };
98
- case 5: _.label++; y = op[1]; op = [0]; continue;
99
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
100
- default:
101
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
102
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
103
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
104
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
105
- if (t[2]) _.ops.pop();
106
- _.trys.pop(); continue;
107
- }
108
- op = body.call(thisArg, _);
109
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
110
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
111
- }
112
- }
113
-
114
- var __createBinding = Object.create ? (function(o, m, k, k2) {
115
- if (k2 === undefined) k2 = k;
116
- var desc = Object.getOwnPropertyDescriptor(m, k);
117
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
118
- desc = { enumerable: true, get: function() { return m[k]; } };
119
- }
120
- Object.defineProperty(o, k2, desc);
121
- }) : (function(o, m, k, k2) {
122
- if (k2 === undefined) k2 = k;
123
- o[k2] = m[k];
124
- });
125
-
126
- function __exportStar(m, o) {
127
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
128
- }
129
-
130
- function __values(o) {
131
- var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
132
- if (m) return m.call(o);
133
- if (o && typeof o.length === "number") return {
134
- next: function () {
135
- if (o && i >= o.length) o = void 0;
136
- return { value: o && o[i++], done: !o };
137
- }
138
- };
139
- throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
140
- }
141
-
142
- function __read(o, n) {
143
- var m = typeof Symbol === "function" && o[Symbol.iterator];
144
- if (!m) return o;
145
- var i = m.call(o), r, ar = [], e;
146
- try {
147
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
148
- }
149
- catch (error) { e = { error: error }; }
150
- finally {
151
- try {
152
- if (r && !r.done && (m = i["return"])) m.call(i);
153
- }
154
- finally { if (e) throw e.error; }
155
- }
156
- return ar;
157
- }
158
-
159
- /** @deprecated */
160
- function __spread() {
161
- for (var ar = [], i = 0; i < arguments.length; i++)
162
- ar = ar.concat(__read(arguments[i]));
163
- return ar;
164
- }
165
-
166
- /** @deprecated */
167
- function __spreadArrays() {
168
- for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
169
- for (var r = Array(s), k = 0, i = 0; i < il; i++)
170
- for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
171
- r[k] = a[j];
172
- return r;
173
- }
174
-
175
- function __spreadArray(to, from, pack) {
176
- if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
177
- if (ar || !(i in from)) {
178
- if (!ar) ar = Array.prototype.slice.call(from, 0, i);
179
- ar[i] = from[i];
180
- }
181
- }
182
- return to.concat(ar || Array.prototype.slice.call(from));
183
- }
184
-
185
- function __await(v) {
186
- return this instanceof __await ? (this.v = v, this) : new __await(v);
187
- }
188
-
189
- function __asyncGenerator(thisArg, _arguments, generator) {
190
- if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
191
- var g = generator.apply(thisArg, _arguments || []), i, q = [];
192
- return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
193
- function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
194
- function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
195
- function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
196
- function fulfill(value) { resume("next", value); }
197
- function reject(value) { resume("throw", value); }
198
- function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
199
- }
200
-
201
- function __asyncDelegator(o) {
202
- var i, p;
203
- return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
204
- function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
205
- }
206
-
207
- function __asyncValues(o) {
208
- if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
209
- var m = o[Symbol.asyncIterator], i;
210
- return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
211
- function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
212
- function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
213
- }
214
-
215
- function __makeTemplateObject(cooked, raw) {
216
- if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
217
- return cooked;
218
- };
219
-
220
- var __setModuleDefault = Object.create ? (function(o, v) {
221
- Object.defineProperty(o, "default", { enumerable: true, value: v });
222
- }) : function(o, v) {
223
- o["default"] = v;
224
- };
225
-
226
- function __importStar(mod) {
227
- if (mod && mod.__esModule) return mod;
228
- var result = {};
229
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
230
- __setModuleDefault(result, mod);
231
- return result;
232
- }
233
-
234
- function __importDefault(mod) {
235
- return (mod && mod.__esModule) ? mod : { default: mod };
236
- }
237
-
238
- function __classPrivateFieldGet(receiver, state, kind, f) {
239
- if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
240
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
241
- return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
242
- }
243
-
244
- function __classPrivateFieldSet(receiver, state, value, kind, f) {
245
- if (kind === "m") throw new TypeError("Private method is not writable");
246
- if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
247
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
248
- return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
249
- }
250
-
251
- function __classPrivateFieldIn(state, receiver) {
252
- if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function")) throw new TypeError("Cannot use 'in' operator on non-object");
253
- return typeof state === "function" ? receiver === state : state.has(receiver);
7
+ function _interopNamespace(e) {
8
+ if (e && e.__esModule) return e;
9
+ var n = Object.create(null);
10
+ if (e) {
11
+ Object.keys(e).forEach(function (k) {
12
+ if (k !== 'default') {
13
+ var d = Object.getOwnPropertyDescriptor(e, k);
14
+ Object.defineProperty(n, k, d.get ? d : {
15
+ enumerable: true,
16
+ get: function () { return e[k]; }
17
+ });
18
+ }
19
+ });
20
+ }
21
+ n["default"] = e;
22
+ return Object.freeze(n);
23
+ }
24
+
25
+ var i2__namespace = /*#__PURE__*/_interopNamespace(i2);
26
+ var i0__namespace = /*#__PURE__*/_interopNamespace(i0);
27
+ var i4__namespace = /*#__PURE__*/_interopNamespace(i4);
28
+ var i1__namespace = /*#__PURE__*/_interopNamespace(i1);
29
+ var i3__namespace = /*#__PURE__*/_interopNamespace(i3);
30
+ var i5__namespace = /*#__PURE__*/_interopNamespace(i5);
31
+
32
+ /******************************************************************************
33
+ Copyright (c) Microsoft Corporation.
34
+
35
+ Permission to use, copy, modify, and/or distribute this software for any
36
+ purpose with or without fee is hereby granted.
37
+
38
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
39
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
40
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
41
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
42
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
43
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
44
+ PERFORMANCE OF THIS SOFTWARE.
45
+ ***************************************************************************** */
46
+ /* global Reflect, Promise */
47
+ var extendStatics = function (d, b) {
48
+ extendStatics = Object.setPrototypeOf ||
49
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
50
+ function (d, b) { for (var p in b)
51
+ if (Object.prototype.hasOwnProperty.call(b, p))
52
+ d[p] = b[p]; };
53
+ return extendStatics(d, b);
54
+ };
55
+ function __extends(d, b) {
56
+ if (typeof b !== "function" && b !== null)
57
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
58
+ extendStatics(d, b);
59
+ function __() { this.constructor = d; }
60
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
61
+ }
62
+ var __assign = function () {
63
+ __assign = Object.assign || function __assign(t) {
64
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
65
+ s = arguments[i];
66
+ for (var p in s)
67
+ if (Object.prototype.hasOwnProperty.call(s, p))
68
+ t[p] = s[p];
69
+ }
70
+ return t;
71
+ };
72
+ return __assign.apply(this, arguments);
73
+ };
74
+ function __rest(s, e) {
75
+ var t = {};
76
+ for (var p in s)
77
+ if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
78
+ t[p] = s[p];
79
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
80
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
81
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
82
+ t[p[i]] = s[p[i]];
83
+ }
84
+ return t;
85
+ }
86
+ function __decorate(decorators, target, key, desc) {
87
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
88
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
89
+ r = Reflect.decorate(decorators, target, key, desc);
90
+ else
91
+ for (var i = decorators.length - 1; i >= 0; i--)
92
+ if (d = decorators[i])
93
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
94
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
95
+ }
96
+ function __param(paramIndex, decorator) {
97
+ return function (target, key) { decorator(target, key, paramIndex); };
98
+ }
99
+ function __metadata(metadataKey, metadataValue) {
100
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
101
+ return Reflect.metadata(metadataKey, metadataValue);
102
+ }
103
+ function __awaiter(thisArg, _arguments, P, generator) {
104
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
105
+ return new (P || (P = Promise))(function (resolve, reject) {
106
+ function fulfilled(value) { try {
107
+ step(generator.next(value));
108
+ }
109
+ catch (e) {
110
+ reject(e);
111
+ } }
112
+ function rejected(value) { try {
113
+ step(generator["throw"](value));
114
+ }
115
+ catch (e) {
116
+ reject(e);
117
+ } }
118
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
119
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
120
+ });
121
+ }
122
+ function __generator(thisArg, body) {
123
+ var _ = { label: 0, sent: function () { if (t[0] & 1)
124
+ throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
125
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function () { return this; }), g;
126
+ function verb(n) { return function (v) { return step([n, v]); }; }
127
+ function step(op) {
128
+ if (f)
129
+ throw new TypeError("Generator is already executing.");
130
+ while (_)
131
+ try {
132
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
133
+ return t;
134
+ if (y = 0, t)
135
+ op = [op[0] & 2, t.value];
136
+ switch (op[0]) {
137
+ case 0:
138
+ case 1:
139
+ t = op;
140
+ break;
141
+ case 4:
142
+ _.label++;
143
+ return { value: op[1], done: false };
144
+ case 5:
145
+ _.label++;
146
+ y = op[1];
147
+ op = [0];
148
+ continue;
149
+ case 7:
150
+ op = _.ops.pop();
151
+ _.trys.pop();
152
+ continue;
153
+ default:
154
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
155
+ _ = 0;
156
+ continue;
157
+ }
158
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) {
159
+ _.label = op[1];
160
+ break;
161
+ }
162
+ if (op[0] === 6 && _.label < t[1]) {
163
+ _.label = t[1];
164
+ t = op;
165
+ break;
166
+ }
167
+ if (t && _.label < t[2]) {
168
+ _.label = t[2];
169
+ _.ops.push(op);
170
+ break;
171
+ }
172
+ if (t[2])
173
+ _.ops.pop();
174
+ _.trys.pop();
175
+ continue;
176
+ }
177
+ op = body.call(thisArg, _);
178
+ }
179
+ catch (e) {
180
+ op = [6, e];
181
+ y = 0;
182
+ }
183
+ finally {
184
+ f = t = 0;
185
+ }
186
+ if (op[0] & 5)
187
+ throw op[1];
188
+ return { value: op[0] ? op[1] : void 0, done: true };
189
+ }
190
+ }
191
+ var __createBinding = Object.create ? (function (o, m, k, k2) {
192
+ if (k2 === undefined)
193
+ k2 = k;
194
+ var desc = Object.getOwnPropertyDescriptor(m, k);
195
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
196
+ desc = { enumerable: true, get: function () { return m[k]; } };
197
+ }
198
+ Object.defineProperty(o, k2, desc);
199
+ }) : (function (o, m, k, k2) {
200
+ if (k2 === undefined)
201
+ k2 = k;
202
+ o[k2] = m[k];
203
+ });
204
+ function __exportStar(m, o) {
205
+ for (var p in m)
206
+ if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
207
+ __createBinding(o, m, p);
208
+ }
209
+ function __values(o) {
210
+ var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
211
+ if (m)
212
+ return m.call(o);
213
+ if (o && typeof o.length === "number")
214
+ return {
215
+ next: function () {
216
+ if (o && i >= o.length)
217
+ o = void 0;
218
+ return { value: o && o[i++], done: !o };
219
+ }
220
+ };
221
+ throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
222
+ }
223
+ function __read(o, n) {
224
+ var m = typeof Symbol === "function" && o[Symbol.iterator];
225
+ if (!m)
226
+ return o;
227
+ var i = m.call(o), r, ar = [], e;
228
+ try {
229
+ while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
230
+ ar.push(r.value);
231
+ }
232
+ catch (error) {
233
+ e = { error: error };
234
+ }
235
+ finally {
236
+ try {
237
+ if (r && !r.done && (m = i["return"]))
238
+ m.call(i);
239
+ }
240
+ finally {
241
+ if (e)
242
+ throw e.error;
243
+ }
244
+ }
245
+ return ar;
246
+ }
247
+ /** @deprecated */
248
+ function __spread() {
249
+ for (var ar = [], i = 0; i < arguments.length; i++)
250
+ ar = ar.concat(__read(arguments[i]));
251
+ return ar;
252
+ }
253
+ /** @deprecated */
254
+ function __spreadArrays() {
255
+ for (var s = 0, i = 0, il = arguments.length; i < il; i++)
256
+ s += arguments[i].length;
257
+ for (var r = Array(s), k = 0, i = 0; i < il; i++)
258
+ for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
259
+ r[k] = a[j];
260
+ return r;
261
+ }
262
+ function __spreadArray(to, from, pack) {
263
+ if (pack || arguments.length === 2)
264
+ for (var i = 0, l = from.length, ar; i < l; i++) {
265
+ if (ar || !(i in from)) {
266
+ if (!ar)
267
+ ar = Array.prototype.slice.call(from, 0, i);
268
+ ar[i] = from[i];
269
+ }
270
+ }
271
+ return to.concat(ar || Array.prototype.slice.call(from));
272
+ }
273
+ function __await(v) {
274
+ return this instanceof __await ? (this.v = v, this) : new __await(v);
275
+ }
276
+ function __asyncGenerator(thisArg, _arguments, generator) {
277
+ if (!Symbol.asyncIterator)
278
+ throw new TypeError("Symbol.asyncIterator is not defined.");
279
+ var g = generator.apply(thisArg, _arguments || []), i, q = [];
280
+ return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
281
+ function verb(n) { if (g[n])
282
+ i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
283
+ function resume(n, v) { try {
284
+ step(g[n](v));
285
+ }
286
+ catch (e) {
287
+ settle(q[0][3], e);
288
+ } }
289
+ function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
290
+ function fulfill(value) { resume("next", value); }
291
+ function reject(value) { resume("throw", value); }
292
+ function settle(f, v) { if (f(v), q.shift(), q.length)
293
+ resume(q[0][0], q[0][1]); }
294
+ }
295
+ function __asyncDelegator(o) {
296
+ var i, p;
297
+ return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
298
+ function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
299
+ }
300
+ function __asyncValues(o) {
301
+ if (!Symbol.asyncIterator)
302
+ throw new TypeError("Symbol.asyncIterator is not defined.");
303
+ var m = o[Symbol.asyncIterator], i;
304
+ return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
305
+ function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
306
+ function settle(resolve, reject, d, v) { Promise.resolve(v).then(function (v) { resolve({ value: v, done: d }); }, reject); }
307
+ }
308
+ function __makeTemplateObject(cooked, raw) {
309
+ if (Object.defineProperty) {
310
+ Object.defineProperty(cooked, "raw", { value: raw });
311
+ }
312
+ else {
313
+ cooked.raw = raw;
314
+ }
315
+ return cooked;
316
+ }
317
+ ;
318
+ var __setModuleDefault = Object.create ? (function (o, v) {
319
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
320
+ }) : function (o, v) {
321
+ o["default"] = v;
322
+ };
323
+ function __importStar(mod) {
324
+ if (mod && mod.__esModule)
325
+ return mod;
326
+ var result = {};
327
+ if (mod != null)
328
+ for (var k in mod)
329
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
330
+ __createBinding(result, mod, k);
331
+ __setModuleDefault(result, mod);
332
+ return result;
333
+ }
334
+ function __importDefault(mod) {
335
+ return (mod && mod.__esModule) ? mod : { default: mod };
336
+ }
337
+ function __classPrivateFieldGet(receiver, state, kind, f) {
338
+ if (kind === "a" && !f)
339
+ throw new TypeError("Private accessor was defined without a getter");
340
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
341
+ throw new TypeError("Cannot read private member from an object whose class did not declare it");
342
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
343
+ }
344
+ function __classPrivateFieldSet(receiver, state, value, kind, f) {
345
+ if (kind === "m")
346
+ throw new TypeError("Private method is not writable");
347
+ if (kind === "a" && !f)
348
+ throw new TypeError("Private accessor was defined without a setter");
349
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
350
+ throw new TypeError("Cannot write private member to an object whose class did not declare it");
351
+ return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
352
+ }
353
+ function __classPrivateFieldIn(state, receiver) {
354
+ if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function"))
355
+ throw new TypeError("Cannot use 'in' operator on non-object");
356
+ return typeof state === "function" ? receiver === state : state.has(receiver);
254
357
  }
255
358
 
256
359
  // @bad TODO: a11y
@@ -259,8 +362,8 @@
259
362
  this.showHideText$ = showHideText$;
260
363
  this.items = [];
261
364
  this.enabled = [];
262
- this.itemsChange = new core.EventEmitter();
263
- this.enabledChange = new core.EventEmitter();
365
+ this.itemsChange = new i0.EventEmitter();
366
+ this.enabledChange = new i0.EventEmitter();
264
367
  }
265
368
  TuiReorderComponent.prototype.noop = function () { };
266
369
  TuiReorderComponent.prototype.isEnabled = function (item) {
@@ -277,8 +380,8 @@
277
380
  };
278
381
  TuiReorderComponent.prototype.drop = function (event) {
279
382
  var _this = this;
280
- var items = __spread(this.items);
281
- dragDrop.moveItemInArray(items, event.previousIndex, event.currentIndex);
383
+ var items = __spreadArray([], __read(this.items));
384
+ i2.moveItemInArray(items, event.previousIndex, event.currentIndex);
282
385
  this.items = items;
283
386
  this.itemsChange.emit(items);
284
387
  this.updateEnabled(items.filter(function (item) { return _this.enabled.includes(item); }));
@@ -287,60 +390,82 @@
287
390
  this.enabled = enabled;
288
391
  this.enabledChange.emit(enabled);
289
392
  };
290
- TuiReorderComponent.ctorParameters = function () { return [
291
- { type: rxjs.Observable, decorators: [{ type: core.Inject, args: [tokens.TUI_TABLE_SHOW_HIDE_MESSAGE,] }] }
292
- ]; };
293
- __decorate([
294
- core.Input(),
295
- cdk.tuiDefaultProp()
296
- ], TuiReorderComponent.prototype, "items", void 0);
297
- __decorate([
298
- core.Input(),
299
- cdk.tuiDefaultProp()
300
- ], TuiReorderComponent.prototype, "enabled", void 0);
301
- __decorate([
302
- core.Output()
303
- ], TuiReorderComponent.prototype, "itemsChange", void 0);
304
- __decorate([
305
- core.Output()
306
- ], TuiReorderComponent.prototype, "enabledChange", void 0);
307
- __decorate([
308
- core.HostListener("focusout.stop")
309
- ], TuiReorderComponent.prototype, "noop", null);
310
- TuiReorderComponent = __decorate([
311
- core.Component({
312
- selector: "tui-reorder",
313
- template: "<div\n cdkDropList\n class=\"t-wrapper\"\n (cdkDropListDropped)=\"drop($event)\"\n>\n <div\n *ngFor=\"let item of items\"\n tabindex=\"-1\"\n cdkDrag\n class=\"t-item\"\n >\n <tui-svg\n src=\"tuiIconDrag\"\n class=\"t-icon\"\n ></tui-svg>\n {{ item }}\n <button\n type=\"button\"\n tuiIconButton\n appearance=\"icon\"\n size=\"xs\"\n tuiPreventDefault=\"mousedown\"\n class=\"t-button\"\n [class.t-button_hidden]=\"!isEnabled(item)\"\n [title]=\"showHideText$ | async\"\n [icon]=\"getIcon(item)\"\n (click)=\"toggle(item)\"\n ></button>\n </div>\n</div>\n",
314
- styles: [":host{display:block;font:var(--tui-font-text-s);padding:.5rem 0}.t-item{transition-property:background;transition-duration:var(--tui-duration,300ms);transition-timing-function:ease-in-out;display:flex;height:2rem;align-items:center;padding:0 .75rem;cursor:ns-resize;background:var(--tui-base-01);outline:0}.t-item:hover{background:var(--tui-base-02)}.t-item:hover .t-button{opacity:1}.t-icon{margin-right:.5rem;color:var(--tui-base-05)}.t-button{transition-property:opacity;transition-duration:var(--tui-duration,300ms);transition-timing-function:ease-in-out;margin-left:auto;opacity:0}.t-button_hidden{opacity:1}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating,.t-wrapper.cdk-drop-list-dragging .t-item:not(.cdk-drag-placeholder){transition:transform 250ms cubic-bezier(0,0,.2,1)}.t-wrapper.cdk-drop-list-dragging .t-item:not(.cdk-drag-placeholder):hover{background:var(--tui-base-01)}.t-wrapper.cdk-drop-list-dragging .t-item:not(.cdk-drag-placeholder) .t-button{display:none}"]
315
- }),
316
- __param(0, core.Inject(tokens.TUI_TABLE_SHOW_HIDE_MESSAGE))
317
- ], TuiReorderComponent);
318
393
  return TuiReorderComponent;
319
394
  }());
395
+ TuiReorderComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: TuiReorderComponent, deps: [{ token: tokens.TUI_TABLE_SHOW_HIDE_MESSAGE }], target: i0__namespace.ɵɵFactoryTarget.Component });
396
+ TuiReorderComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: TuiReorderComponent, selector: "tui-reorder", inputs: { items: "items", enabled: "enabled" }, outputs: { itemsChange: "itemsChange", enabledChange: "enabledChange" }, host: { listeners: { "focusout.stop": "noop()" } }, ngImport: i0__namespace, template: "<div\n cdkDropList\n class=\"t-wrapper\"\n (cdkDropListDropped)=\"drop($event)\"\n>\n <div\n *ngFor=\"let item of items\"\n tabindex=\"-1\"\n cdkDrag\n class=\"t-item\"\n >\n <tui-svg\n src=\"tuiIconDrag\"\n class=\"t-icon\"\n ></tui-svg>\n {{ item }}\n <button\n type=\"button\"\n tuiIconButton\n appearance=\"icon\"\n size=\"xs\"\n tuiPreventDefault=\"mousedown\"\n class=\"t-button\"\n [class.t-button_hidden]=\"!isEnabled(item)\"\n [title]=\"showHideText$ | async\"\n [icon]=\"getIcon(item)\"\n (click)=\"toggle(item)\"\n ></button>\n </div>\n</div>\n", styles: [":host{display:block;font:var(--tui-font-text-s);padding:.5rem 0}.t-item{transition-property:background;transition-duration:.3s;transition-duration:var(--tui-duration, .3s);transition-timing-function:ease-in-out;display:flex;height:2rem;align-items:center;padding:0 .75rem;cursor:ns-resize;background:var(--tui-base-01);outline:none}.t-item:hover{background:var(--tui-base-02)}.t-item:hover .t-button{opacity:1}.t-icon{margin-right:.5rem;color:var(--tui-base-05)}.t-button{transition-property:opacity;transition-duration:.3s;transition-duration:var(--tui-duration, .3s);transition-timing-function:ease-in-out;margin-left:auto;opacity:0}.t-button_hidden{opacity:1}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}.t-wrapper.cdk-drop-list-dragging .t-item:not(.cdk-drag-placeholder){transition:transform .25s cubic-bezier(0,0,.2,1)}.t-wrapper.cdk-drop-list-dragging .t-item:not(.cdk-drag-placeholder):hover{background:var(--tui-base-01)}.t-wrapper.cdk-drop-list-dragging .t-item:not(.cdk-drag-placeholder) .t-button{display:none}\n"], components: [{ type: i1__namespace.TuiSvgComponent, selector: "tui-svg", inputs: ["src"] }, { type: i1__namespace.TuiButtonComponent, selector: "button[tuiButton], button[tuiIconButton], a[tuiButton], a[tuiIconButton]", inputs: ["appearance", "disabled", "icon", "iconRight", "shape", "showLoader", "size"] }], directives: [{ type: i2__namespace.CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "id", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListAutoScrollDisabled", "cdkDropListOrientation", "cdkDropListLockAxis", "cdkDropListData", "cdkDropListAutoScrollStep"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { type: i3__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2__namespace.CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragDisabled", "cdkDragStartDelay", "cdkDragLockAxis", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragBoundary", "cdkDragRootElement", "cdkDragPreviewContainer", "cdkDragData", "cdkDragFreeDragPosition"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { type: i4__namespace.TuiPreventDefaultDirective, selector: "[tuiPreventDefault]" }], pipes: { "async": i3__namespace.AsyncPipe } });
397
+ __decorate([
398
+ i4.tuiDefaultProp()
399
+ ], TuiReorderComponent.prototype, "items", void 0);
400
+ __decorate([
401
+ i4.tuiDefaultProp()
402
+ ], TuiReorderComponent.prototype, "enabled", void 0);
403
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: TuiReorderComponent, decorators: [{
404
+ type: i0.Component,
405
+ args: [{
406
+ selector: "tui-reorder",
407
+ templateUrl: "./reorder.template.html",
408
+ styleUrls: ["./reorder.style.less"],
409
+ }]
410
+ }], ctorParameters: function () {
411
+ return [{ type: i5__namespace.Observable, decorators: [{
412
+ type: i0.Inject,
413
+ args: [tokens.TUI_TABLE_SHOW_HIDE_MESSAGE]
414
+ }] }];
415
+ }, propDecorators: { items: [{
416
+ type: i0.Input
417
+ }], enabled: [{
418
+ type: i0.Input
419
+ }], itemsChange: [{
420
+ type: i0.Output
421
+ }], enabledChange: [{
422
+ type: i0.Output
423
+ }], noop: [{
424
+ type: i0.HostListener,
425
+ args: ["focusout.stop"]
426
+ }] } });
320
427
 
321
428
  var TuiReorderModule = /** @class */ (function () {
322
429
  function TuiReorderModule() {
323
430
  }
324
- TuiReorderModule = __decorate([
325
- core.NgModule({
326
- imports: [
327
- common.CommonModule,
328
- dragDrop.DragDropModule,
329
- core$1.TuiSvgModule,
330
- core$1.TuiButtonModule,
331
- cdk.TuiPreventDefaultModule,
332
- ],
333
- declarations: [TuiReorderComponent],
334
- exports: [TuiReorderComponent],
335
- })
336
- ], TuiReorderModule);
337
431
  return TuiReorderModule;
338
432
  }());
433
+ TuiReorderModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: TuiReorderModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
434
+ TuiReorderModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: TuiReorderModule, declarations: [TuiReorderComponent], imports: [i3.CommonModule,
435
+ i2.DragDropModule,
436
+ i1.TuiSvgModule,
437
+ i1.TuiButtonModule,
438
+ i4.TuiPreventDefaultModule], exports: [TuiReorderComponent] });
439
+ TuiReorderModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: TuiReorderModule, imports: [[
440
+ i3.CommonModule,
441
+ i2.DragDropModule,
442
+ i1.TuiSvgModule,
443
+ i1.TuiButtonModule,
444
+ i4.TuiPreventDefaultModule,
445
+ ]] });
446
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: TuiReorderModule, decorators: [{
447
+ type: i0.NgModule,
448
+ args: [{
449
+ imports: [
450
+ i3.CommonModule,
451
+ i2.DragDropModule,
452
+ i1.TuiSvgModule,
453
+ i1.TuiButtonModule,
454
+ i4.TuiPreventDefaultModule,
455
+ ],
456
+ declarations: [TuiReorderComponent],
457
+ exports: [TuiReorderComponent],
458
+ }]
459
+ }] });
460
+
461
+ /**
462
+ * Generated bundle index. Do not edit.
463
+ */
339
464
 
340
465
  exports.TuiReorderComponent = TuiReorderComponent;
341
466
  exports.TuiReorderModule = TuiReorderModule;
342
467
 
343
468
  Object.defineProperty(exports, '__esModule', { value: true });
344
469
 
345
- })));
470
+ }));
346
471
  //# sourceMappingURL=taiga-ui-addon-table-components-reorder.umd.js.map