@foblex/flow 1.4.1 → 1.4.5

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 (274) hide show
  1. package/README.md +7 -3
  2. package/domain/get-connection-vector/get-connection-vector.request.d.ts +4 -4
  3. package/domain/get-incoming-connections.handler.d.ts +1 -1
  4. package/domain/get-input-rect-in-flow.handler.d.ts +5 -5
  5. package/domain/get-outgoing-connections.handler.d.ts +1 -1
  6. package/domain/get-output-rect-in-flow.handler.d.ts +5 -5
  7. package/domain/index.d.ts +0 -1
  8. package/domain/select-all.handler.d.ts +1 -1
  9. package/esm2022/domain/get-connection-vector/get-connection-vector.handler.mjs +8 -8
  10. package/esm2022/domain/get-connection-vector/get-connection-vector.request.mjs +1 -1
  11. package/esm2022/domain/get-incoming-connections.handler.mjs +2 -2
  12. package/esm2022/domain/get-input-rect-in-flow.handler.mjs +2 -2
  13. package/esm2022/domain/get-outgoing-connections.handler.mjs +2 -2
  14. package/esm2022/domain/get-output-rect-in-flow.handler.mjs +2 -2
  15. package/esm2022/domain/index.mjs +1 -2
  16. package/esm2022/domain/select-all.handler.mjs +2 -2
  17. package/esm2022/f-components-store.mjs +1 -1
  18. package/esm2022/f-connection/common/domain/calculate-center-between-points/calculate-center-between-points-request.mjs +7 -0
  19. package/esm2022/f-connection/common/domain/calculate-center-between-points/calculate-center-between-points.handler.mjs +12 -0
  20. package/esm2022/f-connection/common/domain/calculate-center-between-points/index.mjs +3 -0
  21. package/esm2022/f-connection/common/domain/calculate-connection-center/calculate-connection-center-request.mjs +6 -0
  22. package/esm2022/f-connection/common/domain/calculate-connection-center/calculate-connection-center.handler.mjs +36 -0
  23. package/esm2022/f-connection/common/domain/calculate-connection-center/index.mjs +3 -0
  24. package/esm2022/f-connection/common/domain/f-bezier.path-builder.mjs +22 -0
  25. package/esm2022/f-connection/common/domain/f-path-builder-base.mjs +3 -0
  26. package/esm2022/f-connection/common/domain/f-path-builder-selector.mjs +19 -0
  27. package/esm2022/f-connection/common/domain/f-segment.path-builder.mjs +142 -0
  28. package/esm2022/f-connection/common/domain/f-straight.path-builder.mjs +11 -0
  29. package/esm2022/f-connection/common/domain/i-f-path-builder-request.mjs +2 -0
  30. package/esm2022/f-connection/common/domain/i-f-path-builder-response.mjs +2 -0
  31. package/esm2022/f-connection/common/domain/index.mjs +10 -0
  32. package/esm2022/f-connection/common/f-connection-base.mjs +15 -6
  33. package/esm2022/f-connection/common/f-connection-text/f-connection-text-path.directive.mjs +3 -3
  34. package/esm2022/f-connection/common/f-connection-text/f-connection-text.component.mjs +4 -4
  35. package/esm2022/f-connection/common/f-gradient/f-connection-gradient.component.mjs +4 -4
  36. package/esm2022/f-connection/common/f-path/f-connection-path.component.mjs +4 -4
  37. package/esm2022/f-connection/common/f-selection/f-connection-selection.component.mjs +2 -2
  38. package/esm2022/f-connection/common/i-has-connection-color.mjs +1 -1
  39. package/esm2022/f-connection/common/i-has-connection-from-to.mjs +1 -1
  40. package/esm2022/f-connection/common/i-has-connection-text.mjs +1 -1
  41. package/esm2022/f-connection/common/index.mjs +2 -2
  42. package/esm2022/f-connection/f-connection/f-connection.component.mjs +30 -26
  43. package/esm2022/f-connection/f-connection-center/f-connection-center.directive.mjs +14 -0
  44. package/esm2022/f-connection/f-connection-center/index.mjs +2 -0
  45. package/esm2022/f-connection/f-connection-for-create/f-connection-for-create.component.mjs +23 -21
  46. package/esm2022/f-connection/index.mjs +2 -1
  47. package/esm2022/f-connectors/domain/calculate-connector-connectable-side/calculate-connector-connectable-side-request.mjs +7 -0
  48. package/esm2022/f-connectors/domain/calculate-connector-connectable-side/calculate-connector-connectable-side.handler.mjs +38 -0
  49. package/esm2022/f-connectors/domain/calculate-connector-connectable-side/index.mjs +3 -0
  50. package/esm2022/f-connectors/domain/index.mjs +2 -0
  51. package/esm2022/f-connectors/e-f-connectable-side.mjs +9 -0
  52. package/esm2022/f-connectors/f-connector-base.mjs +16 -0
  53. package/esm2022/f-connectors/f-node-input/f-node-input-base.mjs +19 -0
  54. package/esm2022/f-connectors/f-node-input/f-node-input.directive.mjs +83 -0
  55. package/esm2022/f-connectors/f-node-input/index.mjs +4 -0
  56. package/esm2022/f-connectors/f-node-input/is-node-input.mjs +4 -0
  57. package/esm2022/f-connectors/f-node-outlet/f-node-outlet-base.mjs +23 -0
  58. package/esm2022/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +71 -0
  59. package/esm2022/f-connectors/f-node-outlet/index.mjs +4 -0
  60. package/esm2022/f-connectors/f-node-outlet/is-node-outlet.mjs +4 -0
  61. package/esm2022/f-connectors/f-node-output/f-node-output-base.mjs +19 -0
  62. package/esm2022/f-connectors/f-node-output/f-node-output.directive.mjs +77 -0
  63. package/esm2022/f-connectors/f-node-output/index.mjs +4 -0
  64. package/esm2022/f-connectors/f-node-output/is-node-output.mjs +4 -0
  65. package/esm2022/f-connectors/index.mjs +7 -0
  66. package/esm2022/f-draggable/canvas/canvas.drag-handler.mjs +3 -3
  67. package/esm2022/f-draggable/canvas/canvas.on-pointer-up.mjs +3 -3
  68. package/esm2022/f-draggable/connections/create-connection/create-connection.drag-handler.mjs +10 -9
  69. package/esm2022/f-draggable/connections/create-connection/create-connection.on-pointer-up.mjs +7 -7
  70. package/esm2022/f-draggable/connections/create-connection/create-connection.prepare-drag-sequence.mjs +3 -3
  71. package/esm2022/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.handler.mjs +1 -1
  72. package/esm2022/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.mjs +3 -3
  73. package/esm2022/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.handler.mjs +1 -1
  74. package/esm2022/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.handler.mjs +2 -2
  75. package/esm2022/f-draggable/connections/reassign-connection/reassign-connection.drag-handler.mjs +15 -14
  76. package/esm2022/f-draggable/connections/reassign-connection/reassign-connection.on-pointer-up.mjs +5 -5
  77. package/esm2022/f-draggable/e-f-draggable-type.mjs +11 -0
  78. package/esm2022/f-draggable/external-item/external-item.drag-handler.mjs +3 -3
  79. package/esm2022/f-draggable/external-item/external-item.on-pointer-up.mjs +3 -3
  80. package/esm2022/f-draggable/i-draggable-item.mjs +1 -1
  81. package/esm2022/f-draggable/node/connection-source.drag-handler.mjs +12 -11
  82. package/esm2022/f-draggable/node/connection-target.drag-handler.mjs +12 -11
  83. package/esm2022/f-draggable/node/connection.drag-handler.mjs +12 -11
  84. package/esm2022/f-draggable/node/domain/is-connection-under-node/is-connection-under-node.handler.mjs +4 -4
  85. package/esm2022/f-draggable/node/index.mjs +2 -1
  86. package/esm2022/f-draggable/node/node.drag-handler.mjs +3 -3
  87. package/esm2022/f-draggable/node/node.on-pointer-up.mjs +3 -3
  88. package/esm2022/f-draggable/node/node.prepare-drag-sequence.mjs +6 -6
  89. package/esm2022/f-draggable/public-api.mjs +13 -4
  90. package/esm2022/f-draggable/selection-area/selection-area.drag-handle.mjs +3 -3
  91. package/esm2022/f-draggable/selection-area/selection-area.on-pointer-up.mjs +3 -3
  92. package/esm2022/f-draggable/selection-area/selection-area.prepare-drag-sequence.mjs +1 -1
  93. package/esm2022/f-draggable/single-select/single-select.on-pointer-down.mjs +2 -2
  94. package/esm2022/f-flow/domain/redraw-connections/redraw-connections.handler.mjs +5 -5
  95. package/esm2022/f-flow/f-flow-base.mjs +5 -0
  96. package/esm2022/f-flow/f-flow.component.mjs +18 -18
  97. package/esm2022/f-flow/index.mjs +2 -3
  98. package/esm2022/f-flow.module.mjs +6 -4
  99. package/esm2022/f-node/f-drag-handle/index.mjs +1 -1
  100. package/esm2022/f-node/f-node-base.mjs +1 -3
  101. package/esm2022/f-node/f-node.directive.mjs +9 -9
  102. package/esm2022/f-node/index.mjs +1 -2
  103. package/esm2022/public-api.mjs +12 -6
  104. package/f-components-store.d.ts +5 -4
  105. package/f-connection/common/domain/calculate-center-between-points/calculate-center-between-points-request.d.ts +6 -0
  106. package/f-connection/common/domain/calculate-center-between-points/calculate-center-between-points.handler.d.ts +5 -0
  107. package/f-connection/common/domain/calculate-center-between-points/index.d.ts +2 -0
  108. package/f-connection/common/domain/calculate-connection-center/calculate-connection-center-request.d.ts +5 -0
  109. package/f-connection/common/domain/calculate-connection-center/calculate-connection-center.handler.d.ts +7 -0
  110. package/f-connection/common/domain/calculate-connection-center/index.d.ts +2 -0
  111. package/f-connection/common/domain/f-bezier.path-builder.d.ts +7 -0
  112. package/f-connection/common/domain/f-path-builder-base.d.ts +6 -0
  113. package/f-connection/common/domain/f-path-builder-selector.d.ts +7 -0
  114. package/f-connection/common/domain/f-segment.path-builder.d.ts +13 -0
  115. package/f-connection/common/domain/f-straight.path-builder.d.ts +6 -0
  116. package/f-connection/common/domain/i-f-path-builder-request.d.ts +12 -0
  117. package/f-connection/common/domain/i-f-path-builder-response.d.ts +5 -0
  118. package/f-connection/common/domain/index.d.ts +9 -0
  119. package/f-connection/common/f-connection-base.d.ts +15 -13
  120. package/f-connection/common/i-has-connection-color.d.ts +2 -2
  121. package/f-connection/common/i-has-connection-from-to.d.ts +4 -4
  122. package/f-connection/common/i-has-connection-text.d.ts +1 -1
  123. package/f-connection/common/index.d.ts +1 -1
  124. package/f-connection/f-connection/f-connection.component.d.ts +14 -12
  125. package/f-connection/f-connection-center/f-connection-center.directive.d.ts +5 -0
  126. package/f-connection/f-connection-center/index.d.ts +1 -0
  127. package/f-connection/f-connection-for-create/f-connection-for-create.component.d.ts +14 -12
  128. package/f-connection/index.d.ts +1 -0
  129. package/f-connectors/domain/calculate-connector-connectable-side/calculate-connector-connectable-side-request.d.ts +6 -0
  130. package/f-connectors/domain/calculate-connector-connectable-side/calculate-connector-connectable-side.handler.d.ts +7 -0
  131. package/f-connectors/domain/calculate-connector-connectable-side/index.d.ts +2 -0
  132. package/f-connectors/domain/index.d.ts +1 -0
  133. package/f-connectors/e-f-connectable-side.d.ts +7 -0
  134. package/{f-node/f-connectors → f-connectors}/f-connector-base.d.ts +4 -3
  135. package/{f-node/f-connectors → f-connectors}/f-node-input/f-node-input.directive.d.ts +5 -3
  136. package/{f-node/f-connectors → f-connectors}/f-node-outlet/f-node-outlet.directive.d.ts +6 -3
  137. package/{f-node/f-connectors → f-connectors}/f-node-output/f-node-output.directive.d.ts +5 -3
  138. package/{f-node/f-connectors → f-connectors}/index.d.ts +2 -0
  139. package/f-draggable/canvas/canvas.drag-handler.d.ts +2 -2
  140. package/f-draggable/connections/create-connection/create-connection.drag-handler.d.ts +2 -2
  141. package/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.handler.d.ts +1 -1
  142. package/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.d.ts +1 -1
  143. package/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.handler.d.ts +1 -1
  144. package/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.handler.d.ts +1 -1
  145. package/f-draggable/connections/reassign-connection/reassign-connection.drag-handler.d.ts +2 -2
  146. package/f-draggable/{e-draggable-type.d.ts → e-f-draggable-type.d.ts} +1 -1
  147. package/f-draggable/external-item/external-item.drag-handler.d.ts +2 -2
  148. package/f-draggable/i-draggable-item.d.ts +2 -2
  149. package/f-draggable/node/connection-source.drag-handler.d.ts +2 -2
  150. package/f-draggable/node/connection-target.drag-handler.d.ts +2 -2
  151. package/f-draggable/node/connection.drag-handler.d.ts +2 -2
  152. package/f-draggable/node/index.d.ts +1 -0
  153. package/f-draggable/node/node.drag-handler.d.ts +2 -2
  154. package/f-draggable/public-api.d.ts +12 -3
  155. package/f-draggable/selection-area/selection-area.drag-handle.d.ts +2 -2
  156. package/f-flow/f-flow-base.d.ts +8 -0
  157. package/f-flow/f-flow.component.d.ts +4 -4
  158. package/f-flow/index.d.ts +1 -2
  159. package/f-flow.module.d.ts +3 -3
  160. package/f-node/f-node-base.d.ts +2 -2
  161. package/f-node/f-node.directive.d.ts +3 -3
  162. package/f-node/index.d.ts +0 -1
  163. package/fesm2022/foblex-flow.mjs +2503 -2423
  164. package/fesm2022/foblex-flow.mjs.map +1 -1
  165. package/package.json +1 -1
  166. package/public-api.d.ts +11 -5
  167. package/domain/get-connector-side-in-node/e-connector-side.d.ts +0 -6
  168. package/domain/get-connector-side-in-node/get-connector-side-in-node.handler.d.ts +0 -5
  169. package/domain/get-connector-side-in-node/index.d.ts +0 -2
  170. package/esm2022/domain/get-connector-side-in-node/e-connector-side.mjs +0 -8
  171. package/esm2022/domain/get-connector-side-in-node/get-connector-side-in-node.handler.mjs +0 -26
  172. package/esm2022/domain/get-connector-side-in-node/index.mjs +0 -3
  173. package/esm2022/f-backgroud/domain/public-api.mjs +0 -2
  174. package/esm2022/f-backgroud/f-cell-pattern/public-api.mjs +0 -2
  175. package/esm2022/f-backgroud/public-api.mjs +0 -4
  176. package/esm2022/f-canvas/domain/public-api.mjs +0 -2
  177. package/esm2022/f-canvas/f-zoom/public-api.mjs +0 -2
  178. package/esm2022/f-canvas/public-api.mjs +0 -4
  179. package/esm2022/f-connection/common/path-constructor/bezier-path/bezier-path.mjs +0 -29
  180. package/esm2022/f-connection/common/path-constructor/bezier-path/index.mjs +0 -2
  181. package/esm2022/f-connection/common/path-constructor/i-path-constructor.mjs +0 -2
  182. package/esm2022/f-connection/common/path-constructor/index.mjs +0 -6
  183. package/esm2022/f-connection/common/path-constructor/path-constructor.mjs +0 -15
  184. package/esm2022/f-connection/common/path-constructor/segment-path/connector-side-point.mjs +0 -9
  185. package/esm2022/f-connection/common/path-constructor/segment-path/edge-center-calculator.mjs +0 -10
  186. package/esm2022/f-connection/common/path-constructor/segment-path/index.mjs +0 -6
  187. package/esm2022/f-connection/common/path-constructor/segment-path/path-bend.mjs +0 -19
  188. package/esm2022/f-connection/common/path-constructor/segment-path/point-utils.mjs +0 -14
  189. package/esm2022/f-connection/common/path-constructor/segment-path/segment-path.mjs +0 -123
  190. package/esm2022/f-connection/common/path-constructor/straight-path/index.mjs +0 -2
  191. package/esm2022/f-connection/common/path-constructor/straight-path/straight-path.mjs +0 -9
  192. package/esm2022/f-connection/common/public-api.mjs +0 -3
  193. package/esm2022/f-connection/public-api.mjs +0 -5
  194. package/esm2022/f-draggable/components/f-external-item/public-api.mjs +0 -2
  195. package/esm2022/f-draggable/components/f-line-alignment/public-api.mjs +0 -2
  196. package/esm2022/f-draggable/components/f-selection-area/public-api.mjs +0 -2
  197. package/esm2022/f-draggable/components/public-api.mjs +0 -4
  198. package/esm2022/f-draggable/connections/create-connection/public-api.mjs +0 -2
  199. package/esm2022/f-draggable/connections/public-api.mjs +0 -3
  200. package/esm2022/f-draggable/connections/reassign-connection/public-api.mjs +0 -2
  201. package/esm2022/f-draggable/e-draggable-type.mjs +0 -11
  202. package/esm2022/f-draggable/external-item/public-api.mjs +0 -2
  203. package/esm2022/f-draggable/index.mjs +0 -14
  204. package/esm2022/f-flow/f-parent.injection-token.mjs +0 -3
  205. package/esm2022/f-flow/i-flow-base.mjs +0 -3
  206. package/esm2022/f-flow/public-api.mjs +0 -2
  207. package/esm2022/f-node/f-connectors/f-connector-base.mjs +0 -15
  208. package/esm2022/f-node/f-connectors/f-node-input/f-node-input-base.mjs +0 -19
  209. package/esm2022/f-node/f-connectors/f-node-input/f-node-input.directive.mjs +0 -78
  210. package/esm2022/f-node/f-connectors/f-node-input/index.mjs +0 -4
  211. package/esm2022/f-node/f-connectors/f-node-input/is-node-input.mjs +0 -4
  212. package/esm2022/f-node/f-connectors/f-node-input/public-api.mjs +0 -2
  213. package/esm2022/f-node/f-connectors/f-node-outlet/f-node-outlet-base.mjs +0 -23
  214. package/esm2022/f-node/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +0 -68
  215. package/esm2022/f-node/f-connectors/f-node-outlet/index.mjs +0 -4
  216. package/esm2022/f-node/f-connectors/f-node-outlet/is-node-outlet.mjs +0 -4
  217. package/esm2022/f-node/f-connectors/f-node-outlet/public-api.mjs +0 -2
  218. package/esm2022/f-node/f-connectors/f-node-output/f-node-output-base.mjs +0 -19
  219. package/esm2022/f-node/f-connectors/f-node-output/f-node-output.directive.mjs +0 -72
  220. package/esm2022/f-node/f-connectors/f-node-output/index.mjs +0 -4
  221. package/esm2022/f-node/f-connectors/f-node-output/is-node-output.mjs +0 -4
  222. package/esm2022/f-node/f-connectors/f-node-output/public-api.mjs +0 -2
  223. package/esm2022/f-node/f-connectors/index.mjs +0 -5
  224. package/esm2022/f-node/f-connectors/public-api.mjs +0 -4
  225. package/esm2022/f-node/f-drag-handle/public-api.mjs +0 -2
  226. package/esm2022/f-node/public-api.mjs +0 -4
  227. package/f-backgroud/domain/public-api.d.ts +0 -1
  228. package/f-backgroud/f-cell-pattern/public-api.d.ts +0 -1
  229. package/f-backgroud/public-api.d.ts +0 -3
  230. package/f-canvas/domain/public-api.d.ts +0 -1
  231. package/f-canvas/f-zoom/public-api.d.ts +0 -1
  232. package/f-canvas/public-api.d.ts +0 -3
  233. package/f-connection/common/path-constructor/bezier-path/bezier-path.d.ts +0 -7
  234. package/f-connection/common/path-constructor/bezier-path/index.d.ts +0 -1
  235. package/f-connection/common/path-constructor/i-path-constructor.d.ts +0 -12
  236. package/f-connection/common/path-constructor/index.d.ts +0 -5
  237. package/f-connection/common/path-constructor/path-constructor.d.ts +0 -8
  238. package/f-connection/common/path-constructor/segment-path/connector-side-point.d.ts +0 -6
  239. package/f-connection/common/path-constructor/segment-path/edge-center-calculator.d.ts +0 -3
  240. package/f-connection/common/path-constructor/segment-path/index.d.ts +0 -5
  241. package/f-connection/common/path-constructor/segment-path/path-bend.d.ts +0 -4
  242. package/f-connection/common/path-constructor/segment-path/point-utils.d.ts +0 -6
  243. package/f-connection/common/path-constructor/segment-path/segment-path.d.ts +0 -10
  244. package/f-connection/common/path-constructor/straight-path/index.d.ts +0 -1
  245. package/f-connection/common/path-constructor/straight-path/straight-path.d.ts +0 -6
  246. package/f-connection/common/public-api.d.ts +0 -2
  247. package/f-connection/public-api.d.ts +0 -4
  248. package/f-draggable/components/f-external-item/public-api.d.ts +0 -1
  249. package/f-draggable/components/f-line-alignment/public-api.d.ts +0 -1
  250. package/f-draggable/components/f-selection-area/public-api.d.ts +0 -1
  251. package/f-draggable/components/public-api.d.ts +0 -3
  252. package/f-draggable/connections/create-connection/public-api.d.ts +0 -1
  253. package/f-draggable/connections/public-api.d.ts +0 -2
  254. package/f-draggable/connections/reassign-connection/public-api.d.ts +0 -1
  255. package/f-draggable/external-item/public-api.d.ts +0 -1
  256. package/f-draggable/index.d.ts +0 -13
  257. package/f-flow/f-parent.injection-token.d.ts +0 -2
  258. package/f-flow/i-flow-base.d.ts +0 -8
  259. package/f-flow/public-api.d.ts +0 -1
  260. package/f-node/f-connectors/f-node-input/public-api.d.ts +0 -1
  261. package/f-node/f-connectors/f-node-outlet/public-api.d.ts +0 -1
  262. package/f-node/f-connectors/f-node-output/public-api.d.ts +0 -1
  263. package/f-node/f-connectors/public-api.d.ts +0 -3
  264. package/f-node/f-drag-handle/public-api.d.ts +0 -1
  265. package/f-node/public-api.d.ts +0 -3
  266. /package/{f-node/f-connectors → f-connectors}/f-node-input/f-node-input-base.d.ts +0 -0
  267. /package/{f-node/f-connectors → f-connectors}/f-node-input/index.d.ts +0 -0
  268. /package/{f-node/f-connectors → f-connectors}/f-node-input/is-node-input.d.ts +0 -0
  269. /package/{f-node/f-connectors → f-connectors}/f-node-outlet/f-node-outlet-base.d.ts +0 -0
  270. /package/{f-node/f-connectors → f-connectors}/f-node-outlet/index.d.ts +0 -0
  271. /package/{f-node/f-connectors → f-connectors}/f-node-outlet/is-node-outlet.d.ts +0 -0
  272. /package/{f-node/f-connectors → f-connectors}/f-node-output/f-node-output-base.d.ts +0 -0
  273. /package/{f-node/f-connectors → f-connectors}/f-node-output/index.d.ts +0 -0
  274. /package/{f-node/f-connectors → f-connectors}/f-node-output/is-node-output.d.ts +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.